/* ==========================================================================
   LaCorona — Zigarren, Spirituosen & Lounge, Rapperswil
   Design tokens keep the original brand palette (dark brown + gold on a
   warm cream wash); layout, type and interaction are rebuilt.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,900;1,500&family=Questrial&display=swap');

:root {
  --ink: #3d2b1f;          /* dark brown — header/footer, primary text */
  --ink-soft: #6c502b;     /* medium brown — secondary accents, borders */
  --gold: #d4af37;         /* refined gold — primary accent (was #ffd700) */
  --gold-bright: #ffd700;  /* original bright gold — used sparingly for glints */
  --gold-soft: #ffe973;    /* pale gold — highlights, scrollbar */
  --cream: #fbf3dd;        /* warm cream wash — page background */
  --cream-deep: #f5e8c2;   /* deeper cream — alternating sections */
  --white: #fffdf8;

  --font-display: 'Playfair Display', 'Didot', 'Bodoni MT', Georgia, serif;
  --font-body: 'Questrial', 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;

  --radius-lg: 28px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 40px rgba(61, 43, 31, 0.16);
  --shadow-card: 0 10px 30px rgba(61, 43, 31, 0.12);
  --container: 1180px;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

*::-webkit-scrollbar { width: 10px; }
*::-webkit-scrollbar-track { background: var(--ink); }
*::-webkit-scrollbar-thumb { background-color: var(--gold-soft); border-radius: 6px; border: 2px solid var(--ink); }
* { scrollbar-width: thin; scrollbar-color: var(--gold-soft) var(--ink); }

/* ---------- eyebrow / kicker ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px 999px 999px 4px;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline {
  background: transparent;
  color: var(--gold-soft);
  border-color: rgba(255, 233, 115, 0.5);
}
.btn-outline:hover { background: rgba(255, 233, 115, 0.12); border-color: var(--gold-soft); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--gold-soft); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--ink) 85%, rgba(212, 175, 55, 0.14) 100%);
  color: var(--gold-soft);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
}
.brand svg { width: 38px; height: 38px; flex: none; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 233, 115, 0.7);
  margin-top: 2px;
}

.main-nav { display: flex; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav li { position: relative; }
.nav-item-row { display: flex; align-items: stretch; }
.main-nav a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  font-size: 0.87rem;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-icon { width: 16px; height: 16px; flex: none; object-fit: contain; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-bright);
}

/* dropdown submenus */
.dropdown-toggle {
  display: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 30px;
  padding: 0;
}
.dropdown-toggle .caret { width: 13px; height: 13px; transition: transform 0.2s ease; }
.dropdown-panel {
  list-style: none;
  margin: 0;
  padding: 8px;
  min-width: 220px;
}
.dropdown-panel a { font-size: 0.83rem; padding: 9px 12px; }

@media (min-width: 901px) {
  .dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: var(--ink);
    border-radius: 4px 16px 16px 16px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 60;
  }
  .has-dropdown:hover > .dropdown-panel,
  .has-dropdown:focus-within > .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.header-extras { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gold-soft);
  border: 1px solid rgba(255, 233, 115, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.header-phone:hover { background: rgba(255, 233, 115, 0.1); }
.header-phone svg { width: 15px; height: 15px; }

.header-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 233, 115, 0.35);
  color: var(--gold-soft);
  flex: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.header-login:hover { background: rgba(255, 233, 115, 0.1); color: var(--gold-bright); }
