/* ===============================
   RESET
=================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===============================
   VARIABLES
=================================*/
:root {
  --gold: #FAAA55;
  --gold-light: #FAAA55;
  --dark: #1a1a1a;
  --charcoal: #2c2c2c;
  --off-white: #f7f4ef;
  --text: #444;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'inter', sans-serif;
}


    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--off-white);
      color: var(--text);
      overflow-x: hidden;
    }
    
     /* ── SHARED ── */
    section { padding: 100px 6%; }
    .section-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
    .section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); line-height: 1.15; margin-bottom: 18px; }
    .section-sub { max-width: 540px; font-size: 1rem; line-height: 1.75; color: #666; margin-bottom: 48px; }
    .divider { width: 56px; height: 2px; background: var(--gold); margin-bottom: 32px; }

    .btn {
      display: inline-block; padding: 14px 36px;
      font-family: var(--sans); font-size: .85rem;
      letter-spacing: .12em; text-transform: uppercase;
      font-weight: 500; text-decoration: none; cursor: pointer; transition: .25s;
    }
    .btn-gold { background: var(--gold); color: #1a1a1a; border: 2px solid var(--gold); }
    .btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }
    .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); margin-left: 14px; }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    /* ── NAVBAR ── */
    nav {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 6%;
      background: rgba(26,26,26,0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(201,168,76,0.2);
      transition: padding .3s;
    }
    nav.scrolled { padding: 12px 6%; }

    .nav-logo {
      display: flex; align-items: center; gap: 10px; text-decoration: none;
    }
    .nav-logo img { width: 150px; height: auto;}

    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      color: #ccc; text-decoration: none; font-size: .85rem;
      letter-spacing: .12em; text-transform: uppercase;
      font-family: var(--sans); font-weight: 500;
      transition: color .2s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--gold);
      transition: width .3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }

    /* ── HERO ── */
    .hero {
      height: 90vh; min-height: 500px;
      background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
      display: flex; align-items: end; justify-content: center;
      text-align: center; position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url('/assets/images/16541.jpg') center/cover;
      opacity: .22;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(201,168,76,.01) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(201,168,76,.01) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 780px; padding: 0 24px;
      animation: fadeUp .9s ease both;
    }
    .hero-eyebrow {
      display: inline-block; margin-bottom: 20px;
      font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); border: 1px solid rgba(201,168,76,.4);
      padding: 6px 18px; border-radius: 2px;
    }
    .hero h1 {
      font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 5rem);
      color: #fff; line-height: 1.1; margin-bottom: 24px;
      font-weight: 700;
    }
    .hero h1 span { color: var(--gold); }
    .hero p {
      font-size: 1.1rem; color: rgba(255,255,255,.65);
      max-width: 520px; margin: 0 auto 36px; line-height: 1.7;
    }
    .btn {
      display: inline-block; padding: 14px 36px;
      font-family: var(--sans); font-size: .85rem;
      letter-spacing: .12em; text-transform: uppercase;
      font-weight: 500; text-decoration: none;
      cursor: pointer; transition: .25s;
    }
    .btn-gold {
      background: var(--gold); color: #1a1a1a;
      border: 2px solid var(--gold);
    }
    .btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }
    .btn-outline {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,.4); margin-left: 14px;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    /* ── SECTION BASE ── */
    section { padding: 100px 6%; }

    .section-label {
      font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
      color: var(--dark); line-height: 1.15; margin-bottom: 18px;
    }
    .section-sub {
      max-width: 540px; font-size: 1rem; line-height: 1.75;
      color: #666; margin-bottom: 48px;
    }
    .divider {
      width: 56px; height: 2px; background: var(--gold);
      margin-bottom: 32px;
    }

    /* ── ABOUT ── */
    .about {
      background: #fff;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
   .about-img { 
  position: relative; 
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Mobile version */
@media (max-width: 768px) {
  .about-img img {
    height: 260px;
  }
}
    .about-img::after {
      content: ''; position: absolute;
      bottom: -20px; right: -20px;
      width: 60%; height: 60%;
      border: 2px solid var(--gold); z-index: -1;
    }
    .about-text .section-title { max-width: 480px; }

    /* ── PROPERTIES ── */
    .properties { background: var(--off-white); }
    .properties .section-header { max-width: 600px; margin-bottom: 60px; }

    .prop-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 28px;
    }
    .prop-card {
      background: #fff; overflow: hidden;
      box-shadow: 0 2px 20px rgba(0,0,0,.06);
      transition: transform .3s, box-shadow .3s;
      cursor: pointer;
    }
    .prop-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }

    .prop-img-wrap { position: relative; overflow: hidden; height: 240px; }
    .prop-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s;
    }
    .prop-card:hover .prop-img-wrap img { transform: scale(1.06); }
    .prop-badge {
      position: absolute; top: 16px; left: 16px;
      background: var(--gold); color: #1a1a1a;
      font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
      padding: 5px 12px; font-weight: 600;
    }

    .prop-body { padding: 24px 26px 28px; }
    .prop-name {
      font-family: var(--serif); font-size: 1.25rem;
      color: var(--dark); margin-bottom: 8px;
    }
    .prop-loc { font-size: .95rem; color: #888; margin-bottom: 20px; }
    .prop-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--gold); text-decoration: none; font-weight: 500;
      transition: gap .2s;
    }
    .prop-link:hover { gap: 14px; }
    .prop-link::after { content: '→'; }

    /* ── TEAM ── */
    .team { background: var(--dark); }
    .team .section-title { color: #fff; }
    .team .section-sub { color: rgba(255,255,255,.5); }
    .team .divider { background: var(--gold); }

    .team-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .team-card {
      text-align: center;
      transition: transform .3s;
    }
    .team-card:hover { transform: translateY(-8px); }
    .team-avatar {
      width: 160px; height: 160px; border-radius: 50%;
      object-fit: cover; margin: 0 auto 20px;
      border: 3px solid var(--gold);
      display: block;
    }
    .team-name {
      font-family: var(--serif); font-size: 1.2rem;
      color: #fff; margin-bottom: 6px;
    }
    .team-role { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

    /* ── CTA ── */
    .cta {
      background: linear-gradient(135deg, var(--charcoal), var(--dark));
      text-align: center; position: relative; overflow: hidden;
    }
    .cta::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(201,168,76,.12) 0%, transparent 70%);
    }
    .cta .section-title { color: #fff; position: relative; }
    .cta p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.75; max-width: 520px; margin: 0 auto 40px; position: relative; }
    
    /* ── VALUES ── */
    .values { background: var(--off-white); }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
    .value-card {
      background: #fff; padding: 40px 32px;
      border-bottom: 3px solid transparent;
      box-shadow: 0 2px 16px rgba(0,0,0,.05);
      transition: border-color .3s, transform .3s, box-shadow .3s;
    }
    .value-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
    .value-icon { width: 48px; height: 48px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; background: var(--off-white); }
    .value-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
    .value-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
    .value-text { font-size: .9rem; line-height: 1.75; color: #777; }

    /* ── STATS (dark background with same grid pattern) ── */
    .stats-banner {
      background: var(--dark); padding: 80px 6%;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 40px; text-align: center; position: relative; overflow: hidden;
    }
    .stats-banner::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .stat { position: relative; z-index: 2; }
    .stat-num { font-family: var(--serif); font-size: 3.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
    .stat-label { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 10px; }

    /* ── WHY US ── */
    .why { background: #fff; }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .why-item {
      display: flex; gap: 20px; align-items: flex-start;
      padding: 32px; border: 1px solid #ebebeb;
      transition: border-color .3s, background .3s;
    }
    .why-item:hover { border-color: var(--gold); background: var(--off-white); }
    .why-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; flex-shrink: 0; }
    .why-item h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
    .why-item p { font-size: .9rem; line-height: 1.75; color: #777; }

    /* ── FOOTER ── */
    footer {
      background: #111; color: rgba(255,255,255,.5);
      padding: 60px 6% 30px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 60px; padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      margin-bottom: 30px;
    }
    .footer-brand img { height: 42px; margin-bottom: 20px; }
    .footer-brand p { font-size: .9rem; line-height: 1.75; max-width: 300px; }

    .footer-heading {
      font-family: var(--serif); font-size: 1rem;
      color: #fff; margin-bottom: 20px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,.45); text-decoration: none;
      font-size: .88rem; transition: color .2s;
    }
    .footer-links a:hover { color: var(--gold); }

    .footer-contact p { font-size: .88rem; line-height: 1.9; }
    .footer-contact span { display: block; }

    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      font-size: .8rem;
    }
    .footer-social { display: flex; gap: 16px; }
    .footer-social a {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5); text-decoration: none;
      font-size: .8rem; transition: .2s;
    }
    .footer-social a:hover { border-color: var(--gold); color: var(--gold); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── MOBILE NAV ── */
    @media (max-width: 900px) {
      .about { grid-template-columns: 1fr; gap: 48px; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    
    @media (max-width: 640px) {
      .nav-links { display: none; flex-direction: column; position: fixed;
        top: 0; right: 0; width: 75vw; max-width: 320px; height: 100vh;
        background: #1a1a1a; padding: 90px 32px 40px;
        gap: 28px; border-left: 1px solid rgba(201,168,76,.2); z-index: 99;
        transition: transform .35s; transform: translateX(100%);
      }
      .nav-links.open { display: flex; transform: translateX(0); }
      .hamburger { display: flex; z-index: 200; }
      .team-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 16px; }
      .btn-outline { display: none; }
    }
    
    
 /* ── ABOUT US CSS ── */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #FAAA55;
      --gold-light: #FAAA55;
      --dark: #1a1a1a;
      --charcoal: #2c2c2c;
      --off-white: #f7f4ef;
      --text: #444;
      --serif: 'Playfair Display', Georgia, serif;
      --sans: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--sans); background: var(--off-white); color: var(--text); overflow-x: hidden; }

    /* ── NAVBAR (identical to homepage) ── */
    nav {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 6%;
      background: rgba(26,26,26,0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(201,168,76,0.2);
      transition: padding .3s;
    }
    nav.scrolled { padding: 12px 6%; }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo img { width: 150px; height: auto; }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      color: #ccc; text-decoration: none; font-size: .85rem;
      letter-spacing: .12em; text-transform: uppercase;
      font-family: var(--sans); font-weight: 500;
      transition: color .2s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--gold); transition: width .3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active { color: var(--gold); }
    .nav-links a.active::after { width: 100%; }
    .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }

    /* ── PAGE HERO (same dark gradient + grid as homepage hero) ── */
    .page-hero {
      height: 60vh; min-height: 420px;
      background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
      display: flex; align-items: center; justify-content: end;
      text-align: center; position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: url('/assets/images/16.jpg') center/cover;
      opacity: .18;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(201,168,76,.07) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(201,168,76,.07) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .page-hero-content {
      position: relative; z-index: 2; max-width: 700px; padding: 0 24px;
      animation: fadeUp .9s ease both;
    }
    .hero-eyebrow {
      display: inline-block; margin-bottom: 20px;
      font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); border: 1px solid rgba(201,168,76,.4);
      padding: 6px 18px; border-radius: 2px;
    }
    .page-hero h1 {
      font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem);
      color: #fff; line-height: 1.1; font-weight: 700; margin-bottom: 16px;
    }
    .page-hero h1 span { color: var(--gold); }
    .page-hero p { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto; line-height: 1.7; }

    /* ── SHARED ── */
    section { padding: 100px 6%; }
    .section-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
    .section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); line-height: 1.15; margin-bottom: 18px; }
    .section-sub { max-width: 540px; font-size: 1rem; line-height: 1.75; color: #666; margin-bottom: 48px; }
    .divider { width: 56px; height: 2px; background: var(--gold); margin-bottom: 32px; }

    .btn {
      display: inline-block; padding: 14px 36px;
      font-family: var(--sans); font-size: .85rem;
      letter-spacing: .12em; text-transform: uppercase;
      font-weight: 500; text-decoration: none; cursor: pointer; transition: .25s;
    }
    .btn-gold { background: var(--gold); color: #1a1a1a; border: 2px solid var(--gold); }
    .btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }
    .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); margin-left: 14px; }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    /* ── STORY (mirrors homepage about section) ── */
    .story {
      background: #fff;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .story-img { position: relative; }
    .story-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Mobile version */
@media (max-width: 768px) {
  .story-img img {
    height: 260px;
  }
}
    .story-img::after {
      content: ''; position: absolute;
      bottom: -20px; right: -20px;
      width: 60%; height: 60%;
      border: 2px solid var(--gold); z-index: -1;
    }
    .story-badge {
      position: absolute; bottom: 36px; left: -28px;
      background: var(--dark); padding: 20px 24px;
      box-shadow: 0 8px 32px rgba(0,0,0,.4);
    }
    .story-badge .num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
    .story-badge .lbl { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 4px; }

    /* ── VALUES ── */
    .values { background: var(--off-white); }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
    .value-card {
      background: #fff; padding: 40px 32px;
      border-bottom: 3px solid transparent;
      box-shadow: 0 2px 16px rgba(0,0,0,.05);
      transition: border-color .3s, transform .3s, box-shadow .3s;
    }
    .value-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
    .value-icon { width: 48px; height: 48px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; background: var(--off-white); }
    .value-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
    .value-title { font-family: var(--serif); font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
    .value-text { font-size: .9rem; line-height: 1.75; color: #777; }

    /* ── STATS (dark background with same grid pattern) ── */
    .stats-banner {
      background: var(--dark); padding: 80px 6%;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 40px; text-align: center; position: relative; overflow: hidden;
    }
    .stats-banner::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .stat { position: relative; z-index: 2; }
    .stat-num { font-family: var(--serif); font-size: 3.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
    .stat-label { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 10px; }

    /* ── TEAM (mirrors homepage team) ── */
    .team { background: var(--charcoal); }
    .team .section-title { color: #fff; }
    .team .section-sub { color: rgba(255,255,255,.5); }
    .team .divider { background: var(--gold); }
    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .team-card { text-align: center; transition: transform .3s; }
    .team-card:hover { transform: translateY(-8px); }
    .team-avatar { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 3px solid var(--gold); display: block; }
    .team-name { font-family: var(--serif); font-size: 1.2rem; color: #fff; margin-bottom: 6px; }
    .team-role { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .team-bio { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 260px; margin: 0 auto; }

    /* ── WHY US ── */
    .why { background: #fff; }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .why-item {
      display: flex; gap: 20px; align-items: flex-start;
      padding: 32px; border: 1px solid #ebebeb;
      transition: border-color .3s, background .3s;
    }
    .why-item:hover { border-color: var(--gold); background: var(--off-white); }
    .why-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; flex-shrink: 0; }
    .why-item h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
    .why-item p { font-size: .9rem; line-height: 1.75; color: #777; }

    /* ── CTA (same as homepage) ── */
    .cta {
      background: linear-gradient(135deg, var(--charcoal), var(--dark));
      text-align: center; position: relative; overflow: hidden;
    }
    .cta::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(201,168,76,.12) 0%, transparent 70%);
    }
    .cta .section-title { color: #fff; position: relative; }
    .cta p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.75; max-width: 520px; margin: 0 auto 40px; position: relative; }

    /* ── FOOTER (identical to homepage) ── */
    footer { background: #111; color: rgba(255,255,255,.5); padding: 60px 6% 30px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 30px; }
    .footer-brand img { height: 42px; margin-bottom: 20px; }
    .footer-brand p { font-size: .9rem; line-height: 1.75; max-width: 300px; }
    .footer-heading { font-family: var(--serif); font-size: 1rem; color: #fff; margin-bottom: 20px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .88rem; transition: color .2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-contact span { display: block; font-size: .88rem; line-height: 2; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; }
    .footer-social { display: flex; gap: 16px; }
    .footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); text-decoration: none; font-size: .8rem; transition: .2s; }
    .footer-social a:hover { border-color: var(--gold); color: var(--gold); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .story { grid-template-columns: 1fr; gap: 56px; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .stats-banner { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 640px) {
      .values-grid, .team-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 16px; }
      .story-badge { left: 0; }
      .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; width: 75vw; max-width: 320px; height: 100vh; background: #1a1a1a; padding: 90px 32px 40px; gap: 28px; border-left: 1px solid rgba(201,168,76,.2); z-index: 99; transition: transform .35s; transform: translateX(100%); }
      .nav-links.open { display: flex; transform: translateX(0); }
      .hamburger { display: flex; z-index: 200; }
    }



 /* ── CONTACT US ── */
 
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #FAAA55;
      --gold-light: #FAAA55;
      --dark: #1a1a1a;
      --charcoal: #2c2c2c;
      --off-white: #f7f4ef;
      --text: #444;
      --serif: 'Playfair Display', Georgia, serif;
      --sans: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--sans); background: var(--off-white); color: var(--text); overflow-x: hidden; }

    /* ── NAVBAR (identical to homepage) ── */
    nav {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 6%;
      background: rgba(26,26,26,0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(201,168,76,0.2);
      transition: padding .3s;
    }
    nav.scrolled { padding: 12px 6%; }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo img { width: 150px; height: auto; }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      color: #ccc; text-decoration: none; font-size: .85rem;
      letter-spacing: .12em; text-transform: uppercase;
      font-family: var(--sans); font-weight: 500;
      transition: color .2s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--gold); transition: width .3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active { color: var(--gold); }
    .nav-links a.active::after { width: 100%; }
    .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }

    /* ── PAGE HERO ── */
    .page-hero {
      height: 60vh; min-height: 420px;
      background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
      display: flex; align-items: center; justify-content: center;
      text-align: center; position: relative; overflow: hidden;
      
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: url('/assets/images/16.jpg') center/cover;
      opacity: .18;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(201,168,76,.07) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(201,168,76,.07) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .page-hero-content {
      position: relative; z-index: 2; max-width: 700px; padding: 80px 24px 0 24px;
      animation: fadeUp .9s ease both;
    }
    .hero-eyebrow {
      display: inline-block; margin-bottom: 20px; 
      font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); border: 1px solid rgba(201,168,76,.4);
      padding: 6px 18px; border-radius: 2px;
    }
    .page-hero h1 {
      font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem);
      color: #fff; line-height: 1.1; font-weight: 700; margin-bottom: 20px;
    }
    .page-hero h1 span { color: var(--gold); }
    .page-hero p { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto; line-height: 1.7; }

    /* ── SHARED ── */
    section { padding: 100px 6%; }
    .section-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
    .section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); line-height: 1.15; margin-bottom: 18px; }
    .section-sub { max-width: 540px; font-size: 1rem; line-height: 1.75; color: #666; margin-bottom: 48px; }
    .divider { width: 56px; height: 2px; background: var(--gold); margin-bottom: 32px; }

    .btn {
      display: inline-block; padding: 14px 36px;
      font-family: var(--sans); font-size: .85rem;
      letter-spacing: .12em; text-transform: uppercase;
      font-weight: 500; text-decoration: none; cursor: pointer; transition: .25s;
      border: none;
    }
    .btn-gold { background: var(--gold); color: #1a1a1a; border: 2px solid var(--gold); }
    .btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }

    /* ── CONTACT LAYOUT ── */
    .contact-main {
      background: #fff;
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 0;
    }

    /* LEFT – info panel (dark bg like team/cta sections) */
    .contact-info {
      background: var(--dark); padding: 80px 56px;
      display: flex; flex-direction: column;
      position: relative; overflow: hidden;
    }
    .contact-info::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .contact-info > * { position: relative; z-index: 2; }
    .contact-info .section-label { color: var(--gold); }
    .contact-info h2 { font-family: var(--serif); font-size: clamp(1.8rem, 2.5vw, 2.4rem); color: #fff; line-height: 1.2; margin-bottom: 16px; }
    .contact-info > p { font-size: .92rem; line-height: 1.8; color: rgba(255,255,255,.5); margin-bottom: 52px; }

    .info-list { display: flex; flex-direction: column; gap: 30px; }
    .info-row { display: flex; gap: 18px; align-items: flex-start; }
    .info-icon-wrap {
      width: 44px; height: 44px; flex-shrink: 0;
      border: 1px solid rgba(201,168,76,.3);
      display: flex; align-items: center; justify-content: center;
    }
    .info-icon-wrap svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
    .info-lbl { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
    .info-val { font-size: .92rem; color: rgba(255,255,255,.75); line-height: 1.6; }
    .info-val a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
    .info-val a:hover { color: var(--gold); }

    .social-row { display: flex; gap: 12px; margin-top: 52px; }
    .social-a {
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.45); text-decoration: none; font-size: .78rem;
      transition: .2s;
    }
    .social-a:hover { border-color: var(--gold); color: var(--gold); }

    /* RIGHT – form panel */
    .contact-form-panel { background: var(--off-white); padding: 80px 56px; }
    .contact-form-panel h2 { font-family: var(--serif); font-size: clamp(1.8rem, 2.5vw, 2.4rem); color: var(--dark); line-height: 1.2; margin-bottom: 10px; }
    .contact-form-panel > p { font-size: .92rem; color: #777; margin-bottom: 40px; line-height: 1.75; }

    .form { display: flex; flex-direction: column; gap: 18px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .field { display: flex; flex-direction: column; gap: 7px; }
    .field label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: #888; font-weight: 500; }
    .field input, .field select, .field textarea {
      padding: 13px 16px; border: 1.5px solid #e0dcd4;
      background: #fff; font-family: var(--sans); font-size: .92rem; color: var(--dark);
      outline: none; transition: border-color .2s;
      border-radius: 0; -webkit-appearance: none;
    }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
    .field textarea { resize: vertical; min-height: 130px; }
    .field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; cursor: pointer;
    }

    .submit-btn {
      background: var(--gold); color: #1a1a1a; border: 2px solid var(--gold);
      padding: 14px 40px; font-family: var(--sans); font-size: .85rem;
      letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
      cursor: pointer; transition: .25s; align-self: flex-start;
      display: flex; align-items: center; gap: 10px; margin-top: 8px;
    }
    .submit-btn:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }
    .submit-btn svg { width: 16px; height: 16px; stroke: #1a1a1a; fill: none; stroke-width: 2.5; transition: transform .2s; }
    .submit-btn:hover svg { transform: translateX(4px); }

    .form-note { font-size: .78rem; color: #aaa; margin-top: 10px; line-height: 1.6; }
    .success-msg { display: none; margin-top: 16px; padding: 14px 18px; background: #f0fdf4; border: 1px solid #86efac; font-size: .88rem; color: #15803d; }
    .success-msg.show { display: block; }

    /* ── MAP / VISIT ── */
    .visit { background: var(--dark); position: relative; overflow: hidden; }
    .visit::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .visit .section-title { color: #fff; }
    .visit .section-sub { color: rgba(255,255,255,.5); }
    .visit .divider { background: var(--gold); }
    .map-box {
      height: 360px; background: var(--charcoal);
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(201,168,76,.2);
      position: relative; overflow: hidden;
      padding: 10px;
    }
    .map-box::before {
      content: ''; position: absolute; inset: 0;
      background: url('assets/images/1523.jpg') center/cover;
      opacity: .1;
    }
    .map-pin { text-align: center; position: relative; z-index: 2; }
    .map-pin svg { width: 48px; height: 48px; fill: var(--gold); margin-bottom: 16px; }
    .map-pin p { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.8; }
    .map-pin strong { color: #fff; display: block; font-family: var(--serif); font-size: 1.1rem; margin-bottom: 8px; }
    .map-link {
      display: inline-block; margin-top: 20px;
      color: var(--gold); font-size: .78rem; letter-spacing: .14em;
      text-transform: uppercase; text-decoration: none; border-bottom: 1px solid rgba(201,168,76,.4);
      padding-bottom: 2px; transition: border-color .2s;
    }
    .map-link:hover { border-color: var(--gold); }

    /* ── FAQ ── */
    .faq { background: #fff; }
    .faq .section-title { color: var(--dark); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
    .faq-item {
      border: 1px solid #e8e4dd; padding: 28px 30px; cursor: pointer;
      transition: border-color .25s, background .25s;
    }
    .faq-item:hover, .faq-item.open { border-color: var(--gold); background: var(--off-white); }
    .faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--serif); font-size: .98rem; color: var(--dark); }
    .faq-toggle {
      width: 26px; height: 26px; flex-shrink: 0;
      border: 1px solid rgba(201,168,76,.4); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.1rem; line-height: 1;
      transition: transform .3s, background .2s, color .2s;
    }
    .faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold); color: #1a1a1a; border-color: var(--gold); }
    .faq-a { font-size: .9rem; line-height: 1.78; color: #777; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding-top .3s; }
    .faq-item.open .faq-a { max-height: 200px; padding-top: 14px; }

    /* ── CTA (same as homepage) ── */
    .cta {
      background: linear-gradient(135deg, var(--charcoal), var(--dark));
      text-align: center; position: relative; overflow: hidden;
    }
    .cta::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(201,168,76,.12) 0%, transparent 70%);
    }
    .cta .section-title { color: #fff; position: relative; }
    .cta p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.75; max-width: 520px; margin: 0 auto 40px; position: relative; }

    /* ── FOOTER ── */
    footer { background: #111; color: rgba(255,255,255,.5); padding: 60px 6% 30px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 30px; }
    .footer-brand img { height: 42px; margin-bottom: 20px; }
    .footer-brand p { font-size: .9rem; line-height: 1.75; max-width: 300px; }
    .footer-heading { font-family: var(--serif); font-size: 1rem; color: #fff; margin-bottom: 20px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .88rem; transition: color .2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-contact span { display: block; font-size: .88rem; line-height: 2; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; }
    .footer-social { display: flex; gap: 16px; }
    .footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); text-decoration: none; font-size: .8rem; transition: .2s; }
    .footer-social a:hover { border-color: var(--gold); color: var(--gold); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .contact-main { grid-template-columns: 1fr; }
      .contact-info { padding: 60px 6%; }
      .contact-form-panel { padding: 60px 6%; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 640px) {
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 16px; }
      .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; width: 75vw; max-width: 320px; height: 100vh; background: #1a1a1a; padding: 90px 32px 40px; gap: 28px; border-left: 1px solid rgba(201,168,76,.2); z-index: 99; transition: transform .35s; transform: translateX(100%); }
      .nav-links.open { display: flex; transform: translateX(0); }
      .hamburger { display: flex; z-index: 200; }
    }
    
    
    #scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #FAAA55; /* Change to your brand color */
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  display: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#scrollTopBtn:hover {
  background-color: #b8933f;
  transform: translateY(-3px);
}



:root {
      --bg: #f6f4ef;
      --surface: #ffffff;
      --surface-2: #f0ede7;
      --border: #e0dbd2;
      --orange: #b86120;
      --orange-dim: #b5622050;
      --orange-glow: #c871220c;
      --orange-light: #c0621a;
      --text-primary: #1e1a16;
      --text-secondary: #5a4e44;
      --text-muted: #9a8e84;
      --accent-line: #c8712260;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background: var(--bg);
      color: var(--text-primary);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      min-height: 100vh;
      overflow-x: hidden;
    }

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

    .wrapper {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
    }

    .header {
      text-align: center;
      margin-bottom: 56px;
    }

    .header-eyebrow {
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 14px;
      font-weight: 500;
    }

    .header h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.15;
    }

    .header-line {
      width: 48px;
      height: 2px;
      background: var(--orange);
      margin: 20px auto 0;
      opacity: 0.7;
    }

    /* Grid */
    .grid {
      display: grid;
      grid-template-columns: 2fr 2fr;
      gap: 28px;
    }

    @media (max-width: 1140px) {
      .grid { grid-template-columns: 2fr; }
    }

    /* Card */
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      transition: border-color 0.3s ease;
    }

    .card:hover {
      border-color: var(--accent-line);
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .card:hover::before { opacity: 1; }

    .card-header {
      padding: 28px 28px 24px;
      border-bottom: 1px solid var(--border);
      background: var(--surface-2);
    }

    .scenario-tag {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 10px;
    }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(18px, 2vw, 23px);
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.25;
    }

    /* Overview specs */
    .specs {
      padding: 22px 28px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 24px;
      border-bottom: 1px solid var(--border);
    }

    .spec-item {}

    .spec-label {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 4px;
      font-weight: 500;
    }

    .spec-value {
      font-size: 15px;
      font-weight: 400;
      color: var(--text-secondary);
    }

    .spec-value.highlight {
      color: var(--orange-light);
      font-weight: 500;
    }

    /* Exit strategies */
    .exits {
      padding: 0 28px 28px;
    }

    .exit-block {
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }

    .exit-block:last-child { border-bottom: none; padding-bottom: 0; }

    .exit-title {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 4px;
    }

    .exit-subtitle {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 14px;
      font-weight: 300;
    }

    .exit-rows {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .exit-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .exit-row-label {
      font-size: 13px;
      color: var(--text-secondary);
    }

    .exit-row-value {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-primary);
    }

    .exit-row-value.fee {
      color: var(--orange-light);
    }

    .exit-row-value.profit {
      color: #3a7d50;
    }

    .note {
      margin-top: 22px;
      padding: 14px 16px;
      background: var(--orange-glow);
      border-left: 2px solid var(--orange);
      border-radius: 2px;
      font-size: 11.5px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .exit-divider-label {
      display: inline-block;
      margin: 20px 0 0;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
      padding-bottom: 10px;
      width: 100%;
    }

    /* Scenario number watermark */
    .watermark {
      position: absolute;
      top: 18px;
      right: 22px;
      font-family: 'Playfair Display', serif;
      font-size: 72px;
      font-weight: 900;
      color: var(--orange-dim);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      opacity: 0.18;
    }

    /* Animation */
    .card {
      animation: fadeUp 0.5s ease both;
    }
    .card:nth-child(1) { animation-delay: 0.1s; }
    .card:nth-child(2) { animation-delay: 0.2s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }