/* =====================================================
   RELAX TOTAL BODY — DESIGN SYSTEM
   Editorial wellness aesthetic, sage & coral palette
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,500&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors — verde salvia e muschio naturale */
  --mint:        #7A9E72;
  --mint-deep:   #4A6B44;
  --mint-darker: #2E5228;
  --mint-soft:   #C5D4BC;
  --mint-mist:   #E8F0DF;

  --coral:       #D4856E;
  --coral-deep:  #B5614A;
  --coral-soft:  #F0CEBE;

  --cream:       #F7F4EE;
  --cream-warm:  #EDE8DC;
  --paper:       #FFFFFF;

  --ink:         #1E3018;
  --ink-soft:    #3D5C38;
  --ink-mute:    #7A9078;

  --line:        rgba(30, 48, 24, 0.12);
  --line-soft:   rgba(30, 48, 24, 0.06);

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-sm: 0 1px 2px rgba(31,58,51,.04), 0 2px 6px rgba(31,58,51,.06);
  --shadow:    0 8px 30px rgba(31,58,51,.08);
  --shadow-lg: 0 24px 60px -20px rgba(31,58,51,.18);

  --container: 1200px;
  --transition: 0.4s cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::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);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  /* subtle paper grain */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31,58,51,.025) 1px, transparent 0);
  background-size: 24px 24px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.3vw, 2rem); font-weight: 400; }
h4 { font-size: 1.25rem; font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-deep);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--mint-deep);
}

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--coral-deep);
}

p.lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

section { padding: var(--sp-10) 0; }
@media (max-width: 768px) { section { padding: var(--sp-9) 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--mint-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-coral {
  background: var(--coral);
  color: var(--paper);
}
.btn-coral:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
}
.btn .arrow {
  transition: transform var(--transition);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--sp-4) 0;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  padding: var(--sp-3) 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(74,107,68,.25);
}
.logo span em {
  font-style: italic;
  color: var(--coral-deep);
  font-weight: 300;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--coral-deep);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--mint-deep); }
.nav-cta { 
  margin-left: var(--sp-2);
  display: flex;
  align-items: center;
}
.nav-cta .btn-primary {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-deep) 100%);
  padding: 0.85rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(74, 107, 68, 0.25);
  border: none;
  letter-spacing: 0.03em;
}
.nav-cta .btn-primary:hover {
  background: linear-gradient(135deg, var(--mint-deep) 0%, var(--mint-darker) 100%);
  box-shadow: 0 8px 24px rgba(74, 107, 68, 0.35);
  transform: translateY(-3px);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--mint-mist);
  color: var(--ink);
}
.menu-toggle span {
  width: 18px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: all var(--transition);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 18px; height: 1.5px; background: var(--ink);
  transition: all var(--transition);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top: 6px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 920px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh; width: min(360px, 86%);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--sp-8) var(--sp-7);
    gap: var(--sp-5);
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.7,0,.3,1);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.4rem; font-family: var(--font-display); font-weight: 300; }
  .nav-cta { margin-top: var(--sp-4); margin-left: 0; width: 100%; }
  .nav-cta .btn-primary { width: 100%; justify-content: center; }
}

/* ---------- HERO ---------- */
.hero {
  padding: calc(var(--sp-10) + 60px) 0 var(--sp-9);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero-text .eyebrow { margin-bottom: var(--sp-5); }
.hero-text h1 { margin-bottom: var(--sp-5); }
.hero-text h1 em {
  font-style: italic;
  color: var(--coral-deep);
  font-weight: 300;
}
.hero-text p { margin-bottom: var(--sp-6); max-width: 50ch; }
.hero-cta {
  display: flex; gap: var(--sp-4); flex-wrap: wrap;
}
.hero-meta {
  margin-top: var(--sp-7);
  display: flex; gap: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}
.hero-meta div small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.hero-meta div strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
}

/* Hero visual — layered composition */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-shape-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, var(--mint-soft) 0%, var(--mint) 70%);
  border-radius: 50% 45% 55% 50% / 50% 55% 45% 50%;
  animation: morph 18s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 50% 45% 55% 50% / 50% 55% 45% 50%; }
  50%     { border-radius: 45% 55% 50% 45% / 55% 45% 55% 50%; }
}
.hero-img {
  position: absolute;
  inset: 8% 5% 8% 8%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.hero-badge {
  position: absolute;
  bottom: -20px; right: -10px;
  background: var(--coral);
  color: var(--paper);
  padding: var(--sp-5) var(--sp-5);
  border-radius: 50%;
  width: 130px; height: 130px;
  display: flex;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.2;
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
  animation: floatBadge 6s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: rotate(-8deg) translateY(0); }
  50%     { transform: rotate(-4deg) translateY(-6px); }
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .hero-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 4/4.5; }
  .hero-badge { display: none; }
}

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: end;
  margin-bottom: var(--sp-8);
}
.section-head .eyebrow { margin-bottom: var(--sp-4); }
.section-head h2 em {
  font-style: italic;
  color: var(--coral-deep);
  font-weight: 300;
}
.section-head .section-intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  padding-bottom: 0.4rem;
}
@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; gap: var(--sp-4); }
}

