/* ==========================================================================
   NEWLAYOUT — editorial/premium microsite template
   Fonts: Fraunces (display) + Inter (body/UI), loaded via Google Fonts in
   the <head> of index.template.html (see font-face fallback note below).
   ========================================================================== */

:root{
  --bg: #EFEAE1;
  --bg-alt: #E4DCCB;
  --ink: #201D1A;
  --ink-soft: #55504A;
  --ink-faint: #8A8074;
  --brass: #9C7A3C;
  --brass-deep: #7C5F2C;
  --green: #1F3B32;
  --green-deep: #15281F;
  --line: #D8CFBF;
  --line-on-green: rgba(255,255,255,.18);
  --white: #FFFFFF;
  --max: 1160px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 2px;
  --shadow-soft: 0 12px 32px rgba(32,29,26,.08);
}

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

html{ scroll-behavior:smooth; }

body{
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }

.container{ max-width:var(--max); margin:0 auto; padding:0 var(--gap); }

h1,h2,h3,h4{
  font-family:'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight:500;
  line-height:1.08;
  color:var(--ink);
  letter-spacing:-0.01em;
}
.on-green{ color:var(--white); }

h2.section-title{
  font-size:clamp(1.7rem, 3.2vw, 2.5rem);
  max-width:22ch;
}
p{ max-width:62ch; color:var(--ink-soft); }
p a{ color:var(--brass-deep); text-decoration:underline; text-underline-offset:.15em; }
p a:hover{ color:var(--brass); }
.section-kicker{
  font-size:.8rem;
  font-weight:600;
  color:var(--brass-deep);
  margin-bottom:.6rem;
}

.section{ padding:clamp(3.5rem,7vw,6rem) 0; }
.section--alt{ background:var(--bg-alt); }
.section--green{ background:var(--green); }
.section--green p, .section--green .ink-soft{ color:rgba(255,255,255,.72); }

.btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.85rem 1.6rem;
  font-size:.95rem;
  font-weight:600;
  border-radius:var(--radius);
  transition:background .2s ease, color .2s ease, border-color .2s ease,
             transform .15s ease, box-shadow .25s ease;
}
.btn--primary{ background:var(--brass); color:var(--white); }
.btn--primary:hover{ background:var(--brass-deep); transform:translateY(-2px); box-shadow:0 10px 22px rgba(124,95,44,.28); }
.btn--outline{ border:1px solid currentColor; }
.btn--outline:hover{ background:var(--ink); color:var(--white); border-color:var(--ink); transform:translateY(-2px); }
.btn--outline-light{ border:1px solid rgba(255,255,255,.5); color:var(--white); }
.btn--outline-light:hover{ background:var(--white); color:var(--green-deep); transform:translateY(-2px); }
.btn:active{ transform:translateY(0) scale(.97); box-shadow:none; }
@media (prefers-reduced-motion: reduce){ .btn{ transition:background .2s ease, color .2s ease, border-color .2s ease; } .btn:hover, .btn:active{ transform:none; } }

