/* ==========================================================================
   DOLCE Zmrzka — Single Page
   Aesthetic: Italian gelateria × retro summer postcard
   Font stack: Candara (user requirement) with warm humanist fallbacks
   ========================================================================== */

:root {
  /* Brand palette extracted from the original site + logo */
  --mint:        #A2D3C2;
  --mint-deep:   #6CB7A2;
  --mint-soft:   #D7EAE1;
  --cream:       #FBF4E6;
  --cream-warm:  #F5E9D0;
  --ink:         #2A0E0E;
  --cocoa:       #511212;
  --cocoa-soft:  #7A2A2A;
  --pink:        #E55775;
  --pink-soft:   #F6C5D0;
  --pink-deep:   #C43D5C;
  --yellow:      #FFD00A;
  --stripe-a:    rgba(255,255,255,.35);
  --stripe-b:    rgba(255,255,255,0);

  /* Type scale */
  --ff: Candara, "Candara Light", Calibri, "Segoe UI", "Trebuchet MS", Optima, "Avenir Next", -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xxl: clamp(2.4rem, 8vw, 8rem);
  --fs-xl:  clamp(2.5rem, 6vw, 5rem);
  --fs-lg:  clamp(1.8rem, 3.2vw, 2.6rem);
  --fs-md:  1.125rem;
  --fs-sm:  0.9375rem;
  --fs-xs:  0.75rem;

  --radius: 2px;
  --shadow-paper: 0 1px 2px rgba(42,14,14,.08), 0 8px 30px -8px rgba(42,14,14,.18);
  --shadow-photo: 0 2px 2px rgba(42,14,14,.08), 0 18px 40px -14px rgba(42,14,14,.35);
}

/* Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--pink); }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.wrap { width: min(1200px, 100% - 2.5rem); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--cocoa); color: #fff; padding: .75rem 1rem;
  z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Floating background stars (very subtle) */
.star-bg {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  fill: rgba(81,18,18,0.06);
  z-index: 0;
}

/* ===========================================================================
   NAVIGATION
   =========================================================================== */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(251,244,230,.85);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(81,18,18,.08);
  transition: background .2s ease, border-color .2s ease;
}
.nav.is-scrolled {
  background: rgba(251,244,230,.96);
  border-color: rgba(81,18,18,.14);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  width: min(1200px, 100% - 2rem);
  margin: 0 auto;
  padding: .75rem 0;
}
.nav__logo {
  display: flex; align-items: center; gap: .75rem;
  line-height: 1;
}
.nav__logo img {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--mint);
  padding: 4px;
  box-shadow: 0 2px 8px rgba(81,18,18,.18);
}
.nav__wordmark {
  display: inline-flex; flex-direction: row; align-items: baseline; gap: .4rem;
  white-space: nowrap;
}
.nav__wordmark-top {
  font-weight: 900; font-size: 1.5rem; letter-spacing: .14em;
  color: var(--pink); text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(81,18,18,.4);
  -webkit-text-stroke: .5px rgba(81,18,18,.25);
}
.nav__wordmark-bot {
  font-weight: 700; font-size: 1.35rem; color: var(--cocoa);
  font-style: italic; letter-spacing: -.02em;
}

.nav__menu ul {
  display: flex; align-items: center; gap: 2rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__menu a {
  font-weight: 700;
  font-size: .95rem;
  color: var(--cocoa);
  position: relative;
  padding-block: .25rem;
  letter-spacing: .01em;
}
.nav__menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--pink);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.nav__menu a:not(.btn):hover::after,
.nav__menu a:not(.btn).is-active::after {
  transform: scaleX(1); transform-origin: left;
}
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--cocoa);
  transition: transform .3s, opacity .3s;
}
.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); }

/* ===========================================================================
   BUTTONS
   =========================================================================== */