.header-login svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 233, 115, 0.35);
  background: transparent;
  color: var(--gold-soft);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; }
  .main-nav {
    display: block;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--ink);
    padding: 100px 8px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -12px 0 30px rgba(0,0,0,0.3);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { border-radius: 10px; padding: 13px 16px; font-size: 1rem; }
  .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-item-row { align-items: center; }
  .nav-item-row a { flex: 1; }
  .dropdown-toggle { display: flex; }
  .dropdown-panel {
    display: none;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    margin: 2px 0 6px 10px;
  }
  .dropdown-panel a { font-size: 0.92rem; }
  .has-dropdown.expanded > .dropdown-panel { display: block; }
  .has-dropdown.expanded .dropdown-toggle .caret { transform: rotate(180deg); }
  .nav-scrim {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 90;
  }
  .nav-scrim.open { display: block; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
}
.hero-slides {
  position: relative;
  min-height: 78vh;
  display: grid;
}
.hero-slide {
  grid-area: 1 / 1;
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  background: linear-gradient(160deg, #2c1e15 0%, #3d2b1f 55%, #4a3420 100%);
}
.hero-slide.active { opacity: 1; }
.hero-content { max-width: 640px; padding: 120px 24px 90px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.4em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero p.lead {
  color: rgba(251, 243, 221, 0.85);
  font-size: 1.05rem;
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-dots {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 5;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid var(--gold-soft);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dots button.active { background: var(--gold-soft); }

.hero-ornament {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 460px; height: 460px;
  opacity: 0.14;
  z-index: 1;
  pointer-events: none;
}

/* generic sub-page header (no carousel) */
.page-hero {
  background: linear-gradient(160deg, #2c1e15 0%, #3d2b1f 55%, #4a3420 100%);
  color: var(--white);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero .lead { color: rgba(251,243,221,0.82); max-width: 60ch; }
.breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(255,233,115,0.75);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--gold-bright); }

/* ---------- sections ---------- */
section { padding: 88px 0; }
.section-alt { background: var(--cream-deep); }
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p { color: var(--ink-soft); }
.section-dark .section-head p { color: rgba(251,243,221,0.75); }

/* ---------- corner-card motif (single rounded corner, brand signature) --- */
.corner-card {
  background: var(--white);
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 34px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.corner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.corner-card .icon-badge { margin-bottom: 18px; }

.icon-badge {
  width: 58px; height: 58px;
  border-radius: 4px 16px 4px 16px;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  display: flex; align-items: center; justify-content: center;
}
.icon-badge svg { width: 28px; height: 28px; color: var(--gold-soft); }

/* ---------- grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- visual panel (replaces photography with brand-consistent art) */
.art-panel {
  position: relative;
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(160deg, #2c1e15, #4a3420);
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
}
.art-panel svg { width: 55%; opacity: 0.9; }
.art-panel::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,233,115,0.16), transparent 60%);
}
.art-panel.tall { min-height: 460px; }

/* ---------- divider ---------- */
.rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px auto;
}
.section-head.left .rule { margin-left: 0; }

/* ---------- hours table ---------- */
.hours-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  padding: 34px 38px;
  box-shadow: var(--shadow-soft);
}
.hours-card h3 { color: var(--gold-soft); }
.hours-list { display: flex; flex-direction: column; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,233,115,0.14);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(251,243,221,0.85); }
.hours-row .time { color: var(--gold-soft); font-weight: 600; }
.hours-row.closed .time { color: rgba(251,243,221,0.4); }

