 /* ── Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
 
    /* ── Tokens ── */
    :root {
      --forest:        #0D1C0F;
      --forest-mid:    #111F14;
      --parchment:     #ECE4CF;
      --parchment-dim: #B8AD96;
      --gold:          #C9A55A;
      --gold-light:    #E0BF78;
      --sage:          #5E7B62;
      --corner-size:   90px;
    }
 
    /* ── Keyframes ── */
    @keyframes shimmer {
      0%   { background-position: -300% center; }
      100% { background-position: 300% center; }
    }
 
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    @keyframes glowPulse {
      0%, 100% { opacity: 0.3; }
      50%       { opacity: 0.7; }
    }
 
    @keyframes badgePulse {
      0%, 100% {
        border-color: rgba(201, 165, 90, 0.3);
        color: rgba(201, 165, 90, 0.65);
      }
      50% {
        border-color: rgba(201, 165, 90, 0.75);
        color: rgba(224, 191, 120, 1);
      }
    }
 
    /* ── Base ── */
    body {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      background: var(--forest);
      color: var(--parchment);
      min-height: 100vh;
      overflow-x: hidden;
    }
 
    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 5rem 2rem;
   background-image: 
     linear-gradient(
     to bottom,
     rgba(13, 28, 15, 0.55),
     rgba(13, 28, 15, 0.85)
     ),
     url('background.jpg');
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
   overflow: hidden;
    }
 
    /* Ambient glow — the one light left on */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(
        ellipse 70% 60% at 50% 44%,
        rgba(201, 165, 90, 0.08) 0%,
        transparent 70%
      );
      animation: glowPulse 8s ease-in-out infinite;
      pointer-events: none;
    }
 
    /* ── Corner frames ── */
    .corner {
      position: absolute;
      width: var(--corner-size);
      height: var(--corner-size);
      border-color: rgba(201, 165, 90, 0.42);
      border-style: solid;
    }
    .corner.tl { top: 2rem;    left: 2rem;  border-width: 1px 0 0 1px; }
    .corner.tr { top: 2rem;    right: 2rem; border-width: 1px 1px 0 0; }
    .corner.bl { bottom: 2rem; left: 2rem;  border-width: 0 0 1px 1px; }
    .corner.br { bottom: 2rem; right: 2rem; border-width: 0 1px 1px 0; }


    /* ── Hero content ── */
    .hero-content {
      text-align: center;
      max-width: 700px;
      position: relative;
      z-index: 1;
    }
 
    .eyebrow {
      display: block;
      font-size: 0.65rem;
      letter-spacing: 0.42em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 2.2rem;
      animation: fadeUp 1s ease 0.2s both;
    }
 
    /* ── Château name ── */
    .chateau-name {
      display: block;
      animation: fadeUp 1s ease 0.45s both;
    }
 
    .chateau-de {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.2rem, 3vw, 1.9rem);
      letter-spacing: 0.14em;
      color: var(--parchment-dim);
      margin-bottom: 0.05em;
    }
 
    .chateau-main {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(3.8rem, 11vw, 8rem);
      line-height: 0.88;
      letter-spacing: 0.05em;
      text-transform: uppercase;
 
      /* Gold shimmer */
      background: linear-gradient(
        90deg,
        var(--parchment-dim) 0%,
        var(--gold-light)    22%,
        var(--parchment)     50%,
        var(--gold-light)    78%,
        var(--parchment-dim) 100%
      );
      background-size: 300% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 9s linear infinite;
    }
 
    /* ── Ornament ── */
    .ornament {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
      margin: 2.4rem 0 2rem;
      animation: fadeUp 1s ease 0.75s both;
    }
 
    .orn-line {
      height: 1px;
      flex: 1;
      max-width: 90px;
    }
    .orn-line.l { background: linear-gradient(90deg, transparent, var(--gold)); }
    .orn-line.r { background: linear-gradient(90deg, var(--gold), transparent); }
 
    .orn-diamond {
      width: 5px;
      height: 5px;
      background: var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }
 
    /* ── Badge ── */
    .reno-badge {
      display: inline-block;
      border: 1px solid rgba(201, 165, 90, 0.35);
      padding: 0.5rem 1.4rem;
      font-size: 0.6rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(201, 165, 90, 0.7);
      margin-bottom: 2.2rem;
      animation:
        fadeUp 1s ease 0.95s both,
        badgePulse 4s ease-in-out 2s infinite;
    }
 
    /* ── Tagline ── */
    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.05rem, 2.6vw, 1.38rem);
      line-height: 1.8;
      color: var(--parchment-dim);
      margin-bottom: 0;
      animation: fadeUp 1s ease 1.1s both;
    }
 
    .hero-tagline strong {
      font-style: normal;
      font-weight: 400;
      color: var(--parchment);
    }
 
    /* ═══════════════════════════════════════
       ABOUT SECTION
    ═══════════════════════════════════════ */
    .about {
      background: var(--forest-mid);
      padding: 8rem 2rem 7rem;
      text-align: center;
      position: relative;
    }
 
    /* Connector line from hero */
    .about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 64px;
      background: linear-gradient(180deg, transparent, rgba(201, 165, 90, 0.38));
    }
 
    .about-inner {
      max-width: 640px;
      margin: 0 auto;
    }
 
    .section-label {
      display: block;
      font-size: 0.6rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.6rem;
    }
 
    .about h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3.1rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--parchment);
      margin-bottom: 2rem;
    }
 
    .about h2 em {
      font-style: italic;
      color: var(--gold-light);
    }
 
    .about p {
      font-size: 0.96rem;
      line-height: 1.95;
      color: var(--parchment-dim);
      font-weight: 300;
    }
 
    /* ── Feature rows ── */
    .features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem 3rem;
      margin-top: 5rem;
      padding-top: 4rem;
      border-top: 1px solid rgba(201, 165, 90, 0.1);
      text-align: left;
    }
 
    .feature-numeral {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 2.8rem;
      font-weight: 300;
      color: rgba(201, 165, 90, 0.18);
      line-height: 1;
      margin-bottom: 0.9rem;
      display: block;
    }
 
    .feature h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.18rem;
      font-weight: 500;
      color: var(--parchment);
      margin-bottom: 0.5rem;
    }
 
    .feature p {
      font-size: 0.8rem;
      color: rgba(236, 228, 207, 0.38);
      line-height: 1.75;
      font-weight: 300;
    }
 
    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      padding: 3.5rem 2rem;
      text-align: center;
      border-top: 1px solid rgba(201, 165, 90, 0.07);
    }
 
    .footer-ornament {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
      margin-bottom: 1.2rem;
    }
 
    .footer-ornament .orn-line {
      max-width: 40px;
    }
 
    .footer-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 300;
      letter-spacing: 0.14em;
      color: var(--parchment-dim);
      margin-bottom: 0.5rem;
    }
 
    .footer-sub {
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(236, 228, 207, 0.18);
    }
 
    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 640px) {
      :root { --corner-size: 52px; }
 
      .corner.tl, .corner.tr { top: 1rem; }
      .corner.bl, .corner.br { bottom: 1rem; }
      .corner.tl, .corner.bl { left: 1rem; }
      .corner.tr, .corner.br { right: 1rem; }
 
      .features {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
      }
 
      .feature-numeral { text-align: center; }
    }
 
    /* Respect prefers-reduced-motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