.btn {
  --btn-pad-y: .85rem;
  --btn-pad-x: 1.75rem;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-weight: 700; font-size: 1rem;
  letter-spacing: .01em;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--sm { --btn-pad-y: .55rem; --btn-pad-x: 1.1rem; font-size: .875rem; }

.btn--pink {
  background: var(--pink); color: #fff;
  box-shadow: 0 4px 0 0 var(--pink-deep), 0 10px 24px -12px var(--pink-deep);
}
.btn--pink:hover {
  background: var(--pink-deep); color: #fff;
  transform: translateY(2px);
  box-shadow: 0 2px 0 0 var(--pink-deep), 0 6px 16px -12px var(--pink-deep);
}
.btn--outline {
  background: transparent; color: #fff;
  border: 2px solid #fff;
}
.btn--outline:hover {
  background: #fff; color: var(--cocoa);
}
.btn--ghost {
  background: transparent; color: var(--cocoa);
  border: 2px solid var(--cocoa);
}
.btn--ghost:hover {
  background: var(--cocoa); color: var(--cream);
}

/* ===========================================================================
   HERO
   =========================================================================== */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  background: var(--mint);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(5rem, 9vw, 9rem);
  display: flex; align-items: center;
}

/* Vertical stripes like the logo badge backdrop */
.hero__stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    var(--mint-deep) 0, var(--mint-deep) 2px,
    transparent 2px, transparent 28px
  );
  opacity: .35;
  mix-blend-mode: multiply;
  z-index: -1;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.32 0 0 0 0 0.07 0 0 0 0 0.07 0 0 0 .18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  width: min(1100px, 100% - 2.5rem);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__kicker {
  display: inline-flex; align-items: center; gap: .85rem;
  font-size: .875rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--cocoa);
  padding: .55rem 1.25rem;
  background: rgba(255,255,255,.65);
  border-radius: 999px;
  margin-bottom: 2rem;
  animation: fadeUp .9s .05s both cubic-bezier(.2,.8,.2,1);
}
.hero__kicker span { color: var(--pink); }

.hero__title {
  margin: 0;
  font-size: var(--fs-xxl);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.03em;
  display: flex; flex-direction: row; align-items: baseline; justify-content: center;
  gap: .35em;
  flex-wrap: nowrap;
  white-space: nowrap;
  filter: drop-shadow(0 4px 0 rgba(81,18,18,.18));
}
.hero__title-dolce {
  color: var(--pink);
  text-shadow: 2px 2px 0 var(--cocoa);
  animation: fadeUp 1s .2s both cubic-bezier(.2,.8,.2,1);
}
.hero__title-zmrzka {
  font-style: italic;
  color: #fff;
  animation: fadeUp 1s .35s both cubic-bezier(.2,.8,.2,1);
}

.hero__sub {
  margin: 1.75rem auto 0;
  max-width: 34ch;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(255,255,255,.96);
  line-height: 1.4;
  animation: fadeUp 1s .55s both cubic-bezier(.2,.8,.2,1);
}
.hero__sub em { font-style: italic; color: var(--yellow); font-weight: 700; }

.hero__cta {
  display: inline-flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 2.5rem;
  animation: fadeUp 1s .75s both cubic-bezier(.2,.8,.2,1);
}

.hero__hashtag {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 3rem;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  letter-spacing: .22em;
  font-size: .85rem;
  text-transform: uppercase;
  animation: fadeUp 1s .95s both cubic-bezier(.2,.8,.2,1);
}
.hero__hashtag-dash {
  display: inline-block; height: 1px; width: 60px;
  background: rgba(255,255,255,.55);
}

.hero__medallion {
  position: absolute;
  top: 6%;
  left: -3vw;
  width: clamp(120px, 16vw, 220px);
  opacity: .6;
  filter: drop-shadow(0 12px 24px rgba(81,18,18,.35));
  transform: rotate(-12deg);
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}
.hero__medallion::before {
  /* This selector won't match — medallion is img; purely here as fallback for old browsers */
  content: "";
}

