/* ============================================================
   İNCİLİ GELİNLİK SARAYI — PREMIUM STYLE SYSTEM
   Design language: couture bridal house / European bridal editorial
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette — gold-forward luxury */
  --c-ivory: #FBF6EF;
  --c-cream: #F4EBDA;
  --c-champagne: #E9D5AC;
  --c-pearl: #F1E4C8;
  --c-gold: #B8923F;
  --c-gold-light: #D9B872;
  --c-gold-soft: #E8CE95;
  --c-gold-deep: #8A6423;
  --c-gold-rich: #96721F;
  --c-wine: #5C1A2E;
  --c-wine-deep: #3E0F1E;
  --c-charcoal: #2B2116;
  --c-text: #332920;
  --c-text-soft: #6b5c48;
  --c-border: rgba(184, 146, 63, 0.35);
  --c-white: #FFFFFF;
  --grad-gold: linear-gradient(135deg, #E8CE95 0%, #C9A257 45%, #96721F 100%);
  --grad-gold-deep: linear-gradient(135deg, #C9A257 0%, #8A6423 100%);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2.5rem;
  --sp-5: 4rem;
  --sp-6: 6rem;
  --sp-7: 9rem;

  /* Layout */
  --container-max: 1280px;
  --radius-sm: 2px;
  --shadow-soft: 0 20px 60px -25px rgba(43, 36, 30, 0.35);
  --shadow-card: 0 12px 40px -18px rgba(138, 100, 35, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

body {
  font-family: var(--font-body);
  background: var(--c-ivory);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--sp-5); }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--c-wine-deep);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.15rem; }

h1, h2, h3, h4, p, .eyebrow, .brand-name, .btn { overflow-wrap: break-word; word-break: break-word; }

p { color: var(--c-text-soft); }

.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  row-gap: 0.4em;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 500;
  max-width: 100%;
}
@media (max-width: 479px) {
  .eyebrow { letter-spacing: 0.16em; font-size: 0.68rem; }
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-gold);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--sp-5);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: var(--sp-2); }
.section-head p { margin-top: var(--sp-2); font-size: 1.05rem; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--c-wine);
  outline-offset: 3px;
}

/* ---------- Pearl motif (signature element) ---------- */
.pearl-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: var(--sp-4) 0;
  user-select: none;
}
.pearl-divider span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fffdf8, var(--c-gold-light) 55%, var(--c-gold) 100%);
}
.pearl-divider span:nth-child(1),
.pearl-divider span:nth-child(7) { width: 3px; height: 3px; opacity: 0.65; }
.pearl-divider span:nth-child(2),
.pearl-divider span:nth-child(6) { width: 4px; height: 4px; opacity: 0.8; }
.pearl-divider span:nth-child(4) { width: 7px; height: 7px; }
.pearl-divider::before,
.pearl-divider::after {
  content: "";
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--c-gold));
}
.pearl-divider::after { background: linear-gradient(90deg, var(--c-gold), transparent); }

.pearl-shimmer {
  position: relative;
  overflow: hidden;
}
.pearl-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease);
  pointer-events: none;
}
.pearl-shimmer:hover::after,
.pearl-shimmer:focus-visible::after { transform: translateX(120%); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 2em;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-gold);
  color: var(--c-wine-deep);
  border-color: var(--c-gold-rich);
  font-weight: 600;
}
.btn-primary:hover { background: var(--grad-gold-deep); border-color: var(--c-gold-deep); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--c-gold-rich);
  border-color: var(--c-gold);
}
.btn-outline:hover { background: var(--c-gold-rich); color: var(--c-ivory); border-color: var(--c-gold-rich); }
.btn-gold {
  background: var(--grad-gold);
  color: var(--c-wine-deep);
  font-weight: 600;
}
.btn-gold:hover { transform: translateY(-1px); background: var(--grad-gold-deep); }
.btn-ghost-light {
  background: transparent;
  color: var(--c-ivory);
  border-color: rgba(251,246,239,0.6);
}
.btn-ghost-light:hover { background: rgba(251,246,239,0.14); border-color: var(--c-ivory); }
.btn-sm { padding: 0.7em 1.4em; font-size: 0.72rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251, 246, 239, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-gold);
  transition: box-shadow 0.3s var(--ease);
}
.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--grad-gold);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(43,36,30,0.4); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: var(--sp-2);
  flex-wrap: nowrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 1;
  min-width: 0;
}
.brand img { width: 36px; height: 36px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--c-wine-deep);
  letter-spacing: 0.01em;
  line-height: 1.15;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  color: var(--c-gold-deep);
  text-transform: uppercase;
  margin-top: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (min-width: 480px) {
  .brand img { width: 42px; height: 42px; }
  .brand-name { font-size: 1.3rem; letter-spacing: 0.02em; }
  .brand-name small { font-size: 0.6rem; letter-spacing: 0.24em; }
}