/* ---------- SERVICES ---------- */
.services-section { background: var(--paper); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
}
.service-card {
  position: relative;
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--line-soft);
  transition: all var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, var(--mint), var(--mint-deep));
  transition: height var(--transition);
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { height: 100%; }
.service-card:hover * { color: var(--cream); position: relative; z-index: 1; }
.service-card:hover .service-num { color: var(--coral-soft); }
.service-card:hover .service-arrow { color: var(--coral); }

.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--coral-deep);
  margin-bottom: var(--sp-5);
  display: block;
  position: relative; z-index: 1;
}
.service-card h3 {
  margin-bottom: var(--sp-4);
  position: relative; z-index: 1;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
  position: relative; z-index: 1;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  position: relative; z-index: 1;
}
.service-meta .duration {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.service-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--mint-mist);
  display: flex;
  align-items: center; justify-content: center;
  color: var(--mint-deep);
  transition: all var(--transition);
}
.service-card:hover .service-arrow {
  background: var(--paper);
  transform: rotate(-45deg);
}

/* ---------- ABOUT / FEATURED ---------- */
.feature-section {
  background: var(--mint-mist);
  position: relative;
  overflow: hidden;
}
.feature-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--mint-soft), transparent 70%);
  opacity: 0.6;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-8);
  align-items: center;
  position: relative;
  z-index: 1;
}
.feature-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-img-quote {
  position: absolute;
  bottom: var(--sp-5); left: var(--sp-5); right: var(--sp-5);
  background: rgba(250,246,240,.92);
  backdrop-filter: blur(10px);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
}
.feature-text .eyebrow { margin-bottom: var(--sp-5); }
.feature-text h2 { margin-bottom: var(--sp-5); }
.feature-text h2 em { font-style: italic; color: var(--coral-deep); font-weight: 300; }
.feature-text p { margin-bottom: var(--sp-5); color: var(--ink-soft); }
.feature-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.pillar h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--mint-deep);
  margin-bottom: var(--sp-2);
}
.pillar p { font-size: 0.92rem; margin: 0; }
@media (max-width: 920px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- TESTIMONIALS / QUOTE ---------- */
.quote-section {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 26rem;
  color: var(--mint-deep);
  opacity: 0.18;
  line-height: 1;
}
.quote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  max-width: 28ch;
  margin: 0 auto var(--sp-5);
  position: relative;
}
.quote-section cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
}

/* ---------- CONTACT / BOOK ---------- */
.contact-section {
  background: var(--cream-warm);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: stretch;
}
.contact-info h2 { margin-bottom: var(--sp-5); }
.contact-info h2 em { font-style: italic; color: var(--coral-deep); font-weight: 300; }
.contact-info p { color: var(--ink-soft); margin-bottom: var(--sp-6); max-width: 40ch; }
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--mint-deep);
  display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.contact-list strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
}

.map-frame {
  width: 100%; height: 100%;
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--paper);
}
.map-frame iframe {
  width: 100%; height: 100%; border: none;
  filter: saturate(0.9) hue-rotate(-10deg);
}
@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-frame { min-height: 340px; }
}

/* ---------- FORM ---------- */
.form-card {
  background: var(--paper);
  padding: var(--sp-7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--sp-2);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: all var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--mint);
  background: var(--paper);
  box-shadow: 0 0 0 4px var(--mint-mist);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: var(--sp-4); width: 100%; justify-content: center; }
.form-msg {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-msg.success { background: var(--mint-mist); color: var(--mint-darker); display: block; }
.form-msg.error   { background: #FBE5DF; color: #883A28; display: block; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq-item {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open {
  box-shadow: var(--shadow);
  border-color: var(--mint-soft);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  transition: all var(--transition);
}
.faq-q:hover { background: var(--cream); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mint-mist);
  color: var(--mint-deep);
  display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-size: 1.4rem;
  font-weight: 300;
  font-family: var(--font-body);
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--coral);
  color: var(--paper);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .3s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 var(--sp-6) var(--sp-6);
}
.faq-a p {
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-6);
}
.blog-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--mint-soft);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--mint-soft), var(--coral-soft));
}
.blog-card-img.placeholder span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: var(--paper);
  opacity: 0.7;
}
.blog-card-body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.blog-card-meta .dot { width: 4px; height: 4px; background: var(--coral); border-radius: 50%; }
.blog-card h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}
.blog-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--sp-4);
  flex: 1;
}
.blog-card .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mint-deep);
  display: inline-flex; align-items: center; gap: var(--sp-2);
  align-self: flex-start;
}
.blog-card .read-more:hover { color: var(--coral-deep); }

