/* ============================================
   ANIKO PUHOVA — Wellness Relaunch
   Warm Earth Luxury design system
   Cream/bone base · deep forest green · terracotta · rose gold
   ============================================ */

:root {
  /* Aniko Puhova brand palette — slate blue · rose gold · blush · soft white.
     Rose gold (--terracotta / --rosegold) must appear on every page. Electric pink = key CTAs only. */
  --bone: #F9F9F7;        /* soft white — always the background, warm not cold */
  --cream: #FFFFFF;       /* cards */
  --sand: #F2DDD4;        /* blush nude — warm alt blocks */
  --paleblue: #D6E8EC;    /* pale blue — clean wellness blocks */
  --slate: #5B7F8A;       /* slate blue — authority */
  --forest: #3A5A66;      /* deep slate — primary dark (var name kept for compatibility) */
  --forest-deep: #294049; /* darkest slate */
  --terracotta: #B07E5E;  /* deep rose gold — eyebrows, links, prices, accents (readable) */
  --terracotta-dark: #966848;
  --pink: #E94B7D;        /* electric pink — key CTAs only */
  --pink-dark: #D2356A;
  --rosegold: #C4977A;    /* signature rose gold */
  --rosegold-light: #E4CDBB;
  --ink: #1A1A1A;         /* almost black — body text */
  --ink-soft: #5B5B5B;
  --line: rgba(58, 90, 102, 0.16);
  --shadow: 0 20px 50px -24px rgba(41, 64, 73, 0.35);
  --radius: 14px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Open Sans", -apple-system, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--forest); line-height: 1.18; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 840px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 700; margin-bottom: 14px;
}

.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 251, 247, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.nav-logo { font-family: var(--font-display); font-size: 1.28rem; color: var(--forest); font-weight: 700; letter-spacing: 0.02em; }
.nav-logo span { color: var(--rosegold); }
.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; }
.nav-links a { font-size: 0.92rem; font-weight: 600; color: var(--ink); letter-spacing: 0.02em; }
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--forest); cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 15px 34px; border-radius: 60px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer; border: 0; text-align: center;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-terra { background: var(--pink); color: #fff; }
.btn-terra:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--cream); }

