/* ─── FONTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --radius: 1rem;
  --background: oklch(0.985 0.008 85);
  --foreground: oklch(0.22 0.02 80);
  --cream: oklch(0.97 0.012 85);
  --sand: oklch(0.92 0.022 80);
  --olive: oklch(0.52 0.08 125);
  --olive-deep: oklch(0.36 0.06 125);
  --wood: oklch(0.78 0.05 70);
  --ink: oklch(0.18 0.015 80);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.02 80);
  --muted: oklch(0.95 0.012 85);
  --muted-foreground: oklch(0.48 0.02 80);
  --border: oklch(0.88 0.015 80);
  --primary-foreground: oklch(0.985 0.008 85);
  --shadow-soft: 0 10px 40px -10px rgba(60,70,40,0.18);
  --shadow-card: 0 4px 24px -8px rgba(30,30,20,0.12);

  /* Friendly hex fallbacks for display */
  --olive-hex: #6b7c3a;
  --olive-deep-hex: #3d4b20;
  --ink-hex: #1e1d17;
  --cream-hex: #f8f5ee;
  --sand-hex: #ede9df;
  --amber: #f59e0b;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--cream-hex);
  color: var(--ink-hex);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--olive-hex);
  color: #fff;
  border-radius: 9999px;
  padding: 0.85rem 1.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px -8px rgba(107,124,58,0.6);
}
.btn-primary:hover {
  background: var(--olive-deep-hex);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(107,124,58,0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-hex);
  border: 1px solid rgba(30,29,23,0.18);
  border-radius: 9999px;
  padding: 0.85rem 1.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: var(--ink-hex);
  color: #fff;
  border-color: var(--ink-hex);
}
.lift {
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.5s ease;
}
.lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s cubic-bezier(0.2,0.8,0.2,1) both; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(150,140,120,0.2);
}
.header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px) { .header-top { padding: 1rem 2rem; } }

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.header-logo-icon {
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--olive-hex);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
}
.header-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.header-search {
  flex: 1;
  max-width: 28rem;
  margin-left: 0.5rem;
  position: relative;
  display: none;
}
@media (min-width: 768px) { .header-search { display: block; } }
.header-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem; height: 1rem;
  color: var(--muted-foreground, #888);
  pointer-events: none;
}
.header-search input {
  width: 100%;
  border-radius: 9999px;
  border: 1px solid var(--border, #ddd);
  background: rgba(255,255,255,0.7);
  padding: 0.625rem 1rem 0.625rem 2.75rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.header-search input:focus {
  border-color: var(--olive-hex);
  background: #fff;
}
.header-icons {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.icon-btn {
  position: relative;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: 50%;
  transition: background 0.2s;
  color: var(--ink-hex);
}
.icon-btn:hover { background: var(--sand-hex); }
.icon-btn svg { width: 1.25rem; height: 1.25rem; }
.icon-btn .badge {
  position: absolute;
  top: -0.125rem; right: -0.125rem;
  width: 1rem; height: 1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--olive-hex);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
}
.menu-toggle {
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: 50%;
  margin-left: 0.25rem;
  transition: background 0.2s;
}
.menu-toggle:hover { background: var(--sand-hex); }
.menu-toggle svg { width: 1.25rem; height: 1.25rem; }
@media (min-width: 768px) { .menu-toggle { display: none; } }

.header-nav {
  border-top: 1px solid rgba(150,140,120,0.2);
  display: none;
}
@media (min-width: 768px) { .header-nav { display: block; } }
.header-nav ul {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0.75rem 2rem;
}
.header-nav a {
  font-size: 0.875rem;
  color: rgba(30,29,23,0.8);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--olive-hex); }

.mobile-nav { display: none; border-top: 1px solid rgba(150,140,120,0.2); }
.mobile-nav.open { display: block; }
.mobile-nav ul { padding: 1rem 1.5rem; }
.mobile-nav li a { display: block; padding: 0.5rem 0; font-size: 0.875rem; }

/* ─── SECTION WRAPPER ─────────────────────────────────────── */
.section {
  padding: 5rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px) { .section { padding: 7rem 2rem; } }
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--olive-hex);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-subtitle {
  color: #888;
  max-width: 38rem;
  margin-bottom: 3rem;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero { overflow: hidden; }
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  padding: 3rem 1rem 4rem;
}
@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 2rem 6rem;
  }
}
.hero-content { display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--olive-hex);
  margin-bottom: 1.25rem;
}
.hero-eyebrow-line {
  height: 1px; width: 2rem;
  background: var(--olive-hex);
}
.hero-title { font-size: 3rem; }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
.hero-title em { font-style: normal; color: var(--olive-hex); }
.hero-desc {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1.125rem;
  color: #777;
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border, #ddd);
  padding-top: 2rem;
}
.hero-stat-n {
  font-family: 'Fraunces', serif;
  font-size: 1.875rem;
  color: var(--olive-deep-hex);
}
.hero-stat-l {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}
.hero-image { position: relative; }
.hero-blob {
  position: absolute;
  right: -2.5rem; top: -2.5rem;
  width: 18rem; height: 18rem;
  border-radius: 50%;
  background: rgba(107,124,58,0.1);
  filter: blur(60px);
  display: none;
}
@media (min-width: 768px) { .hero-blob { display: block; } }
.hero-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  box-shadow: var(--shadow-soft);
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  border-radius: 1.5rem;
  padding: 1.25rem;
  display: none;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.6);
}
@media (min-width: 768px) { .hero-badge { display: block; } }
.hero-badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}
.hero-badge-name {
  margin-top: 0.25rem;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
}

