/* Valprome — Bright Mediterranean theme.
   Sun-bleached cream + terracotta + olive + ocean blue. Fraunces + DM Sans.
   Larger heroes, slower reveals, full-bleed-friendly. */

:root {
  /* Mediterranean palette */
  --bg: #FBF8F3;          /* sun-bleached cream */
  --surface: #F1EBDD;     /* pale stone */
  --surface-alt: #E8DFC8; /* warm stone */
  --fg: #1C1F1B;          /* deep olive ink */
  --muted: #5A6056;       /* muted olive-gray */
  --accent: #D2664A;      /* bright terracotta */
  --accent-hover: #B85638;
  --olive: #5D6B3D;       /* olive green */
  --ocean: #3E7B97;       /* Mediterranean blue */
  --border: #E4DDCB;
  --error: #A33A2C;
  --success: #4D6B3F;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--accent); color: var(--bg); }

/* Subtle paper grain — barely visible, gives Mediterranean warmth */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='1'/></svg>");
}

/* Typography — Fraunces display + DM Sans body */
.h2, h2.h2 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--fg);
  font-weight: 400;
}
.h3, h3.h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-size: 1.75rem;
  line-height: 1.1;
  margin: 0;
  color: var(--fg);
  font-weight: 500;
}
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #FBF8F3;
  margin: 1.5rem 0 0;
  font-weight: 400;
}
.display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: #FBF8F3;
}
.display-2 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 0;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.93;
  letter-spacing: -0.025em;
  margin: 0.5rem 0 0;
  color: var(--fg);
  font-weight: 400;
}

.overline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin: 0;
}
.overline.accent { color: var(--accent); }
.text-muted { color: var(--muted); font-weight: 400; line-height: 1.75; margin: 0; }
.text-muted-light { color: rgba(251,248,243,0.78); font-weight: 400; }
.leading { line-height: 1.75; }
.small { font-size: 0.875rem; }
.xs { font-size: 0.75rem; }
.text-strong { font-weight: 500; }
.center { text-align: center; }
.accent { color: var(--accent); }
.olive { color: var(--olive); }
.ocean { color: var(--ocean); }
.block { display: block; width: 100%; }

/* Layout */
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }
@media (min-width: 768px) { .container { padding: 0 3rem; } }
@media (min-width: 1024px) { .container { padding: 0 5rem; } }
@media (min-width: 1280px) { .container { padding: 0 7rem; } }

.section { padding: 7rem 0; position: relative; z-index: 2; }
@media (min-width: 768px) { .section { padding: 10rem 0; } }
.page-pad { padding-top: 9rem; padding-bottom: 7rem; position: relative; z-index: 2; }

.bg-surface { background: var(--surface); }
.bg-surface-alt { background: var(--surface-alt); }

.row { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.row > * { min-width: 0; }
@media (min-width: 768px) { .row { gap: 3rem; } }

.col-3, .col-4, .col-5, .col-6, .col-7, .col-8 { grid-column: span 12; }
@media (min-width: 768px) {
  .col-3 { grid-column: span 3; } .col-4 { grid-column: span 4; }
  .col-5 { grid-column: span 5; } .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; } .col-8 { grid-column: span 8; }
  .col-offset-1 { grid-column-start: 6; } .col-offset-2 { grid-column-start: 8; }
}

.gap-lg { gap: 3rem; }
.gap-md { gap: 1.5rem; }
.align-end { align-items: end; }
.align-center { align-items: center; }
.space-between { justify-content: space-between; }
.section-head { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 2.5rem; }
}

/* Two-column split — used for section intros (heading + body), artisan, about, contact.
   Cleaner than the 12-col grid for simple side-by-side layouts. */
