/* ============ TOKENS ============ */
:root {
  --bg: #1B1510;
  --bg-2: #221A13;
  --bg-3: #2B2016;
  --accent: #C68A3A;
  --accent-2: #E0A85C;
  --text: #F5EFE6;
  --muted: #A89A88;
  --olive: #6B7A55;
  --line: rgba(245, 239, 230, 0.09);
  --line-strong: rgba(245, 239, 230, 0.18);
  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.55);
  --shadow-warm: 0 10px 30px -12px rgba(198, 138, 58, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --grain:
    radial-gradient(circle at 20% 30%, rgba(198,138,58,0.05) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(107,122,85,0.04) 0, transparent 40%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background-image:
    var(--grain),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.75 0 0 0 0 0.6 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 20px;
  box-shadow: var(--shadow-warm);
}
.brand__text em { font-style: italic; color: var(--accent-2); font-weight: 500; }

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  padding: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.nav__link {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.25s ease;
  font-weight: 500;
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}

.header__cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform 0.2s;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: var(--shadow-warm);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--accent-2); }
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-2); }
.btn--cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-2);
  padding: 10px 18px;
  font-size: 13px;
}
.btn--cta:hover { background: var(--accent); color: var(--bg); }
.btn--big { padding: 18px 30px; font-size: 15px; }
.wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,0,0,0.15); font-size: 12px;
}