/* ─── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border, #ddd);
  border-bottom: 1px solid var(--border, #ddd);
  background: rgba(248,245,238,0.6);
}
.trust-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 2.5rem 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .trust-inner { grid-template-columns: repeat(4,1fr); padding: 2.5rem 2rem; }
}
.trust-item {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.6);
  border-radius: 1rem;
  padding: 1.25rem;
}
.trust-icon {
  width: 3rem; height: 3rem;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(107,124,58,0.15);
  color: var(--olive-deep-hex);
}
.trust-icon svg { width: 1.25rem; height: 1.25rem; }
.trust-title { font-weight: 500; font-size: 0.9375rem; }
.trust-sub { font-size: 0.8125rem; color: #888; margin-top: 0.125rem; }

/* ─── CATEGORIES ─────────────────────────────────────────── */
.cat-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(3,1fr); } }
.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  min-height: 260px;
  display: block;
}
.cat-card:first-child {
  min-height: 260px;
}
@media (min-width: 768px) {
  .cat-card:first-child {
    grid-row: span 2;
    min-height: 520px;
  }
}
.cat-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.cat-card:hover img { transform: scale(1.05); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,29,23,0.7) 0%, rgba(30,29,23,0.1) 50%, transparent 100%);
}
.cat-info {
  position: absolute;
  inset-inline: 0; bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.5rem;
  color: #fff;
}
.cat-count { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }
.cat-name { font-family: 'Fraunces', serif; font-size: 1.5rem; margin-top: 0.25rem; }
.cat-arrow {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);
  color: var(--ink-hex);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.cat-card:hover .cat-arrow { background: var(--olive-hex); color: #fff; }
.cat-arrow svg { width: 1rem; height: 1rem; }

/* ─── OFFER BANNER ───────────────────────────────────────── */
.offer-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .offer-wrap { padding: 0 2rem; } }
.offer-inner {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
}
.offer-inner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
@media (min-width: 768px) { .offer-inner img { height: 520px; } }
.offer-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,29,23,0.7), rgba(30,29,23,0.4), transparent);
}
.offer-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
}
.offer-text {
  max-width: 36rem;
  padding: 2rem;
  color: #fff;
}
@media (min-width: 768px) { .offer-text { padding: 4rem; } }
.offer-badge {
  display: inline-block;
  background: var(--olive-hex);
  color: #fff;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.offer-title {
  margin-top: 1.25rem;
  font-family: 'Fraunces', serif;
  font-size: 2.25rem;
  line-height: 1.05;
}
@media (min-width: 768px) { .offer-title { font-size: 3.75rem; } }
.offer-desc {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  max-width: 28rem;
}