.split { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .split.align-end { align-items: end; }
  .split.align-center { align-items: center; }
}
.split-7-5 { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) {
  .split-7-5 { grid-template-columns: 7fr 5fr; gap: 5rem; align-items: center; }
}
.split-5-7 { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) {
  .split-5-7 { grid-template-columns: 5fr 7fr; gap: 5rem; }
}
.mt-xs { margin-top: 0.25rem; } .mt-sm { margin-top: 0.5rem; } .mt-md { margin-top: 1.25rem; }
.mt-lg { margin-top: 2rem; } .mt-xl { margin-top: 3.5rem; } .mt-2xl { margin-top: 6rem; }
.mb-xl { margin-bottom: 3.5rem; } .mb-lg { margin-bottom: 2.5rem; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  transition: background 400ms ease, border-color 400ms;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(251,248,243,0.65), rgba(251,248,243,0));
}
.site-header.scrolled {
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-color: var(--border);
}
body.has-hero .site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(28,31,27,0.30), rgba(28,31,27,0));
}
body.has-hero .site-header:not(.scrolled) .logo-mark,
body.has-hero .site-header:not(.scrolled) .nav-link,
body.has-hero .site-header:not(.scrolled) .cart-btn,
body.has-hero .site-header:not(.scrolled) .mobile-toggle,
body.has-hero .site-header:not(.scrolled) .logo-tag { color: #FBF8F3; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 5.5rem; }
.logo { display: flex; align-items: baseline; gap: 0.65rem; }
.logo-mark {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-weight: 500;
  font-style: italic;
}
.logo-tag {
  font-size: 0.625rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500; color: var(--accent); display: none;
}
@media (min-width: 640px) { .logo-tag { display: inline; } }

.primary-nav { display: none; gap: 3rem; }
@media (min-width: 768px) { .primary-nav { display: flex; align-items: center; } }
.nav-link {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--fg); transition: color 200ms;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.cart-btn, .mobile-toggle {
  position: relative; width: 2.75rem; height: 2.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; color: var(--fg);
  transition: color 200ms, transform 200ms;
}
.cart-btn:hover, .mobile-toggle:hover { color: var(--accent); transform: translateY(-1px); }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--accent); color: #fff;
  font-size: 10px; min-width: 1.25rem; height: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px; font-weight: 600; padding: 0 4px;
}
.mobile-toggle { display: inline-flex; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-nav { background: var(--bg); border-top: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-nav[hidden] { display: none; }
.mobile-link { font-size: 0.95rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--fg); }

/* Hero — bigger, slower, more dramatic */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroBreathe 18s ease-in-out infinite alternate; }
@keyframes heroBreathe { from { transform: scale(1.04); } to { transform: scale(1.10); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(28,31,27,0.62), rgba(28,31,27,0.10) 55%, rgba(28,31,27,0.18)),
    linear-gradient(to right, rgba(28,31,27,0.30), rgba(28,31,27,0));
}
.hero-inner { position: relative; padding-bottom: 6rem; padding-top: 8rem; }
@media (min-width: 768px) { .hero-inner { padding-bottom: 9rem; padding-top: 10rem; } }
.hero-lede {
  font-family: 'DM Sans', sans-serif;
  color: rgba(251,248,243,0.92);
  max-width: 38rem;
  margin-top: 2rem;
  line-height: 1.7;
  font-size: 1.05rem;
  font-weight: 400;
}
@media (min-width: 768px) { .hero-lede { font-size: 1.2rem; max-width: 42rem; } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; margin-top: 3rem; }
.btn-link-light {
  color: #FBF8F3; font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  padding: 0.65rem 0; border-bottom: 1px solid currentColor;
  transition: opacity 250ms, letter-spacing 250ms;
}
.btn-link-light:hover { opacity: 0.75; letter-spacing: 0.26em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1.05rem 2.25rem;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; border: 0;
  transition: background 300ms ease, color 300ms, transform 300ms, letter-spacing 300ms;
  position: relative;
}
.btn-primary { background: var(--accent); color: #fff; border-radius: 0; }
.btn-primary:hover { background: var(--accent-hover); letter-spacing: 0.26em; }
.btn-secondary { background: transparent; color: var(--fg); border: 1px solid var(--fg); border-radius: 0; }
.btn-secondary:hover { background: var(--fg); color: var(--bg); letter-spacing: 0.26em; }
.btn-link {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--fg);
  padding: 0.5rem 0; border-bottom: 1px solid var(--fg);
  transition: color 250ms, border-color 250ms, letter-spacing 250ms;
}
.btn-link:hover { color: var(--accent); border-color: var(--accent); letter-spacing: 0.26em; }
.link-muted { background: transparent; border: 0; color: var(--muted); font-size: 0.85rem; padding: 0; cursor: pointer; transition: color 200ms; }
.link-muted:hover { color: var(--accent); }