/* Duplicate medallion on the right via pseudo-element on hero */
.hero::after {
  content: "";
  position: absolute;
  top: 56%;
  right: -4vw;
  width: clamp(140px, 18vw, 260px);
  aspect-ratio: 1;
  background: url("assets/img/logo.png") center/contain no-repeat;
  opacity: .35;
  transform: rotate(14deg);
  animation: float 7s ease-in-out infinite reverse;
  z-index: 0;
  filter: drop-shadow(0 12px 24px rgba(81,18,18,.3));
}

.hero__scallop {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  height: clamp(50px, 6vw, 90px);
  fill: var(--cream);
  z-index: 3;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: rotate(-12deg) translateY(0); }
  50%     { transform: rotate(-10deg) translateY(-12px); }
}

/* ===========================================================================
   SHARED SECTION TYPE
   =========================================================================== */
.kicker {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--pink);
  padding: .35rem .65rem;
  background: rgba(229,87,117,.1);
  border-radius: 999px;
  margin-bottom: 1rem;
}
.kicker--light { color: #fff; background: rgba(255,255,255,.18); }

.h2 {
  margin: 0;
  font-size: var(--fs-xl);
  line-height: .95;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--cocoa);
}
.h2--light { color: #fff; }
.h2 .accent {
  font-style: italic;
  color: var(--pink);
  font-weight: 700;
  white-space: nowrap;
}
.location .h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
}

.lede {
  font-size: 1.35rem;
  color: var(--cocoa);
  font-weight: 600;
  margin: 1rem 0 1.25rem;
}
.lede em { font-style: italic; color: var(--pink); }

/* ===========================================================================
   ABOUT
   =========================================================================== */
.about {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0;
  z-index: 2;
}
.about__wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.facts {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.facts li {
  padding: 1.25rem 1rem;
  background: rgba(162,211,194,.3);
  border: 1px solid rgba(81,18,18,.1);
  border-radius: 14px;
  display: flex; flex-direction: column;
  text-align: left;
}
.facts__num {
  font-size: 2rem; font-weight: 700; color: var(--cocoa);
  line-height: 1; letter-spacing: -.02em;
}
.facts__lbl {
  font-size: .85rem; color: var(--cocoa-soft);
  margin-top: .4rem; line-height: 1.3;
}

.about__visual {
  position: relative;
  padding: 1rem;
}
.about__badge {
  position: absolute;
  bottom: -30px; right: -20px;
  width: 160px; height: 160px;
  background: var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -10px rgba(229,87,117,.6);
  animation: spin 18s linear infinite;
  z-index: 3;
}
.about__badge svg {
  width: 100%; height: 100%; fill: #fff;
}
.about__badge text { fill: #fff; }
.about__badge-center {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff;
  animation: spin 18s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Polaroid / taped photo frames */
.polaroid {
  position: relative;
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow-photo);
  max-width: 100%;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--mint-soft);
}
.polaroid--tilt-r { transform: rotate(2.5deg); }
.polaroid--tilt-l { transform: rotate(-2.5deg); }
.polaroid:hover { transform: rotate(0) translateY(-6px); z-index: 5; }
.polaroid::before {
  /* washi tape */
  content: "";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 90px; height: 26px;
  background: repeating-linear-gradient(45deg,
    rgba(229,87,117,.8) 0, rgba(229,87,117,.8) 6px,
    rgba(246,197,208,.85) 6px, rgba(246,197,208,.85) 12px);
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* ===========================================================================
   GELATO STRIP
   =========================================================================== */
.gelato {
  position: relative;
  background: var(--cocoa);
  color: #fff;
  padding: clamp(5rem, 9vw, 9rem) 0 0;
  overflow: hidden;
}
.gelato::before {
  /* subtle stripe texture */
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 2px,
    transparent 2px, transparent 40px
  );
  pointer-events: none;
}
.gelato .wrap { text-align: center; position: relative; z-index: 1; }
.gelato__sub {
  max-width: 52ch; margin: 1.25rem auto 0;
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
}

.scoops {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  padding: 5rem 2rem 5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: nowrap;
}
.scoops::-webkit-scrollbar { display: none; }

.scoop {
  flex: 0 0 auto;
  width: clamp(110px, 12vw, 170px);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
  cursor: default;
  isolation: isolate;
  background: #222;
  box-shadow:
    0 0 0 6px rgba(255,255,255,.9),
    0 0 0 8px rgba(81,18,18,.35),
    0 22px 44px -18px rgba(0,0,0,.7);
}
.scoop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.scoop::before {
  /* Inner shadow rim for 3D scoop feel */
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow:
    inset -10px -18px 36px rgba(0,0,0,.35),
    inset 8px 10px 20px rgba(255,255,255,.12);
  pointer-events: none;
  z-index: 2;
}
.scoop::after {
  /* Glossy highlight */
  content: "";
  position: absolute;
  top: 10%; left: 16%;
  width: 32%; height: 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,.55), rgba(255,255,255,0) 70%);
  pointer-events: none;
  z-index: 3;
}
.scoop:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    0 0 0 6px rgba(255,255,255,.95),
    0 0 0 8px var(--pink),
    0 28px 56px -18px rgba(0,0,0,.75);
}
.scoop:hover img { transform: scale(1.08) rotate(4deg); }

