/* ============================================================
   EUGENIA MAYA — Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Tenor+Sans&display=swap');

/* ── Variables ── */
:root {
  --black:          #080808;
  --black-soft:     #111010;
  --charcoal:       #1C1B18;
  --burgundy:       #2E0B18;
  --burgundy-mid:   #4A1228;
  --burgundy-light: #6B1F3A;
  --gold:           #C8A44A;
  --gold-light:     #E2C97A;
  --gold-muted:     #8B6E2A;
  --gold-dim:       #5A4618;
  --rose:           #C9788A;
  --rose-dim:       rgba(201,120,138,0.12);
  --marble:         #C4AD8A;
  --marble-light:   #D9C9A8;
  --marble-dim:     rgba(196,173,138,0.08);
  --cream:          #F5F3EC;
  --cream-muted:    #D8D4CB;
  --muted:          #A8A49C;
  --white:          #FAFAF8;

  --font-display: 'Cormorant', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'DM Sans', sans-serif;
  --font-header:  'Tenor Sans', sans-serif;

  --max-width:    1200px;
  --gutter:       clamp(24px, 5vw, 80px);
  --section-pad:  clamp(80px, 10vw, 140px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

/* ── Grain Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-header);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.05;
}

.display-xl {
  font-size: clamp(54px, 9vw, 128px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.display-lg {
  font-size: clamp(40px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.0;
}

.display-md {
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
}

.display-sm {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  line-height: 1.8;
}

.body-sm {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.7;
}

.gold { color: var(--gold); }
.italic { font-style: italic; }

/* ── Dividers ── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.gold-line--full {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-pad) 0;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(16px);
  padding: 18px var(--gutter);
  border-bottom: 1px solid rgba(200, 164, 74, 0.1);
}

.nav__logo img {
  height: 64px;
  width: auto;
  transition: opacity 0.3s;
}

.nav__logo img:hover { opacity: 0.75; }

/* Horizontal menu — desktop */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__menu a {
  font-family: var(--font-header);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav__menu a:hover,
.nav__menu a.active { color: var(--gold); }
.nav__menu a:hover::after,
.nav__menu a.active::after { width: 100%; }

.nav__cta {
  color: var(--gold) !important;
  border: 1px solid rgba(200,164,74,0.4) !important;
  padding: 9px 22px;
  transition: all 0.3s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* Hamburger toggle — mobile only */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 202;
  position: relative;
}

.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav__toggle span:nth-child(1) { width: 30px; }
.nav__toggle span:nth-child(2) { width: 20px; margin-left: auto; }

.nav__toggle.open span:nth-child(1) {
  width: 26px;
  transform: translateY(8px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  width: 26px;
  margin-left: 0;
  transform: rotate(-45deg);
}

/* Full-screen overlay menu */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav__overlay::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  border: 1px solid rgba(200, 164, 74, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.nav__overlay::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(460px, 60vw);
  height: min(460px, 60vw);
  border: 1px solid rgba(200, 164, 74, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav__overlay ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.nav__overlay ul li a {
  font-family: var(--font-header);
  font-size: clamp(32px, 5.5vw, 68px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream-muted);
  transition: color 0.3s, letter-spacing 0.4s;
  display: block;
  line-height: 1.3;
}

.nav__overlay ul li a:hover {
  color: var(--gold);
  letter-spacing: 0.18em;
}

.nav__overlay ul li:last-child a { color: var(--gold); }
.nav__overlay ul li:last-child a:hover { color: var(--gold-light); }

.nav__overlay .overlay__tagline {
  position: absolute;
  bottom: clamp(28px, 4vw, 52px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
  text-align: center;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  padding: 18px 48px;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 17px 48px;
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow from top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(200, 164, 74, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Background sun ornament */
.hero__ornament {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-52%);
  width: min(560px, 52vw);
  height: min(560px, 52vw);
  opacity: 0.06;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero__headline {
  max-width: 860px;
  margin-bottom: 36px;
  font-size: clamp(28px, 4.2vw, 60px);
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  max-width: 500px;
  margin-bottom: 52px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px; right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.hero__scroll::before {
  content: '';
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim));
}

/* ── Marble Texture Section ── */
.section--marble {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1208 0%, #0f0b05 40%, #1a1208 100%);
}

.section--marble::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 15% 60%, rgba(196,173,138,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 80% 100% at 85% 20%, rgba(216,196,158,0.22) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 55% 85%, rgba(196,173,138,0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section--marble > * { position: relative; z-index: 1; }

/* ── Burgundy Section ── */
.section--burgundy {
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.section--burgundy::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(255,255,255,0.018) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 85% 30%, rgba(200,164,74,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Botanical Divider ── */
.botanical-divider {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  color: rgba(200,164,74,0.3);
  font-size: 11px;
  letter-spacing: 0.5em;
  user-select: none;
}

/* ── Statement ── */
.statement {
  background: var(--burgundy);
  border-top: 1px solid rgba(200, 164, 74, 0.12);
  border-bottom: 1px solid rgba(200, 164, 74, 0.12);
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 15% 50%, rgba(255,255,255,0.015) 0%, transparent 70%),
              radial-gradient(ellipse 50% 70% at 85% 30%, rgba(200,164,74,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.statement__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.statement__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.8vw, 50px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--cream);
  margin: 24px 0;
}

.statement__quote em {
  color: var(--gold);
  font-style: normal;
}

/* ── Two Column ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ── The Gap Section ── */
.gap-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gap-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream-muted);
}

.gap-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Pillars ── */
.pillars { background: var(--charcoal); }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.pillar {
  background: var(--black-soft);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.pillar:hover { background: #141412; }
.pillar:hover::before { opacity: 1; }

.pillar__num {
  font-family: var(--font-header);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}

.pillar__title {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  line-height: 1.4;
}

.pillar__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
  font-weight: 300;
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 36px;
  white-space: nowrap;
}

.marquee-dot {
  color: var(--gold-light);
  align-self: center;
  font-size: 7px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── About Preview (Home) ── */
.photo-frame {
  position: relative;
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(200, 164, 74, 0.25);
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  display: block;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--burgundy);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(200, 164, 74, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(255,255,255,0.015) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__content { position: relative; z-index: 1; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: clamp(140px, 15vw, 200px);
  padding-bottom: clamp(56px, 7vw, 88px);
  position: relative;
}

.page-hero__ornament {
  position: absolute;
  top: 40%;
  right: 0;
  width: min(400px, 40vw);
  opacity: 0.05;
  pointer-events: none;
}

/* ── About Page ── */
.about-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 120px;
}

.about-sidebar__logo {
  width: 140px;
  margin-bottom: 32px;
  /* Transparent PNG — no filter needed */
}

.about-sidebar__divider {
  width: 40px; height: 1px;
  background: var(--gold-dim);
  margin-bottom: 24px;
}

.about-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-sidebar nav a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.about-sidebar nav a:hover { color: var(--gold); }

.about-content p {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-muted);
  margin-bottom: 28px;
}

.about-content p strong { color: var(--cream); font-weight: 500; }
.about-content p em { color: var(--gold); font-style: italic; }

.about-content h3 {
  font-family: var(--font-header);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 56px 0 20px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}

.philosophy-item {
  background: var(--charcoal);
  padding: 36px 28px;
  border-top: 1px solid var(--gold-dim);
}

.philosophy-item__title {
  font-family: var(--font-header);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.philosophy-item__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.78;
}

/* ── Apply Page ── */
.apply-intro { max-width: 640px; }

.form-wrap { max-width: 760px; }

.form-section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid rgba(200, 164, 74, 0.12);
  display: block;
}

.form-section-label:first-child {
  margin-top: 0; padding-top: 0; border-top: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--charcoal);
  border: 1px solid rgba(200, 164, 74, 0.14);
  color: var(--cream);
  padding: 15px 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  width: 100%;
  resize: vertical;
  -webkit-appearance: none;
  border-radius: 0;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-muted);
  background: #181714;
}

.form-group textarea { min-height: 130px; }
.form-group textarea.tall { min-height: 190px; }

.form-hint {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

.form-submit {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
}

/* ── Footer ── */
.footer {
  padding: 60px 0 36px;
  border-top: 1px solid rgba(200, 164, 74, 0.08);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer__logo {
  height: 56px;
  width: auto;
  /* logo-dark.png: transparent bg, white text — works on dark site natively */
  opacity: 0.75;
  transition: opacity 0.3s;
}

.footer__logo:hover { opacity: 1; }

.footer__nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer__nav a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.footer__nav a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── Photo Frame with Gold Embellishments ── */
.ornate-frame {
  position: relative;
  display: inline-block;
  padding: 16px;
  background: #000;
  border: 1px solid var(--gold-dim);
}

.ornate-frame img {
  display: block;
  width: 100%;
  filter: grayscale(100%) contrast(1.05);
}

/* Outer gold border line */
.ornate-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(200, 164, 74, 0.35);
  pointer-events: none;
  z-index: 2;
}

/* Gold corner embellishments */
.ornate-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Top-left corner */
    linear-gradient(to right, var(--gold), var(--gold)) 10px 10px / 28px 1px no-repeat,
    linear-gradient(to bottom, var(--gold), var(--gold)) 10px 10px / 1px 28px no-repeat,
    /* Top-right corner */
    linear-gradient(to left, var(--gold), var(--gold)) calc(100% - 10px) 10px / 28px 1px no-repeat,
    linear-gradient(to bottom, var(--gold), var(--gold)) calc(100% - 10px) 10px / 1px 28px no-repeat,
    /* Bottom-left corner */
    linear-gradient(to right, var(--gold), var(--gold)) 10px calc(100% - 10px) / 28px 1px no-repeat,
    linear-gradient(to top, var(--gold), var(--gold)) 10px calc(100% - 38px) / 1px 28px no-repeat,
    /* Bottom-right corner */
    linear-gradient(to left, var(--gold), var(--gold)) calc(100% - 10px) calc(100% - 10px) / 28px 1px no-repeat,
    linear-gradient(to top, var(--gold), var(--gold)) calc(100% - 10px) calc(100% - 38px) / 1px 28px no-repeat;
  pointer-events: none;
  z-index: 3;
}

/* Gold diamond center ornament — top and bottom */
.ornate-frame .frame-ornament {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.3em;
  z-index: 4;
  line-height: 1;
}

.ornate-frame .frame-ornament--top { top: 8px; }
.ornate-frame .frame-ornament--bottom { bottom: 8px; }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.5s; }
.delay-5 { transition-delay: 0.65s; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .two-col,
  .about-layout { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }
  .pillars__grid { grid-template-columns: 1fr; gap: 16px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 640px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__nav { flex-wrap: wrap; gap: 20px; }
  .nav__overlay ul li a { font-size: clamp(28px, 8vw, 48px); }
}
