/* ============================================================
   A.F. STYLISH FURNITURE — DESIGN SYSTEM
   ============================================================ */

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

:root {
  --espresso:   #1A0F0A;
  --espresso2:  #241308;
  --mahogany:   #3D1F12;
  --saddle:     #6B4423;
  --gold:       #C8A96E;
  --gold-light: #D9BA7F;
  --gold-dark:  #A8893E;
  --ivory:      #F5EDD8;
  --ivory-2:    #FAF6EE;
  --white:      #FFFFFF;
  --text-muted: #9A8878;
  --text-dim:   #6B4423;
  --border-gold: rgba(200,169,110,0.25);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.3);
  --shadow-card: 0 4px 30px rgba(26,15,10,0.08);
  --nav-h: 68px;
  --banner-h: 38px;
  --header-h: 106px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--ivory); color: var(--espresso); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--espresso); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── Typography ── */
.serif { font-family: 'Playfair Display', Georgia, serif; }

/* ── Containers ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   OFFER BANNER
   ============================================================ */
#offer-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--banner-h);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  overflow: hidden;
  display: flex; align-items: center;
}
.ticker-wrap { width: 100%; overflow: hidden; }
.ticker-track {
  display: inline-flex; white-space: nowrap;
  animation: ticker 35s linear infinite;
}
.ticker-track span {
  font-size: 12px; font-weight: 600; color: var(--espresso);
  padding-right: 80px; letter-spacing: 0.02em;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
#banner-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: rgba(26,15,10,0.15); border: none; border-radius: 50%;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--espresso); font-size: 14px; flex-shrink: 0;
  transition: background 0.2s;
}
#banner-close:hover { background: rgba(26,15,10,0.3); }
body.banner-closed #offer-banner { display: none; }
body.banner-closed { --banner-h: 0px; --header-h: 68px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed; top: var(--banner-h); left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
#navbar.scrolled, #navbar.solid {
  background: rgba(26,15,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border-gold);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { cursor: pointer; }
.nav-logo .logo-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); display: block; margin-bottom: 2px; }
.nav-logo .logo-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--ivory); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 13px; font-weight: 500; color: rgba(245,237,216,0.75);
  transition: color 0.2s; position: relative; padding-bottom: 4px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--ivory); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  padding: 10px 22px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso); font-size: 13px; font-weight: 700;
  transition: all 0.3s; display: flex; align-items: center; gap: 6px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,169,110,0.4); }
