/* ==========================================================================
   Winetime Asia — Design system & site styles
   Brand palette sampled directly from the official Winetime logo artwork.
   ========================================================================== */

:root {
  /* Brand palette (sampled from the official logo: red #e63a1b, charcoal #333) */
  --pink: #e63a1b;
  --pink-dark: #c22e15;
  --pink-light: #ff8f6b;
  --pink-tint: #fdeae5;
  --navy: #333333;
  --navy-light: #474747;
  --ink: #1a1a1a;
  --ink-soft: #242424;
  --paper: #ffffff;
  --paper-soft: #f7f5f2;
  --stone: #e7e2da;
  --text: #1a1a1a;
  --text-muted: #5c5f66;
  --text-inverse: #f5f5f7;
  --text-inverse-muted: #b3b3b3;
  --gold: #c9a24b;
  --success: #2f8f5b;

  /* Type */
  --font-display: "Fraunces", "Playfair Display", "Noto Sans Khmer", Georgia, serif;
  --font-body: "Inter", "Noto Sans Khmer", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(14, 14, 18, 0.08);
  --shadow-md: 0 12px 32px rgba(14, 14, 18, 0.14);
  --shadow-lg: 0 24px 60px rgba(14, 14, 18, 0.28);
  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------------------------------------------------- */
/* Reset                                                                     */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; color: var(--text); }
p { margin: 0 0 1em; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--pink-light); outline-offset: 2px; }

/* -------------------------------------------------------------------------- */
/* Layout helpers                                                            */
/* -------------------------------------------------------------------------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 88px; }
.section--tight { padding-block: 56px; }
.section--dark { background: var(--ink); color: var(--text-inverse); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--text-inverse); }
.section--navy { background: var(--navy); color: var(--text-inverse); }
.section--soft { background: var(--paper-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink); font-weight: 700; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--pink); display: inline-block; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.section--dark .section-head p, .section--navy .section-head p { color: var(--text-inverse-muted); }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                   */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-pill); border: 2px solid transparent;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--pink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--pink-dark); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--text-inverse); border-color: rgba(245,245,247,0.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline.on-light { color: var(--text); border-color: rgba(26,26,26,0.25); }
.btn-outline.on-light:hover { border-color: var(--text); background: rgba(26,26,26,0.05); }
.btn-ghost { background: transparent; color: var(--pink); padding: 10px 4px; }
.btn-ghost:hover { color: var(--pink-dark); transform: translateX(2px); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }
.icon-ext { width: 13px; height: 13px; }

/* -------------------------------------------------------------------------- */
/* Header / Nav                                                              */
/* -------------------------------------------------------------------------- */
#site-header { position: sticky; top: 0; z-index: 100; }
.nav {
  background: var(--navy); color: var(--text-inverse);
  height: var(--header-h); display: flex; align-items: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav .container { display: flex; align-items: center; gap: 32px; width: 100%; }
.brand {
  display: flex; align-items: center; flex-shrink: 0;
  background: #fff; padding: 7px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.brand-logo { height: 32px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-right: auto; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links button.nav-link {
  display: flex; align-items: center; justify-content: center; text-align: center; gap: 6px; padding: 10px 14px; border-radius: var(--radius-pill);
  font-size: 0.93rem; font-weight: 500; color: var(--text-inverse-muted);
  background: transparent; border: none; transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active, .nav-links button.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: #fff; }
.nav-link--shop { color: #fff !important; background: rgba(230,58,27,0.18) !important; }
.nav-link--shop:hover { background: rgba(230,58,27,0.32) !important; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 190px;
  background: var(--paper); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--text); font-size: 0.9rem; }
.dropdown-menu a:hover { background: var(--pink-tint); color: var(--pink-dark); }
.dropdown-toggle svg { width: 13px; height: 13px; }

.nav-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-inverse); background: transparent; border: none; transition: background 0.2s;
}
.icon-btn:hover { background: rgba(255,255,255,0.1); }
.icon-btn svg { width: 19px; height: 19px; }
.hamburger { display: none; }

.lang-dropdown .nav-link { gap: 6px; white-space: nowrap; }
.lang-dropdown .nav-link svg { width: 15px; height: 15px; }
.lang-menu { min-width: 150px; right: 0; left: auto; }
.lang-menu a, .lang-menu .lang-current { display: block; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 0.9rem; }
.lang-menu .lang-current { color: var(--pink); font-weight: 700; background: var(--pink-tint); }

.mobile-lang-switcher { display: flex; gap: 8px; margin: 4px 0 2px; }
.mobile-lang-switcher a, .mobile-lang-switcher .lang-current {
  flex: 1; text-align: center; padding: 10px 6px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.18); color: var(--text-inverse-muted);
}
.mobile-lang-switcher .lang-current { background: var(--pink); border-color: var(--pink); color: #fff; }

.footer-lang { display: flex; gap: 14px; margin-top: 18px; font-size: 0.85rem; flex-wrap: wrap; }
.footer-lang a { color: var(--text-inverse-muted); transition: color 0.2s; }
.footer-lang a:hover { color: var(--pink-light); }
.footer-lang .lang-current { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-actions .icon-btn.desktop-only { display: none; }
  .lang-dropdown { display: none; }
  .hamburger { display: flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200; visibility: hidden;
}
.mobile-drawer.open { visibility: visible; }
.mobile-drawer__scrim {
  position: absolute; inset: 0; background: rgba(14,14,18,0.55);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.mobile-drawer.open .mobile-drawer__scrim { opacity: 1; }
.mobile-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(84vw, 360px);
  background: var(--navy); color: var(--text-inverse); padding: 24px;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  display: flex; flex-direction: column; gap: 22px; overflow-y: auto;
}
.mobile-drawer.open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__head { display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a, .mobile-drawer nav button {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--text-inverse); font-size: 1.02rem; width: 100%; background: none; border-left: none; border-right: none; border-top: none; text-align: left;
}
.mobile-drawer .sub-links { padding-left: 16px; display: none; flex-direction: column; }
.mobile-drawer .sub-links.open { display: flex; }
.mobile-drawer .sub-links a { border-bottom: none; padding: 10px 6px; color: var(--text-inverse-muted); font-size: 0.94rem; }
.mobile-drawer nav svg, .brand svg { width: 14px; height: 14px; }

/* -------------------------------------------------------------------------- */
/* Hero                                                                      */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center;
  background: radial-gradient(120% 120% at 15% 0%, #23262f 0%, var(--ink) 55%, #08080b 100%);
  color: var(--text-inverse); overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image: radial-gradient(circle at 85% 18%, rgba(230,58,27,0.35), transparent 45%),
                     radial-gradient(circle at 8% 85%, rgba(201,162,75,0.18), transparent 40%);
}
.hero .container { position: relative; z-index: 2; padding-block: 90px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.8fr; gap: 48px; align-items: center; }
.hero-slides { position: relative; min-height: 230px; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); pointer-events: none;
}
.hero-slide.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.hero-slide h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; max-width: 15ch; }
.hero-slide h1 em { font-style: normal; color: var(--pink-light); }
.hero-slide p { color: var(--text-inverse-muted); font-size: 1.12rem; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-dots { display: flex; gap: 8px; margin-top: 36px; }
.hero-dots button {
  width: 26px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.25); border: none; padding: 0;
  transition: background 0.25s;
}
.hero-dots button.is-active { background: var(--pink); }

