:root {
  --ink: #13243a;
  --navy: #0b2038;
  --pine: #174d3b;
  --leaf: #2b8058;
  --gold: #e9b943;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --muted: #68727d;
  --line: rgba(19, 36, 58, .13);
  --shadow: 0 24px 60px rgba(11, 32, 56, .12);
  font-family: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow { color: var(--leaf); font: 700 .76rem/1.2 Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }

.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,253,248,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand-logo { width: auto; height: 54px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; gap: 24px; font: 700 .74rem Arial, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.nav-links a:hover { color: var(--leaf); }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border: 0; border-radius: 3px; background: var(--pine); color: #fff; font: 700 .76rem Arial, sans-serif; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.nav-cta:hover, .button:hover { background: var(--navy); }

.hero { min-height: 680px; padding: 86px 0 90px; display: grid; align-items: center; background: radial-gradient(circle at 85% 20%, rgba(233,185,67,.25), transparent 26%), linear-gradient(120deg, #f7f2e8 0%, #ecf1e9 55%, #dfeade 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
h1, h2, h3 { margin: 0; line-height: 1.04; }
h1 { max-width: 680px; font-size: clamp(3.4rem, 7vw, 6.5rem); font-weight: 500; letter-spacing: -.04em; }
.hero-copy p { max-width: 520px; margin: 25px 0 32px; color: #4e5e68; font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.button-outline:hover { color: #fff; }
.hero-art { position: relative; min-height: 440px; }
.hero-art::before { content: ''; position: absolute; width: 370px; height: 370px; right: 2%; top: 10%; border: 1px solid rgba(23,77,59,.27); border-radius: 50%; box-shadow: 0 0 0 30px rgba(233,185,67,.08), 0 0 0 75px rgba(23,77,59,.05); }
.hero-art::after { content: 'AARADHYA'; position: absolute; right: 9%; top: 22%; color: var(--pine); font: 700 1rem Arial, sans-serif; letter-spacing: .25em; transform: rotate(90deg); }
.house { position: absolute; bottom: 0; left: 8%; width: 78%; height: 330px; background: #fffdf8; border: 1px solid rgba(19,36,58,.15); box-shadow: var(--shadow); clip-path: polygon(0 30%, 19% 30%, 19% 0, 81% 0, 81% 16%, 100% 16%, 100% 100%, 0 100%); }
.house::before { content: ''; position: absolute; left: 13%; right: 13%; bottom: 0; height: 56%; background: linear-gradient(90deg, #c5d6cd 0 9%, transparent 9% 17%, #c5d6cd 17% 26%, transparent 26% 74%, #c5d6cd 74% 83%, transparent 83% 91%, #c5d6cd 91%); opacity: .75; }
.house::after { content: ''; position: absolute; left: 39%; bottom: 0; width: 21%; height: 45%; background: var(--pine); border: 14px solid #f0f0e9; border-bottom: 0; }
.orbit-label { position: absolute; left: 0; bottom: 25px; padding: 10px 14px; color: #fff; background: var(--pine); font: 700 .72rem Arial, sans-serif; letter-spacing: .1em; text-transform: uppercase; }

.section { padding: 105px 0; }
.section-heading { max-width: 660px; margin-bottom: 40px; }
.section-heading h2 { margin-top: 10px; font-size: clamp(2.4rem, 4vw, 4.1rem); font-weight: 500; letter-spacing: -.035em; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.projects { background: var(--paper); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { position: relative; min-height: 520px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--cream); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.project-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.project-card .card-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
/* The whole card is one click target - the photo included. Stretching the
   existing link keeps a single anchor rather than nesting duplicate links. */
.project-card { cursor: pointer; }
.project-card .text-link::after { content: ""; position: absolute; inset: 0; }
.project-card:focus-within { outline: 2px solid var(--leaf); outline-offset: 3px; }
.project-card .text-link:focus-visible { outline: none; }
.project-card .card-photo { transition: transform .4s ease; }
.project-card:hover .card-photo { transform: scale(1.04); }
.project-card-content { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.project-card h3 { margin: 8px 0 12px; font-size: 2rem; font-weight: 500; }
.project-card p { margin: 0 0 20px; color: var(--muted); }
.project-card .text-link { margin-top: auto; color: var(--leaf); font: 700 .76rem Arial, sans-serif; letter-spacing: .08em; text-transform: uppercase; }

.trust { padding: 80px 0; color: #fff; background: var(--navy); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.trust h2 { max-width: 560px; font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 500; }
.trust p { color: rgba(255,255,255,.7); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat { border-top: 1px solid rgba(255,255,255,.28); padding-top: 15px; }
.stat strong { display: block; color: var(--gold); font-size: 2rem; font-weight: 500; }
.stat span { color: rgba(255,255,255,.67); font: .76rem Arial, sans-serif; text-transform: uppercase; letter-spacing: .1em; }
.contact-band { padding: 72px 0; background: #dce9dc; }
.contact-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.contact-row h2 { font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; }
.contact-row p { color: var(--muted); }
.site-footer { padding: 25px 0; color: rgba(255,255,255,.68); background: var(--navy); font: .78rem Arial, sans-serif; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; }

.project-hero { padding: 86px 0 70px; background: var(--navy); color: #fff; }
.project-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: end; }
.project-hero h1 { font-size: clamp(3.3rem, 7vw, 6.7rem); }
.project-hero p { max-width: 600px; color: rgba(255,255,255,.72); font-size: 1.15rem; }
.project-hero .eyebrow { color: var(--gold); }
.project-poster { width: 100%; height: auto; object-fit: contain; border: 8px solid #fff; box-shadow: var(--shadow); }
.details { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.detail-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.detail-list li { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.detail-list span { color: var(--muted); }
.detail-list strong { text-align: right; }
.info-panel { padding: 32px; background: var(--paper); border-left: 4px solid var(--gold); }
.info-panel h2 { margin-bottom: 15px; font-size: 2.4rem; font-weight: 500; }
.brochure { min-height: 760px; width: 100%; border: 1px solid var(--line); background: #fff; }
.back-link { display: inline-block; margin-top: 22px; color: var(--gold); font: 700 .76rem Arial, sans-serif; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero { min-height: auto; padding: 68px 0; }
  .hero-grid, .project-hero-grid, .details, .trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { min-height: 350px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 0; }
  .contact-row, .footer-row { align-items: flex-start; flex-direction: column; }
  .section { padding: 75px 0; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand-logo { height: 44px; }
  .nav-cta { padding: 10px 12px; font-size: .65rem; }
  h1 { font-size: 3.1rem; }
  .hero-art { min-height: 290px; }
  .house { height: 240px; }
  .stats { grid-template-columns: 1fr; }
  .project-hero { padding: 60px 0 48px; }
  .project-poster { border-width: 4px; }
  .detail-list li { flex-direction: column; gap: 3px; }
  .detail-list strong { text-align: left; }
}

/* ============ Mobile navigation ============ */
.nav-toggle { display: none; width: 44px; height: 40px; padding: 0; align-items: center; justify-content: center; gap: 5px; flex-direction: column; background: transparent; border: 1px solid var(--line); border-radius: 3px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Section utilities ============ */
.section-alt { background: var(--paper); }
.section-tight { padding: 78px 0; }
.lede { max-width: 720px; color: var(--muted); font-size: 1.12rem; }
.note { margin-top: 18px; padding: 14px 16px; border-left: 3px solid var(--gold); background: rgba(233,185,67,.1); color: #5b5343; font: .88rem/1.6 Arial, sans-serif; }
.disclaimer { margin: 0; padding: 30px 0 60px; color: var(--muted); font: .78rem/1.7 Arial, sans-serif; border-top: 1px solid var(--line); }

/* ============ Badge row ============ */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 40px; color: #fff; font: 700 .72rem Arial, sans-serif; letter-spacing: .07em; text-transform: uppercase; }
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.badge-light { border-color: var(--line); color: var(--ink); background: var(--paper); }

/* ============ Feature grid ============ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.feature { padding: 28px 26px; background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--leaf); }
.feature h3 { margin-bottom: 10px; font-size: 1.35rem; font-weight: 600; line-height: 1.25; }
.feature p { margin: 0; color: var(--muted); font-size: .98rem; }
.feature-num { display: block; margin-bottom: 12px; color: var(--gold); font: 700 .8rem Arial, sans-serif; letter-spacing: .14em; }

/* ============ Pricing ============ */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 20px; }
.price-card { display: flex; flex-direction: column; padding: 32px 30px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.price-card h3 { margin-bottom: 6px; font-size: 1.9rem; font-weight: 500; }
.price-card .plot { color: var(--leaf); font: 700 .8rem Arial, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.price-rows { margin: 22px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.price-rows li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.price-rows .build { color: var(--muted); font-size: .96rem; }
.price-rows .amount { color: var(--pine); font-size: 1.5rem; font-weight: 600; white-space: nowrap; }
.price-note { margin-top: 18px; color: var(--muted); font: .84rem/1.6 Arial, sans-serif; }

/* ============ Amenities ============ */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.amenity { display: flex; align-items: center; gap: 12px; padding: 17px 20px; background: var(--paper); border: 1px solid var(--line); font-size: 1.02rem; }
.amenity::before { content: ""; flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(233,185,67,.2); }

/* ============ Location list ============ */
.loc-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 0 40px; margin: 0; padding: 0; list-style: none; }
.loc-list li { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.loc-list .marker { flex: none; min-width: 66px; color: var(--gold); font: 700 1.05rem Arial, sans-serif; }
.loc-list .what { color: rgba(255,255,255,.86); }
.loc-dark { color: #fff; background: var(--pine); }
.loc-dark h2, .loc-dark .section-heading h2 { color: #fff; }
.loc-dark .section-heading p { color: rgba(255,255,255,.7); }
.loc-dark .eyebrow { color: var(--gold); }

/* ============ Gallery ============ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
/* The figure owns the aspect ratio; the image simply fills it. Setting both
   aspect-ratio and height:100% on the image lets grid row height win and
   stretches landscape photos into portrait crops. */
.gallery figure { position: relative; margin: 0; overflow: hidden; cursor: zoom-in; background: var(--navy); aspect-ratio: 3 / 2; }
.gallery img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, opacity .3s ease; }
.gallery figure:hover img { transform: scale(1.05); opacity: .88; }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px; color: #fff; background: linear-gradient(transparent, rgba(11,32,56,.82)); font: 700 .72rem Arial, sans-serif; letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }
/* Two columns plus one gap, kept at the same row height as a single tile. */
.gallery .wide { grid-column: span 2; aspect-ratio: 3.05; }
/* Full-bleed feature tile across all three columns. Shown at its natural
   ratio - this is the masterplan, and cropping it loses part of the site. */
.gallery .full { grid-column: 1 / -1; aspect-ratio: auto; }
.gallery .full img { height: auto; }

/* ============ Lightbox ============ */
.lightbox { position: fixed; inset: 0; z-index: 50; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(8,20,34,.93); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 84vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox-cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font: .82rem Arial, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; }
.lightbox-close:hover { background: rgba(255,255,255,.14); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.lightbox-nav:hover { background: rgba(255,255,255,.14); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

/* ============ Contact ============ */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.contact-card { padding: 28px 26px; background: var(--paper); border: 1px solid var(--line); }
.contact-card h3 { margin-bottom: 10px; font-size: 1.25rem; font-weight: 600; }
.contact-card p, .contact-card a { display: block; margin: 0 0 4px; color: var(--muted); font-size: 1rem; }
.contact-card a:hover { color: var(--leaf); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ============ Card chips ============ */
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.chip { padding: 5px 11px; border: 1px solid var(--line); border-radius: 40px; color: var(--muted); font: 700 .68rem Arial, sans-serif; letter-spacing: .07em; text-transform: uppercase; }
.chip-gold { border-color: rgba(233,185,67,.55); color: #8a6d15; background: rgba(233,185,67,.14); }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  /* At two columns a wide tile fills the row, so give it a gentler crop. */
  .gallery .wide { aspect-ratio: 2.2; }
  .gallery .full { aspect-ratio: 2.2; }
}
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav { position: relative; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; gap: 0; padding: 8px 20px 18px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .82rem; }
  .loc-list { gap: 0; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery .wide, .gallery .full { grid-column: span 1; aspect-ratio: 3 / 2; }
  .price-card { padding: 26px 22px; }
  .price-rows li { flex-direction: column; gap: 4px; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============ Photo hero ============ */
.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border: 10px solid #fff; box-shadow: var(--shadow); }
.hero-media .tag { position: absolute; left: -10px; bottom: 28px; padding: 12px 18px; color: #fff; background: var(--pine); font: 700 .72rem Arial, sans-serif; letter-spacing: .1em; text-transform: uppercase; }

/* ============ Trust strip ============ */
.trust-strip { padding: 26px 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-strip-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 30px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font: 700 .74rem Arial, sans-serif; letter-spacing: .09em; text-transform: uppercase; }
.trust-item::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); }

@media (max-width: 520px) {
  .hero-media img { border-width: 6px; }
  .hero-media .tag { left: -6px; bottom: 18px; padding: 10px 14px; font-size: .66rem; }
}

.project-mark { width: 92px; height: auto; margin-bottom: 16px; }
@media (max-width: 520px) { .project-mark { width: 72px; } }

/* Card images are purpose-cropped 3:2 photography, so they need no repositioning. */

/* Single full-poster gallery (uncropped, still click-to-zoom) */
.gallery-poster { grid-template-columns: minmax(0, 540px); justify-content: center; }
.gallery-poster figure { aspect-ratio: auto; }
.gallery-poster img { height: auto; object-fit: contain; }
.gallery-poster figcaption { display: none; }

/* Touch devices get no hover, so don't leave the photo mid-zoom. */
@media (hover: none) {
  .project-card:hover .card-photo { transform: none; }
}

/* ============ Narrative / story block ============ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.story h2 { margin-bottom: 22px; font-size: clamp(2.1rem, 3.6vw, 3.4rem); font-weight: 500; letter-spacing: -.03em; }
.story p { margin: 0 0 20px; font-size: 1.08rem; line-height: 1.7; }
.story p:last-child { margin-bottom: 0; }
.story .lead { font-size: 1.22rem; line-height: 1.6; color: var(--ink); }
/* Browsers give <figure> a 40px side margin by default, which would inset the
   image out of alignment with the text column beside it. */
.story-media { margin: 0; }
.story-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border: 8px solid #fff; box-shadow: var(--shadow); }
.story-media figcaption { margin-top: 12px; color: var(--muted); font: .8rem Arial, sans-serif; letter-spacing: .06em; text-transform: uppercase; }

/* Slim full-width photographic band used as a section divider. */
.band { display: block; width: 100%; height: auto; }

/* ============ Who it's for ============ */
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.persona { padding: 30px 28px; background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--gold); }
.persona h3 { margin-bottom: 12px; font-size: 1.35rem; font-weight: 600; line-height: 1.25; }
.persona p { margin: 0; color: var(--muted); font-size: .99rem; }

/* ============ Process steps ============ */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.step { padding: 28px 26px; background: var(--paper); border: 1px solid var(--line); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; margin-bottom: 14px; color: var(--gold); font: 700 .82rem Arial, sans-serif; letter-spacing: .16em; }
.step h3 { margin-bottom: 9px; font-size: 1.2rem; font-weight: 600; }
.step p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ============ FAQ ============ */
.faq { max-width: 860px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 22px 0; cursor: pointer; font-size: 1.14rem; font-weight: 600; line-height: 1.4; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; color: var(--leaf); font: 400 1.6rem/1 Georgia, serif; }
.faq details[open] summary::after { content: "\2013"; }
.faq summary:hover { color: var(--leaf); }
.faq details > p { margin: 0 0 22px; padding-right: 44px; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }

/* ============ Two-up gallery ============ */
.gallery-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 820px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .gallery-2 { grid-template-columns: 1fr; }
  .faq summary { font-size: 1.05rem; gap: 16px; }
  .faq details > p { padding-right: 0; }
}

/* Hairline rule where two same-toned sections meet. */
.section-divide { border-top: 1px solid var(--line); }