/* ---------- contact / location ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .icon-badge { flex: none; width: 46px; height: 46px; }
.contact-item .icon-badge svg { width: 22px; height: 22px; }
.contact-item h4 { margin-bottom: 2px; font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
.contact-item p { margin: 0; color: var(--ink-soft); }
.contact-item a:hover { color: var(--ink); text-decoration: underline; }

.map-frame {
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: none;
  width: 100%;
  min-height: 360px;
}

/* ---------- quote / feature strip ---------- */
.verb-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-soft);
}
.verb-strip span::after { content: "·"; margin-left: 26px; color: rgba(255,233,115,0.4); }
.verb-strip span:last-child::after { content: ""; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--white);
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h3 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(251,243,221,0.8); margin: 0; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 243, 221, 0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,233,115,0.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-bottom .legal-links { display: flex; gap: 16px; }
.footer-bottom .legal-links a:hover { color: var(--gold-bright); }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--gold-soft); margin-bottom: 14px; }
.footer-brand svg { width: 30px; height: 30px; }
.footer-brand span { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.1em; }
.footer-col h5 {
  color: var(--gold-soft);
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 0.8rem; flex-wrap: wrap; gap: 10px;
  color: rgba(251,243,221,0.5);
}

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- misc page content ---------- */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 1.4em; }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.badge-pill {
  padding: 9px 18px;
  border-radius: 999px 999px 999px 4px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
@media (max-width: 640px) { .two-col-list { grid-template-columns: 1fr; } }
.two-col-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(61,43,31,0.15);
}
.two-col-list li svg { width: 16px; height: 16px; margin-top: 4px; color: var(--gold); flex: none; }

.spirit-card {
  background: var(--white);
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.spirit-card .art-panel { border-radius: 0; min-height: 180px; }
.spirit-card .art-panel.photo { overflow: hidden; }
.spirit-card .art-panel.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spirit-card .art-panel.photo::after { display: none; }
.spirit-card .art-panel.photo.contain { background: var(--white); }
.spirit-card .art-panel.photo.contain img { object-fit: contain; padding: 18px; box-sizing: border-box; }
.spirit-card .body { padding: 26px 28px; }
.spirit-card h3 { font-size: 1.15rem; }
.spirit-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- contact form ---------- */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-size: 0.8rem; letter-spacing: 0.03em; color: var(--ink-soft); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid rgba(61, 43, 31, 0.2);
  border-radius: 4px 12px 4px 12px;
  background: var(--cream);
  color: var(--ink);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .form-note { font-size: 0.78rem; color: var(--ink-soft); }
.location-anchor { scroll-margin-top: 110px; }

/* ---------- brand logo image ---------- */
.brand img.logo-mark { height: 168px; width: auto; flex: none; margin: -20px 0; }
.footer-brand img.logo-mark { height: 140px; width: auto; }
@media (max-width: 999px) { .brand img.logo-mark { height: 108px; margin: -10px 0; } }

/* ---------- real photography panels (replace art-panel where a photo exists) */
.photo-panel {
  position: relative;
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  background: var(--ink);
}
.photo-panel img {
  width: 100%; height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.photo-panel.tall img, .photo-panel.tall { min-height: 460px; }

/* full-width panoramic band — matches the 3600x720 (5:1) source photos exactly, so
   object-fit:cover never has to crop anything */
.photo-band {
  width: 100%;
  aspect-ratio: 5 / 1;
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--ink);
}
.photo-band img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) { .photo-band { aspect-ratio: 16 / 9; } }

.photo-panel .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 22px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.hero-photo {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30,20,13,0.92) 0%, rgba(30,20,13,0.72) 42%, rgba(30,20,13,0.35) 75%);
}
.hero-slide { z-index: 1; }
.hero-slide .container.hero-content { position: relative; z-index: 2; }