.hero-glass {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(6px);
  border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; gap: 18px;
}
.hero-glass .stat { display: flex; align-items: baseline; gap: 10px; }
.hero-glass .stat strong { font-family: var(--font-display); font-size: 2rem; color: var(--pink-light); }
.hero-glass .stat span { color: var(--text-inverse-muted); font-size: 0.92rem; }
.hero-glass hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 4px 0; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero .container { padding-block: 56px; }
}

.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--ink) 100%); color: var(--text-inverse);
  padding-block: 78px 64px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,58,27,0.35), transparent 65%);
}
.page-hero .eyebrow { color: var(--pink-light); }
.page-hero .eyebrow::before { background: var(--pink-light); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.2vw, 3.1rem); max-width: 20ch; }
.page-hero p.lead { color: var(--text-inverse-muted); font-size: 1.08rem; max-width: 56ch; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: var(--text-inverse-muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }

/* -------------------------------------------------------------------------- */
/* Feature / value cards                                                     */
/* -------------------------------------------------------------------------- */
.feature-card {
  background: var(--paper); border: 1px solid var(--stone); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card .ico {
  width: 52px; height: 52px; border-radius: 14px; background: var(--pink-tint); color: var(--pink);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-card .ico svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.15rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

.on-dark .feature-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.on-dark .feature-card p { color: var(--text-inverse-muted); }
.on-dark .feature-card h3 { color: #fff; }

/* -------------------------------------------------------------------------- */
/* Wine finder (interactive)                                                 */
/* -------------------------------------------------------------------------- */
.finder {
  background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 36px; display: grid; gap: 28px; margin-top: -120px; position: relative; z-index: 5;
}
.finder-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 10px 18px; border-radius: var(--radius-pill); border: 1.5px solid var(--stone); background: #fff;
  font-size: 0.9rem; font-weight: 600; color: var(--text-muted); transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--pink); color: var(--pink-dark); }
.chip[aria-pressed="true"] { background: var(--pink); border-color: var(--pink); color: #fff; }
.finder-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; display: block; }
.finder-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--stone); padding-top: 24px; }
.finder-result { font-size: 0.95rem; color: var(--text-muted); }
.finder-result strong { color: var(--text); }
@media (max-width: 860px) { .finder { margin-top: -60px; padding: 26px; } }

