/* =========================================================================
   TASTY CORNER, Lapta / Girne. "Kömür & Kor" design system.
   Deep warm charcoal + single ember accent. Archivo (display) + Onest (body).
   Shape rule: buttons are pill, cards are 18px, inputs are 12px. One theme.
   ========================================================================= */

:root {
  --bg: #100e0c;
  --bg-2: #171411;
  --bg-3: #1f1b16;
  --ink: #f4eee3;
  --ink-2: #b9ae9c;
  --ink-3: #8f8475;
  --ember: #f0a132;
  --ember-deep: #c87b1e;
  --ember-ink: #1d1305;
  --line: rgba(244, 238, 227, 0.12);
  --line-soft: rgba(244, 238, 227, 0.07);
  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "Onest", "Helvetica Neue", sans-serif;
  --r-card: 18px;
  --r-input: 12px;
  --header-h: 72px;
  --pad-x: clamp(20px, 4.5vw, 64px);
  --section-gap: clamp(84px, 11vw, 150px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain, very low, fixed */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 118;
  font-weight: 860;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.98;
  margin: 0 0 0.45em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6.4vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.12rem, 1.9vw, 1.45rem); letter-spacing: 0.015em; }

p { margin: 0 0 1em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-2); max-width: 58ch; }
.muted { color: var(--ink-2); }

.container { max-width: 1320px; margin-inline: auto; padding-inline: var(--pad-x); }

section { padding-block: calc(var(--section-gap) / 2); }

::selection { background: var(--ember); color: var(--ember-ink); }

:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 4px; }

/* ------------------------------------------------------------------ */
/* Buttons (pill). One primary intent style, one ghost.               */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-variation-settings: "wdth" 105;
  font-weight: 740;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn:active { transform: translateY(1px) scale(0.985); }

.btn-primary {
  background: var(--ember);
  color: var(--ember-ink);
  box-shadow: 0 6px 28px rgba(240, 161, 50, 0.22);
}
.btn-primary:hover { background: #ffb44a; box-shadow: 0 10px 36px rgba(240, 161, 50, 0.32); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(16, 14, 12, 0.25);
  color: var(--ink);
  border-color: rgba(244, 238, 227, 0.38);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--ember); color: var(--ember); transform: translateY(-2px); }

/* ------------------------------------------------------------------ */
/* Header                                                             */
/* ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: border-color 0.35s;
  border-bottom: 1px solid transparent;
}
/* Blur lives on a pseudo so the header never becomes a containing block
   for the fixed-position mobile nav (backdrop-filter would trap it). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(16, 14, 12, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.35s;
}
.site-header.scrolled { border-bottom-color: var(--line-soft); }
.site-header.scrolled::before { opacity: 1; }
.header-inner {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 122;
  font-weight: 900;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
}
.brand span { color: var(--ember); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 560;
  text-decoration: none;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a[aria-current="page"] { color: var(--ember); }

.header-cta { display: inline-flex; }
.header-cta .btn { padding: 11px 22px; font-size: 0.82rem; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink-3);
  font: 600 0.78rem var(--font-body);
  letter-spacing: 0.06em;
  padding: 8px 13px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.lang-toggle button[aria-pressed="true"] { background: var(--ink); color: var(--bg); }

.nav-burger {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  position: relative;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger span { top: 50%; margin-top: -1px; }
.nav-burger span::before { top: -7px; }
.nav-burger span::after { top: 7px; }
.nav-burger[aria-expanded="true"] span { background: transparent; }
.nav-burger[aria-expanded="true"] span::before { transform: translateX(-50%) translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span::after { transform: translateX(-50%) translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    inset-inline: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    gap: 8vh;
    background: rgba(16, 14, 12, 0.97);
    backdrop-filter: blur(16px);
    transform: translateY(-110%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
    z-index: 90;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { font-size: 1.5rem; font-family: var(--font-display); text-transform: uppercase; font-weight: 800; }
  .nav-burger { display: block; }
  .header-cta { display: none; }
}

/* ------------------------------------------------------------------ */
/* Hero                                                               */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 14, 12, 0.55) 0%, rgba(16, 14, 12, 0.18) 38%, rgba(16, 14, 12, 0.88) 78%, var(--bg) 100%),
    radial-gradient(110% 60% at 18% 95%, rgba(240, 161, 50, 0.16), transparent 60%);
}
.hero-content {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding: 0 var(--pad-x) clamp(40px, 6vh, 80px);
}
.hero h1 { max-width: 19ch; font-size: clamp(2.4rem, 5.7vw, 4.6rem); }
.hero h1 em {
  font-style: normal;
  color: var(--ember);
}
.hero .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(34px, 5vh, 56px); }

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 38px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.hero-strip .strip-item { display: flex; align-items: center; gap: 10px; }
.hero-strip a { text-decoration: none; }
.hero-strip a:hover { color: var(--ember); }

