/* =====================================================================
   ORO MADONNINA — Milan Apartment
   Palette drawn from the logo: gilded gold on warm cream + espresso ink
   ===================================================================== */

:root {
  /* Surfaces */
  --paper:        #FBF7EE;
  --cream:        #F4ECD9;
  --cream-deep:   #EADFC4;
  --espresso:     #1E1810;
  --espresso-2:   #2A2216;

  /* Ink */
  --ink:          #2C2519;
  --muted:        #7E7257;

  /* Gold scale (from the Madonnina statue) */
  --gold:         #BE9A44;
  --gold-deep:    #8F7128;
  --gold-bright:  #DEBD63;
  --gold-soft:    #E8D6A0;

  --line:         rgba(40, 32, 18, .14);
  --line-light:   rgba(255, 250, 235, .18);

  --grad-gold:    linear-gradient(135deg, #E8D6A0 0%, #C8A24A 45%, #8F7128 100%);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ----------------------------- Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  /* faint grain for atmosphere */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --------------------------- Typography ---------------------------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 5.2vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h-display em { font-style: italic; font-weight: 500; color: var(--gold-deep); }
.h-display--light { color: var(--paper); }
.h-display--light em { color: var(--gold-bright); }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .72rem;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
}
.eyebrow--light { color: var(--gold-bright); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.7;
  color: var(--ink);
}
.lead--center { max-width: 720px; margin: 1.5rem auto 0; text-align: center; }

.section { padding: clamp(4.5rem, 9vw, 8.5rem) clamp(1.25rem, 5vw, 4rem); }

/* ornamental divider (echoes the logo flourish) */
.ornament { color: var(--gold); margin-top: 2.4rem; opacity: .8; }

/* ---------------------------- Buttons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 1.1rem 2.2rem; font-size: .8rem; }
.btn--gold {
  background: var(--grad-gold);
  color: #2A2010;
  box-shadow: 0 10px 26px -12px rgba(143, 113, 40, .8);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -14px rgba(143, 113, 40, .9); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 250, 235, .5);
}
.btn--ghost:hover { background: rgba(255, 250, 235, .12); border-color: var(--paper); transform: translateY(-3px); }
.btn--ghost-dark {
  background: transparent;
  color: var(--gold-bright);
  border-color: rgba(232, 214, 160, .4);
}
.btn--ghost-dark:hover { background: rgba(232, 214, 160, .1); transform: translateY(-3px); }

/* ============================== NAV =============================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1.25rem, 5vw, 4rem);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(251, 247, 238, .9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: .7rem;
  padding-bottom: .7rem;
}
.nav__brand { display: flex; align-items: center; gap: .85rem; }
.nav__logo {
  height: 72px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.4));
  transition: height .4s var(--ease), filter .4s var(--ease);
}
.nav.is-scrolled .nav__logo { height: 52px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.18)); }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--paper);
  transition: color .4s var(--ease);
}
.nav__brand-sub {
  font-size: .56rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold-bright); margin-top: .3rem;
  transition: color .4s var(--ease);
}
.nav.is-scrolled .nav__brand-name { color: var(--ink); }
.nav.is-scrolled .nav__brand-sub  { color: var(--gold-deep); }

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  position: relative;
  font-size: .82rem;
  letter-spacing: .08em;
  color: rgba(255, 250, 235, .92);
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold-bright);
  transition: width .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav.is-scrolled .nav__links a::after { background: var(--gold-deep); }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.lang { display: flex; align-items: center; gap: .35rem; }
.lang__btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: .78rem; letter-spacing: .1em;
  color: rgba(255, 250, 235, .6); padding: .2rem;
  transition: color .3s var(--ease);
}
.lang__btn.is-active { color: var(--gold-bright); }
.lang__sep { color: rgba(255, 250, 235, .4); }
.nav.is-scrolled .lang__btn { color: var(--muted); }
.nav.is-scrolled .lang__btn.is-active { color: var(--gold-deep); }
.nav.is-scrolled .lang__sep { color: var(--line); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--paper); transition: .3s var(--ease); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

/* ============================== HERO ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem clamp(1.25rem, 5vw, 4rem) 3rem;
  color: var(--paper);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; transform: scale(1.05); animation: slowZoom 18s var(--ease) forwards; }
@keyframes slowZoom { to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 80% 0%, transparent 30%, rgba(20,16,10,.55) 100%),
    linear-gradient(180deg, rgba(20,16,10,.55) 0%, rgba(20,16,10,.25) 40%, rgba(20,16,10,.78) 100%);
}
.hero__inner { max-width: 880px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.6rem, 13vw, 9.5rem);
  line-height: .9;
  letter-spacing: -0.01em;
  text-shadow: 0 6px 40px rgba(0,0,0,.4);
  margin: .4rem 0 0;
}
.hero__title-em {
  font-style: italic;
  background: linear-gradient(120deg, #F3E4B4, #E8D6A0 30%, #C8A24A 70%, #DEBD63);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lead { max-width: 540px; margin-top: 1.8rem; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,250,235,.92); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
  max-width: 720px;
}
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-item strong {
  font-family: var(--font-display); font-weight: 500; font-size: 2rem; color: var(--gold-bright); line-height: 1;
}
.hero__meta-item span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,250,235,.7); margin-top: .5rem; }

.hero__scroll {
  position: absolute; bottom: 1.6rem; right: clamp(1.25rem, 5vw, 4rem);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,250,235,.7);
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--gold-bright), transparent); animation: scrollPulse 2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* ============================= INTRO ============================= */
.intro { background: var(--paper); }
.intro__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 6vw, 6rem); align-items: start;
}
.intro__left .h-display { margin-top: .5rem; }
.intro__right p + p { margin-top: 1.3rem; color: var(--muted); }