/* -------------------------------------------------------------------------- */
/* Product / bottle cards                                                    */
/* -------------------------------------------------------------------------- */
.bottle-card {
  background: var(--paper); border: 1px solid var(--stone); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bottle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bottle-art {
  aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--paper-soft), var(--stone)); position: relative;
}
.bottle-art svg { width: 46%; height: 72%; filter: drop-shadow(0 14px 18px rgba(14,14,18,0.18)); }
.bottle-art .tag {
  position: absolute; top: 14px; left: 14px; background: var(--pink); color: #fff; font-size: 0.72rem;
  font-weight: 700; padding: 5px 10px; border-radius: var(--radius-pill); letter-spacing: 0.03em;
}
.bottle-body { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bottle-kind { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--pink); font-weight: 700; }
.bottle-body h3 { font-size: 1.08rem; margin-bottom: 2px; }
.bottle-body .meta { color: var(--text-muted); font-size: 0.87rem; margin-bottom: 12px; }
.bottle-body .btn { margin-top: auto; }

.carousel-track-wrap { overflow: hidden; }
.carousel-track { display: flex; gap: 24px; transition: transform 0.5s var(--ease); }
.carousel-track > * { flex: 0 0 clamp(220px, 26vw, 280px); }
.carousel-nav { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 20px; }
.carousel-nav button {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--stone); background: #fff;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.carousel-nav button:hover { border-color: var(--pink); color: var(--pink); }
.carousel-nav button:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 8px; flex-wrap: wrap; }

/* -------------------------------------------------------------------------- */
/* Banner / CTA blocks                                                       */
/* -------------------------------------------------------------------------- */
.banner {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: linear-gradient(120deg, var(--navy), var(--ink));
  padding: 64px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  color: var(--text-inverse);
}
.banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(230,58,27,0.4), transparent 55%);
}
.banner > * { position: relative; z-index: 1; }
.banner h2 { color: #fff; max-width: 20ch; }
.banner p { color: var(--text-inverse-muted); max-width: 46ch; }

/* -------------------------------------------------------------------------- */
/* Testimonials                                                              */
/* -------------------------------------------------------------------------- */
.quote-carousel { position: relative; max-width: 760px; margin-inline: auto; text-align: center; min-height: 210px; }
.quote-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(10px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.quote-slide.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.quote-slide blockquote { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; margin: 0 0 20px; color: #fff; }
.quote-slide cite { font-style: normal; color: var(--pink-light); font-weight: 600; display: block; }
.quote-slide cite span { color: var(--text-inverse-muted); font-weight: 400; display: block; font-size: 0.86rem; margin-top: 2px; }
.quote-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.quote-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; padding: 0; }
.quote-dots button.is-active { background: var(--pink); }

/* -------------------------------------------------------------------------- */
/* Newsletter                                                                */
/* -------------------------------------------------------------------------- */
.newsletter { border-radius: var(--radius-lg); background: var(--pink-tint); padding: 56px 48px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.newsletter h2 { font-size: 1.7rem; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input[type="email"] {
  padding: 14px 18px; border-radius: var(--radius-pill); border: 1.5px solid var(--stone); min-width: 260px; background: #fff;
}
.newsletter .form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; }
.form-feedback { font-size: 0.88rem; margin-top: 10px; display: none; }
.form-feedback.show { display: block; }
.form-feedback.ok { color: var(--success); }
.form-feedback.err { color: var(--pink-dark); }
@media (max-width: 760px) { .newsletter { grid-template-columns: 1fr; text-align: center; } .newsletter form { justify-content: center; } }

/* -------------------------------------------------------------------------- */
/* Generic forms (contact / event)                                          */
/* -------------------------------------------------------------------------- */
.form-card { background: var(--paper); border: 1px solid var(--stone); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--stone); background: #fff; color: var(--text);
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.field textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: 0.78rem; color: var(--text-muted); }

/* -------------------------------------------------------------------------- */
/* Pricing / packages (Event & Wedding)                                      */
/* -------------------------------------------------------------------------- */
.pkg-card {
  border-radius: var(--radius-lg); padding: 32px 26px; display: flex; flex-direction: column; gap: 14px;
  background: var(--ink-soft); border: 1px solid rgba(255,255,255,0.08); color: var(--text-inverse); position: relative;
}
.pkg-card.is-featured { border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink), var(--shadow-lg); }
.pkg-card .badge {
  position: absolute; top: -13px; left: 26px; background: var(--pink); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-pill); letter-spacing: 0.03em;
}
.pkg-card .tier-name { color: var(--gold); font-family: var(--font-display); font-size: 1.4rem; }
.pkg-card ul { display: flex; flex-direction: column; gap: 10px; margin: 10px 0 6px; }
.pkg-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--text-inverse-muted); }
.pkg-card li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--pink-light); }