.nav-desktop { display: none; }
@media (min-width: 1000px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
  }
  .nav-desktop a {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-charcoal);
    position: relative;
    padding: 0.3rem 0;
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--c-gold);
    transition: right 0.3s var(--ease);
  }
  .nav-desktop a:hover::after,
  .nav-desktop a[aria-current="page"]::after { right: 0; }
  .nav-desktop a[aria-current="page"] { color: var(--c-gold-rich); }
}

.header-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.header-actions .btn { display: none; }
@media (min-width: 640px) {
  .header-actions { gap: var(--sp-2); }
  .header-actions .btn { display: inline-flex; }
}
@media (max-width: 359px) {
  .header-actions .icon-link { display: none; }
}
.icon-link {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.icon-link:hover { border-color: var(--c-gold); background: var(--c-pearl); }
.icon-link svg { width: 17px; height: 17px; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
}
@media (min-width: 1000px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 20px; height: 20px; }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--c-ivory);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: var(--sp-3);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.nav-mobile.is-open { transform: translateX(0); }
@media (min-width: 1000px) { .nav-mobile { display: none !important; } }
.nav-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}
.nav-mobile-close {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: 50%;
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.nav-mobile-links a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--c-wine-deep);
}
.nav-mobile-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}
.nav-mobile-social {
  display: flex;
  gap: var(--sp-2);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--c-ivory);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,42,14,0.28) 0%, rgba(43,36,30,0.18) 40%, rgba(35,24,10,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--sp-6) 0 var(--sp-5);
  width: 100%;
}
.hero-content .eyebrow { color: var(--c-champagne); }
.hero-content .eyebrow::before { background: var(--c-champagne); }
.hero-content h1 {
  color: var(--c-ivory);
  margin-top: var(--sp-2);
  max-width: 15ch;
}
.hero-content p {
  color: rgba(251,246,239,0.86);
  max-width: 46ch;
  margin-top: var(--sp-3);
  font-size: 1.08rem;
}
.hero-cta {
  margin-top: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
@media (max-width: 479px) {
  .hero { min-height: 88vh; }
  .hero-content { padding: var(--sp-5) 0 var(--sp-4); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

/* Page hero (category / inner pages) */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: var(--c-ivory);
  overflow: hidden;
}
.page-hero .hero-content { padding: var(--sp-5) 0 var(--sp-4); }
.page-hero h1 { max-width: 20ch; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(251,246,239,0.75);
  display: flex;
  gap: 0.5em;
  margin-bottom: var(--sp-2);
}
.breadcrumb a:hover { color: var(--c-champagne); }

/* ---------- Sections ---------- */
section { padding: var(--sp-6) 0; }
.section-tight { padding: var(--sp-5) 0; }
.bg-cream { background: var(--c-cream); }
.bg-pearl { background: var(--c-pearl); }
.bg-wine { background: var(--c-wine-deep); color: var(--c-ivory); }
.bg-wine h2, .bg-wine h3 { color: var(--c-ivory); }
.bg-wine p { color: rgba(251,246,239,0.78); }
.bg-wine .eyebrow { color: var(--c-champagne); }
.bg-wine .eyebrow::before { background: var(--c-champagne); }

/* ---------- Collection Cards (home) ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 640px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .collection-grid { grid-template-columns: repeat(4, 1fr); }
}
.collection-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.collection-card:hover img,
.collection-card:focus-visible img { transform: scale(1.06); }
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,36,30,0) 40%, rgba(43,36,30,0.82) 100%);
  transition: opacity 0.4s var(--ease);
}
.collection-card-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--sp-3);
  z-index: 1;
  color: var(--c-ivory);
}
.collection-card-label .eyebrow { color: var(--c-champagne); font-size: 0.65rem; }
.collection-card-label .eyebrow::before { background: var(--c-champagne); }
.collection-card-label h3 { color: var(--c-ivory); margin-top: 0.3rem; }
.collection-card-cta {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-champagne);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.collection-card:hover .collection-card-cta,
.collection-card:focus-visible .collection-card-cta { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .collection-card-cta { opacity: 1; transform: translateY(0); }
  .collection-card::after { background: linear-gradient(180deg, rgba(43,36,30,0) 30%, rgba(43,36,30,0.85) 100%); }
}

/* ---------- Gallery / model grid ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--sp-4);
}
.filter-btn {
  padding: 0.55em 1.2em;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: transparent;
  color: var(--c-text);
  transition: all 0.3s var(--ease);
  min-height: 40px;
}
.filter-btn:hover { border-color: var(--c-gold); }
.filter-btn.is-active {
  background: var(--grad-gold);
  border-color: var(--c-gold-rich);
  color: var(--c-wine-deep);
  font-weight: 600;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (min-width: 640px) { .model-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); } }
@media (min-width: 1100px) { .model-grid { grid-template-columns: repeat(4, 1fr); } }

.model-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.model-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.model-card-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: zoom-in;
}
.model-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.model-card:hover .model-card-media img { transform: scale(1.05); }
.model-card-body { padding: var(--sp-2) var(--sp-2) var(--sp-3); }
.model-card-cat {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
}
.model-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--c-wine-deep);
  margin-top: 0.2rem;
}
.model-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold-rich);
  font-weight: 600;
}
.model-card-link svg { width: 13px; height: 13px; }

.model-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--sp-5) 0;
  color: var(--c-text-soft);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(43, 36, 30, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
}
.lightbox.is-open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: min(90vw, 720px);
  width: 100%;
}
.lightbox-inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--c-cream);
}
.lightbox-caption {
  text-align: center;
  color: var(--c-ivory);
  margin-top: var(--sp-2);
  font-size: 0.85rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(251,246,239,0.12);
  color: var(--c-ivory);
  border: 1px solid rgba(251,246,239,0.35);
}
.lightbox-close { top: -56px; right: 0; }
.lightbox-prev { left: -8px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -8px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
}

/* ---------- Process steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); } }
.step-card { position: relative; padding-top: var(--sp-2); }
.step-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--c-gold);
  opacity: 0.55;
  line-height: 1;
}
.step-card h3 { margin-top: 0.6rem; }
.step-card p { margin-top: 0.5rem; }

/* ---------- Feature / trust row ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  text-align: center;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item svg { width: 30px; height: 30px; color: var(--c-gold); margin: 0 auto var(--sp-1); }
.trust-item h4 { font-size: 0.95rem; }
.trust-item p { font-size: 0.85rem; margin-top: 0.2rem; }

/* ---------- Instagram grid ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
@media (min-width: 768px) { .insta-grid { gap: 10px; } }
.insta-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.insta-item:hover img { transform: scale(1.08); }
.insta-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(92,26,46,0);
  transition: background 0.3s var(--ease);
}
.insta-item:hover::after { background: rgba(92,26,46,0.28); }
.insta-item svg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.6);
  width: 24px; height: 24px;
  color: var(--c-ivory);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.insta-item:hover svg { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ---------- FAQ (accordion) ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--c-wine-deep);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--c-gold);
  transition: transform 0.3s var(--ease);
}
.faq-question .plus::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-question .plus::after { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.faq-item.is-open .faq-question .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: var(--sp-3); max-width: 66ch; }

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
}
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-charcoal);
}
.field input, .field select, .field textarea {
  padding: 0.85em 1em;
  min-height: 46px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  transition: border-color 0.3s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--c-gold);
  outline: 2px solid transparent;
}
.field-note { font-size: 0.78rem; color: var(--c-text-soft); }
.form-msg {
  margin-top: var(--sp-2);
  padding: 0.9em 1.1em;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: none;
}
.form-msg.is-visible { display: block; }
.form-msg.success { background: var(--c-pearl); color: var(--c-wine-deep); border: 1px solid var(--c-gold); }

/* ---------- Contact info cards ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
.info-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: var(--sp-3);
}
.info-card h4 { display: flex; align-items: center; gap: 0.6em; }
.info-card h4 svg { width: 18px; height: 18px; color: var(--c-gold); }
.info-card p { margin-top: 0.5rem; }
.map-embed {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- About page ---------- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  align-items: center;
}
@media (min-width: 900px) { .about-hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-5); } }
.about-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 768px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  padding: var(--sp-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-white);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-wine-deep);
  color: rgba(251,246,239,0.82);
  padding-top: var(--sp-6);
  border-top: 3px solid;
  border-image: var(--grad-gold) 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-5);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-3); } }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: var(--sp-2); }
.footer-brand img { width: 36px; height: 36px; }
.footer-brand span { font-family: var(--font-display); font-size: 1.2rem; color: var(--c-ivory); }
.footer-col h5 {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-bottom: var(--sp-2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a:hover { color: var(--c-ivory); }
.footer-social { display: flex; gap: 0.6rem; margin-top: var(--sp-2); }
.footer-social .icon-link { border-color: rgba(251,246,239,0.3); }
.footer-social .icon-link:hover { border-color: var(--c-gold-light); background: rgba(251,246,239,0.08); }
.footer-bottom {
  border-top: 1px solid rgba(251,246,239,0.14);
  padding: var(--sp-3) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  font-size: 0.78rem;
}
.footer-bottom a:hover { color: var(--c-ivory); }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 250;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #3E0F1E;
  background: var(--c-wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(43,36,30,0.55);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 26px; height: 26px; color: var(--c-ivory); }
@media (min-width: 768px) { .wa-float { right: 28px; bottom: 28px; } }

/* ---------- Chatbot widget ---------- */
.chat-toggle {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 250;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(43,36,30,0.55);
  transition: transform 0.3s var(--ease);
}
.chat-toggle:hover { transform: translateY(-3px) scale(1.04); }
.chat-toggle svg { width: 24px; height: 24px; color: var(--c-ivory); }
@media (min-width: 768px) { .chat-toggle { right: 28px; bottom: 96px; } }

.chat-window {
  position: fixed;
  right: 18px;
  bottom: 148px;
  z-index: 260;
  width: min(340px, calc(100vw - 36px));
  max-height: min(480px, calc(100vh - 180px));
  background: var(--c-ivory);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-window.is-open { display: flex; }
@media (min-width: 768px) { .chat-window { right: 28px; bottom: 168px; } }
.chat-header {
  background: var(--c-wine-deep);
  color: var(--c-ivory);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; }
.chat-header .chat-close { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; }
.chat-header .chat-close svg { width: 16px; height: 16px; }
.chat-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--c-cream);
}
.chat-msg { max-width: 85%; padding: 0.6em 0.85em; border-radius: 10px; font-size: 0.86rem; line-height: 1.5; }
.chat-msg.bot { align-self: flex-start; background: var(--c-white); border: 1px solid var(--c-border); color: var(--c-text); border-bottom-left-radius: 2px; }
.chat-msg.user { align-self: flex-end; background: var(--c-wine); color: var(--c-ivory); border-bottom-right-radius: 2px; }
.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.2rem;
}
.chat-option-btn {
  font-size: 0.74rem;
  padding: 0.45em 0.85em;
  border: 1px solid var(--c-gold);
  border-radius: 999px;
  color: var(--c-wine-deep);
  background: var(--c-white);
  min-height: 34px;
}
.chat-option-btn:hover { background: var(--c-pearl); }
.chat-footer {
  padding: 0.7rem;
  border-top: 1px solid var(--c-border);
  background: var(--c-ivory);
}
.chat-footer a.btn { width: 100%; }

