/* ============================================================ */
/* 100 Gramm Vino — Custom Styles                                */
/* ============================================================ */

/* Filmkorn-Textur (statt großer PNGs einfacher SVG-Noise) */
.grain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.04  0 0 0 0 0.03  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* Smooth Selection */
::selection {
  background: #c87f3a;
  color: #0a0807;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0807; }
::-webkit-scrollbar-thumb { background: #3a3431; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #c87f3a; }

/* ============================================================ */
/* FIXED NAV — Abstand für Unterseiten (unabhängig von Tailwind-Build) */
/* ============================================================ */
:root {
  --nav-height: 5.75rem;
}

html {
  scroll-padding-top: calc(var(--nav-height) + 1rem);
}

html.smooth-scroll-enabled {
  scroll-behavior: smooth;
}

.page-sub {
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 7rem;
}

@media (min-width: 1024px) {
  .page-sub {
    padding-top: calc(var(--nav-height) + 2.75rem);
    padding-bottom: 10rem;
  }
}

.page-sub--center {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ============================================================ */
/* NAV                                                           */
/* ============================================================ */
#nav.scrolled {
  background: rgba(10, 8, 7, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 127, 58, 0.12);
}

.nav-link {
  position: relative;
  transition: color .3s ease;
}
.nav-link:hover { color: #f5ede0; }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: #c87f3a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.5, 0, .2, 1);
}
.nav-link:hover::after { transform: scaleX(1); }

/* ============================================================ */
/* BUTTONS                                                       */
/* ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #c87f3a;
  color: #0a0807;
  padding: 0.9rem 1.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid #c87f3a;
  transition: all .35s cubic-bezier(.5, 0, .2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: #e89854;
  border-color: #e89854;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(232, 152, 84, 0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #f5ede0;
  padding: 0.9rem 1.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 237, 224, 0.25);
  transition: all .35s ease;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: #c87f3a;
  color: #c87f3a;
}

/* ============================================================ */
/* MENU / FILTER                                                 */
/* ============================================================ */
.filter-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.55);
  border: 1px solid rgba(200, 127, 58, 0.2);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
}
.filter-btn:hover {
  color: #f5ede0;
  border-color: rgba(200, 127, 58, 0.5);
}
.filter-btn.active {
  background: #c87f3a;
  color: #0a0807;
  border-color: #c87f3a;
}

/* Menu Items */
.menu-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(200, 127, 58, 0.15);
  transition: opacity .4s ease, transform .4s ease;
}
.menu-item.hide {
  display: none;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.6);
  border: 1px solid rgba(245, 237, 224, 0.18);
  border-radius: 999px;
}
.badge-cognac {
  color: #c87f3a;
  border-color: rgba(200, 127, 58, 0.45);
}

/* ============================================================ */
/* EVENT CARDS                                                   */
/* ============================================================ */
.event-card {
  background: #141110;
  border: 1px solid rgba(200, 127, 58, 0.12);
  overflow: hidden;
  transition: all .4s ease;
}
.event-card:hover {
  border-color: rgba(200, 127, 58, 0.4);
  transform: translateY(-4px);
}
.event-image {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.event-card:hover .event-image img {
  transform: scale(1.06);
}
.event-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 8, 7, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.6rem 0.9rem;
  text-align: center;
  border: 1px solid rgba(200, 127, 58, 0.3);
}
.event-date .day {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #f5ede0;
  font-weight: 500;
}
.event-date .month {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c87f3a;
  margin-top: 2px;
}
.event-body {
  padding: 1.5rem 1.6rem 1.8rem;
}
.event-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #c87f3a;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.event-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f5ede0;
  border-bottom: 1px solid #c87f3a;
  padding-bottom: 3px;
  transition: all .3s ease;
}
.event-link:hover {
  color: #c87f3a;
}

/* ============================================================ */
/* COMING SOON COUNTDOWN                                         */
/* ============================================================ */
.coming-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 36rem;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .coming-countdown-grid { gap: 0.5rem; }
}
.coming-countdown-unit {
  background: rgba(20, 17, 16, 0.85);
  border: 1px solid rgba(200, 127, 58, 0.25);
  padding: 1rem 0.5rem;
  text-align: center;
}
.coming-countdown-val {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  line-height: 1;
  color: #f5ede0;
  font-weight: 500;
}
@media (min-width: 640px) {
  .coming-countdown-val { font-size: 2.75rem; }
}
.coming-countdown-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 127, 58, 0.85);
}

/* ============================================================ */
/* JOBS LISTING                                                  */
/* ============================================================ */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .jobs-list { gap: 3rem; }
}
.job-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #141110;
  border: 1px solid rgba(200, 127, 58, 0.14);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