/* ===========================================================================
   LOCATIONS
   =========================================================================== */
.location {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) 0 0;
  background: var(--cream);
}
.location + .location { padding-top: clamp(4rem, 7vw, 8rem); }
.location__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.location--left .location__wrap { grid-template-areas: "gallery text"; }
.location--right .location__wrap { grid-template-areas: "text gallery"; }
.location--left .location__gallery { grid-area: gallery; }
.location--left .location__text { grid-area: text; }
.location--right .location__gallery { grid-area: gallery; }
.location--right .location__text { grid-area: text; }

.location__text p {
  margin: 1.25rem 0;
  font-size: 1.0625rem;
  max-width: 52ch;
  color: var(--ink);
}
.info {
  display: grid; gap: .75rem;
  padding: 1.5rem; margin: 1.5rem 0;
  background: var(--mint-soft);
  border-radius: 14px;
  border: 1px solid rgba(81,18,18,.08);
}
.info > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-block: .35rem;
  border-bottom: 1px dashed rgba(81,18,18,.18);
}
.info > div:last-child { border-bottom: 0; }
.info dt {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cocoa);
}
.info dd { margin: 0; color: var(--ink); font-weight: 600; }
.info dd a:hover { color: var(--pink); }

.location__actions {
  display: flex; gap: .75rem; flex-wrap: wrap;
  margin-top: 1rem;
}

/* Gallery layouts */
.location__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.location__gallery--single { display: block; }
.location__gallery--single .polaroid--big { max-width: 540px; margin: 0 auto; }

.polaroid--big {
  grid-column: 1 / span 2;
  grid-row: 1;
  z-index: 2;
  max-width: 100%;
}
.polaroid--sm {
  grid-row: 2;
  z-index: 1;
  transform: rotate(-3deg);
}
.polaroid--tuck {
  grid-row: 2;
  transform: rotate(3deg);
  z-index: 1;
}

/* Map */
.map {
  position: relative;
  margin-top: clamp(3rem, 5vw, 5rem);
  background: var(--cocoa);
  overflow: hidden;
}
.map__label {
  position: absolute;
  top: 1.75rem; left: 1.75rem;
  background: var(--pink);
  color: #fff;
  padding: 1rem 1.35rem;
  border-radius: 10px;
  z-index: 2;
  font-size: .85rem;
  line-height: 1.3;
  box-shadow: 0 10px 30px -10px rgba(229,87,117,.7);
  display: flex; flex-direction: column;
}
.map__label span {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  opacity: .85;
}
.map__label strong { font-size: 1.1rem; font-style: italic; }
.map iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 45vh, 500px);
  border: 0;
  filter: grayscale(.2) contrast(.95);
}

