/* ==========================================================================
   Fueno Coffee & Roastery — fuenoshop.com
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  --ink:        #0B0908;
  --surface-1:  #141010;
  --surface-2:  #1D1715;
  --surface-3:  #262020;
  --line:       rgba(247, 241, 232, .10);
  --line-soft:  rgba(247, 241, 232, .06);
  --heading:    #F7F1E8;
  --text:       #DDD3C6;
  --muted:      #9E9184;
  --gold:       #C9A87C;
  --gold-soft:  #E4C99B;
  --gold-ghost: rgba(201, 168, 124, .12);
  --on-gold:    #16100A;
  --shadow:     0 18px 50px -20px rgba(0, 0, 0, .75);
  --radius:     18px;
  --radius-sm:  12px;
  --maxw:       1180px;
  --gutter:     clamp(18px, 5vw, 48px);
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color-scheme: dark;
}

[data-theme="light"] {
  --ink:        #FBF8F3;
  --surface-1:  #FFFFFF;
  --surface-2:  #F6F0E7;
  --surface-3:  #EFE7DA;
  --line:       rgba(24, 18, 14, .12);
  --line-soft:  rgba(24, 18, 14, .07);
  --heading:    #1A130E;
  --text:       #3A2E25;
  --muted:      #71624F;
  --gold:       #9A6E33;
  --gold-soft:  #7C5827;
  --gold-ghost: rgba(154, 110, 51, .10);
  --on-gold:    #FFFFFF;
  --shadow:     0 18px 46px -24px rgba(64, 44, 24, .40);
  color-scheme: light;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; }
h1, h2, h3, h4 { color: var(--heading); font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* --- Layout helpers ------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 116px); position: relative; }
.section--alt { background: var(--surface-1); }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 14px; display: block;
}
.section-title { font-size: clamp(30px, 5.2vw, 50px); }
.section-lede { color: var(--muted); font-size: clamp(16px, 1.9vw, 18px); max-width: 58ch; margin-top: 18px; }
.section-head { margin-bottom: clamp(34px, 5vw, 56px); }
.section-head--center { text-align: center; }
.section-head--center .section-lede { margin-inline: auto; }
.rule { width: 54px; height: 2px; background: var(--gold); border: 0; margin: 22px 0 0; }
.section-head--center .rule { margin-inline: auto; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; text-decoration: none;
  font-size: 14.5px; font-weight: 600; letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--gold); color: var(--on-gold); }
.btn--primary:hover { background: var(--gold-soft); }
.btn--ghost { border: 1px solid var(--line); color: var(--heading); background: rgba(255,255,255,.04); backdrop-filter: blur(8px); }
[data-theme="light"] .btn--ghost { background: rgba(255,255,255,.7); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; gap: 16px;
  padding: 14px var(--gutter);
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding-block: 10px;
}
/* backdrop-filter, position:fixed alt öğeler için başlığı "containing block"
   yapıyor — bu da mobil çekmeceyi başlık kutusunun içine hapsediyordu.
   Çekmece açıkken bulanıklığı kapatıp yerine düz zemin veriyoruz. */
.site-header.nav-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--ink);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand img { width: 38px; height: 38px; border-radius: 50%; background: #fff; padding: 3px; flex: none; }
.brand-name { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--heading); letter-spacing: .01em; white-space: nowrap; }
.brand-sub { display: block; font-family: var(--sans); font-size: 9.5px; font-weight: 600; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-top: 1px; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 9px 14px; border-radius: 999px; text-decoration: none;
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--gold); background: var(--gold-ghost); }

.header-tools { display: flex; align-items: center; gap: 8px; }
.lang-switch { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-switch button {
  padding: 7px 12px; font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--muted);
  transition: background .2s ease, color .2s ease;
}
.lang-switch button[aria-pressed="true"] { background: var(--gold); color: var(--on-gold); }
.icon-btn {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--heading);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }
.icon-btn svg { width: 17px; height: 17px; }
.nav-toggle { display: none; }
.nav-toggle .ic-close { display: none; }
.nav-toggle[aria-expanded="true"] .ic-open { display: none; }
.nav-toggle[aria-expanded="true"] .ic-close { display: block; }
.nav-toggle[aria-expanded="true"] { background: var(--gold); border-color: var(--gold); color: var(--on-gold); }

/* Şeffaf başlık hero fotoğrafının üstünde duruyor: her iki temada da
   açık renk metin kullanılmalı, yoksa açık temada okunmuyor. */
.site-header:not(.is-stuck)::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(11, 9, 8, .55), rgba(11, 9, 8, 0));
}
.site-header:not(.is-stuck) .brand-name { color: #F7F1E8; }
.site-header:not(.is-stuck) .brand-sub { color: #E4C99B; }
.site-header:not(.is-stuck) .icon-btn { color: #F7F1E8; border-color: rgba(247, 241, 232, .30); }
.site-header:not(.is-stuck) .icon-btn:hover { color: #E4C99B; border-color: #E4C99B; }
.site-header:not(.is-stuck) .lang-switch { border-color: rgba(247, 241, 232, .30); }
.site-header:not(.is-stuck) .lang-switch button[aria-pressed="false"] { color: rgba(247, 241, 232, .78); }
@media (min-width: 901px) {
  .site-header:not(.is-stuck) .site-nav a { color: rgba(247, 241, 232, .88); }
  .site-header:not(.is-stuck) .site-nav a:hover,
  .site-header:not(.is-stuck) .site-nav a.is-active { color: #E4C99B; background: rgba(247, 241, 232, .14); }
}

@media (max-width: 900px) {
  .brand-sub { display: none; }
  .nav-toggle { display: grid; }
  /* Açık çekmece, başlıktaki dil/tema/kapat düğmelerinin üzerini örtmemeli. */
  .brand, .header-tools { position: relative; z-index: 3; }
  .site-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); z-index: 2;
    flex-direction: column; align-items: stretch; justify-content: center; gap: 6px;
    padding: 96px 28px 28px; background: var(--surface-1); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { transform: none; }
  .site-nav a { padding: 14px 18px; font-size: 17px; border-radius: var(--radius-sm); }
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(2px);
    opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 55;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
}

/* --- Hero ----------------------------------------------------------------- */
/* Hero her iki temada da koyu kalır: üzerinde fotoğraf var, açık temada
   beyaz metin okunmaz hâle geliyordu. */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: end;
  padding: 120px 0 clamp(48px, 8vw, 90px); overflow: hidden;
  background: #0B0908;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
/* Geçişli hero slaytı: aktif kare yavaşça yakınlaşırken diğerine çapraz geçer. */
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
  opacity: 0; transform: scale(1.07);
  transition: opacity 1.5s ease, transform 9s linear;
  will-change: opacity, transform;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity .3s ease; transform: none; }
  .hero-slide.is-active { transform: none; }
}
@media (max-width: 700px) { .hero-slide { object-position: center 52%; } }

/* Slayt göstergeleri */
.hero-dots { position: absolute; right: var(--gutter); bottom: clamp(48px, 8vw, 90px); z-index: 2; display: flex; gap: 9px; }
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  background: rgba(247, 241, 232, .35); transition: background .25s ease, width .25s ease;
}
.hero-dots button[aria-current="true"] { background: var(--gold-soft); width: 26px; border-radius: 999px; }
@media (max-width: 700px) { .hero-dots { bottom: 16px; right: 50%; transform: translateX(50%); } }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, #0B0908 2%, rgba(11,9,8,.80) 32%, rgba(11,9,8,.34) 68%, rgba(11,9,8,.58) 100%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-eyebrow { color: var(--gold-soft); }
[data-theme="light"] .hero-eyebrow { color: #E4C99B; }
.hero h1 { font-size: clamp(46px, 11vw, 108px); line-height: .96; letter-spacing: -.025em; color: #F7F1E8; }
.hero-tagline { font-size: clamp(17px, 2.6vw, 24px); color: #E4DACB; margin-top: 20px; max-width: 30ch; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { margin-top: 30px; font-size: 13px; color: rgba(247,241,232,.70); display: flex; flex-wrap: wrap; gap: 8px 18px; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note b { color: #E4C99B; font-weight: 600; }

/* --- Contact strip -------------------------------------------------------- */
.strip { background: var(--surface-1); border-block: 1px solid var(--line); }
.strip-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.strip a {
  display: flex; align-items: center; gap: 13px; padding: 22px var(--gutter);
  text-decoration: none; border-right: 1px solid var(--line-soft);
  transition: background .22s ease;
}
.strip a:last-child { border-right: 0; }
.strip a:hover { background: var(--surface-2); }
.strip svg { width: 21px; height: 21px; color: var(--gold); flex: none; }
.strip-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.strip-value { font-size: 14.5px; font-weight: 600; color: var(--heading); }

/* --- Gündüz / Gece ikili panel -------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }
.split-panel {
  position: relative; min-height: clamp(340px, 52vw, 560px);
  display: flex; align-items: flex-end; overflow: hidden;
}
.split-panel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.6,.2,1);
}
.split-panel:hover img { transform: scale(1.05); }
.split-panel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,9,8,.92) 4%, rgba(11,9,8,.55) 42%, rgba(11,9,8,.12) 100%);
}
.split-body { position: relative; z-index: 1; padding: clamp(26px, 4vw, 44px); max-width: 46ch; }
.split-kicker {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: #16100A; background: var(--gold-soft);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.split-body h3 { font-size: clamp(24px, 3.4vw, 34px); color: #F7F1E8; }
.split-body p { margin-top: 12px; color: rgba(247, 241, 232, .78); font-size: 15.5px; line-height: 1.6; }

/* --- Kutlamalar ------------------------------------------------------------ */
.celebrate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
@media (max-width: 860px) { .celebrate-grid { grid-template-columns: 1fr; } }
.celebrate-media { position: relative; }
.celebrate-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 28px; }
.tag {
  font-size: 13.5px; padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--text); background: var(--surface-2);
}

/* --- Story ---------------------------------------------------------------- */
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }
.story-copy p + p { margin-top: 18px; }
.story-copy p { color: var(--text); font-size: 16.5px; }
.story-media { position: relative; }
.story-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story-badge {
  position: absolute; left: -22px; bottom: 26px;
  background: var(--gold); color: var(--on-gold); padding: 18px 22px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); max-width: 210px;
}
.story-badge b { display: block; font-family: var(--serif); font-size: 30px; line-height: 1; }
.story-badge span { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
@media (max-width: 520px) { .story-badge { left: 12px; bottom: 12px; padding: 14px 18px; } }

.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: clamp(40px, 6vw, 64px); }
.pillar { background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px 26px; transition: border-color .25s ease, transform .25s ease; }
.pillar:hover { border-color: var(--gold); transform: translateY(-3px); }
.pillar svg { width: 26px; height: 26px; color: var(--gold); margin-bottom: 16px; }
.pillar h3 { font-size: 19px; margin-bottom: 9px; }
.pillar p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* --- Gallery -------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery button {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 1; padding: 0; display: block; background: var(--surface-2);
}
.gallery button:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.gallery button:nth-child(6) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.6,.2,1), filter .35s ease; }
.gallery button:hover img { transform: scale(1.06); }
.gallery button::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.35), transparent 55%);
  opacity: 0; transition: opacity .3s ease;
}
.gallery button:hover::after { opacity: 1; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery button:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/11; } }

