/* ==========================================================================
   TANYA BAKES — style.css
   Theme: Warm Artisan Luxury
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  /* Palette */
  --cream:       #FDFAF5;
  --cream-2:     #F5EDE0;
  --cream-3:     #EDD9C0;
  --surface:     #FFFFFF;
  --espresso:    #1C0A00;
  --espresso-2:  #3D1F0D;
  --brown:       #6B3E26;
  --gold:        #C17F4A;
  --gold-hover:  #A5672F;
  --gold-light:  #DBA878;
  --gold-pale:   #F5DCC8;
  --border:      #E4D0B8;
  --border-2:    #D4BA9A;
  --muted:       #7A5233;

  /* Dark section (contact) */
  --dk-bg:       #1C0A00;
  --dk-surface:  #2D1408;
  --dk-text:     #F5EDE0;
  --dk-muted:    #C9A882;
  --dk-border:   #3D2010;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --width: 1200px;
  --radius: 12px;
  --section: clamp(72px, 10vw, 110px);

  /* Shadows */
  --shadow-sm:   0 2px 8px  rgba(28,10,0,.08);
  --shadow-md:   0 8px 24px rgba(28,10,0,.12);
  --shadow-lg:   0 20px 60px rgba(28,10,0,.16);

  /* Easing */
  --ease: .3s ease;
  --ease-slow: .55s cubic-bezier(.4,0,.2,1);
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.6;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
em   { font-style: italic; }

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 500; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .675rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--espresso);
  margin-bottom: 16px;
}
.title-light { color: var(--dk-text); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .025em;
  border-radius: 6px;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn-primary:hover  { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(193,127,74,.35); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .025em;
  border: 1.5px solid var(--border-2);
  border-radius: 6px;
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  transition: background var(--ease), color var(--ease);
}
.btn-outline:hover { background: var(--gold); color: #fff; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--dk-text);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  border: 1.5px solid rgba(245,237,224,.35);
  border-radius: 6px;
  transition: border-color var(--ease), background var(--ease);
  white-space: nowrap;
}
.btn-outline-light:hover { border-color: var(--dk-text); background: rgba(245,237,224,.08); }

/* Per-card WhatsApp button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 11px 16px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-wa:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,250,245,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), background var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(253,250,245,.97);
}

.nav-container {
  max-width: var(--width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: .02em;
  flex-shrink: 0;
  transition: color var(--ease);
}
.nav-logo:hover { color: var(--gold); }

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: .875rem;
  color: var(--espresso-2);
  letter-spacing: .03em;
  position: relative;
  transition: color var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--espresso);
  color: var(--cream-2);
  font-size: .78rem;
  font-weight: 500;
  border-radius: 50px;
  transition: background var(--ease);
  flex-shrink: 0;
}
.nav-instagram:hover { background: var(--gold); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  background: var(--cream);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease-slow);
}
.mobile-menu.open { max-height: 320px; }

.mobile-link {
  display: block;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--espresso);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease), color var(--ease);
}
.mobile-link:hover  { background: var(--cream-2); color: var(--gold); }
.mobile-insta { color: var(--gold); font-style: italic; }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100svh;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse 65% 60% at 75% 55%, rgba(193,127,74,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 40%, rgba(237,217,192,.55) 0%, transparent 60%),
    var(--cream);
  position: relative;
  overflow: hidden;
}

/* Decorative ring */
.hero::before {
  content: '';
  position: absolute;
  top: 12%; right: -8%;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(193,127,74,.12);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 20%; right: 4%;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(193,127,74,.08);
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: var(--width);
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px 96px;
  gap: 64px;
}

/* Text */
.hero-text { flex: 1; }

.hero-title {
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-title em { color: var(--gold); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Visual (hidden on mobile, shown on desktop) */
.hero-visual {
  display: none;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.hero-frame {
  width: 360px;
  height: 440px;
  border-radius: 180px 180px 16px 16px;
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
  border: 1px solid var(--border);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}

.hero-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--cream-2), var(--cream-3));
}

.ph-icon  { font-size: 2.8rem; opacity: .4; }
.ph-label { font-size: .7rem; color: var(--muted); opacity: .55; letter-spacing: .04em; text-align: center; padding: 0 12px; }

/* Decorative bubbles */
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bubble-1 {
  width: 80px; height: 80px;
  background: var(--gold-pale);
  top: -24px; right: -24px;
  opacity: .7;
}
.hero-bubble-2 {
  width: 42px; height: 42px;
  background: var(--cream);
  border: 2px solid var(--border-2);
  bottom: 48px; left: -12px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .5;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .5; transform: scaleY(1); }
  50%      { opacity: .2; transform: scaleY(.5); }
}

/* --------------------------------------------------------------------------
   TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--espresso);
  padding: 15px 24px;
  overflow: hidden;
}
.trust-inner {
  max-width: var(--width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.trust-star { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   FEATURED SECTION
   -------------------------------------------------------------------------- */
.section-featured {
  padding: var(--section) 24px;
  max-width: var(--width);
  margin: 0 auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* Skeletons while loading */
.skeleton-row {
  display: contents;
}
.skeleton-card {
  height: 360px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--cream-2) 25%, var(--cream-3) 50%, var(--cream-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --------------------------------------------------------------------------
   PRODUCT CARD
   -------------------------------------------------------------------------- */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
  animation: fadeUp .5s ease both;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Image */
.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  flex-shrink: 0;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.07); }