@media (min-width: 640px) {
  .job-card {
    grid-template-columns: 5.5rem 1fr;
  }
}
.job-card:hover {
  border-color: rgba(200, 127, 58, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.job-card-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.5rem;
  background: rgba(200, 127, 58, 0.06);
  border-bottom: 1px solid rgba(200, 127, 58, 0.12);
}
@media (min-width: 640px) {
  .job-card-accent {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 2.25rem;
    border-bottom: none;
    border-right: 1px solid rgba(200, 127, 58, 0.12);
  }
}
.job-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(200, 127, 58, 0.35);
  color: #c87f3a;
  font-size: 1.15rem;
  background: rgba(10, 8, 7, 0.6);
}
.job-card-body {
  padding: 1.75rem 1.5rem 1.85rem;
}
@media (min-width: 640px) {
  .job-card-body {
    padding: 2rem 2.25rem 2.1rem;
  }
}
.job-card-head {
  margin-bottom: 1.25rem;
}
.job-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #f5ede0;
  margin-bottom: 0.85rem;
}
@media (min-width: 640px) {
  .job-card-title { font-size: 2rem; }
}
.job-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 127, 58, 0.95);
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(200, 127, 58, 0.25);
  background: rgba(200, 127, 58, 0.06);
}
.job-card-teaser {
  color: rgba(245, 237, 224, 0.68);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 640px) {
  .job-card-teaser {
    font-size: 1rem;
    -webkit-line-clamp: 3;
  }
}
.job-card-footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 127, 58, 0.12);
}
.job-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f5ede0;
  border-bottom: 1px solid #c87f3a;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.job-card-link:hover {
  color: #c87f3a;
}
.job-card-link i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}
.job-card:hover .job-card-link i {
  transform: translateX(4px);
}

/* ============================================================ */
/* GALLERY                                                       */
/* ============================================================ */
.gallery-tile {
  display: block;
  position: relative;
  overflow: hidden;
  background: #141110;
  aspect-ratio: 1 / 1;
  border: none;
  padding: 0;
  cursor: zoom-in;
  width: 100%;
  font: inherit;
  color: inherit;
  text-align: inherit;
}
@media (min-width: 768px) {
  .gallery-tile {
    aspect-ratio: auto;
    height: 100%;
  }
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.3, 0, .2, 1), filter .4s ease;
  filter: brightness(0.85) saturate(0.9);
}
.gallery-tile:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1);
}

/* ============================================================ */
/* LIGHTBOX                                                      */
/* ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
}
.lightbox[hidden] {
  display: none !important;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 7, 0.92);
  backdrop-filter: blur(8px);
}
.lightbox-stage {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 85vh;
}
.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  animation: lightbox-in 0.35s cubic-bezier(.3, 0, .2, 1);
}
@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 3;
  border: none;
  background: rgba(20, 17, 16, 0.75);
  color: #f5ede0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: #c87f3a;
  color: #0a0807;
}
.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  font-size: 1.75rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  font-size: 1.1rem;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.5);
}
@media (max-width: 640px) {
  .lightbox { padding: 2.5rem 0.5rem; }
  .lightbox-prev { left: 0.35rem; }
  .lightbox-next { right: 0.35rem; }
}

/* ============================================================ */
/* PROTECTED FORMS (JS + Anti-Spam)                              */
/* ============================================================ */
.form-guard-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.protected-form:not(.is-ready) {
  pointer-events: none;
  opacity: 0.55;
  filter: grayscale(0.2);
}
.protected-form:not(.is-ready) .form-guard-noscript {
  opacity: 1;
}
.protected-form.is-ready .form-guard-noscript {
  display: none;
}
noscript .protected-form {
  pointer-events: none;
  opacity: 0.5;
}

/* ============================================================ */
/* FORM                                                          */
/* ============================================================ */
.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.6);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(10, 8, 7, 0.6);
  border: 1px solid rgba(200, 127, 58, 0.2);
  color: #f5ede0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color .25s ease;
  font-family: inherit;
}
.form-input:focus {
  border-color: #c87f3a;
}
.form-input::placeholder {
  color: rgba(245, 237, 224, 0.35);
}
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23c87f3a' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ============================================================ */
/* ANIMATIONS                                                    */
/* ============================================================ */

/* Hero Fade-in mit Stagger */
.hero-fade {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 1s cubic-bezier(.3, 0, .2, 1) forwards;
}
.hero-fade:nth-child(1) { animation-delay: .2s; }
.hero-fade:nth-child(2) { animation-delay: .35s; }
.hero-fade:nth-child(3) { animation-delay: .5s; }
.hero-fade:nth-child(4) { animation-delay: .65s; }
.hero-fade:nth-child(5) { animation-delay: .8s; }
.hero-fade:nth-child(6) { animation-delay: .95s; }

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slow Hero Zoom */
.hero-img {
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.15); }
  to { transform: scale(1.0); }
}

/* Scroll Line Animation */
.scroll-line {
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.4); opacity: 1; }
}

/* Reveal-on-Scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.3, 0, .2, 1), transform .9s cubic-bezier(.3, 0, .2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================ */
/* RESPONSIVE Feinheiten                                         */
/* ============================================================ */
@media (max-width: 640px) {
  .filter-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.68rem;
  }
}