.lightbox {
  position: fixed; inset: 0; z-index: 90; display: none; place-items: center;
  background: rgba(6, 5, 4, .93); backdrop-filter: blur(8px); padding: 24px;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(94vw, 900px); max-height: 86vh; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.10); color: #fff; display: grid; place-items: center; font-size: 22px; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.10); color: #fff; display: grid; place-items: center; font-size: 24px; }
.lightbox-nav.prev { left: 16px; } .lightbox-nav.next { right: 16px; }
.lightbox-nav:hover, .lightbox-close:hover { background: rgba(255,255,255,.22); }

/* --- Menu ----------------------------------------------------------------- */
.menu-search { max-width: 480px; margin: 0 auto clamp(30px, 4vw, 44px); position: relative; }
.menu-search input {
  width: 100%; padding: 15px 46px 15px 46px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--heading);
  font: inherit; font-size: 15px; transition: border-color .2s ease;
}
.menu-search input::placeholder { color: var(--muted); }
.menu-search input:focus { outline: none; border-color: var(--gold); }
.menu-search .search-icon { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); pointer-events: none; }
.menu-search .clear-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: var(--muted); font-size: 18px; }
.menu-search .clear-btn:hover { background: var(--surface-3); color: var(--heading); }
.search-empty { text-align: center; color: var(--muted); padding: 28px 0; }