/* Blog post */
.post-hero {
  padding-top: calc(var(--sp-9) + 60px);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--sp-7);
  padding-left: var(--sp-5);
  padding-right: var(--sp-5);
}
.post-hero .eyebrow { justify-content: center; margin-bottom: var(--sp-4); }
.post-hero h1 { margin-bottom: var(--sp-5); }
.post-meta {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: var(--sp-5);
}
.post-cover {
  max-width: 1100px;
  margin: 0 auto var(--sp-8);
  aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0 var(--sp-5);
}
.post-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.post-body h2, .post-body h3 {
  color: var(--ink);
  margin: var(--sp-7) 0 var(--sp-4);
}
.post-body p { margin-bottom: var(--sp-5); }
.post-body a { color: var(--mint-deep); text-decoration: underline; text-underline-offset: 4px; }
.post-body blockquote {
  border-left: 3px solid var(--coral);
  padding: var(--sp-2) var(--sp-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  margin: var(--sp-6) 0;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--sp-9) 0 var(--sp-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-8);
}
.footer-logo {
  width: 30px; height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--sp-4);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  border: 2px solid rgba(255,255,255,.12);
}
.footer-brand h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.8rem;
  margin-bottom: var(--sp-3);
}
.footer-brand h3 em { font-style: italic; color: var(--coral); font-weight: 300; }
.footer-brand p {
  color: rgba(250,246,240,.6);
  max-width: 32ch;
  font-size: 0.95rem;
  margin-bottom: var(--sp-5);
}
.footer h5 {
  color: var(--mint);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: var(--sp-3); }
.footer li a {
  color: rgba(250,246,240,.7);
  font-size: 0.95rem;
}
.footer li a:hover { color: var(--coral); }
.social {
  display: flex; gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250,246,240,.08);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social a:hover {
  background: var(--coral);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(250,246,240,.1);
  padding-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: 0.85rem;
  color: rgba(250,246,240,.5);
}
.footer-bottom a { color: rgba(250,246,240,.7); }
.footer-bottom a:hover { color: var(--coral); }
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-4); left: var(--sp-4); right: var(--sp-4);
  max-width: 540px;
  margin-left: auto;
  background: var(--paper);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  border: 1px solid var(--line);
  transform: translateY(120%);
  opacity: 0;
  transition: all .6s cubic-bezier(.7,0,.3,1);
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--sp-2);
  font-size: 1.15rem;
}
.cookie-banner p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: var(--sp-4);
  line-height: 1.55;
}
.cookie-banner p a { color: var(--mint-deep); text-decoration: underline; }
.cookie-actions {
  display: flex; gap: var(--sp-3);
  flex-wrap: wrap;
}
.cookie-actions .btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header {
  padding: calc(var(--sp-10) + 60px) 0 var(--sp-8);
  background: var(--mint-mist);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -50px;
  width: 300px; height: 300px;
  background: var(--coral-soft);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(40px);
}
.page-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  position: relative; z-index: 1;
  text-align: center;
}
.page-header h1 {
  margin: var(--sp-4) auto;
  max-width: 18ch;
}
.page-header h1 em { font-style: italic; color: var(--coral-deep); font-weight: 300; }
.page-header p {
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto;
  font-size: 1.08rem;
}

/* ---------- LEGAL PAGES ---------- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.legal-content h2 {
  font-size: 1.6rem;
  color: var(--ink);
  margin: var(--sp-7) 0 var(--sp-4);
}
.legal-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--ink);
  margin: var(--sp-5) 0 var(--sp-3);
}
.legal-content p { margin-bottom: var(--sp-4); }
.legal-content ul { padding-left: var(--sp-5); margin-bottom: var(--sp-4); }
.legal-content li { margin-bottom: var(--sp-2); }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-5) 0;
  font-size: 0.92rem;
}
.legal-content th, .legal-content td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.legal-content th {
  background: var(--mint-mist);
  font-weight: 600;
  color: var(--ink);
}

/* ---------- ANIMATIONS ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* Utility */
.text-center { text-align: center; }
.mt-6 { margin-top: var(--sp-6); }
.mb-0 { margin-bottom: 0 !important; }