.nav-wa {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(200,169,110,0.12); border: 1px solid var(--border-gold);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.nav-wa:hover { background: rgba(200,169,110,0.25); }
#hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
  background: none; border: none; cursor: pointer;
}
#hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ivory); border-radius: 2px; transition: all 0.3s;
}
#mobile-menu {
  display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: rgba(26,15,10,0.98); padding: 20px 24px 28px;
  border-bottom: 1px solid var(--border-gold);
}
#mobile-menu.open { display: block; }
.mob-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mob-link {
  padding: 12px 0; font-size: 15px; color: rgba(245,237,216,0.8);
  border-bottom: 1px solid rgba(200,169,110,0.08);
  transition: color 0.2s; display: block;
}
.mob-link:hover, .mob-link.active { color: var(--gold); }
.mob-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso); font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,0.45); color: var(--espresso); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-full);
  border: 1.5px solid var(--gold); color: var(--gold);
  background: transparent; font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.btn-outline:hover { background: var(--gold); color: var(--espresso); transform: translateY(-2px); }
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-full);
  background: var(--espresso); color: var(--ivory); font-weight: 600; font-size: 14px;
  border: 1px solid var(--border-gold); cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.btn-dark:hover { background: var(--mahogany); transform: translateY(-2px); color: var(--ivory); }
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-full);
  background: #25D366; color: #fff; font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.btn-wa:hover { background: #1EBE5A; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 700; color: var(--gold); display: block; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700; line-height: 1.2;
}
.section-title.light { color: var(--ivory); }
.section-title.dark  { color: var(--espresso); }
.gold-rule {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin: 16px 0;
}
.gold-rule::before, .gold-rule::after {
  content: ''; display: block; height: 1px; width: 48px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.gold-rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.gold-rule-diamond { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.section-sub { font-size: 15px; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.75; }
.section-header { text-align: center; margin-bottom: 56px; }

/* ============================================================
   PAGE HEADER (for inner pages)
   ============================================================ */
.page-header {
  padding: calc(var(--header-h) + 56px) 0 64px;
  background: linear-gradient(135deg, var(--espresso2) 0%, var(--mahogany) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1400&q=60') center/cover no-repeat;
  opacity: 0.06;
}
.page-header .section-sub { color: rgba(200,169,110,0.7); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-group {
  position: fixed; right: 16px; bottom: 80px; z-index: 100;
  display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer; text-decoration: none;
  font-size: 22px;
}
.float-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.float-wa  { background: #25D366; color: #fff; }
.float-tel { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--espresso); }
#back-top {
  position: fixed; left: 16px; bottom: 80px; z-index: 100;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(26,15,10,0.88); border: 1px solid var(--border-gold); color: var(--gold);
  display: none; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
#back-top.visible { display: flex; }
#back-top:hover { background: var(--espresso); transform: translateY(-3px); }

/* ============================================================
   TOAST
   ============================================================ */
#toast {
  position: fixed; top: calc(var(--header-h) + 16px); right: 16px; z-index: 200;
  background: var(--espresso); border: 1px solid var(--border-gold); color: var(--ivory);
  padding: 14px 20px; border-radius: var(--radius-sm);
  font-size: 13px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-dark); max-width: 320px;
  opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
#toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#toast .toast-icon { color: var(--gold); font-size: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0A0604;
  border-top: 1px solid var(--border-gold);
}
.footer-cta-bar {
  background: linear-gradient(135deg, var(--mahogany), var(--espresso2));
  border-bottom: 1px solid var(--border-gold);
  padding: 48px 0;
}
.footer-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-cta-text h3 {
  font-family: 'Playfair Display', serif; font-size: 24px; color: var(--ivory); font-weight: 700;
}
.footer-cta-text p { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.footer-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-main { padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--gold); }
.footer-brand .logo-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 2px; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.75; max-width: 300px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(200,169,110,0.08); border: 1px solid var(--border-gold);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all 0.2s; text-decoration: none;
}
.social-btn:hover { background: rgba(200,169,110,0.2); transform: translateY(-2px); }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13px; color: var(--text-muted); transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-link:hover { color: var(--ivory); }
.footer-link::before { content: '›'; color: var(--gold); font-size: 16px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-icon { color: var(--gold); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span { font-size: 13px; color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--ivory); }
.footer-contact-item strong { display: block; font-size: 13px; color: var(--ivory); }
.footer-bottom {
  border-top: 1px solid rgba(200,169,110,0.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #3D2A1E; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: #3D2A1E; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-muted); }

/* ============================================================
   HOME — HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(26,15,10,0.90) 0%, rgba(61,31,18,0.80) 100%),
              url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  position: relative; overflow: hidden;
}
.hero-accent-line {
  position: absolute; left: 7%; top: 18%; bottom: 18%; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  display: none;
}
@media (min-width: 1024px) { .hero-accent-line { display: block; } }
.hero-inner { padding: 80px 0; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.hero-eyebrow span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--gold); }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700; color: var(--ivory);
  line-height: 1.12; margin-bottom: 24px; max-width: 700px;
}
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: clamp(15px, 2vw, 18px); color: rgba(245,237,216,0.75); line-height: 1.75; max-width: 520px; margin-bottom: 40px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-ghost {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px;
  border-radius: var(--radius-full); font-size: 14px; font-weight: 500;
  color: rgba(245,237,216,0.7); background: none; border: none; cursor: pointer;
  transition: color 0.2s; text-decoration: none;
}
.hero-ghost:hover { color: var(--ivory); }
.hero-ghost svg { transition: transform 0.2s; }
.hero-ghost:hover svg { transform: translateX(4px); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(200,169,110,0.2); align-self: center; }
.hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--gold); display: block;
}
.hero-stat-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(200,169,110,0.55); margin-top: 2px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--gold); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* ============================================================
   HOME — WHY CHOOSE US
   ============================================================ */
#why { padding: 96px 0; background: var(--ivory-2); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  background: var(--white); border: 1px solid rgba(200,169,110,0.15);
  border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow-card); transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,15,10,0.12); }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(200,169,110,0.12), rgba(200,169,110,0.04));
  border: 1px solid rgba(200,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--espresso); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-dim); line-height: 1.75; }

/* ============================================================
   HOME — FEATURED PRODUCTS
   ============================================================ */