/* ---------------------------------- Header ------------------------------ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem var(--gap);
  background:transparent;
  transition:background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.is-scrolled{
  background:rgba(239,234,225,.92);
  backdrop-filter:blur(8px);
  box-shadow:0 1px 0 var(--line);
  padding-top:.75rem; padding-bottom:.75rem;
}
.site-header .logo{
  font-family:'Fraunces', Georgia, serif;
  font-weight:600;
  font-size:1.35rem;
  letter-spacing:-0.01em;
  color:var(--white);
  transition:color .3s ease;
}
.site-header.is-scrolled .logo{ color:var(--ink); }
.site-header nav{ display:flex; align-items:center; gap:2.1rem; }
.site-header nav a{
  font-size:.92rem; font-weight:500; color:var(--white);
  transition:color .3s ease;
  position:relative;
}
.site-header.is-scrolled nav a{ color:var(--ink); }
.site-header nav a:hover{ color:var(--brass); }
.site-header nav a:not(.nav-cta)::after{
  content:''; position:absolute; left:0; right:100%; bottom:-4px; height:1px;
  background:currentColor; transition:right .25s ease;
}
.site-header nav a:not(.nav-cta):hover::after{ right:0; }
.site-header .nav-cta{
  padding:.6rem 1.25rem; font-size:.85rem;
  background:var(--brass); color:var(--white); border-radius:var(--radius);
}
.nav-toggle{ display:none; width:26px; height:20px; position:relative; }
.nav-toggle span{
  position:absolute; left:0; right:0; height:2px; background:var(--white);
  transition:transform .3s ease, opacity .3s ease, background .3s ease;
}
.site-header.is-scrolled .nav-toggle span{ background:var(--ink); }
.nav-toggle span:nth-child(1){ top:2px; }
.nav-toggle span:nth-child(2){ top:9px; }
.nav-toggle span:nth-child(3){ top:16px; }

/* -------------------------------- Hero ---------------------------------- */
.hero{
  position:relative; height:100vh; min-height:560px;
  display:flex; align-items:flex-end; overflow:hidden;
  background:var(--green-deep);
}
.hero-slide{
  position:absolute; top:0; left:0; right:0; bottom:0;
  background-size:cover; background-position:center;
  opacity:0; transition:opacity 2s ease-in-out;
}
.hero-slide.active{ opacity:1; }
.hero::after{
  content:""; position:absolute; top:0; left:0; right:0; bottom:0;
  background:linear-gradient(180deg, rgba(21,40,31,.15) 0%, rgba(21,40,31,.15) 40%, rgba(21,40,31,.82) 100%);
}
.hero-content{
  position:relative; z-index:2; width:100%;
  padding:0 var(--gap) clamp(3rem,7vw,5.5rem);
  color:var(--white);
  animation:heroRise .9s ease both;
}
@keyframes heroRise{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:translateY(0); }
}
.hero-inner{ max-width:var(--max); margin:0 auto; }
.hero-eyebrow{
  font-size:.9rem; font-weight:500; color:rgba(255,255,255,.75);
  margin-bottom:.9rem;
}
.hero h1{
  color:var(--white);
  font-size:clamp(2.4rem, 6vw, 4.4rem);
  max-width:16ch;
  margin-bottom:1.1rem;
}
.hero-rera{
  font-size:.78rem; color:rgba(255,255,255,.6); margin-top:1.4rem;
}
.hero-ctas{ display:flex; gap:1rem; flex-wrap:wrap; margin-top:1.6rem; }

/* ----------------------------- Facts strip ------------------------------ */
.facts-strip{
  background:var(--white); position:relative; z-index:3;
  margin-top:-1px;
}
.facts-strip .container{
  display:flex; flex-wrap:wrap;
  padding-top:clamp(1.4rem,3vw,2.2rem); padding-bottom:clamp(1.4rem,3vw,2.2rem);
}
.fact{
  flex:1 1 160px; padding:.4rem 1.6rem;
  border-left:1px solid var(--line);
}
.fact:first-child{ border-left:none; padding-left:0; }
.fact-label{ font-size:.78rem; color:var(--ink-faint); margin-bottom:.3rem; }
.fact-value{ font-family:'Fraunces', serif; font-size:1.25rem; font-weight:500; }

/* -------------------------------- Intro ---------------------------------- */
.intro-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(2rem,5vw,4.5rem);
  align-items:center;
}
.intro-text .section-kicker{ margin-bottom:.8rem; }
.intro-text h2{ margin-bottom:1.1rem; font-size:clamp(1.9rem,3.6vw,2.7rem); max-width:14ch; }
.intro-media{ position:relative; }
.intro-media img{ border-radius:var(--radius); box-shadow:var(--shadow-soft); }
.intro-media::before{
  content:""; position:absolute; top:-18px; left:-18px; right:18px; bottom:18px;
  border:1px solid var(--brass); z-index:-1;
}

.pillars{
  margin-top:clamp(2.5rem,5vw,4rem);
  display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.5rem,3vw,2.5rem);
}
.pillar{ padding-top:1.3rem; border-top:1px solid var(--line); }
.pillar i{ font-size:1.3rem; color:var(--brass); margin-bottom:.9rem; display:block; }
.pillar p{ color:var(--ink); font-size:.98rem; max-width:none; }

/* ------------------------------- Gallery --------------------------------- */
.gallery-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:2rem; margin-bottom:2.2rem; flex-wrap:wrap; }
.gallery-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:.9rem;
}
.gallery-grid a{ display:block; aspect-ratio:16/9; overflow:hidden; border-radius:var(--radius); }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; border-radius:var(--radius); transition:transform .6s ease; }
.gallery-grid a:hover img{ transform:scale(1.05); }