/* Tetris categories */
.tetris {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
@media (min-width: 768px) {
  .tetris { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 1.25rem; }
}
.tile { position: relative; overflow: hidden; display: block; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms ease; }
.tile:hover img { transform: scale(1.06); }
.tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,31,27,0.55), rgba(28,31,27,0.12)); transition: background 400ms; }
.tile:hover .tile-overlay { background: linear-gradient(to top, rgba(210,102,74,0.55), rgba(28,31,27,0.18)); }
.tile-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.tile-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 96, "SOFT" 70;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  color: #FBF8F3; margin: 0; line-height: 1; font-style: italic; font-weight: 400;
}
.span-large { grid-column: span 2; grid-row: span 2; }
.span-wide { grid-column: span 2; }
.span-one { grid-column: span 1; }
@media (max-width: 767px) {
  .span-wide { grid-column: span 2; grid-row: span 1; }
  .span-one { grid-column: span 1; grid-row: span 1; }
}

/* Product grid */
.grid-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
@media (min-width: 1024px) { .grid-products { grid-template-columns: repeat(4, 1fr); gap: 2.75rem; } }
.product-card { display: block; }
.product-card-img { aspect-ratio: 4/5; background: var(--surface); margin-bottom: 1.1rem; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.product-card-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 60;
  font-size: 1.35rem; line-height: 1.15;
  margin: 0.4rem 0 0; color: var(--fg);
  transition: color 250ms; font-weight: 500;
}
.product-card:hover .product-card-title { color: var(--accent); }
.price { font-size: 1rem; font-weight: 500; margin: 0; font-feature-settings: "tnum"; }
.price-strike { font-size: 0.8rem; color: var(--muted); text-decoration: line-through; margin: 0; font-feature-settings: "tnum"; }
.price-stack { text-align: right; white-space: nowrap; }

/* Filter bar */
.filter-bar { display: flex; flex-direction: column; gap: 1.25rem; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .filter-bar { flex-direction: row; align-items: center; justify-content: space-between; } }
.filters { display: flex; flex-wrap: wrap; gap: 1.5rem 1.75rem; }
.filter {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--fg);
  padding-bottom: 0.3rem; border-bottom: 1px solid transparent;
  transition: color 250ms, border-color 250ms, letter-spacing 250ms;
}
.filter:hover { color: var(--accent); letter-spacing: 0.26em; }
.filter.active { color: var(--accent); border-color: var(--accent); }
.sort { display: flex; align-items: center; gap: 0.85rem; }
.sort label { color: var(--muted); }
.sort select {
  background: transparent; border: 0; border-bottom: 1px solid var(--fg);
  padding: 0.3rem 0; font-size: 0.9rem; font-weight: 500;
  font-family: inherit; outline: none; cursor: pointer;
}
.sort select:focus { border-color: var(--accent); }