#featured { padding: 96px 0; background: var(--espresso); }
.category-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 48px; }
.cat-tab {
  padding: 9px 22px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.25s;
  border: 1px solid var(--border-gold); color: var(--gold); background: rgba(200,169,110,0.08);
}
.cat-tab.active, .cat-tab:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--espresso); border-color: transparent;
}
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: #221108; border: 1px solid rgba(200,169,110,0.1);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3); transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.45); }
.product-img-wrap { position: relative; overflow: hidden; height: 240px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(26,15,10,0.65);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--espresso);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.product-wish {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(26,15,10,0.75); border: 1px solid var(--border-gold);
  color: rgba(200,169,110,0.5); display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; transition: all 0.2s;
}
.product-wish.active, .product-wish:hover { color: var(--gold); }
.product-body { padding: 20px; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 12px; color: var(--text-muted); }
.product-name { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--ivory); margin-bottom: 6px; }
.product-desc { font-size: 12px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-colors { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.product-colors span { font-size: 11px; color: var(--saddle); }
.color-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--border-gold); }
.product-footer { display: flex; align-items: flex-end; justify-content: space-between; }
.product-price-old { font-size: 12px; color: var(--text-muted); text-decoration: line-through; display: block; }
.product-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--gold); }
.product-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); background: rgba(6,95,70,0.3); color: #6EE7B7; }

/* ============================================================
   HOME — ABOUT TEASER
   ============================================================ */