.categories { display: flex; flex-direction: column; gap: 14px; }
.category { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface-1); }
.category[open] { border-color: var(--gold); }
.category > summary { list-style: none; cursor: pointer; position: relative; display: block; }
.category > summary::-webkit-details-marker { display: none; }
.cat-head { position: relative; min-height: 132px; display: flex; align-items: flex-end; padding: 20px 22px; }
.cat-head img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-head::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,9,8,.90) 12%, rgba(11,9,8,.62) 46%, rgba(11,9,8,.22) 100%);
}
.cat-copy { position: relative; z-index: 1; }
.cat-kicker { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.cat-name { font-size: clamp(20px, 3.4vw, 27px); color: #F7F1E8; margin-top: 4px; }
.cat-count { font-size: 13px; color: rgba(247,241,232,.66); margin-top: 3px; }
.cat-toggle {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%); z-index: 1;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(247,241,232,.30);
  display: grid; place-items: center; color: #F7F1E8; transition: background .25s ease, transform .25s ease;
}
.category[open] .cat-toggle { background: var(--gold); border-color: var(--gold); color: var(--on-gold); transform: translateY(-50%) rotate(180deg); }
.cat-toggle svg { width: 16px; height: 16px; }

.products { display: flex; flex-direction: column; }
.product { display: flex; gap: 16px; padding: 18px 22px; border-top: 1px solid var(--line-soft); align-items: flex-start; }
.product:first-child { border-top: 1px solid var(--line); }
.product-thumb { width: 68px; height: 68px; border-radius: 10px; object-fit: cover; background: var(--surface-3); flex: none; }
.product-body { flex: 1; min-width: 0; }
.product-top { display: flex; align-items: baseline; gap: 14px; }
.product-name { font-family: var(--sans); font-size: 15.5px; font-weight: 600; color: var(--heading); flex: 1; letter-spacing: .005em; }
.product-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 12px; }
.product-price { font-family: var(--sans); font-size: 15.5px; font-weight: 700; color: var(--gold); white-space: nowrap; }
.product-desc { font-size: 14px; color: var(--muted); line-height: 1.58; margin-top: 5px; }
@media (max-width: 520px) {
  .product { padding: 15px 16px; gap: 13px; }
  .product-thumb { width: 56px; height: 56px; }
  .product-name, .product-price { font-size: 14.5px; }
  .product-desc { font-size: 13.2px; }
  .cat-head { padding: 16px 18px; min-height: 112px; }
  .cat-toggle { right: 14px; width: 34px; height: 34px; }
}

/* --- Roastery ------------------------------------------------------------- */
.roast-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
@media (max-width: 860px) { .roast-grid { grid-template-columns: 1fr; } }
.roast-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 1; object-fit: cover; width: 100%; }
.steps { display: flex; flex-direction: column; gap: 4px; margin: 30px 0 32px; }
.step { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.step:last-child { border-bottom: 0; }
.step-num { font-family: var(--serif); font-size: 15px; color: var(--gold); border: 1px solid var(--gold); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.step h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* --- Visit / contact ------------------------------------------------------ */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; } }
.info-list { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); align-items: flex-start; }
.info-row svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.info-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.info-value { font-size: 15.5px; color: var(--heading); font-weight: 500; }
.info-value a { color: var(--heading); text-decoration: none; border-bottom: 1px solid var(--line); }
.info-value a:hover { color: var(--gold); border-color: var(--gold); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; font-size: 14.5px; border-bottom: 1px solid var(--line-soft); }
.hours-table td:last-child { text-align: right; color: var(--heading); font-weight: 600; font-variant-numeric: tabular-nums; }
.visit-card { background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(24px, 4vw, 34px); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-row a {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--heading); text-decoration: none;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--on-gold); transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--surface-1); border-top: 1px solid var(--line); padding: clamp(46px, 6vw, 68px) 0 30px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; }
.footer-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; background: #fff; padding: 4px; }
.footer-tagline { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 34ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-nav a { text-decoration: none; font-size: 14.5px; color: var(--text); }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}

/* --- Reveal on scroll ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- Utility -------------------------------------------------------------- */
[hidden] { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--on-gold);
  display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top svg { width: 18px; height: 18px; }