/* photo strip / gallery grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.photo-grid .photo-panel { min-height: 220px; }
.photo-grid .photo-panel img { min-height: 220px; }
@media (max-width: 900px) { .photo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .photo-grid { grid-template-columns: 1fr; } }

/* ---------- icon-photo badge (the supplied crown icon set, recolored transparent) ---------- */
.icon-photo {
  box-sizing: border-box;
  width: 58px; height: 58px;
  border-radius: 4px 16px 4px 16px;
  overflow: hidden;
  flex: none;
  box-shadow: var(--shadow-card);
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  padding: 11px;
}
.icon-photo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.icon-photo.sm { width: 44px; height: 44px; padding: 8px; }
.icon-photo.lg { width: 76px; height: 76px; border-radius: 4px 20px 4px 20px; padding: 15px; }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 26px;
  text-align: center;
}
.team-card .icon-photo { margin: 0 auto 16px; width: 72px; height: 72px; border-radius: 50%; }
.team-card .photo-avatar {
  margin: 0 auto 16px;
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--white);
}
.team-card .photo-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 25%; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-card .role { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.team-card a.mail { font-size: 0.85rem; color: var(--ink-soft); }
.team-card a.mail:hover { color: var(--ink); }
.team-card .birthday { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.78rem; color: var(--ink-soft); margin-top: 6px; }
.team-card .birthday svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* ---------- A-Z offer entries ---------- */
.az-entry {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(61,43,31,0.12);
}
.az-entry:first-child { padding-top: 0; }
.az-letter {
  width: 56px; height: 56px;
  border-radius: 4px 16px 4px 16px;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.az-entry h3 { margin-bottom: 8px; }
.az-entry p { color: var(--ink-soft); margin-bottom: 6px; }

/* ---------- event cards ---------- */
.event-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 22px 26px;
  align-items: center;
}
.event-date {
  flex: none;
  width: 74px; height: 74px;
  border-radius: 4px 18px 4px 18px;
  background: var(--ink);
  color: var(--gold-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display);
  text-align: center;
  line-height: 1.1;
}
.event-date .d { font-size: 1.3rem; font-weight: 700; }
.event-date .m { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; }
.event-date .y { font-size: 0.6rem; opacity: 0.65; }
.event-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.event-card p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }
.event-card .loc { font-size: 0.8rem; color: var(--gold); margin-top: 4px; }
.event-list { display: flex; flex-direction: column; gap: 16px; }
.sold-out { opacity: 0.55; }
.sold-out-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8b0000;
  background: rgba(139,0,0,0.08);
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 6px;
}

/* ---------- social row ---------- */
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  box-sizing: border-box;
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  padding: 9px;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}
.social-row a:hover { transform: translateY(-3px); }
.social-row img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ---------- newsletter / PS box ---------- */
.ps-box {
  background: var(--cream-deep);
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  padding: 30px 34px;
  margin-top: 30px;
  border-left: 3px solid var(--gold);
}
.ps-box p { margin-bottom: 0.6em; }
.ps-box p:last-child { margin-bottom: 0; }

/* ---------- legal prose pages ---------- */
.legal-prose h2 { font-size: 1.3rem; margin-top: 1.6em; }
.legal-prose p, .legal-prose li { color: var(--ink-soft); }
.legal-prose ul { padding-left: 1.2em; list-style: disc; margin-bottom: 1em; }
.legal-prose li { margin-bottom: 0.4em; }

/* ---------- password gate ---------- */
#pwdGate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(160deg, #2c1e15 0%, #3d2b1f 55%, #4a3420 100%);
}
html.lc-unlocked #pwdGate { display: none; }
html:not(.lc-unlocked) body { overflow: hidden; }
#pwdGate .gate-card {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border-radius: 4px var(--radius-lg) 4px var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px 34px;
  text-align: center;
}
#pwdGate .logo-mark { height: 84px; width: auto; margin: 0 auto 22px; display: block; }
#pwdGate h1 { font-size: 1.4rem; margin-bottom: 8px; }
#pwdGate p.lead { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 22px; }
#pwdGate .field { text-align: left; margin-bottom: 16px; }
#pwdGate input[type="password"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid rgba(61, 43, 31, 0.2);
  border-radius: 4px 12px 4px 12px;
  background: var(--cream);
  color: var(--ink);
}
#pwdGate input[type="password"]:focus { outline: none; border-color: var(--gold); background: var(--white); }
#pwdGate .btn { width: 100%; justify-content: center; }
#pwdGate .gate-error {
  display: none;
  margin-top: 14px;
  font-size: 0.85rem;
  color: #b32121;
}
#pwdGate .gate-error.show { display: block; }
#pwdGate .gate-shake { animation: gateShake 0.4s ease; }
@keyframes gateShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}