.open-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #58c97b;
  box-shadow: 0 0 10px rgba(88, 201, 123, 0.7);
  flex: none;
}
.open-dot.closed { background: #e0644f; box-shadow: 0 0 10px rgba(224, 100, 79, 0.7); }

/* ------------------------------------------------------------------ */
/* Marquee (the single one)                                           */
/* ------------------------------------------------------------------ */
.marquee {
  border-block: 1px solid var(--line-soft);
  padding-block: 22px;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-seq {
  display: flex;
  align-items: center;
  flex: none;
}
.marquee-seq span {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 120;
  font-weight: 850;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  padding-inline: 28px;
}
.marquee-seq span:nth-child(even) { color: transparent; -webkit-text-stroke: 1px var(--ink-3); }
.marquee-seq i {
  font-style: normal;
  color: var(--ember);
  font-size: 1.1rem;
  flex: none;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ------------------------------------------------------------------ */
/* Signature split (price list + photo)                               */
/* ------------------------------------------------------------------ */
.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.sig-list { list-style: none; margin: 34px 0 30px; padding: 0; }
.sig-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-block: 19px;
}
.sig-list li + li { border-top: 1px solid var(--line-soft); }
.sig-name {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 112;
  font-weight: 790;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  text-transform: uppercase;
}
.sig-dots { flex: 1; border-bottom: 1px dotted rgba(244, 238, 227, 0.25); transform: translateY(-4px); }
.sig-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--ember);
  white-space: nowrap;
}
.sig-note { font-size: 0.85rem; color: var(--ink-3); display: block; margin-top: 3px; }

.signature-photo {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.signature-photo img { width: 100%; height: 100%; object-fit: cover; }
.signature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(16, 14, 12, 0.55));
}
.photo-tag {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: rgba(16, 14, 12, 0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  backdrop-filter: blur(8px);
}

/* ------------------------------------------------------------------ */
/* Asymmetric trio (bento)                                            */
/* ------------------------------------------------------------------ */
.trio {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}
.trio-cell {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.trio-tall { grid-row: 1 / 3; min-height: 540px; }
.trio-cell > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trio-cell .cell-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(16, 14, 12, 0.05) 35%, rgba(16, 14, 12, 0.86) 82%);
}
.trio-body { position: relative; z-index: 2; padding: 26px 26px 24px; }
.trio-body h3 { margin-bottom: 6px; }
.trio-body p { color: var(--ink-2); font-size: 0.95rem; max-width: 44ch; margin: 0; }
.trio-ember {
  background:
    radial-gradient(120% 130% at 85% 10%, rgba(240, 161, 50, 0.28), transparent 55%),
    var(--bg-2);
}
.trio-ember .trio-body { padding-block: 34px; }
.trio-ember .btn { margin-top: 18px; }

/* ------------------------------------------------------------------ */
/* Story band                                                         */
/* ------------------------------------------------------------------ */
.story-band {
  position: relative;
  isolation: isolate;
  border-radius: var(--r-card);
  overflow: hidden;
  padding: clamp(60px, 9vw, 120px) clamp(24px, 6vw, 90px);
}
.story-band img.band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.story-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(16, 14, 12, 0.93) 18%, rgba(16, 14, 12, 0.55) 70%, rgba(16, 14, 12, 0.35));
}
.story-band h2 { max-width: 17ch; }
.story-band .lead { max-width: 50ch; }