/* Image frames */
.img-frame { overflow: hidden; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms ease; }
.img-frame:hover img { transform: scale(1.05); }
.ratio-4-5 { aspect-ratio: 4/5; }
.ratio-5-4 { aspect-ratio: 5/4; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-value {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  font-size: 3rem;
  line-height: 1;
  margin: 0;
  color: var(--olive);
  font-weight: 500;
}

/* Testimonial */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 4rem; } }
.testimonial { border-top: 2px solid var(--accent); padding-top: 2.25rem; position: relative; }
.testimonial::before {
  content: '"';
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 5rem;
  color: var(--accent);
  position: absolute;
  top: -1.25rem;
  left: -0.5rem;
  line-height: 1;
  opacity: 0.4;
}
.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 80;
  font-size: 1.6rem; line-height: 1.35;
  color: var(--fg); font-style: italic; margin: 0; font-weight: 400;
}
.testimonial figcaption { margin-top: 1.75rem; }

/* PDP */
.pdp-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .pdp-grid { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.pdp-info { position: sticky; top: 8rem; align-self: start; }
.rating-row { display: inline-flex; align-items: center; gap: 0.75rem; }
.stars { display: inline-flex; gap: 1px; color: var(--accent); }
.stars .star.off { color: var(--border); }
.price-row { display: flex; align-items: baseline; gap: 0.85rem; margin-top: 1.75rem; }
.features { border-top: 1px solid var(--border); padding-top: 1.75rem; margin-top: 1.75rem; display: grid; gap: 0.6rem; }
.features li { display: flex; gap: 0.85rem; font-size: 0.95rem; color: var(--fg); }
.features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--olive); display: inline-block; flex-shrink: 0; margin-top: 0.55rem; }
.add-to-cart { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 2.25rem; }
.qty-stepper { display: inline-flex; border: 1px solid var(--fg); }
.qty-stepper button { width: 3.25rem; height: 3.25rem; background: transparent; border: 0; font-size: 1.15rem; transition: background 200ms; }
.qty-stepper button:hover { background: var(--surface); }
.qty-val { width: 3.25rem; height: 3.25rem; display: inline-flex; align-items: center; justify-content: center; font-weight: 500; font-feature-settings: "tnum"; }
.atc-btn { flex: 1; min-width: 220px; }
.badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; font-size: 0.78rem; color: var(--muted); margin-top: 2.25rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* Reviews */
.reviews { border-top: 1px solid var(--border); padding-top: 5rem; }
.review { border-bottom: 1px solid var(--border); padding-bottom: 2.75rem; margin-bottom: 2.75rem; }
.review:last-child { border-bottom: 0; margin-bottom: 0; }
.review-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }

/* Cart page */
.cart-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .cart-grid { grid-template-columns: 8fr 4fr; } }
.cart-list { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cart-list.compact { border: 0; }
.cart-row { display: flex; gap: 1.75rem; padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
.cart-row:last-child { border-bottom: 0; }
.cart-row.compact { padding: 0.85rem 0; align-items: center; }
.cart-row-img { width: 7.5rem; height: 9rem; background: var(--surface); flex-shrink: 0; }
.cart-row-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cart-row-top { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; }
.cart-row-title { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 72; font-size: 1.4rem; line-height: 1.15; color: var(--fg); font-weight: 500; }
.cart-row-title.small { font-size: 1.1rem; }
.cart-row-line { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 72; font-size: 1.5rem; font-feature-settings: "tnum"; }
.cart-row-actions { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; }
.thumb { position: relative; width: 4.25rem; height: 5.25rem; background: var(--bg); flex-shrink: 0; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.qty-bubble { position: absolute; top: -8px; right: -8px; background: var(--fg); color: var(--bg); font-size: 10px; width: 1.35rem; height: 1.35rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 9999px; }

.cart-summary { background: var(--surface); padding: 2.25rem; position: sticky; top: 8rem; align-self: start; }
.kv > div { display: flex; justify-content: space-between; padding: 0.45rem 0; font-size: 0.92rem; }
.kv dt { color: var(--muted); margin: 0; } .kv dd { margin: 0; font-weight: 500; font-feature-settings: "tnum"; }
.total-row { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--border); padding-top: 1.25rem; margin-top: 1rem; }

/* Checkout */
.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .checkout-grid { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.checkout-form > fieldset { border: 0; padding: 0; margin: 0 0 2.75rem; }
.checkout-form > fieldset legend { padding: 0; margin: 0 0 1.5rem; font-family: 'Fraunces', serif; font-variation-settings: "opsz" 72; font-size: 1.75rem; font-weight: 500; }
.field {
  width: 100%; background: transparent;
  border: 1px solid var(--border);
  padding: 0.95rem 1.1rem;
  font-family: inherit; font-size: 0.95rem; color: var(--fg);
  outline: none; transition: border-color 200ms;
}
.field:focus { border-color: var(--accent); }
textarea.field { resize: vertical; min-height: 9rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-2 .span-2 { grid-column: span 2; }
.payment-box {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(232,223,200,0.6) 100%);
  padding: 1.75rem;
}
.cards { display: inline-flex; gap: 0.5rem; color: var(--muted); }

/* Contact */
.contact-form { background: var(--surface); padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.info-list { display: flex; flex-direction: column; gap: 1.75rem; }

/* Policies */
.policy-body h2 { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 72; font-size: 1.65rem; margin: 2.25rem 0 0.6rem; color: var(--fg); font-weight: 500; }
.policy-body p { color: var(--muted); line-height: 1.8; margin: 0 0 1.1rem; }

/* Newsletter */
.newsletter { display: flex; flex-direction: column; gap: 0.75rem; max-width: 30rem; margin-top: 2.25rem; }
@media (min-width: 640px) { .newsletter { flex-direction: row; } }
.newsletter input {
  flex: 1; background: transparent;
  border: 1px solid rgba(251,248,243,0.4);
  padding: 0.95rem 1.1rem; color: #FBF8F3;
  outline: none;
  font-family: inherit; font-size: 0.95rem;
}
.newsletter input::placeholder { color: rgba(251,248,243,0.45); }
.newsletter input:focus { border-color: var(--accent); }
.newsletter button { padding: 0.95rem 1.75rem; }
.newsletter-msg { color: var(--success); font-size: 0.85rem; min-height: 1rem; margin-top: 0.5rem; }
.newsletter-msg.error { color: var(--error); }

/* Footer — olive instead of charcoal */
.site-footer { background: #1F2A1B; color: #FBF8F3; margin-top: 7rem; position: relative; z-index: 2; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--accent), var(--olive), var(--ocean));
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; padding: 7rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 2fr 2fr 3fr; padding: 9rem 0; } }
.footer-col-lead .h2 { color: #FBF8F3; font-size: 2.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; font-size: 0.9rem; }
.footer-col a { color: #FBF8F3; opacity: 0.82; transition: color 200ms, opacity 200ms; }
.footer-col a:hover { color: var(--accent); opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(251,248,243,0.15); }
.footer-bottom-row { display: flex; flex-direction: column; gap: 1rem; align-items: center; padding: 2rem 0; }
@media (min-width: 768px) { .footer-bottom-row { flex-direction: row; justify-content: space-between; } }

/* Toast */
.toast { position: fixed; bottom: 1.75rem; right: 1.75rem; background: var(--fg); color: var(--bg); padding: 1.1rem 1.6rem; box-shadow: 0 14px 36px rgba(0,0,0,0.18); font-size: 0.9rem; z-index: 100; animation: toastIn 300ms ease; }
.toast.error { background: var(--error); color: #fff; }
@keyframes toastIn { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Page entrance — slower, more dramatic */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-enter > * { animation: fadeUp 1000ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.page-enter > *:nth-child(1) { animation-delay: 0ms; }
.page-enter > *:nth-child(2) { animation-delay: 120ms; }
.page-enter > *:nth-child(3) { animation-delay: 240ms; }
.page-enter > *:nth-child(4) { animation-delay: 360ms; }
.page-enter > *:nth-child(5) { animation-delay: 480ms; }

/* Decorative — Mediterranean accent flourish, optional */
.flourish {
  display: block; width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 1.25rem 0;
}