/* ─── PRODUCT CARD ───────────────────────────────────────── */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4,1fr); } }
.product-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: rgba(237,233,223,0.4);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--olive-hex);
  color: #fff;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-fav {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.6);
  transition: background 0.2s;
  color: var(--ink-hex);
}
.product-fav:hover { background: #fff; }
.product-fav svg { width: 1rem; height: 1rem; }
.product-add-btn {
  position: absolute;
  inset-inline: 0.75rem; bottom: 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--ink-hex);
  color: #fff;
  border-radius: 9999px;
  padding: 0.625rem;
  font-size: 0.875rem;
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.5s, transform 0.5s;
}
.product-add-btn svg { width: 1rem; height: 1rem; }
.product-card:hover .product-add-btn {
  opacity: 1;
  transform: translateY(0);
}
.product-info { padding: 1rem; }
.product-name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink-hex);
}
.product-stars {
  display: flex; align-items: center; gap: 0.25rem;
  margin-top: 0.375rem;
  color: var(--amber);
}
.product-stars svg { width: 0.75rem; height: 0.75rem; }
.product-stars svg.empty { opacity: 0.3; }
.product-rating-val {
  margin-left: 0.25rem;
  font-size: 0.75rem;
  color: #999;
}
.product-price {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-top: 0.5rem;
}
.product-price-now {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  color: var(--olive-deep-hex);
}
.product-price-old {
  font-size: 0.875rem;
  color: #aaa;
  text-decoration: line-through;
}