/* ====================== DESIGN & COMFORT ======================== */
.comfort {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 0; padding: 0; min-height: 80vh; align-items: stretch;
}
.comfort__media { min-height: 60vh; }
.comfort__panel {
  background: var(--espresso);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 6rem);
  display: flex; flex-direction: column; justify-content: center;
}
.comfort__text { margin-top: 1.4rem; color: rgba(255,250,235,.78); max-width: 46ch; }
.amenities {
  margin-top: 2.6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.5rem;
}
.amenities li { display: flex; align-items: baseline; gap: .7rem; font-size: .92rem; color: rgba(255,250,235,.88); }
.amenities__ico { color: var(--gold-bright); font-size: .75rem; }

/* =========================== LOCATION =========================== */
.location { background: var(--cream); text-align: center; }
.location__head { max-width: var(--maxw); margin: 0 auto; }
.location__grid {
  max-width: var(--maxw); margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.walk {
  background: var(--cream);
  padding: clamp(1.6rem, 3vw, 2.6rem) 1.2rem;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.walk:hover { background: var(--paper); }
.walk__time { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; color: var(--gold-deep); line-height: 1; }
.walk__name { font-size: .98rem; color: var(--ink); }
.walk__tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ========================= EXPERIENCES ========================= */
.exp { background: var(--paper); }
.exp__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.exp__intro { color: var(--muted); margin-top: 1.4rem; max-width: 42ch; }
.exp__list { margin-top: 2.4rem; }
.exp__item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0; border-top: 1px solid var(--line);
  cursor: pointer; transition: padding .35s var(--ease);
}
.exp__item:last-child { border-bottom: 1px solid var(--line); }
.exp__dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid var(--gold); flex: none;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.exp__label {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--muted);
  transition: color .35s var(--ease);
}
.exp__item:hover { padding-left: .6rem; }
.exp__item:hover .exp__label { color: var(--ink); }
.exp__item.is-active { padding-left: .6rem; }
.exp__item.is-active .exp__dot { background: var(--grad-gold); box-shadow: 0 0 0 4px rgba(190,154,68,.18); }
.exp__item.is-active .exp__label { color: var(--gold-deep); font-style: italic; }

.exp__right { position: relative; }
.exp__media {
  height: clamp(360px, 48vw, 560px);
  border-radius: 4px;
  transition: opacity .4s var(--ease);
}
.exp__card {
  position: relative;
  margin: -90px 1.5rem 0 auto;
  max-width: 420px;
  background: var(--espresso);
  color: var(--paper);
  padding: 2rem 2.2rem;
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(30,24,16,.6);
}
.exp__card-title { font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; color: var(--gold-bright); }
.exp__card-text { margin-top: .8rem; font-size: .94rem; color: rgba(255,250,235,.8); }
.exp__facts { margin-top: 1.4rem; display: flex; gap: 1.8rem; flex-wrap: wrap; }
.exp__facts dt { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.exp__facts dd { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-bright); margin-top: .2rem; }

/* =========================== GALLERY =========================== */
.gallery { background: var(--cream); }
.gallery__head { max-width: var(--maxw); margin: 0 auto 2.6rem; }
.gallery__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px;
  grid-auto-flow: dense;
}
.gallery__item {
  border-radius: 4px; overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), filter .6s var(--ease);
  filter: saturate(.96);
}
.gallery__item:hover { transform: scale(1.015); box-shadow: 0 24px 50px -26px rgba(30,24,16,.5); filter: saturate(1.05); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ============================ QUOTE ============================ */
.quote { background: var(--paper); text-align: center; padding-block: clamp(4rem, 8vw, 7rem); }
.quote blockquote { max-width: 860px; margin: 0 auto; }
.quote__text {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.7rem); line-height: 1.4; color: var(--ink);
}
.quote cite { display: block; margin-top: 1.6rem; font-style: normal; font-size: .76rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); }