/* ============ VIEW SYSTEM ============ */
.view { display: none; animation: viewIn 0.5s ease; }
.view.is-active { display: block; }
@keyframes viewIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTIONS ============ */
.section { padding: 90px 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__head--left { text-align: left; margin-left: 0; margin-bottom: 32px; }
.eyebrow {
  display: inline-block;
  color: var(--accent-2);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section__title--sm { font-size: clamp(24px, 3vw, 34px); }
.section__title em { font-style: italic; color: var(--accent-2); }
.section__sub { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* ============ HERO ============ */
.hero { padding: 60px 0 20px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(198,138,58,0.12), transparent 55%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 20px 0 22px;
}
.hero__title em { font-style: italic; color: var(--accent-2); font-weight: 400; }
.hero__lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__seal {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.hero__seal-txt { font-size: 14px; color: var(--muted); }
.hero__seal-txt strong { color: var(--text); font-weight: 600; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(198,138,58,0.1);
  border: 1px solid rgba(198,138,58,0.25);
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.pill__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Seal */
.seal { flex-shrink: 0; }
.seal__ring {
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 1.5px dashed var(--accent);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 11px;
  font-style: italic;
  color: var(--accent-2);
  letter-spacing: 0.05em;
  animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* Cup illustration */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.cup {
  position: relative;
  width: 320px; height: 400px;
}
.cup__body {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 240px;
  background: linear-gradient(180deg, #F5EFE6, #E5DACB);
  border-radius: 24px 24px 130px 130px / 24px 24px 60px 60px;
  box-shadow: var(--shadow-soft), inset 0 -20px 40px rgba(0,0,0,0.08);
}
.cup__handle {
  position: absolute;
  right: -46px; top: 40px;
  width: 70px; height: 110px;
  border: 22px solid #F5EFE6;
  border-left: 0;
  border-radius: 0 60px 60px 0;
  box-shadow: var(--shadow-soft);
}
.cup__coffee {
  position: absolute;
  top: 22px; left: 22px; right: 22px;
  height: 60px;
  background: radial-gradient(ellipse at center, #4A2A18, #2A1A0F);
  border-radius: 50%;
  overflow: hidden;
}
.cup__foam {
  position: absolute; inset: 6px 20px auto 20px;
  height: 10px;
  background: rgba(245, 239, 230, 0.9);
  border-radius: 50%;
  filter: blur(2px);
}
.cup__saucer {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: 340px; height: 30px;
  background: linear-gradient(180deg, #E5DACB, #C7BAA6);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.cup__steam {
  position: absolute;
  top: -70px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 80px;
}
.cup__steam span {
  position: absolute;
  bottom: 0;
  width: 8px; height: 60px;
  background: linear-gradient(180deg, transparent, rgba(245,239,230,0.6));
  border-radius: 8px;
  animation: steam 3s ease-in-out infinite;
  filter: blur(3px);
}
.cup__steam span:nth-child(1) { left: 20px; animation-delay: 0s; }
.cup__steam span:nth-child(2) { left: 46px; animation-delay: 0.5s; height: 70px; }
.cup__steam span:nth-child(3) { left: 72px; animation-delay: 1s; }
@keyframes steam {
  0% { transform: translateY(10px) scaleX(1); opacity: 0; }
  30% { opacity: 0.8; }
  100% { transform: translateY(-40px) scaleX(1.4); opacity: 0; }
}
.cup__beans span {
  position: absolute;
  width: 22px; height: 16px;
  background: radial-gradient(ellipse, #3A2416, #1A0E08);
  border-radius: 50%;
}
.cup__beans span::before {
  content: ""; position: absolute; inset: 3px 50% 3px 50%;
  width: 1px; background: rgba(0,0,0,0.5); transform: translateX(-0.5px);
}
.cup__beans span:nth-child(1) { top: 20px; left: 10px; transform: rotate(-30deg); }
.cup__beans span:nth-child(2) { top: 60px; right: 0; transform: rotate(20deg); }
.cup__beans span:nth-child(3) { bottom: 30px; left: -10px; transform: rotate(45deg); }
.cup__beans span:nth-child(4) { bottom: 10px; right: 30px; transform: rotate(-15deg); }
.cup__beans span:nth-child(5) { top: 100px; right: -20px; transform: rotate(60deg); }

/* ============ STATS ============ */
.stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--bg-2);
  padding: 32px 28px;
  transition: background 0.3s;
}
.stat:hover { background: var(--bg-3); }
.stat__num {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  color: var(--accent-2);
  letter-spacing: -0.02em;
}
.stat__num span {
  font-size: 16px;
  color: var(--muted);
  margin-left: 6px;
  font-family: var(--font-sans);
  font-weight: 500;
}
.stat__label {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

/* ============ GRIDS + CARDS ============ */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(198,138,58,0.4);
  box-shadow: var(--shadow-soft);
}
.card__img {
  height: 160px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.card__img--coffee { background: radial-gradient(circle at 30% 30%, #6B4226, #2A1808); }
.card__img--coffee::after {
  content: "☕"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; opacity: 0.55;
}
.card__img--latte { background: radial-gradient(circle at 40% 40%, #C9A278, #6B4226); }
.card__img--latte::after {
  content: "☕"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; opacity: 0.6;
}
.card__img--cake { background: linear-gradient(135deg, #C68A3A, #7A4A20); }
.card__img--cake::after {
  content: "🍰"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
.card__img--croiss { background: linear-gradient(135deg, #B87840, #5A3218); }
.card__img--croiss::after {
  content: "🥐"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
.card__img--cold { background: linear-gradient(135deg, #3A2A20, #1A0E08); }
.card__img--cold::after {
  content: "🥤"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
.card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.card__body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.card__body p { color: var(--muted); font-size: 14px; flex: 1; }
.price {
  font-family: var(--font-serif);
  color: var(--accent-2);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag--pop { background: rgba(198,138,58,0.15); color: var(--accent-2); }
.tag--org { background: rgba(107,122,85,0.2); color: #A9BC85; }
.tag--veg { background: rgba(245,239,230,0.08); color: var(--muted); }

/* ============ TABS ============ */
.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 6px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab {
  padding: 10px 22px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s;
}
.tab:hover { color: var(--text); }
.tab.is-active {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}

.card.is-hidden { display: none; }

/* ============ ABOUT ============ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 100px;
}
.about__text .eyebrow { margin-bottom: 12px; }
.about__text .section__title { text-align: left; }
.about__text p { color: var(--muted); font-size: 16px; margin-top: 20px; }
.about__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.ph {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
}
.ph--1 {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #6B4226, #2A1808);
}
.ph--1::before {
  content: "☕"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 100px; opacity: 0.5;
}
.ph--2 {
  background: linear-gradient(135deg, #C68A3A, #7A4A20);
}
.ph--2::before {
  content: "🪑"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; opacity: 0.6;
}
.ph--3 {
  background: linear-gradient(135deg, #3A2A20, #6B4226);
}
.ph--3::before {
  content: "🌿"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; opacity: 0.6;
}

.hours {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.hours__status {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.hours__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 12px var(--olive);
  animation: pulse 2s infinite;
}
.hours__status strong { display: block; color: var(--text); font-size: 15px; }
.hours__status small { color: var(--muted); font-size: 13px; }
.hours__grid { display: flex; flex-direction: column; gap: 10px; }
.hours__grid div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.hours__grid span:first-child { color: var(--muted); }
.hours__grid span:last-child { color: var(--text); font-weight: 500; font-variant-numeric: tabular-nums; }
.hours__grid--flat { margin-top: 8px; }

/* ============ EVENTS ============ */
.events { margin-top: 80px; }
.event {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}
.event:hover { border-color: rgba(198,138,58,0.35); transform: translateY(-3px); }
.event__date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  padding: 12px 8px;
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.event__day {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--accent-2);
  font-weight: 600;
  line-height: 1;
}
.event__mo {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.event__body h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
}
.event__body p { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.event__body small { color: var(--accent-2); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ============ CONTACT ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.info__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(198,138,58,0.12);
  border: 1px solid rgba(198,138,58,0.3);
  border-radius: 50%;
  color: var(--accent-2);
  font-size: 16px;
}
.info strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 600;
}
.info p { color: var(--muted); font-size: 14px; }
.info small { color: var(--muted); font-size: 12px; display: block; margin-top: 6px; opacity: 0.75; }

.contact__map {
  min-height: 500px;
}
.map {
  height: 100%;
  min-height: 500px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(198,138,58,0.05), rgba(107,122,85,0.05)),
    var(--bg-2);
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(245,239,230,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,239,230,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map::before {
  content: "";
  position: absolute;
  top: 30%; left: 20%;
  width: 60%; height: 4px;
  background: rgba(198,138,58,0.25);
  transform: rotate(-15deg);
  border-radius: 4px;
}
.map::after {
  content: "";
  position: absolute;
  bottom: 40%; left: 10%;
  width: 80%; height: 4px;
  background: rgba(198,138,58,0.15);
  transform: rotate(8deg);
  border-radius: 4px;
}
.map__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 0 8px rgba(198,138,58,0.2), 0 0 0 20px rgba(198,138,58,0.1), var(--shadow-warm);
  animation: pulse 2.5s infinite;
}
.map__label {
  position: absolute;
  top: calc(50% + 40px); left: 50%;
  transform: translate(-50%, 0);
  padding: 10px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.map__label small { display: block; color: var(--muted); font-size: 11px; font-family: var(--font-sans); font-weight: 400; margin-top: 2px; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: var(--bg-2);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__inner > div { display: flex; align-items: center; gap: 10px; }
.footer strong { font-family: var(--font-serif); font-size: 16px; }
.footer small { color: var(--muted); font-size: 13px; }

/* ============ REVEAL ANIM ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { min-height: 340px; }
  .cup { transform: scale(0.8); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .contact { grid-template-columns: 1fr; }
  .contact__map { min-height: 340px; }
  .map { min-height: 340px; }
}
@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px; right: 16px; left: 16px;
    flex-direction: column;
    border-radius: var(--radius);
    padding: 12px;
    background: var(--bg-2);
    box-shadow: var(--shadow-soft);
  }
  .nav.is-open { display: flex; }
  .nav__link { text-align: left; padding: 12px 16px; border-radius: var(--radius-sm); }
  .header__cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 10px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .about__gallery { grid-template-rows: 160px 160px; }
  .footer__inner { flex-direction: column; text-align: center; }
}