/* ============================================================ */
/* SITE LOGO (rund / eckig — Einstellung im Admin)               */
/* ============================================================ */
.site-logo {
  object-fit: cover;
}
.site-logo--round {
  border-radius: 9999px;
}
.site-logo--square {
  border-radius: 0.125rem;
}

/* ============================================================ */
/* GATE LAYOUT (Coming Soon, Jobs, rechtliche Seiten)            */
/* Unabhängig vom Tailwind-Build — fehlende Utilities hier       */
/* ============================================================ */
body.layout-gate {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.layout-gate main {
  flex: 1 1 auto;
}

.gate-header-inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .gate-header-inner { padding-left: 3rem; padding-right: 3rem; }
}
.gate-brand span {
  display: none;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.8);
}
@media (min-width: 640px) {
  .gate-brand span { display: block; }
}
.gate-brand .site-logo {
  width: 2.75rem;
  height: 2.75rem;
}
.gate-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.7);
}
@media (min-width: 1024px) {
  .gate-nav { gap: 2.25rem; }
}
.gate-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.gate-lang a.is-active { color: #c87f3a; }
.gate-lang a:not(.is-active) { color: rgba(245, 237, 224, 0.6); }
.gate-lang a:not(.is-active):hover { color: #f5ede0; }
.gate-lang .sep { color: rgba(245, 237, 224, 0.3); }

.gate-footer {
  margin-top: auto;
  background: #141110;
  border-top: 1px solid rgba(200, 127, 58, 0.1);
}
.gate-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 1024px) {
  .gate-footer-inner { padding-left: 3rem; padding-right: 3rem; }
}
.gate-footer-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .gate-footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.gate-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gate-footer-brand .site-logo {
  width: 2.5rem;
  height: 2.5rem;
}
.gate-footer-brand .title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  color: #f5ede0;
  line-height: 1.2;
}
.gate-footer-brand .sub {
  font-size: 10px;
  color: rgba(245, 237, 224, 0.45);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.gate-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245, 237, 224, 0.6);
}
.gate-footer-links a:hover { color: #c87f3a; }
.gate-footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 237, 224, 0.35);
  margin-top: 2rem;
}

/* Coming Soon Seite */
.coming-soon-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.coming-soon-inner {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
@media (min-width: 1024px) {
  .coming-soon-inner { padding-left: 3rem; padding-right: 3rem; }
}
.coming-soon-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
  overflow: hidden;
  border-radius: 2px;
}
.coming-soon-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coming-soon-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0a0807, rgba(10, 8, 7, 0.9), #0a0807);
}
.coming-soon-content {
  position: relative;
  z-index: 1;
}
.coming-soon-eyebrow {
  color: #c87f3a;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.coming-soon-eyebrow .line {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: #c87f3a;
}
.coming-soon-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  color: #f5ede0;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.coming-soon-title .accent {
  font-style: italic;
  color: #e89854;
}
.coming-soon-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  color: rgba(245, 237, 224, 0.9);
  text-align: center;
  margin-bottom: 1rem;
}
.coming-soon-lead {
  color: rgba(245, 237, 224, 0.7);
  font-weight: 300;
  font-size: 1.125rem;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.65;
}
.coming-soon-panel {
  max-width: 32rem;
  margin: 0 auto;
  background: rgba(20, 17, 16, 0.92);
  border: 1px solid rgba(200, 127, 58, 0.2);
  padding: 2rem;
}
@media (min-width: 640px) {
  .coming-soon-panel { padding: 2.5rem; }
}
.coming-soon-panel h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: #f5ede0;
  text-align: center;
  margin-bottom: 0.75rem;
}
.coming-soon-perks {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245, 237, 224, 0.7);
}
.coming-soon-perks li + li { margin-top: 0.5rem; }
.coming-soon-perks i {
  color: #c87f3a;
  margin-right: 0.5rem;
}
.coming-soon-panel .protected-form input[type="email"] {
  width: 100%;
  background: rgba(10, 8, 7, 0.6);
  border: 1px solid rgba(200, 127, 58, 0.3);
  color: #f5ede0;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.coming-soon-panel .protected-form input[type="email"]:focus {
  border-color: #c87f3a;
}
.coming-soon-panel .protected-form input[type="email"]::placeholder {
  color: rgba(245, 237, 224, 0.4);
}
.coming-soon-panel .protected-form.flex-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.coming-soon-panel .protected-form .btn-primary {
  width: 100%;
  justify-content: center;
}
.coming-soon-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(245, 237, 224, 0.5);
  margin-top: 1rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
.coming-soon-consent input { margin-top: 0.125rem; accent-color: #c87f3a; }
.coming-soon-consent a { text-decoration: underline; }
.coming-soon-consent a:hover { color: #c87f3a; }

.coming-countdown.mb-14 {
  margin-bottom: 3.5rem;
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-fade { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
}