#about-teaser { padding: 96px 0; background: var(--espresso2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-dark); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius); padding: 20px 24px; min-width: 160px;
}
.about-badge-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--espresso); display: block; line-height: 1; }
.about-badge-lbl { font-size: 12px; font-weight: 600; color: var(--espresso); opacity: 0.75; margin-top: 4px; display: block; }
.about-content .section-eyebrow { margin-bottom: 10px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.about-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.mini-stat { background: rgba(200,169,110,0.07); border: 1px solid var(--border-gold); border-radius: var(--radius-sm); padding: 16px 18px; }
.mini-stat-num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--gold); display: block; }
.mini-stat-lbl { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   HOME — TESTIMONIALS
   ============================================================ */
#testimonials { padding: 96px 0; background: var(--ivory-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); border: 1px solid rgba(200,169,110,0.15);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-card); position: relative;
}
.testi-quote-icon {
  position: absolute; top: 20px; right: 20px;
  font-size: 48px; color: var(--gold); opacity: 0.08; line-height: 1;
  font-family: Georgia, serif;
}
.testi-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 600; color: var(--espresso); }
.testi-loc { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.testi-stars { margin-bottom: 12px; }
.testi-text { font-size: 13px; color: var(--text-dim); line-height: 1.75; margin-bottom: 16px; }
.testi-footer { display: flex; align-items: center; justify-content: space-between; }
.testi-product { font-size: 11px; font-weight: 600; color: var(--gold); background: rgba(200,169,110,0.1); border: 1px solid rgba(200,169,110,0.2); padding: 4px 12px; border-radius: var(--radius-full); }
.testi-verified { font-size: 11px; color: #059669; display: flex; align-items: center; gap: 4px; }
.testi-nav { display: flex; gap: 10px; justify-content: center; margin-top: 32px; }
.testi-nav button {
  display: flex; align-items: center; gap: 6px; padding: 10px 22px;
  border-radius: var(--radius-full); background: var(--white);
  border: 1px solid rgba(200,169,110,0.25); color: var(--espresso);
  font-size: 13px; cursor: pointer; transition: all 0.2s;
}
.testi-nav button:hover { border-color: var(--gold); color: var(--gold); }
.testi-nav button:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   HOME — GALLERY TEASER
   ============================================================ */
#gallery-teaser { padding: 96px 0; background: #201007; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 40px; }
.gallery-thumb {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 1; cursor: pointer; background: var(--espresso);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-thumb:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 12px;
  background: linear-gradient(transparent, rgba(26,15,10,0.82));
  opacity: 0; transition: opacity 0.3s;
}
.gallery-thumb:hover .gallery-caption { opacity: 1; }
.gallery-caption span { font-size: 12px; font-weight: 600; color: var(--ivory); }
.gallery-cta { text-align: center; }

/* ============================================================
   HOME — FAQ
   ============================================================ */
#faq { padding: 96px 0; background: var(--ivory); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(200,169,110,0.5); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left; background: none; border: none; cursor: pointer;
  font-family: 'Playfair Display', serif; font-size: 16px; color: var(--espresso); gap: 16px;
}
.faq-q .faq-icon { color: var(--gold); font-size: 20px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q .faq-icon { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-divider { height: 1px; background: rgba(200,169,110,0.15); margin-bottom: 14px; }
.faq-a p { font-size: 14px; color: var(--text-dim); line-height: 1.75; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-filters {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; align-items: center;
}
.search-wrap { position: relative; flex: 1; min-width: 200px; }
.search-wrap input {
  width: 100%; padding: 12px 16px 12px 44px;
  border: 1.5px solid rgba(200,169,110,0.25); border-radius: var(--radius-full);
  background: rgba(200,169,110,0.04); color: var(--espresso);
  font-size: 14px; outline: none; transition: border-color 0.2s;
}
.search-wrap input:focus { border-color: var(--gold); }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 16px; }
.filter-select {
  padding: 12px 18px; border: 1.5px solid rgba(200,169,110,0.25); border-radius: var(--radius-full);
  background: rgba(200,169,110,0.04); color: var(--espresso); font-size: 14px;
  outline: none; cursor: pointer; transition: border-color 0.2s; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C8A96E' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px;
}
.filter-select:focus { border-color: var(--gold); }
.products-count { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.products-count strong { color: var(--gold); }
.product-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.empty-state { text-align: center; padding: 80px 0; color: var(--text-muted); }
.empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }
.empty-state p { font-size: 15px; }

/* Products page uses light mode */
.products-page-wrap { background: var(--ivory-2); min-height: 50vh; padding: 56px 0 96px; }
.products-page-wrap .product-card { background: var(--white); border-color: rgba(200,169,110,0.2); }
.products-page-wrap .product-name { color: var(--espresso); }
.products-page-wrap .product-desc { color: var(--text-dim); }
.products-page-wrap .product-price { color: var(--saddle); }
.products-page-wrap .product-price-old { color: #9A8878; }
.products-page-wrap .product-rating .rating-count { color: #9A8878; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page-wrap { background: var(--espresso); min-height: 50vh; padding: 56px 0 96px; }
.gallery-full-grid {
  columns: 4; column-gap: 12px;
}
.gallery-full-item {
  break-inside: avoid; margin-bottom: 12px; position: relative;
  overflow: hidden; border-radius: var(--radius-sm); cursor: pointer;
  background: var(--mahogany);
}
.gallery-full-item img { width: 100%; display: block; transition: transform 0.45s ease; }
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-full-caption {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end; padding: 16px;
  background: linear-gradient(transparent, rgba(26,15,10,0.88));
  opacity: 0; transition: opacity 0.3s;
}
.gallery-full-item:hover .gallery-full-caption { opacity: 1; }
.gallery-full-caption .gc-cat { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; }
.gallery-full-caption .gc-title { font-size: 14px; font-weight: 600; color: var(--ivory); margin-top: 3px; }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.96);
  display: none; align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 85vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lb-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(200,169,110,0.15); border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.lb-close:hover { background: rgba(200,169,110,0.3); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(200,169,110,0.15); border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(200,169,110,0.3); }
.lb-caption {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  text-align: center; min-width: 200px;
}
.lb-caption strong { display: block; font-size: 14px; font-weight: 600; color: var(--gold); }
.lb-caption span { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 80px 0; background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-story-img img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.about-story-text h2 { margin-bottom: 24px; }
.about-story-text p { font-size: 14px; color: var(--text-dim); line-height: 1.8; margin-bottom: 14px; }
.owner-card {
  margin: 72px 0; background: var(--espresso); border-radius: var(--radius);
  padding: 56px; text-align: center; border: 1px solid var(--border-gold);
}
.owner-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso); font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.owner-card h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--ivory); margin-bottom: 6px; }
.owner-role { font-size: 13px; color: var(--gold); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.owner-quote { font-size: 15px; color: var(--text-muted); line-height: 1.8; max-width: 520px; margin: 0 auto 28px; font-style: italic; }
.owner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 72px 0 96px; background: var(--ivory-2); }
.mission-card {
  background: var(--white); border: 1px solid rgba(200,169,110,0.15);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.mission-icon { font-size: 28px; margin-bottom: 16px; }
.mission-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--espresso); margin-bottom: 12px; }
.mission-card p { font-size: 14px; color: var(--text-dim); line-height: 1.75; }
.about-stats-bar { background: var(--espresso); padding: 56px 0; border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); }
.about-stats-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; text-align: center; }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--gold); display: block; }
.about-stat-lbl { font-size: 13px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-page-wrap { background: var(--ivory); padding: 56px 0 96px; }
.booking-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.booking-info { padding: 32px; }
.booking-info h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--espresso); margin-bottom: 20px; }
.booking-info p { font-size: 14px; color: var(--text-dim); line-height: 1.75; margin-bottom: 28px; }
.booking-features { display: flex; flex-direction: column; gap: 16px; }
.booking-feature { display: flex; gap: 14px; align-items: flex-start; }
.bf-icon { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; background: rgba(200,169,110,0.1); border: 1px solid rgba(200,169,110,0.25); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.bf-title { font-size: 14px; font-weight: 600; color: var(--espresso); margin-bottom: 3px; }
.bf-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.contact-strip { margin-top: 36px; display: flex; gap: 10px; flex-wrap: wrap; }
.booking-form-wrap {
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(26,15,10,0.1); border: 1px solid rgba(200,169,110,0.18); overflow: hidden;
}
.form-head {
  background: var(--espresso); padding: 24px 28px; border-bottom: 1px solid var(--border-gold);
}
.form-head h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ivory); }
.form-head p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.step-bar { display: flex; gap: 0; margin-bottom: 28px; }
.step-item { flex: 1; display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; margin-bottom: 6px;
  transition: all 0.3s;
  background: rgba(200,169,110,0.1); border: 1.5px solid var(--border-gold); color: var(--text-muted);
}
.step-num.done { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--espresso); border-color: transparent; }
.step-num.active { background: rgba(200,169,110,0.15); border-color: var(--gold); color: var(--gold); }
.step-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.step-label.active { color: var(--gold); }
.form-body { padding: 28px; }
.form-section { display: none; }
.form-section.active { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-label {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(200,169,110,0.25);
  border-radius: var(--radius-sm); background: var(--ivory-2); color: var(--espresso);
  font-size: 14px; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
.form-textarea { resize: vertical; min-height: 96px; }
.form-select { -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C8A96E' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }
.visit-types { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.visit-type {
  padding: 12px; border-radius: var(--radius-sm); border: 1.5px solid rgba(200,169,110,0.2);
  background: var(--ivory-2); cursor: pointer; text-align: center; transition: all 0.2s; font-size: 13px; color: var(--text-dim);
}
.visit-type:hover { border-color: var(--gold); color: var(--gold); }
.visit-type.selected { border-color: var(--gold); background: rgba(200,169,110,0.08); color: var(--gold); font-weight: 600; }
.visit-type-icon { font-size: 20px; display: block; margin-bottom: 4px; }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(200,169,110,0.12); }
.form-success { text-align: center; padding: 48px 28px; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--espresso); font-size: 32px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--espresso); margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--text-dim); line-height: 1.75; max-width: 280px; margin: 0 auto 24px; }
.form-success .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-wrap { background: var(--ivory); padding: 56px 0 96px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--espresso); margin-bottom: 16px; }
.contact-info > p { font-size: 14px; color: var(--text-dim); line-height: 1.8; margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-card { display: flex; gap: 16px; padding: 20px; background: var(--white); border: 1px solid rgba(200,169,110,0.18); border-radius: var(--radius-sm); box-shadow: var(--shadow-card); align-items: flex-start; }
.contact-card-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(200,169,110,0.1); border: 1px solid rgba(200,169,110,0.25); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-card-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--text-muted); margin-bottom: 4px; }
.contact-card a, .contact-card strong { font-size: 14px; font-weight: 600; color: var(--espresso); display: block; }
.contact-card a:hover { color: var(--gold); }
.contact-card span { font-size: 12px; color: var(--text-muted); margin-top: 2px; display: block; }
.contact-direct-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); box-shadow: 0 8px 48px rgba(26,15,10,0.08); border: 1px solid rgba(200,169,110,0.18); overflow: hidden; }
.contact-form-head { background: var(--espresso); padding: 24px 28px; border-bottom: 1px solid var(--border-gold); }
.contact-form-head h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--ivory); }
.contact-form-head p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.contact-form-body { padding: 28px; }
.contact-success { text-align: center; padding: 48px 28px; }
.contact-success .success-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--espresso); font-size: 26px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.contact-success h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--espresso); margin-bottom: 10px; }
.contact-success p { font-size: 14px; color: var(--text-dim); line-height: 1.75; max-width: 250px; margin: 0 auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-full-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-full-grid { columns: 3; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 360px; }
  .about-badge { bottom: -16px; right: 16px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-img img { height: 360px; }
  .mission-grid .container { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-info { padding: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  #hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-full-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .mission-grid .container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .visit-types { grid-template-columns: 1fr 1fr; }
  .about-stats-row { gap: 24px; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .booking-grid { gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .product-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { columns: 2; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .about-mini-stats { grid-template-columns: 1fr 1fr; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  #lightbox img { max-width: 95vw; }
}