/* ============================= BOOK ============================= */
.book {
  background: var(--espresso);
  color: var(--paper);
  position: relative;
}
.book::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 100% 0%, rgba(190,154,68,.22), transparent 55%);
  pointer-events: none;
}
.book__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
.book__text { margin-top: 1.4rem; color: rgba(255,250,235,.8); max-width: 46ch; }
.book__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.book__card {
  background: rgba(255, 250, 235, .04);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 2.2rem 2.4rem;
  backdrop-filter: blur(4px);
}
.book__price { display: flex; align-items: baseline; gap: .5rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line-light); }
.book__price-from { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.book__price-num { font-family: var(--font-display); font-size: 3rem; font-weight: 500; color: var(--gold-bright); line-height: 1; }
.book__price-unit { color: rgba(255,250,235,.7); font-size: .9rem; }
.book__facts { margin-top: 1.4rem; }
.book__facts li { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px dashed var(--line-light); font-size: .92rem; color: rgba(255,250,235,.78); }
.book__facts li strong { color: var(--paper); font-weight: 400; }
.book__note { margin-top: 1.4rem; text-align: center; color: var(--gold-bright); letter-spacing: .12em; font-size: .82rem; }

/* ============================ FOOTER ============================ */
.footer { background: #15110A; color: rgba(255,250,235,.8); padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem) 1.5rem; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-light);
}
.footer__logo { height: 104px; width: auto; object-fit: contain; margin-bottom: 1.1rem; }
.footer__tag { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--gold-soft); max-width: 26ch; }
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: .7rem; font-size: .9rem; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold-bright); }
.footer__base {
  max-width: var(--maxw); margin: 1.5rem auto 0;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.footer__base-orn { color: var(--gold-deep); }

/* ====================== REVEAL ANIMATIONS ====================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   PHOTO SLOTS
   Each rule layers:  tint overlay  +  your photo  +  golden fallback.
   The fallback gradient shows until you drop a real JPG into
   /assets/photos/ with the matching name — so the site never looks broken.
   To use your own image: add e.g. assets/photos/hero.jpg
   ===================================================================== */
[data-photo] { background-repeat: no-repeat; background-position: center; background-size: cover; }

[data-photo="hero"] {
  background-image:
    linear-gradient(180deg, rgba(20,16,10,.25), rgba(20,16,10,.35)),
    url("assets/photos/hero.jpg"),
    linear-gradient(135deg, #241B0F 0%, #6E5320 55%, #B6913C 100%);
}
[data-photo="living"] {
  background-image:
    linear-gradient(180deg, rgba(20,16,10,.12), rgba(20,16,10,.12)),
    url("assets/photos/living.jpg"),
    linear-gradient(135deg, #C8A24A 0%, #EAD9A6 60%, #8F7128 100%);
}
[data-photo="exp-aperitivo"] {
  background-image: url("assets/photos/experience.jpg"),
    linear-gradient(160deg, #B6913C 0%, #E8D6A0 55%, #6E5320 100%);
}
[data-photo="g1"] { background-image: url("assets/photos/gallery-1.jpg"), linear-gradient(135deg, #8F7128, #DEBD63); }
[data-photo="g2"] { background-image: url("assets/photos/gallery-2.jpg"), linear-gradient(160deg, #EAD9A6, #C8A24A); }
[data-photo="g3"] { background-image: url("assets/photos/gallery-3.jpg"), linear-gradient(200deg, #B6913C, #2A2216); }
[data-photo="g4"] { background-image: url("assets/photos/gallery-4.jpg"), linear-gradient(120deg, #C8A24A, #EAD9A6 60%, #8F7128); }
[data-photo="g5"] { background-image: url("assets/photos/gallery-5.jpg"), linear-gradient(160deg, #2A2216, #B6913C); }
[data-photo="g6"] { background-image: url("assets/photos/gallery-6.jpg"), linear-gradient(135deg, #DEBD63, #8F7128); }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {
  .intro__grid { grid-template-columns: 1fr; }
  .comfort { grid-template-columns: 1fr; }
  .comfort__media { min-height: 48vh; }
  .exp__inner { grid-template-columns: 1fr; }
  .exp__card { margin: -70px auto 0; }
  .book__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; justify-content: center; gap: 1.8rem;
    background: var(--espresso); padding: 3rem;
    transform: translateX(100%); transition: transform .5s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.6);
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links a { color: var(--paper); font-size: 1.1rem; }
  .nav.is-scrolled .nav__links a { color: var(--paper); }
  .nav__burger { display: flex; z-index: 110; }
  .nav.is-open .nav__burger span { background: var(--paper); }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__actions .btn--gold { display: none; }

  .location__grid { grid-template-columns: 1fr 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__meta { gap: 1.4rem 2rem; }
}

@media (max-width: 420px) {
  .location__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
}
