/* =========================================================
   Soaring Free — premium South African wellness brand
   Static HTML + CSS only. No frameworks, no JS.
   ========================================================= */

:root {
  --bg:        #f6efe4;   /* warm beige page background */
  --cream:     #fbf6ee;   /* lighter card / section surface */
  --panel:     #ffffff;   /* white cards */
  --ink:       #2c2620;   /* near-black warm text */
  --muted:     #6d6355;   /* secondary text */
  --gold:      #b98a3e;   /* primary gold accent */
  --gold-deep: #9a6f2c;   /* darker gold for hover */
  --gold-soft: #e8d8bd;   /* soft gold tint */
  --line:      #e6dccb;   /* hairline borders */
  --shadow:    0 18px 45px rgba(70, 54, 30, 0.10);
  --shadow-sm: 0 8px 22px rgba(70, 54, 30, 0.08);
  --radius:    22px;
  --radius-sm: 14px;
  --maxw:      1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
}

p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

img { display: block; max-width: 100%; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 6%;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 239, 228, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 6%;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 24px rgba(185, 138, 62, 0.28);
}
.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

/* ---------- Eyebrow / section headings ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { font-size: clamp(32px, 5vw, 50px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 80px 0 96px;
}

.hero-copy h1 {
  font-size: clamp(44px, 6.5vw, 76px);
  margin-bottom: 22px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 30px;
}

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

.hero-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(6px);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.hero-badge strong { color: var(--gold-deep); }

/* ---------- Trust strip ---------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 48px;
  padding: 26px 6%;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.strip-item {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip-item span { color: var(--gold-deep); margin-right: 8px; }

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

.category {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.category img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}
.category:hover img { transform: scale(1.06); }
.category::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,24,15,0) 30%, rgba(30,24,15,0.72) 100%);
  z-index: 1;
}
.category-body { position: relative; z-index: 2; padding: 26px; }
.category-body h3 { font-size: 27px; margin-bottom: 6px; }
.category-body p { font-size: 14px; color: rgba(255,255,255,0.85); margin: 0; }

/* ---------- Product cards ---------- */
.product {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-img { aspect-ratio: 1 / 1; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 22px 22px 26px; }
.product-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.product-body h3 { font-size: 24px; margin: 8px 0 8px; }
.product-body p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.product-price { font-size: 15px; letter-spacing: 0.04em; color: var(--ink); font-weight: 600; }

/* ---------- Feature (image + text split) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 18px; }
.split-copy p { color: var(--muted); }

.tick-list { list-style: none; padding: 0; margin: 18px 0 0; }
.tick-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink);
}
.tick-list li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
}

/* ---------- Value / info cards ---------- */
.info-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.info-card .icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.info-card h3 { font-size: 24px; margin-bottom: 10px; }
.info-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- CTA banner ---------- */
.cta {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 84px 8%;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(44,30,12,0.78), rgba(44,30,12,0.5));
  z-index: 1;
}
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 28px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 72px 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(40px, 6vw, 64px); margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 620px; margin: 0 auto; }

/* ---------- Prose (about / privacy) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 30px; margin: 40px 0 14px; }
.prose p, .prose li { color: var(--muted); font-size: 16px; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--gold-deep); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
.contact-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.contact-panel h2 { font-size: 30px; margin-bottom: 18px; }
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 138, 62, 0.15);
}
.contact-line { margin-bottom: 18px; }
.contact-line .label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.contact-line .value { font-size: 17px; }
.contact-line a { color: var(--ink); text-decoration: none; }
.contact-line a:hover { color: var(--gold-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: #241d14;
  color: #d9cdb8;
  padding: 72px 0 40px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-mark { color: #fff; font-size: 30px; }
.footer-brand p { color: #b3a68f; font-size: 15px; max-width: 320px; margin-top: 14px; }
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.footer-col a, .footer-col span {
  display: block;
  color: #cdc0a9;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: #948a74;
}
.footer-bottom a { color: #cdc0a9; text-decoration: underline; }
.footer-bottom a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 50px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.45); }
.whatsapp-float svg { width: 22px; height: 22px; flex: none; }
.whatsapp-float .wa-label { white-space: nowrap; }

@media (max-width: 620px) {
  .whatsapp-float { padding: 13px; }
  .whatsapp-float .wa-label { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 72px; }
  .hero-media { aspect-ratio: 16 / 12; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 620px) {
  .nav { flex-wrap: wrap; gap: 12px; }
  .nav-links { gap: 18px; width: 100%; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
  .section { padding: 60px 0; }
  .cta { padding: 60px 24px; }
}
