/* RAHA website design system — extracted from raha-redesign.html */
:root{
    --ivory:#FAF7F1;
    --ivory-deep:#F2ECE1;
    --teal:#1E3733;
    --teal-soft:#2C4B45;
    --sage:#7E9E8E;
    --sage-light:#B8CCBE;
    --brass:#C6994F;
    --brass-light:#E7CE9A;
    --charcoal:#242320;
    --white:#FFFFFF;
    --radius-lg: 28px;
    --radius-md: 18px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}

  body{
    background:var(--ivory);
    color:var(--charcoal);
    font-family:'Manrope', sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  h1,h2,h3{
    font-family:'Fraunces', serif;
    font-weight:500;
    letter-spacing:-0.01em;
    color:var(--teal);
  }
  .serif{
    font-family:'Fraunces', serif;
    font-weight:500;
    letter-spacing:-0.01em;
  }

  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  img{max-width:100%;display:block;}

  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }

  /* reveal-on-scroll */
  .reveal{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .8s ease, transform .8s ease;
  }
  .reveal.in{opacity:1;transform:translateY(0);}

  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1;transform:none;transition:none;}
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
  }

  /* ---------- Header ---------- */
  header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(250,247,241,0.82);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(30,55,51,0.08);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 32px;
    max-width:1180px;
    margin:0 auto;
  }
  .logo{
    font-family:'Fraunces', serif;
    font-size:23px;
    font-weight:600;
    color:var(--teal);
    display:flex;
    align-items:center;
    gap:10px;
    letter-spacing:0.01em;
  }
  .logo .dot{
    width:9px;height:9px;border-radius:50%;
    background:radial-gradient(circle at 32% 28%, #fff 0%, var(--brass) 42%, #a87d33 100%);
    box-shadow:0 1px 3px rgba(0,0,0,0.25);
  }
  .nav-links{
    display:flex;
    align-items:center;
    gap:38px;
    font-size:14.5px;
    font-weight:500;
    color:var(--teal-soft);
  }
  .nav-links a{
    position:relative;
    padding:4px 0;
  }
  .nav-links a::after{
    content:'';
    position:absolute;
    left:0;bottom:-2px;
    width:0%;height:1.5px;
    background:var(--brass);
    transition:width .3s ease;
  }
  .nav-links a:hover::after{width:100%;}
  .nav-cta{
    background:var(--teal);
    color:var(--ivory) !important;
    padding:11px 22px;
    border-radius:100px;
    font-weight:600;
    font-size:14px;
    box-shadow:0 6px 16px rgba(30,55,51,0.22);
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .nav-cta:hover{transform:translateY(-2px);box-shadow:0 10px 20px rgba(30,55,51,0.28);}
  .burger{display:none;}

  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    padding:88px 32px 60px;
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    align-items:center;
    gap:40px;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--brass);
    background:rgba(198,153,79,0.1);
    padding:8px 16px 8px 12px;
    border-radius:100px;
    margin-bottom:26px;
  }
  .eyebrow::before{
    content:'';
    width:6px;height:6px;
    border-radius:50%;
    background:var(--brass);
  }
  .hero h1{
    font-size:clamp(38px, 4.6vw, 60px);
    line-height:1.06;
    font-weight:500;
    max-width:560px;
  }
  .hero h1 em{
    font-style:italic;
    font-weight:400;
    color:var(--sage);
  }
  .hero p.sub{
    margin-top:22px;
    font-size:17.5px;
    line-height:1.65;
    color:#4B5350;
    max-width:460px;
  }
  .hero-ctas{
    display:flex;
    align-items:center;
    gap:22px;
    margin-top:36px;
  }
  .btn-primary{
    background:var(--teal);
    color:var(--ivory);
    padding:16px 30px;
    border-radius:100px;
    font-weight:600;
    font-size:15px;
    box-shadow:0 10px 24px rgba(30,55,51,0.25);
    transition:transform .25s ease, box-shadow .25s ease;
    display:inline-block;
  }
  .btn-primary:hover{transform:translateY(-3px);box-shadow:0 16px 30px rgba(30,55,51,0.3);}
  .btn-ghost{
    font-weight:600;
    font-size:15px;
    color:var(--teal);
    display:inline-flex;
    align-items:center;
    gap:8px;
    border-bottom:1.5px solid var(--brass);
    padding-bottom:3px;
  }
  .btn-ghost svg{transition:transform .25s ease;}
  .btn-ghost:hover svg{transform:translateX(4px);}

  .trust-row{
    margin-top:56px;
    display:flex;
    gap:38px;
    color:#6B7370;
    font-size:13.5px;
    font-weight:600;
  }
  .trust-row span{color:var(--teal);font-family:'Fraunces',serif;font-size:22px;font-weight:600;display:block;margin-bottom:2px;}

  /* ---------- 3D bubble cluster (signature element) ---------- */
  .bubble-stage{
    position:relative;
    height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .bubble{
    position:absolute;
    border-radius:50%;
    background:
      radial-gradient(circle at 30% 26%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.15) 20%, transparent 45%),
      radial-gradient(circle at 68% 74%, rgba(30,55,51,0.12) 0%, transparent 55%),
      linear-gradient(160deg, var(--b1, #B8CCBE), var(--b2, #7E9E8E));
    box-shadow:
      inset -14px -18px 30px rgba(30,55,51,0.18),
      inset 10px 12px 22px rgba(255,255,255,0.55),
      0 30px 50px -18px rgba(30,55,51,0.35);
    animation:float 7s ease-in-out infinite;
  }
  .bubble.b1{ width:300px;height:300px; --b1:#CFE0D3; --b2:#7E9E8E; top:38px; left:70px; animation-delay:0s;}
  .bubble.b2{ width:150px;height:150px; --b1:#F3E4C3; --b2:#C6994F; top:10px; right:40px; animation-delay:1.1s;}
  .bubble.b3{ width:120px;height:120px; --b1:#EFEAE0; --b2:#B8CCBE; bottom:60px; left:8px; animation-delay:2.2s;}
  .bubble.b4{ width:190px;height:190px; --b1:#DCE8DF; --b2:#5F8272; bottom:0px; right:70px; animation-delay:0.6s;}
  .bubble.b5{ width:80px;height:80px; --b1:#F6ECD2; --b2:#D8B26E; top:190px; left:230px; animation-delay:1.7s;}

  @keyframes float{
    0%,100%{ transform:translateY(0) translateX(0); }
    50%{ transform:translateY(-18px) translateX(6px); }
  }

  .glass-card{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(255,255,255,0.55);
    backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.6);
    border-radius:var(--radius-md);
    padding:16px 22px;
    box-shadow:0 20px 40px -12px rgba(30,55,51,0.25);
    display:flex;
    align-items:center;
    gap:12px;
    font-size:13.5px;
    font-weight:600;
    color:var(--teal);
  }
  .glass-card .stars{color:var(--brass);letter-spacing:2px;font-size:14px;}

  /* ---------- Section headers ---------- */
  .section{padding:100px 32px;}
  .section-inner{max-width:1180px;margin:0 auto;}
  .section-head{
    max-width:600px;
    margin-bottom:56px;
  }
  .section-head .eyebrow{margin-bottom:18px;}
  .section-head h2{
    font-size:clamp(30px, 3.4vw, 42px);
    line-height:1.15;
  }
  .section-head p{
    margin-top:16px;
    font-size:16.5px;
    color:#5B625E;
    line-height:1.6;
  }

  /* ---------- Services ---------- */
  .services{background:var(--ivory-deep);}
  .service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
  }
  .service-card{
    background:var(--white);
    border-radius:var(--radius-lg);
    padding:34px 26px;
    box-shadow:0 2px 0 rgba(30,55,51,0.04);
    border:1px solid rgba(30,55,51,0.06);
    transition:transform .35s ease, box-shadow .35s ease;
    position:relative;
    overflow:hidden;
  }
  .service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 26px 40px -20px rgba(30,55,51,0.28);
  }
  .service-icon{
    width:56px;height:56px;
    border-radius:16px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:22px;
    background:linear-gradient(150deg, var(--sage-light), var(--sage));
    box-shadow:inset -4px -6px 10px rgba(30,55,51,0.2), inset 3px 4px 8px rgba(255,255,255,0.5);
  }
  .service-card:nth-child(2) .service-icon{background:linear-gradient(150deg, var(--brass-light), var(--brass));}
  .service-card:nth-child(4) .service-icon{background:linear-gradient(150deg, var(--brass-light), var(--brass));}
  .service-icon svg{width:26px;height:26px;stroke:var(--teal);}
  .service-card h3{font-size:19px;font-weight:600;margin-bottom:10px;}
  .service-card p{font-size:14.5px;color:#666f6a;line-height:1.55;margin-bottom:18px;}
  .service-price{
    font-size:13px;
    font-weight:700;
    color:var(--teal);
    display:flex;
    align-items:center;
    gap:6px;
  }
  .service-price small{color:#8a9089;font-weight:600;}

  /* ---------- Why choose ---------- */
  .why{display:grid;grid-template-columns:0.85fr 1.15fr;gap:70px;align-items:center;}
  .why-visual{
    position:relative;
    height:420px;
    border-radius:var(--radius-lg);
    background:linear-gradient(155deg, var(--teal) 0%, var(--teal-soft) 60%, #375a53 100%);
    overflow:hidden;
    box-shadow:0 30px 60px -24px rgba(30,55,51,0.45);
  }
  .why-visual::before{
    content:'';
    position:absolute;
    width:260px;height:260px;
    border-radius:50%;
    background:radial-gradient(circle at 35% 30%, rgba(255,255,255,0.5), rgba(198,153,79,0.35) 40%, transparent 70%);
    top:-60px;right:-60px;
    filter:blur(2px);
  }
  .why-visual::after{
    content:'';
    position:absolute;
    width:180px;height:180px;
    border-radius:50%;
    background:radial-gradient(circle at 40% 35%, rgba(255,255,255,0.4), rgba(126,158,142,0.5) 45%, transparent 75%);
    bottom:-40px;left:-30px;
  }
  .why-visual .quote{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:48px;
    color:var(--ivory);
  }
  .why-visual .quote .serif{
    font-size:26px;
    line-height:1.4;
    font-style:italic;
    font-weight:400;
    color:var(--ivory) !important;
  }
  .why-visual .quote .who{
    margin-top:22px;
    font-size:13.5px;
    font-weight:600;
    color:var(--brass-light);
    letter-spacing:0.03em;
  }

  .why-list{display:flex;flex-direction:column;gap:34px;}
  .why-item{display:flex;gap:22px;}
  .why-num{
    font-family:'Fraunces',serif;
    font-size:15px;
    font-weight:600;
    color:var(--brass);
    width:38px;height:38px;
    border:1.5px solid var(--brass-light);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .why-item h3{font-size:19px;margin-bottom:8px;}
  .why-item p{font-size:15px;color:#5B625E;line-height:1.6;max-width:440px;}

  /* ---------- Areas ---------- */
  .areas{background:var(--teal);color:var(--ivory);}
  .areas .section-head h2, .areas .section-head p{color:var(--ivory);}
  .areas .section-head p{color:#B7C7C1;}
  .areas .eyebrow{background:rgba(255,255,255,0.08);}
  .area-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:rgba(255,255,255,0.1);
    border-radius:var(--radius-lg);
    overflow:hidden;
  }
  .area-cell{
    background:var(--teal-soft);
    padding:26px 22px;
    transition:background .3s ease;
  }
  .area-cell:hover{background:#375a53;}
  .area-cell .name{font-family:'Fraunces',serif;font-size:17px;color:var(--ivory);}
  .area-cell .tag{font-size:12px;color:var(--sage-light);margin-top:4px;}

  /* ---------- CTA band ---------- */
  .cta-band{
    background:var(--ivory-deep);
  }
  .cta-inner{
    background:linear-gradient(120deg, var(--sage) 0%, var(--teal) 100%);
    border-radius:32px;
    padding:64px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    position:relative;
    overflow:hidden;
    box-shadow:0 30px 60px -20px rgba(30,55,51,0.4);
  }
  .cta-inner::before{
    content:'';
    position:absolute;
    width:220px;height:220px;
    border-radius:50%;
    background:radial-gradient(circle at 35% 30%, rgba(255,255,255,0.55), rgba(198,153,79,0.3) 45%, transparent 75%);
    top:-80px;right:120px;
  }
  .cta-inner h2{color:var(--ivory);font-size:clamp(26px,3vw,34px);max-width:440px;line-height:1.2;}
  .cta-inner p{color:#E4EDE8;margin-top:14px;font-size:15.5px;max-width:420px;}
  .cta-buttons{display:flex;gap:16px;flex-shrink:0;position:relative;z-index:2;}
  .btn-white{
    background:var(--ivory);
    color:var(--teal);
    padding:16px 28px;
    border-radius:100px;
    font-weight:700;
    font-size:14.5px;
    box-shadow:0 12px 24px rgba(0,0,0,0.18);
    transition:transform .25s ease;
  }
  .btn-white:hover{transform:translateY(-3px);}
  .btn-outline{
    border:1.5px solid rgba(255,255,255,0.5);
    color:var(--ivory);
    padding:16px 26px;
    border-radius:100px;
    font-weight:600;
    font-size:14.5px;
    transition:background .25s ease;
  }
  .btn-outline:hover{background:rgba(255,255,255,0.12);}

  /* ---------- Footer ---------- */
  footer{
    padding:70px 32px 34px;
    background:var(--ivory);
  }
  .footer-top{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:50px;
    border-bottom:1px solid rgba(30,55,51,0.1);
  }
  .footer-brand .logo{margin-bottom:16px;}
  .footer-brand p{font-size:14px;color:#6B7370;max-width:260px;line-height:1.6;}
  .footer-col h4{font-size:13px;text-transform:uppercase;letter-spacing:0.08em;color:var(--brass);margin-bottom:18px;font-weight:700;}
  .footer-col a{display:block;font-size:14.5px;color:#4B5350;margin-bottom:12px;transition:color .2s ease;}
  .footer-col a:hover{color:var(--teal);}
  .footer-bottom{
    padding-top:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    color:#8a9089;
  }
  .footer-socials{display:flex;gap:16px;}
  .footer-socials a{width:34px;height:34px;border-radius:50%;background:var(--ivory-deep);display:flex;align-items:center;justify-content:center;color:var(--teal);}

  /* ---------- Responsive ---------- */
  @media (max-width:980px){
    .hero{grid-template-columns:1fr;padding-top:56px;}
    .bubble-stage{height:360px;order:-1;}
    .service-grid{grid-template-columns:repeat(2,1fr);}
    .why{grid-template-columns:1fr;}
    .area-grid{grid-template-columns:repeat(2,1fr);}
    .footer-top{grid-template-columns:1fr 1fr;}
    .cta-inner{flex-direction:column;text-align:center;padding:48px 32px;}
    .cta-inner h2{max-width:100%;}
  }
  @media (max-width:640px){
    .nav-links{display:none;}
    .service-grid{grid-template-columns:1fr;}
    .area-grid{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr;}
    .trust-row{flex-wrap:wrap;gap:24px;}
  }

/* ---------- Site chrome extensions (auth, lang, mobile, inner pages) ---------- */
.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.nav-actions .rw-lang-btn,
.nav-actions .lang-btn{
  padding:8px 12px;
  border:1px solid rgba(30,55,51,0.12);
  border-radius:100px;
  background:var(--white);
  font-size:12.5px;
  font-weight:700;
  color:var(--teal-soft);
}
.nav-actions .btn-outline-sm{
  border:1.5px solid rgba(30,55,51,0.14);
  color:var(--teal);
  padding:10px 16px;
  border-radius:100px;
  font-weight:600;
  font-size:13.5px;
}
.burger{
  display:none;
  background:none;
  border:none;
  padding:8px;
  cursor:pointer;
  color:var(--teal);
}
.mobile-drawer{
  display:none;
  position:fixed;
  inset:0;
  z-index:80;
  background:rgba(30,55,51,0.35);
}
.mobile-drawer.is-open{display:block;}
.mobile-drawer__panel{
  position:absolute;
  top:0;
  inset-inline-end:0;
  width:min(320px, 88vw);
  height:100%;
  background:var(--ivory);
  padding:28px 24px;
  display:flex;
  flex-direction:column;
  gap:18px;
  box-shadow:-12px 0 40px rgba(30,55,51,0.18);
}
.mobile-drawer__panel a{
  font-size:16px;
  font-weight:600;
  color:var(--teal);
  padding:10px 0;
  border-bottom:1px solid rgba(30,55,51,0.08);
}
html[dir="rtl"] .mobile-drawer__panel{
  inset-inline-end:auto;
  inset-inline-start:0;
  box-shadow:12px 0 40px rgba(30,55,51,0.18);
}

/* service cards with images */
.service-card{display:block;color:inherit;}
.service-card .service-icon img{
  width:28px;height:28px;object-fit:contain;border-radius:6px;
}
.service-card:nth-child(3n+2) .service-icon{background:linear-gradient(150deg, var(--brass-light), var(--brass));}
.service-card:nth-child(3n) .service-icon{background:linear-gradient(150deg, #CFE0D3, var(--sage));}

/* Inner-page page title band */
.page-hero{
  padding:56px 32px 28px;
  max-width:1180px;
  margin:0 auto;
}
.page-hero h1{
  font-size:clamp(28px, 3.4vw, 40px);
  line-height:1.15;
  max-width:640px;
}
.page-hero p{
  margin-top:12px;
  font-size:16px;
  color:#5B625E;
  max-width:520px;
  line-height:1.6;
}

/* Bottom mobile tab bar */
.rw-mobile-nav{
  background:rgba(250,247,241,0.92) !important;
  border-top:1px solid rgba(30,55,51,0.1) !important;
  backdrop-filter:blur(14px);
}
.rw-mobile-nav a{color:#6B7370 !important;}
.rw-mobile-nav a.is-active{color:var(--teal) !important;}

@media (max-width:640px){
  .burger{display:inline-flex;}
  .nav-cta, .nav-actions .btn-outline-sm{display:none;}
}

.service-grid{grid-template-columns:repeat(auto-fill,minmax(240px,1fr));}
a.area-cell{display:block;color:inherit;text-decoration:none;}
main#main{flex:1 0 auto;}
html[dir="rtl"] .btn-ghost svg{transform:scaleX(-1);}
html[dir="rtl"] .btn-ghost:hover svg{transform:scaleX(-1) translateX(4px);}

/* ---------- Brand logo + services dropdown ---------- */
.logo-img{
  width:36px;height:36px;object-fit:contain;border-radius:10px;
  background:rgba(255,255,255,0.65);
  box-shadow:0 2px 8px rgba(30,55,51,0.1);
}
.logo-text{line-height:1;}
.nav-dropdown{position:relative;}
.nav-dropdown__menu{
  position:absolute;
  top:calc(100% + 14px);
  inset-inline-start:0;
  min-width:220px;
  background:var(--white);
  border:1px solid rgba(30,55,51,0.08);
  border-radius:18px;
  padding:10px;
  box-shadow:0 24px 40px -18px rgba(30,55,51,0.28);
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:opacity .2s ease, transform .2s ease;
  z-index:60;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu{
  opacity:1;pointer-events:auto;transform:translateY(0);
}
.nav-dropdown__menu a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  color:var(--teal-soft);
}
.nav-dropdown__menu a:hover{background:var(--ivory-deep);color:var(--teal);}
.nav-dropdown__menu a::after{display:none !important;}
.nav-dropdown__cta{
  margin-top:6px !important;
  background:var(--teal) !important;
  color:var(--ivory) !important;
  text-align:center;
}
.mobile-drawer__label{
  margin:10px 0 0;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--brass);
}
.mobile-drawer__sub{
  padding-inline-start:12px !important;
  font-size:15px !important;
  font-weight:500 !important;
  color:var(--teal-soft) !important;
  border-bottom-color:rgba(30,55,51,0.05) !important;
}

.service-card__media{
  width:100%;
  height:140px;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:18px;
  background:var(--ivory-deep);
}
.service-card__media img{
  width:100%;height:100%;object-fit:cover;
}
.service-card .service-icon{margin-bottom:18px;}

/* ---------- Social links (from Branding admin) ---------- */
.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.social-links__item{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px 10px 10px;
  border-radius:100px;
  background:var(--white);
  border:1px solid rgba(30,55,51,0.1);
  color:var(--teal) !important;
  font-weight:600;
  font-size:14px;
  box-shadow:0 6px 16px rgba(30,55,51,0.06);
  transition:transform .2s ease, box-shadow .2s ease;
}
.social-links__item:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 22px rgba(30,55,51,0.12);
}
.social-links__item img{
  width:28px;height:28px;object-fit:cover;border-radius:50%;
  background:var(--ivory-deep);
}
.social-links__fallback{
  width:28px;height:28px;border-radius:50%;
  background:var(--teal);color:var(--ivory);
  display:inline-flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:700;
}
.social-links--compact .social-links__item{
  padding:8px;
  border-radius:50%;
}
.social-links--compact .social-links__name{display:none;}
.footer-bottom__actions{
  display:flex;flex-wrap:wrap;gap:10px;align-items:center;
}
.footer-store{
  display:inline-flex;align-items:center;
  padding:8px 14px;border-radius:100px;
  background:var(--teal);color:var(--ivory) !important;
  font-size:12.5px;font-weight:700;
}


/* ---------- Header fix: one row, no wrap ---------- */
.site-header header, header.site-header, header{
  position:sticky;top:0;z-index:50;
}
.nav{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 32px;
  max-width:1180px;
  margin:0 auto;
}
.nav-links{
  flex-wrap:nowrap !important;
  white-space:nowrap;
}
.nav-auth{display:inline-flex;gap:10px;align-items:center;}
.nav-dropdown__menu{display:none !important;} /* removed mega menu */

@media (max-width:900px){
  .nav-links{display:none !important;}
  .nav-actions .btn-outline-sm,
  .nav-actions .nav-cta{display:none !important;}
  .burger{display:inline-flex !important; align-items:center; justify-content:center;}
}
@media (min-width:901px){
  .burger{display:none !important;}
  .mobile-drawer{display:none !important;}
}

.hero-brand{
  font-family:'Fraunces', serif;
  font-size:clamp(28px, 3.2vw, 40px);
  font-weight:600;
  color:var(--teal);
  margin:0 0 10px;
  letter-spacing:-0.02em;
  line-height:1.1;
}
.hero-brand span{
  font-size:0.55em;
  font-weight:500;
  color:var(--brass);
  letter-spacing:0.04em;
}
.hero h1{
  font-size:clamp(26px, 3.2vw, 40px) !important;
  max-width:560px;
}