/* ------------------------------ Amenities -------------------------------- */
.amenities .section-kicker{ color:rgba(255,255,255,.65); }
.amenities-grid{
  margin-top:2.4rem;
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:var(--line-on-green);
}
.amenity{
  background:var(--green); padding:2rem 1.6rem;
  display:flex; flex-direction:column; gap:.9rem;
}
.amenity img{ width:100%; aspect-ratio:16/9; height:auto; object-fit:cover; border-radius:var(--radius); }
.amenity span{ color:var(--white); font-family:'Fraunces',serif; font-size:1.05rem; }

/* ------------------------------- Layout ---------------------------------- */
.layout-grid{
  display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(2rem,5vw,4.5rem);
  align-items:center;
}
.layout-grid .layout-media img{ box-shadow:var(--shadow-soft); border-radius:var(--radius); }

/* ------------------------------- Pricing --------------------------------- */
.pricing-head{ max-width:44ch; margin-bottom:2.4rem; }
.price-cards{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.4rem; margin-bottom:2.8rem; }
.price-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:2rem;
}
.price-card .unit-type{ font-size:.85rem; color:var(--ink-faint); margin-bottom:.4rem; }
.price-card .unit-size{ font-family:'Fraunces',serif; font-size:1.5rem; margin-bottom:.6rem; }
.price-card .unit-amount{ font-size:1.05rem; color:var(--brass-deep); font-weight:600; }
.enquire-form{
  background:var(--bg-alt); border-radius:var(--radius); padding:clamp(1.8rem,4vw,2.6rem);
  display:grid; gap:1rem;
}
.enquire-form h3{ font-size:1.4rem; margin-bottom:.3rem; }
.form-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.field{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:.85rem 1rem; font-size:.95rem; width:100%;
}
.field:focus{ outline:2px solid var(--brass); outline-offset:1px; }
.consent{ font-size:.8rem; color:var(--ink-faint); display:flex; gap:.5rem; align-items:flex-start; }

/* ------------------------------- Location -------------------------------- */
.location-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,4vw,3.5rem); }
.location-map iframe{ width:100%; height:100%; min-height:420px; border:0; border-radius:var(--radius); }
.poi-groups{ display:grid; grid-template-columns:1fr 1fr; gap:1.8rem 2rem; }
.poi-group h4{ font-size:.95rem; margin-bottom:.7rem; color:var(--brass-deep); }
.poi-row{ display:flex; justify-content:space-between; padding:.5rem 0; border-bottom:1px solid var(--line); font-size:.92rem; }
.poi-row span:last-child{ color:var(--ink-faint); }
.connectivity-list{ margin-top:2rem; display:grid; gap:.6rem; }
.connectivity-list li{ display:flex; gap:.7rem; font-size:.92rem; color:var(--ink-soft); }
.connectivity-list i{ color:var(--brass); margin-top:.2rem; }

/* ------------------------------ Developer -------------------------------- */
.developer-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4rem); align-items:center; }
.developer-quote{ font-family:'Fraunces',serif; font-style:italic; font-size:clamp(1.3rem,2.4vw,1.7rem); color:var(--ink); max-width:20ch; }
.developer-stats{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.6rem; }
.dstat-value{ font-family:'Fraunces',serif; font-size:1.9rem; color:var(--brass-deep); }
.dstat-label{ font-size:.85rem; color:var(--ink-faint); margin-top:.2rem; }
.disclaimer-box{ margin-top:2.5rem; padding-top:1.5rem; border-top:1px solid var(--line); }
.disclaimer-box p{ font-size:.8rem; color:var(--ink-faint); max-width:none; }