/* ---------- Cookie notice ---------- */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: var(--c-charcoal);
  color: var(--c-ivory);
  padding: var(--sp-2) var(--sp-3);
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  text-align: center;
}
.cookie-bar.is-visible { display: flex; }
.cookie-bar p { color: rgba(251,246,239,0.85); font-size: 0.86rem; max-width: 60ch; margin: 0; }

/* ---------- Utility ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.text-center { text-align: center; }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.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;
}
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--c-wine);
  color: var(--c-ivory);
  padding: 0.7em 1.2em;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 12px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  color: var(--c-gold-deep);
}

/* ---------- 404 page ---------- */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-6) 0;
}
.error-page .pearl-divider { margin: var(--sp-3) auto; }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 8rem);
  color: var(--c-gold);
  line-height: 1;
}

/* ---------- Legal page ---------- */
.legal-content { max-width: 780px; }
.legal-content h2 { margin-top: var(--sp-4); }
.legal-content p, .legal-content li { margin-top: var(--sp-2); }
.legal-content ul { list-style: disc; padding-left: 1.3em; }

/* ===== Mobile stability patch — 2026-08 ===== */
@media (max-width: 767px) {
  body { font-size: 15px; line-height: 1.6; }
  .container { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: clamp(2rem, 10vw, 3rem); line-height: 1.04; letter-spacing: 0; }
  h2 { font-size: clamp(1.7rem, 8vw, 2.25rem); line-height: 1.1; }
  h3 { font-size: clamp(1.25rem, 6vw, 1.6rem); }
  h1,h2,h3,h4,p,.eyebrow,.brand-name,.btn { overflow-wrap: normal; word-break: normal; hyphens: none; }
  .btn { white-space: normal; text-align: center; line-height: 1.3; letter-spacing: .09em; padding: .9em 1.2em; }
  .header-inner { min-height: 64px; gap: 10px; }
  .brand { max-width: calc(100% - 58px); }
  .brand-name { font-size: 1rem; white-space: normal; overflow: visible; text-overflow: clip; line-height: 1.05; }
  .brand-name small { font-size: .48rem; letter-spacing: .10em; white-space: normal; overflow: visible; line-height: 1.2; }
  .brand img { width: 34px; height: 34px; }
  .hero { min-height: 82svh; }
  .hero-content { padding-top: 54px; padding-bottom: 42px; }
  .hero-content h1 { max-width: 12ch; }
  .hero-content p { font-size: .98rem; line-height: 1.6; max-width: 34ch; }
  .hero-cta { gap: 10px; }
  .page-hero .hero-content { padding-top: 42px; padding-bottom: 32px; }
  .section { padding-top: 56px; padding-bottom: 56px; }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: .96rem; }
  .collection-grid { gap: 14px; }
  .collection-card-label { padding: 18px 14px; }
  .model-grid { grid-template-columns: 1fr; gap: 18px; }
  .model-card img, .collection-card img { width: 100%; object-fit: cover; }
  .steps-grid, .info-grid, .value-grid, .about-hero-grid { gap: 24px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .insta-grid { gap: 4px; }
  .footer-grid { gap: 28px; }
  .chat-window { left: 12px; right: 12px; width: auto; max-width: none; bottom: 154px; max-height: 62svh; }
}
@media (max-width: 380px) {
  h1 { font-size: 2rem; }
  .eyebrow { font-size: .62rem; letter-spacing: .11em; }
  .eyebrow::before { width: 18px; }
  .trust-grid { grid-template-columns: 1fr; }
}