/* -------------------------------------------------------------------------- */
/* Timeline (About)                                                          */
/* -------------------------------------------------------------------------- */
.timeline { display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--stone); margin-left: 10px; }
.timeline-item { position: relative; padding: 0 0 40px 32px; }
.timeline-item::before { content: ""; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--pink); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--stone); }
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.timeline-item .year { color: var(--pink); font-weight: 700; font-size: 0.85rem; }
.timeline-item p { color: var(--text-muted); margin-bottom: 0; }

/* -------------------------------------------------------------------------- */
/* Team / people                                                            */
/* -------------------------------------------------------------------------- */
.person-card { text-align: center; }
.person-avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; background: var(--pink-tint);
  display: flex; align-items: center; justify-content: center; color: var(--pink); font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
}
.person-card h3 { font-size: 1rem; margin-bottom: 2px; }
.person-card .role { font-size: 0.85rem; color: var(--pink); font-weight: 600; }

/* -------------------------------------------------------------------------- */
/* Community (blog / forum) cards                                            */
/* -------------------------------------------------------------------------- */
.post-card { border: 1px solid var(--stone); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.post-thumb { aspect-ratio: 16/10; background: linear-gradient(140deg, var(--navy), var(--ink)); display: flex; align-items: center; justify-content: center; }
.post-thumb svg { width: 40px; height: 40px; color: var(--pink-light); }
.post-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-meta { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.post-body h3 { font-size: 1.05rem; }
.post-body p { color: var(--text-muted); font-size: 0.92rem; }

.faq-item { border-bottom: 1px solid var(--stone); }
.faq-item summary { padding: 18px 4px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--pink); transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 4px 18px; color: var(--text-muted); }

/* -------------------------------------------------------------------------- */
/* Map / contact info                                                        */
/* -------------------------------------------------------------------------- */
.info-list { display: flex; flex-direction: column; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--pink-tint); color: var(--pink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-list .ico svg { width: 20px; height: 20px; }
.info-list strong { display: block; font-size: 0.95rem; }
.info-list span, .info-list a { color: var(--text-muted); font-size: 0.92rem; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--stone); aspect-ratio: 4/3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* -------------------------------------------------------------------------- */
/* Footer                                                                    */
/* -------------------------------------------------------------------------- */
#site-footer { background: var(--ink); color: var(--text-inverse-muted); }
.footer-top { padding-block: 64px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand h2 { color: var(--pink-light); font-size: 1.5rem; }
.footer-brand blockquote { border-left: 2px solid var(--pink); padding-left: 16px; color: var(--text-inverse-muted); font-size: 0.95rem; margin: 16px 0; }
.footer-col h4 { color: #fff; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; margin-bottom: 10px; }
.footer-contact svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; color: var(--pink-light); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: var(--pink); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-block: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--pink-light); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.back-to-top {
  position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--pink); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); border: none; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s var(--ease); z-index: 90;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--pink-dark); }
.back-to-top svg { width: 18px; height: 18px; }

/* -------------------------------------------------------------------------- */
/* Cookie banner + install banner                                           */
/* -------------------------------------------------------------------------- */
.sheet-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 560px; margin-inline: auto;
  background: var(--navy); color: var(--text-inverse); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 20px 22px; display: flex; gap: 16px; align-items: center; z-index: 300;
  transform: translateY(140%); transition: transform 0.4s var(--ease); flex-wrap: wrap;
}
.sheet-banner.show { transform: translateY(0); }
.sheet-banner p { font-size: 0.86rem; color: var(--text-inverse-muted); margin: 0; flex: 1 1 220px; }
.sheet-banner .actions { display: flex; gap: 8px; flex-shrink: 0; }
#install-banner { bottom: 86px; }
@media (min-width: 720px) { #install-banner { left: auto; right: 22px; margin-inline: 0; } }

/* -------------------------------------------------------------------------- */
/* Reveal-on-scroll                                                          */
/* -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------------------- */
/* Misc                                                                      */
/* -------------------------------------------------------------------------- */
.divider { height: 1px; background: var(--stone); border: none; margin: 0; }
.badge-inline {
  display: inline-flex; align-items: center; gap: 6px; background: var(--pink-tint); color: var(--pink-dark);
  font-size: 0.78rem; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-pill);
}
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--pink); color: #fff; padding: 12px 18px;
  border-radius: var(--radius-sm); z-index: 999; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