/* ---------------------------------- FAQ ------------------------------------ */
.faq-list{ max-width:48rem; margin-top:2.2rem; }
.faq-item{
  border-bottom:1px solid var(--line);
  padding:1.2rem 0;
}
.faq-item summary{
  cursor:pointer;
  font-family:'Fraunces', serif;
  font-weight:500;
  font-size:1.05rem;
  color:var(--ink);
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:'+';
  font-family:'Inter', sans-serif;
  font-size:1.4rem;
  color:var(--brass);
  flex-shrink:0;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{ content:'\2212'; }
.faq-item p{ margin-top:.9rem; color:var(--ink-soft); font-size:.95rem; }

/* --------------------------------- Footer -------------------------------- */
.site-footer{ background:var(--green-deep); color:rgba(255,255,255,.85); padding:clamp(3rem,6vw,4.5rem) 0 1.8rem; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:2.5rem; padding-bottom:2.5rem; border-bottom:1px solid var(--line-on-green); }
.footer-brand .logo-text{
  display:block;
  font-family:'Fraunces', Georgia, serif;
  font-weight:600;
  font-size:1.25rem;
  color:rgba(255,255,255,.85);
  margin-bottom:1rem;
}
.footer-brand p{ color:rgba(255,255,255,.6); font-size:.88rem; }
.footer-col h4{ color:var(--white); font-family:'Inter',sans-serif; font-weight:600; font-size:.85rem; margin-bottom:.9rem; }
.footer-col p, .footer-col a{ font-size:.88rem; color:rgba(255,255,255,.72); display:block; margin-bottom:.5rem; }
.social-row{ display:flex; gap:.9rem; margin-top:1rem; }
.social-row a{ width:34px; height:34px; border:1px solid var(--line-on-green); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.footer-bottom{ padding-top:1.6rem; display:flex; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; }
.footer-bottom p{ font-size:.76rem; color:rgba(255,255,255,.5); max-width:none; }

/* ------------------------------ Floating CTA ------------------------------ */
.float-cta{
  position:fixed; right:1.4rem; bottom:1.4rem; z-index:90;
  box-shadow:0 10px 28px rgba(32,29,26,.25);
}

/* --------------------------------- Modal ---------------------------------- */
.modal-overlay{
  position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(21,40,31,.55);
  display:flex; align-items:center; justify-content:center; padding:1.2rem;
  z-index:200; opacity:0; pointer-events:none; transition:opacity .25s ease;
}
.modal-overlay.is-open{ opacity:1; pointer-events:auto; }
.modal{
  background:var(--bg); max-width:460px; width:100%; border-radius:var(--radius);
  padding:clamp(1.8rem,4vw,2.6rem); position:relative;
  transform:translateY(12px); transition:transform .25s ease;
}
.modal-overlay.is-open .modal{ transform:translateY(0); }
.modal-close{ position:absolute; top:1.1rem; right:1.1rem; font-size:1.2rem; color:var(--ink-faint); }
.modal h3{ font-size:1.5rem; margin-bottom:.4rem; }
.modal p{ font-size:.9rem; margin-bottom:1.4rem; }
.modal-form{ display:grid; gap:.9rem; }

/* ------------------------------ Card lift on hover ------------------------- */
.price-card, .amenity{ transition:transform .3s ease, box-shadow .3s ease; }
.price-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-soft); }
.amenity:hover{ transform:translateY(-4px); }