.card-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, var(--cream-2), var(--cream-3));
  color: var(--muted);
}
.card-placeholder .ph-icon  { font-size: 2.2rem; opacity: .4; }
.card-placeholder .ph-label { font-size: .65rem; opacity: .45; letter-spacing: .04em; }

/* Badges overlaid on image */
.badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #fff;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.cat-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(28,10,0,.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--cream);
  font-size: .62rem;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Body */
.card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 7px;
  line-height: 1.2;
}
.card-desc {
  font-size: .845rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   CATALOG SECTION
   -------------------------------------------------------------------------- */
.section-catalog { background: var(--cream-2); padding: var(--section) 0; }

.catalog-wrap {
  max-width: var(--width);
  margin: 0 auto;
  padding: 0 24px;
}

.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

/* Search */
.search-wrap {
  position: relative;
  max-width: 380px;
}
.search-icon {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 12px 42px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--espresso);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.search-input::placeholder { color: var(--muted); opacity: .55; }
.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193,127,74,.14);
}
.search-clear {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: .72rem;
  color: var(--muted);
  padding: 4px;
  transition: color var(--ease);
}
.search-clear:hover { color: var(--espresso); }

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-tab {
  padding: 8px 18px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--espresso-2);
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream-2);
  font-weight: 500;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

/* No results */
.no-results {
  text-align: center;
  padding: 72px 24px;
}
.no-results-icon { font-size: 2.5rem; opacity: .4; display: block; margin-bottom: 16px; }
.no-results p { color: var(--muted); margin-bottom: 20px; }

/* --------------------------------------------------------------------------
   ABOUT SECTION
   -------------------------------------------------------------------------- */
.section-about { padding: var(--section) 24px; }

.about-inner {
  max-width: var(--width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: flex-start;
}

.about-text .section-title { margin-bottom: 22px; }
.about-text .section-title em { color: var(--gold); }

.about-para {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.82;
  max-width: 500px;
  margin-bottom: 18px;
}
.about-text .btn-primary { margin-top: 8px; }

/* Visual */
.about-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.about-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid var(--border);
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--cream-2), var(--cream-3));
}

/* Stat chips */
.stat-chip {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 110px;
}
.stat-chip-1 { bottom: -18px; right: -16px; }
.stat-chip-2 {
  bottom: 72px; right: -16px;
  background: var(--espresso);
  border-color: var(--espresso-2);
}
.stat-chip-2 .stat-num { color: var(--gold-light); }
.stat-chip-2 .stat-lbl { color: var(--dk-muted); }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 3px;
}
.stat-lbl {
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   CONTACT SECTION
   -------------------------------------------------------------------------- */
.section-contact { background: var(--dk-bg); padding: var(--section) 24px; }

.contact-inner { max-width: var(--width); margin: 0 auto; }

.contact-header { text-align: center; margin-bottom: 56px; }
.contact-sub {
  color: var(--dk-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

/* Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.contact-card {
  background: var(--dk-surface);
  border: 1px solid var(--dk-border);
  border-radius: 16px;
  padding: 36px 30px;
  transition: border-color var(--ease), transform var(--ease);
}
.contact-card:hover { border-color: rgba(193,127,74,.4); transform: translateY(-3px); }

.contact-icon {
  width: 52px; height: 52px;
  background: rgba(193,127,74,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dk-text);
  margin-bottom: 10px;
}
.contact-card p {
  color: var(--dk-muted);
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* Order steps */
.order-steps {
  border-top: 1px solid var(--dk-border);
  padding-top: 56px;
}
.steps-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--dk-text);
  text-align: center;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.step {
  border: 1px solid var(--dk-border);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color var(--ease);
}
.step:hover { border-color: rgba(193,127,74,.35); }

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .65;
  margin-bottom: 10px;
  line-height: 1;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dk-text);
  margin-bottom: 8px;
}
.step p {
  font-size: .82rem;
  color: var(--dk-muted);
  font-weight: 300;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0d0500;
  padding: 60px 24px 0;
}
.footer-inner {
  max-width: var(--width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: .975rem;
  color: var(--dk-muted);
  margin-bottom: 4px;
}
.footer-location { font-size: .75rem; color: rgba(245,237,224,.3); letter-spacing: .05em; }

.footer-nav { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dk-muted);
  margin-bottom: 2px;
}
.footer-col a { font-size: .85rem; color: rgba(245,237,224,.4); transition: color var(--ease); }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--width);
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: .72rem; color: rgba(245,237,224,.2); }

/* --------------------------------------------------------------------------
   RESPONSIVE — TABLET (640px+)
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  /* Show desktop nav, hide hamburger */
  .nav-links  { display: flex; }
  .hamburger  { display: none; }
  .mobile-menu { display: none !important; }

  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-nav   { gap: 64px; }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — DESKTOP (880px+)
   -------------------------------------------------------------------------- */
@media (min-width: 880px) {
  .hero-visual { display: flex; }

  .about-inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
  .about-text  { flex: 1; }
  .about-visual { flex: 1; max-width: 500px; flex-shrink: 0; }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — SMALL MOBILE
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.6rem, 11vw, 3.6rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .scroll-hint { display: none; }
  .stat-chip   { display: none; }
  .footer-nav  { gap: 28px; }
}

/* --------------------------------------------------------------------------
   ACCESSIBILITY
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