/* ─── PROMO GLASS SECTION ─────────────────────────────────── */
.promo-glass {
  background: var(--olive-deep-hex);
  color: #fff;
}
.promo-glass-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  gap: 3rem;
  padding: 5rem 1rem;
  align-items: center;
}
@media (min-width: 768px) {
  .promo-glass-inner {
    grid-template-columns: 1fr 1fr;
    padding: 7rem 2rem;
  }
}
.promo-glass-img {
  overflow: hidden;
  border-radius: 1.5rem;
}
.promo-glass-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-glass-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.promo-glass-title {
  font-size: 2.25rem;
  line-height: 1.05;
}
@media (min-width: 768px) { .promo-glass-title { font-size: 3.75rem; } }
.promo-glass-desc {
  margin-top: 1.25rem;
  max-width: 28rem;
  color: rgba(255,255,255,0.7);
}
.promo-glass-btn {
  margin-top: 2rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff;
  color: var(--ink-hex);
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.promo-glass-btn:hover { background: var(--cream-hex); }
.promo-glass-btn svg { width: 1rem; height: 1rem; }

/* ─── NEW ARRIVALS CAROUSEL ──────────────────────────────── */
.carousel-wrap {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-wrap::-webkit-scrollbar { display: none; }
.carousel-item {
  width: 18rem;
  flex-shrink: 0;
  scroll-snap-align: start;
}
@media (min-width: 768px) { .carousel-item { width: 20rem; } }
.carousel-controls {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border, #ddd);
  background: transparent;
  transition: background 0.2s;
  color: var(--ink-hex);
}
.carousel-btn:hover { background: var(--sand-hex); }
.carousel-btn svg { width: 1rem; height: 1rem; }

/* ─── ROOMS ──────────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) { .rooms-grid { grid-template-columns: repeat(4,1fr); } }
.room-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.5rem;
}
.room-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-info {
  position: absolute;
  inset-inline: 0; bottom: 0;
  background: linear-gradient(to top, rgba(30,29,23,0.7), transparent);
  padding: 1.25rem;
  color: #fff;
}
.room-card-name { font-family: 'Fraunces', serif; font-size: 1.5rem; }
.room-card-explore {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}

/* ─── REVIEWS ─────────────────────────────────────────────── */
.reviews-section {
  background: rgba(248,245,238,0.6);
}
.reviews-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 5rem 1rem;
}
@media (min-width: 768px) { .reviews-inner { padding: 7rem 2rem; } }
.reviews-head { max-width: 32rem; margin-bottom: 3rem; }
.reviews-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--olive-hex);
  margin-bottom: 0.75rem;
}
.reviews-title { font-size: 1.875rem; }
@media (min-width: 768px) { .reviews-title { font-size: 3rem; } }
.reviews-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }
.review-card {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.review-quote-icon {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 1.75rem; height: 1.75rem;
  color: rgba(107,124,58,0.3);
}
.review-stars {
  display: flex; gap: 0.125rem;
  color: var(--amber);
  margin-bottom: 1rem;
}
.review-stars svg { width: 1rem; height: 1rem; }
.review-text { color: rgba(30,29,23,0.9); font-style: italic; }
.review-author {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.5rem;
}
.review-avatar {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(107,124,58,0.15);
  font-family: 'Fraunces', serif;
  color: var(--olive-deep-hex);
  flex-shrink: 0;
}
.review-name { font-size: 0.875rem; font-weight: 500; }
.review-role { font-size: 0.75rem; color: #999; }

/* ─── INSTAGRAM GRID ──────────────────────────────────────── */
.ig-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2,1fr);
}
@media (min-width: 768px) { .ig-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .ig-grid { grid-template-columns: repeat(6,1fr); } }
.ig-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1rem;
  display: block;
}
.ig-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.ig-item:hover img { transform: scale(1.1); }
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(30,29,23,0);
  transition: background 0.3s;
}
.ig-item:hover .ig-overlay { background: rgba(30,29,23,0.3); }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1rem 6rem;
}
@media (min-width: 768px) { .newsletter-wrap { padding: 0 2rem 6rem; } }
.newsletter-inner {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: rgba(237,229,204,0.6);
  padding: 2.5rem;
}
@media (min-width: 768px) { .newsletter-inner { padding: 5rem; } }
.newsletter-blob {
  position: absolute;
  right: -5rem; top: -5rem;
  width: 18rem; height: 18rem;
  border-radius: 50%;
  background: rgba(107,124,58,0.15);
  filter: blur(60px);
  pointer-events: none;
}
.newsletter-content {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .newsletter-content { grid-template-columns: 1fr 1fr; } }
.newsletter-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--olive-hex);
  margin-bottom: 0.75rem;
}
.newsletter-title { font-size: 1.875rem; }
@media (min-width: 768px) { .newsletter-title { font-size: 3rem; } }
.newsletter-desc { margin-top: 1rem; max-width: 28rem; color: #888; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .newsletter-form { flex-direction: row; }
}
.newsletter-input {
  flex: 1;
  border-radius: 9999px;
  border: 1px solid var(--border, #ddd);
  background: #fff;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--olive-hex); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--ink-hex); color: #fff; }
.footer-top {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  gap: 3rem;
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 5rem 2rem;
  }
}
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-logo-icon {
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--olive-hex);
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
}
.footer-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
}
.footer-desc {
  margin-top: 1.25rem;
  max-width: 22rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.footer-social {
  display: flex; gap: 0.5rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--olive-hex); background: var(--olive-hex); }
.footer-social svg { width: 1rem; height: 1rem; }
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--olive-hex); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem 2rem;
  }
}
.payment-badges { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.payment-badge {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.375rem;
  padding: 0.25rem 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ─── SVG ICONS (inline) ─────────────────────────────────── */
svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
svg.fill-cur { fill: currentColor; stroke: none; }