/* --------------------------------- Utility --------------------------------- */
.sr-only{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
:focus-visible{ outline:2px solid var(--brass); outline-offset:2px; }

/* ------------------------------ Scroll reveal ------------------------------
   Applied only via JS (script.js adds .reveal, then .is-visible on scroll
   into view) -- if JS doesn't run, nothing here ever applies and every
   image/card is visible by default, same as always. */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* --------------------------------- Responsive ------------------------------ */
@media (max-width:960px){
  .intro-grid, .layout-grid, .location-grid, .developer-grid{ grid-template-columns:1fr; }
  .pillars{ grid-template-columns:1fr; }
  .amenities-grid{ grid-template-columns:repeat(2,1fr); }
  .price-cards{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .poi-groups{ grid-template-columns:1fr; }
}
@media (max-width:720px){
  .site-header nav{
    position:fixed; top:0; bottom:0; right:0; width:min(78vw,320px);
    background:var(--bg); flex-direction:column; align-items:flex-start;
    padding:5.5rem 1.8rem 2rem; gap:1.4rem;
    transform:translateX(100%); transition:transform .35s ease;
  }
  .site-header nav.is-open{ transform:translateX(0); }
  .site-header nav a{ color:var(--ink) !important; font-size:1.05rem; }
  .nav-toggle{ display:block; z-index:101; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .developer-stats{ grid-template-columns:1fr 1fr; }
  .hero{ height:70vh; min-height:420px; }
}


/* ==========================================================================
   ADDITIONS — append to the end of template/css/style.css
   Uses only existing palette variables, so all 16 colour themes style the
   calculator correctly with no per-theme work.
   ========================================================================== */

/* ------------------------------ EMI calculator ------------------------- */
.emi-intro{ max-width:52ch; margin-bottom:2.2rem; }
.emi-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:2.5rem; align-items:start;
}
.emi-field{ margin-bottom:1.5rem; }
.emi-field label{
  display:flex; justify-content:space-between; align-items:baseline; gap:1rem;
  font-size:.82rem; text-transform:uppercase; letter-spacing:.06em;
  color:var(--ink-faint); margin-bottom:.6rem;
}
.emi-val{
  font-family:'Fraunces', Georgia, serif; font-size:1.02rem;
  text-transform:none; letter-spacing:0; color:var(--brass-deep); font-weight:600;
}
.emi-field input[type=range]{
  width:100%; -webkit-appearance:none; appearance:none;
  height:4px; border-radius:2px; background:var(--line); outline:none;
}
.emi-field input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none; appearance:none; width:22px; height:22px;
  border-radius:50%; background:var(--brass); cursor:pointer;
  border:3px solid var(--bg); box-shadow:0 1px 5px rgba(0,0,0,.22);
}
.emi-field input[type=range]::-moz-range-thumb{
  width:22px; height:22px; border-radius:50%; background:var(--brass);
  cursor:pointer; border:3px solid var(--bg); box-shadow:0 1px 5px rgba(0,0,0,.22);
}
.emi-field select.field{ width:100%; }

.emi-result{
  background:var(--green); color:#fff; border-radius:var(--radius);
  padding:2rem 1.8rem; position:sticky; top:96px;
}
.emi-emi-label{
  font-size:.78rem; text-transform:uppercase; letter-spacing:.09em;
  color:rgba(255,255,255,.65);
}
.emi-emi{
  font-family:'Fraunces', Georgia, serif; font-size:2.6rem; line-height:1.1;
  margin:.35rem 0 1.4rem; color:#fff;
}
.emi-breakdown{ margin:0 0 1.6rem; padding:0; }
.emi-breakdown > div{
  display:flex; justify-content:space-between; gap:1rem;
  padding:.62rem 0; border-top:1px solid var(--line-on-green);
}
.emi-breakdown dt{ color:rgba(255,255,255,.7); font-size:.9rem; }
.emi-breakdown dd{ margin:0; color:#fff; font-weight:600; font-size:.95rem; }
.emi-result .btn{ width:100%; justify-content:center; }
.emi-disclaimer{
  margin:1rem 0 0; font-size:.72rem; line-height:1.55;
  color:rgba(255,255,255,.55) !important;
}

@media (max-width:860px){
  .emi-grid{ grid-template-columns:1fr; gap:1.8rem; }
  .emi-result{ position:static; }
  .emi-emi{ font-size:2.2rem; }
}

/* --------------------- Mobile nav: tap-target hardening ----------------
   Reported symptom: tapping the hamburger on a real phone did nothing,
   while the same markup worked when a desktop browser was resized.
   Three separate causes are addressed here rather than guessing at one:

   1. TAP TARGET SIZE. The button was sized to its three 2px bars, giving
      a target well under the ~44px minimum reliably hittable with a
      thumb. A near-miss produces exactly the reported symptom: nothing
      happens, with no visible error anywhere.
   2. STACKING. The fixed floating CTA and the hero overlay both sit near
      the header; an explicit z-index here removes any dependence on
      source order for which element receives the tap.
   3. TOUCH DELAY / DOUBLE-FIRE. touch-action:manipulation drops the
      ~300ms double-tap-zoom wait, so a single tap registers immediately
      instead of feeling unresponsive and inviting a second tap that
      toggles the menu straight back shut.                                */
.nav-toggle{
  min-width:48px; min-height:48px;
  display:none;                 /* the mobile media query turns this on */
  align-items:center; justify-content:center;
  flex-direction:column; gap:5px;
  background:transparent; border:0; padding:10px;
  position:relative; z-index:120;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
  cursor:pointer;
}
.nav-toggle span{
  display:block; width:24px; height:2px; background:var(--white);
  transition:background .3s ease, transform .3s ease, opacity .3s ease;
  pointer-events:none;          /* taps always land on the button itself */
}
.site-header.is-scrolled .nav-toggle span{ background:var(--ink); }

/* Open state: bars morph to an X, so the control visibly confirms the tap
   registered even before the panel finishes sliding in. */
.nav-toggle.is-active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; }
.nav-toggle.is-active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:720px){
  .nav-toggle{ display:flex; }
  .site-header nav{ z-index:110; }
}