/* ---------- Hero ---------- */
.hero { padding: 90px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero .btn { margin-top: 30px; margin-right: 12px; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-alt { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-forest { background: var(--forest); color: var(--sand); }
.section-forest h2, .section-forest h3 { color: var(--cream); }
.section-forest .lead { color: rgba(237, 229, 216, 0.85); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head .lead { margin: 0 auto; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card .card-link { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--terracotta); font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }

.pillar-card { overflow: hidden; padding: 0; }
.pillar-card img { aspect-ratio: 16/11; object-fit: cover; width: 100%; }
.pillar-card .pillar-body { padding: 26px 26px 30px; }

/* ---------- Product ---------- */
.product-card { text-align: center; padding: 28px 22px 30px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card img { aspect-ratio: 1/1; object-fit: contain; margin-bottom: 16px; background: #fff; border-radius: 10px; padding: 12px; }
.product-card .price { font-family: var(--font-display); font-size: 1.5rem; color: var(--terracotta); margin: 8px 0 4px; font-weight: 700; }
.product-card .price-note { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 14px; }
.product-card h3 { font-size: 1.18rem; }
.badge { display: inline-block; background: var(--rosegold-light); color: var(--forest-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 40px; padding: 4px 14px; margin-bottom: 12px; }
.badge-new { background: var(--terracotta); color: var(--cream); }

.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; padding: 70px 0 40px; }
.product-hero .gallery-main img { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 1/1; object-fit: contain; padding: 30px; width: 100%; }
.thumbs { display: flex; gap: 12px; margin-top: 14px; }
.thumbs img { width: 84px; height: 84px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px; cursor: pointer; }
.thumbs img.active { border-color: var(--terracotta); }
.product-info .price-row { display: flex; align-items: baseline; gap: 14px; margin: 22px 0 6px; }
.product-info .price { font-family: var(--font-display); font-size: 2.2rem; color: var(--terracotta); font-weight: 700; }
.product-info .vat { font-size: 0.85rem; color: var(--ink-soft); }
.spec-list { list-style: none; margin: 22px 0; }
.spec-list li { padding: 10px 0 10px 30px; border-bottom: 1px solid var(--line); position: relative; color: var(--ink-soft); font-size: 0.97rem; }
.spec-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--terracotta); font-weight: 700; }

.ship-box { background: var(--sand); border-radius: 12px; padding: 18px 22px; font-size: 0.9rem; color: var(--ink-soft); margin: 22px 0; }
.ship-box strong { color: var(--forest); }

/* ---------- Tables ---------- */
.compare-table { width: 100%; border-collapse: collapse; background: var(--cream); border-radius: var(--radius); overflow: hidden; font-size: 0.95rem; }
.compare-table th { background: var(--forest); color: var(--cream); padding: 16px 18px; text-align: left; font-family: var(--font-display); font-size: 1rem; }
.compare-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); color: var(--ink-soft); vertical-align: top; }
.compare-table tr td:first-child { font-weight: 700; color: var(--ink); }
.table-scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- FAQ ---------- */
details.faq {
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 26px; margin-bottom: 14px;
}
details.faq summary { font-family: var(--font-display); font-size: 1.12rem; color: var(--forest); font-weight: 600; cursor: pointer; list-style: none; position: relative; padding-right: 34px; }
details.faq summary::after { content: "+"; position: absolute; right: 4px; top: 0; font-size: 1.4rem; color: var(--terracotta); transition: transform 0.2s; }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p, details.faq ul { color: var(--ink-soft); margin-top: 12px; font-size: 0.97rem; }
details.faq ul { padding-left: 22px; }

/* ---------- Quiz ---------- */
.quiz-shell { max-width: 640px; margin: 0 auto; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 46px 42px; box-shadow: var(--shadow); }
.quiz-progress { height: 6px; background: var(--sand); border-radius: 10px; margin-bottom: 34px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, var(--rosegold), var(--terracotta)); width: 0%; transition: width 0.3s ease; }
.quiz-q h3 { margin-bottom: 22px; }
.quiz-opt {
  display: block; width: 100%; text-align: left; background: var(--bone);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 16px 20px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  margin-bottom: 12px; cursor: pointer; transition: all 0.15s ease;
}
.quiz-opt:hover { border-color: var(--terracotta); background: var(--cream); transform: translateX(4px); }
.quiz-result { text-align: center; }
.quiz-result img { max-width: 240px; margin: 20px auto; background: #fff; border-radius: 12px; padding: 16px; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--forest); letter-spacing: 0.03em; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; background: var(--cream); color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--terracotta); }

/* ---------- Order modal ---------- */
.modal-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(20, 41, 33, 0.55);
  z-index: 100; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--cream); border-radius: var(--radius); max-width: 520px; width: 100%;
  padding: 40px 38px; max-height: 90vh; overflow-y: auto; position: relative;
}
.modal .close-x { position: absolute; top: 16px; right: 20px; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--ink-soft); }
.test-strip { background: var(--rosegold-light); color: var(--forest-deep); font-size: 0.8rem; font-weight: 700; text-align: center; padding: 8px 12px; border-radius: 8px; margin-bottom: 18px; letter-spacing: 0.06em; }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--cream); border-left: 4px solid var(--rosegold); border-radius: 0 var(--radius) var(--radius) 0; padding: 28px 30px; }
.testimonial p { font-style: italic; color: var(--ink-soft); }
.testimonial .who { margin-top: 14px; font-weight: 700; font-style: normal; color: var(--forest); font-size: 0.9rem; }
.placeholder-note { border: 1.5px dashed var(--rosegold); background: transparent; }

/* ---------- Retreat ---------- */
.retreat-feature {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); background: var(--forest);
}
.retreat-feature img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.retreat-feature .retreat-body { padding: 52px 48px; color: var(--sand); }
.retreat-feature .retreat-body h2 { color: var(--cream); }
.retreat-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.retreat-meta span { border: 1px solid rgba(237,229,216,0.35); border-radius: 40px; padding: 6px 16px; font-size: 0.85rem; }

/* ---------- Footer ---------- */
footer { background: var(--forest-deep); color: rgba(237, 229, 216, 0.75); padding: 64px 0 36px; font-size: 0.92rem; }
footer h4 { color: var(--cream); font-size: 1.05rem; margin-bottom: 16px; }
footer a { color: rgba(237, 229, 216, 0.75); display: block; margin-bottom: 8px; }
footer a:hover { color: var(--rosegold-light); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-bottom { border-top: 1px solid rgba(237, 229, 216, 0.15); padding-top: 24px; font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.disclaimer { font-size: 0.78rem; color: rgba(237, 229, 216, 0.5); max-width: 70ch; margin-top: 18px; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: 0.85rem; color: var(--ink-soft); padding: 22px 0 0; }
.crumbs a { color: var(--terracotta); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid, .grid-3, .grid-4, .grid-2, .product-hero, .retreat-feature, .footer-grid { grid-template-columns: 1fr; }
  .retreat-feature img { min-height: 260px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 22px 24px; gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  section { padding: 54px 0; }
  .hero { padding: 50px 0 40px; }
  .quiz-shell { padding: 32px 22px; }
}