/* ===========================================================================
   BANNER CTA
   =========================================================================== */
.banner {
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--pink);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.banner__stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.08) 0, rgba(255,255,255,.08) 20px,
    transparent 20px, transparent 48px
  );
  pointer-events: none;
}
.banner__eyebrow {
  font-size: .85rem; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase;
  margin: 0 0 1rem;
  color: rgba(255,255,255,.85);
}
.banner__title {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  margin: 0;
  line-height: .9;
  letter-spacing: -.03em;
  font-style: italic;
  text-shadow: 3px 3px 0 var(--cocoa);
}
.banner__sub {
  margin: 1.5rem auto 0;
  max-width: 44ch;
  font-size: 1.125rem;
  color: rgba(255,255,255,.92);
}

/* ===========================================================================
   FOOTER
   =========================================================================== */
.footer {
  background: var(--cocoa);
  color: var(--cream);
  padding: clamp(4rem, 7vw, 7rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 2px,
    transparent 2px, transparent 40px
  );
  pointer-events: none;
}
.footer__wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.footer__brand img {
  width: 96px; height: 96px;
  padding: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  margin-bottom: 1.25rem;
}
.footer__tagline {
  font-style: italic;
  color: rgba(251,244,230,.8);
  max-width: 28ch;
  line-height: 1.5;
}
.footer h3 {
  margin: 0 0 1rem;
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
}

.footer__social {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .6rem;
}
.footer__social a {
  display: inline-flex; align-items: center; gap: .7rem;
  color: var(--cream);
  padding: .4rem 0;
  transition: color .2s;
}
.footer__social a:hover { color: var(--pink); }
.footer__social a svg { width: 20px; height: 20px; flex-shrink: 0; }
.footer__social span {
  font-size: .8rem; color: rgba(251,244,230,.55);
  margin-left: .3rem;
}

.footer__col p {
  margin: .35rem 0;
  color: rgba(251,244,230,.85);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251,244,230,.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(251,244,230,.6);
  position: relative; z-index: 1;
}
.footer__hash {
  font-weight: 700;
  color: var(--pink);
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ===========================================================================
   REVEAL (IntersectionObserver-driven)
   =========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
}
.reveal.reveal--delay-1 { transition-delay: .1s; }
.reveal.reveal--delay-2 { transition-delay: .22s; }

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 960px) {
  .about__wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__visual { order: -1; max-width: 480px; margin: 0 auto; }
  .about__badge { width: 120px; height: 120px; right: 8px; bottom: -20px; }

  .location--left .location__wrap,
  .location--right .location__wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "gallery" "text";
    gap: 2.5rem;
  }
  .location__gallery { max-width: 580px; margin: 0 auto; min-height: auto; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(81,18,18,.1);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform .35s ease, opacity .35s ease, visibility .35s;
    padding: 1.5rem 1.5rem 2rem;
  }
  .nav__menu.is-open {
    transform: translateY(0); opacity: 1; visibility: visible;
  }
  .nav__menu ul {
    flex-direction: column; align-items: flex-start; gap: 1.25rem;
  }
  .nav__menu a { font-size: 1.1rem; }

  .facts { grid-template-columns: 1fr; }
  .facts li { flex-direction: row; align-items: baseline; gap: 1rem; }

  .info > div { grid-template-columns: 100px 1fr; }

  .hero__medallion { display: none; }
  .hero::after { opacity: .2; width: 220px; right: -60px; top: auto; bottom: 10%; }

  .footer__wrap { grid-template-columns: 1fr; gap: 2.5rem; }

  .polaroid--sm, .polaroid--tuck { width: 80%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__medallion, .hero::after, .about__badge, .about__badge-center { animation: none; }
}

/* Subtle focus ring for accessibility */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 999px;
}