/* ------------------------------------------------------------------ */
/* WhatsApp band                                                      */
/* ------------------------------------------------------------------ */
.wa-band { text-align: left; }
.wa-inner {
  border-radius: var(--r-card);
  border: 1px solid rgba(240, 161, 50, 0.35);
  background:
    radial-gradient(90% 140% at 12% 110%, rgba(240, 161, 50, 0.2), transparent 55%),
    var(--bg-2);
  padding: clamp(40px, 6vw, 76px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wa-inner h2 { margin-bottom: 8px; max-width: 16ch; }
.wa-inner p { margin: 0; color: var(--ink-2); max-width: 44ch; }

/* ------------------------------------------------------------------ */
/* Info strip                                                         */
/* ------------------------------------------------------------------ */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  background: var(--bg-2);
  padding: 30px 28px;
}
.info-card h3 { color: var(--ember); margin-bottom: 14px; }
.info-card p, .info-card li { color: var(--ink-2); font-size: 0.96rem; }
.info-card ul { list-style: none; margin: 0; padding: 0; }
.info-card li { display: flex; justify-content: space-between; gap: 16px; padding-block: 6px; }
.info-card li span:last-child { color: var(--ink); font-variant-numeric: tabular-nums; }
.info-card a { text-decoration: none; }
.info-card a:hover { color: var(--ember); }

/* ------------------------------------------------------------------ */
/* Page hero (subpages)                                               */
/* ------------------------------------------------------------------ */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(56px, 9vh, 110px));
  padding-bottom: clamp(20px, 4vh, 44px);
}
.page-hero .lead { max-width: 62ch; }

/* ------------------------------------------------------------------ */
/* Menu page                                                          */
/* ------------------------------------------------------------------ */
.menu-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(16, 14, 12, 0.88);
  backdrop-filter: blur(12px);
  border-block: 1px solid var(--line-soft);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav-inner {
  display: flex;
  gap: 6px;
  max-width: 1320px;
  margin-inline: auto;
  padding: 12px var(--pad-x);
}
.menu-nav a {
  flex: none;
  font-family: var(--font-display);
  font-variation-settings: "wdth" 108;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 18px;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.menu-nav a:hover { color: var(--ink); border-color: var(--line); }
.menu-nav a.active { color: var(--ember); border-color: rgba(240, 161, 50, 0.5); background: rgba(240, 161, 50, 0.08); }

.menu-section { scroll-margin-top: calc(var(--header-h) + 70px); }
.menu-section + .menu-section { margin-top: clamp(48px, 7vw, 90px); }

.menu-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 8px; }
.menu-head h2 { margin: 0; }
.menu-head .menu-sub { color: var(--ink-3); font-size: 0.95rem; }

.menu-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  background: var(--bg-2);
  overflow: hidden;
  margin-top: 22px;
}

.price-cols {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) repeat(var(--cols, 4), minmax(76px, 0.6fr));
  gap: 4px 14px;
  align-items: center;
  padding: 14px 26px;
}
.price-cols.head {
  background: var(--bg-3);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 13px;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.price-cols.head .col-label { text-align: right; line-height: 1.35; }
.price-cols.head .col-label b { display: block; color: var(--ink-2); font-weight: 650; }
.menu-item { border-top: 1px solid var(--line-soft); }
.menu-item:first-of-type { border-top: 0; }
.menu-item .item-name {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 110;
  font-weight: 760;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.menu-item .item-sub { display: block; color: var(--ink-3); font-size: 0.84rem; font-family: var(--font-body); font-weight: 460; text-transform: none; letter-spacing: 0; margin-top: 2px; }
.menu-item .price {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 770;
  font-size: 1rem;
  color: var(--ember);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu-item .price.na { color: var(--ink-3); font-weight: 500; }

.price-chips { display: none; }

@media (max-width: 760px) {
  .price-cols { grid-template-columns: 1fr; padding: 16px 20px; }
  .price-cols.head { display: none; }
  .menu-item .price { display: none; }
  .price-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
  }
  .price-chips > span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: var(--ink-2);
  }
  .price-chips > span b {
    color: var(--ember);
    font-family: var(--font-display);
    font-weight: 760;
    margin-left: 6px;
  }
}

.menu-feature {
  border: 1px solid rgba(240, 161, 50, 0.4);
  border-radius: var(--r-card);
  background:
    radial-gradient(120% 160% at 90% -20%, rgba(240, 161, 50, 0.18), transparent 55%),
    var(--bg-2);
  padding: clamp(30px, 5vw, 54px);
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.menu-feature h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 8px; }
.menu-feature p { color: var(--ink-2); margin: 0; max-width: 52ch; }
.feature-price { text-align: right; }
.feature-price .price-line {
  font-family: var(--font-display);
  font-weight: 850;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ember);
  white-space: nowrap;
}
.feature-price .price-note { color: var(--ink-3); font-size: 0.85rem; }

.simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.simple-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  background: var(--bg-2);
  padding: 26px;
}
.simple-card h3 { color: var(--ember); font-size: 1rem; margin-bottom: 12px; }
.simple-card ul { list-style: none; margin: 0; padding: 0; }
.simple-card li { display: flex; justify-content: space-between; gap: 14px; padding-block: 5px; color: var(--ink-2); font-size: 0.95rem; }
.simple-card li span:last-child { color: var(--ember); font-family: var(--font-display); font-weight: 740; font-variant-numeric: tabular-nums; }

.menu-disclaimer { color: var(--ink-3); font-size: 0.88rem; margin-top: 34px; max-width: 70ch; }

/* ------------------------------------------------------------------ */
/* About page                                                         */
/* ------------------------------------------------------------------ */
.about-intro { max-width: 70ch; }
.about-intro p { color: var(--ink-2); font-size: clamp(1.02rem, 1.5vw, 1.18rem); }

.full-photo {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 21 / 9;
}
.full-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-2);
}
.gallery figure.wide { grid-column: span 2; aspect-ratio: auto; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 0.8rem;
  background: rgba(16, 14, 12, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 6px 13px;
  backdrop-filter: blur(8px);
}

@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure.wide { grid-column: span 2; }
}

/* ------------------------------------------------------------------ */
/* Contact page                                                       */
/* ------------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.contact-cards { display: grid; gap: 16px; }

.map-wrap {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  aspect-ratio: 4 / 3.4;
  background: var(--bg-2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.5) contrast(1.04); }

.demo-form { display: grid; gap: 18px; margin-top: 8px; }
.form-row { display: grid; gap: 7px; }
.form-row label { font-size: 0.88rem; font-weight: 600; color: var(--ink-2); }
.form-row input, .form-row textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-input);
  color: var(--ink);
  font: 450 1rem var(--font-body);
  padding: 14px 16px;
  width: 100%;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--ink-3); }
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--ember); outline-offset: 0; border-color: transparent; }
.form-note { font-size: 0.86rem; color: var(--ink-3); margin: 0; }
.form-success { color: var(--ember); font-weight: 600; }

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */
.site-footer {
  margin-top: var(--section-gap);
  border-top: 1px solid var(--line-soft);
  padding: clamp(44px, 6vw, 70px) 0 36px;
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 36px;
}
.footer-brand .brand { font-size: 1.4rem; }
.footer-brand p { color: var(--ink-3); font-size: 0.9rem; max-width: 38ch; margin-top: 14px; }
.footer-col h3 { font-size: 0.85rem; color: var(--ink-3); letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--ink-2); text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover { color: var(--ember); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-3);
  font-size: 0.84rem;
}

/* ------------------------------------------------------------------ */
/* Responsive collapses                                               */
/* ------------------------------------------------------------------ */
@media (max-width: 980px) {
  .signature-grid { grid-template-columns: 1fr; }
  .signature-photo { aspect-ratio: 4 / 3; order: -1; }
  .trio { grid-template-columns: 1fr; }
  .trio-tall { grid-row: auto; min-height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .full-photo { aspect-ratio: 4 / 3; }
  .footer-grid { grid-template-columns: 1fr; }
}
