/* ===== YOUR BEST LIFESTYLES — SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #1a3d2b;
  --green-mid:    #2e6b47;
  --green-accent: #4a9e6b;
  --green-light:  #d4edd9;
  --gold:         #c8963e;
  --gold-light:   #f5e6c8;
  --cream:        #faf7f2;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-mid:     #4a4a4a;
  --text-light:   #7a7a7a;
  --border:       #ede9e0;
  --radius:       16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(26,61,43,0.97);
  backdrop-filter: blur(10px);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(200,150,62,0.2);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 0.25rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.84rem; font-weight: 400;
  padding: 0.4rem 0.75rem; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.cta {
  background: var(--gold); color: var(--green-deep) !important;
  font-weight: 500; border-radius: 100px;
  padding: 0.45rem 1.1rem; margin-left: 0.5rem;
}
.nav-links a.cta:hover { background: #daa84a; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: all .3s; }

/* ── SHARED SECTION STYLES ── */
.page-body { padding-top: 68px; }
section { padding: 5rem 5vw; }
.section-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--green-accent); font-weight: 500; margin-bottom: .65rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; line-height: 1.18;
  color: var(--green-deep); margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--text-mid);
  font-weight: 300; line-height: 1.8;
  max-width: 580px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--green-deep);
  padding: .85rem 2rem; border-radius: 100px;
  font-weight: 500; font-size: .95rem; text-decoration: none;
  transition: background .2s, transform .2s;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: #daa84a; transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--green-deep); color: var(--green-deep);
  padding: .85rem 2rem; border-radius: 100px;
  font-weight: 400; font-size: .95rem; text-decoration: none;
  transition: background .2s, color .2s;
  background: transparent; cursor: pointer; font-family: inherit;
}
.btn-outline:hover { background: var(--green-deep); color: var(--white); }
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.35); color: var(--white);
  padding: .85rem 2rem; border-radius: 100px;
  font-weight: 400; font-size: .95rem; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }

/* ── PAGE HERO BANNER (inner pages) ── */
.page-hero {
  background: var(--green-deep);
  padding: 5rem 5vw 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(74,158,107,.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .section-label { color: var(--gold); }
.page-hero .section-title { color: var(--white); }
.page-hero .section-sub { color: rgba(255,255,255,.65); }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* ── AS-SEEN-ON BAR ── */
.media-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.1rem 5vw;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.media-bar-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-light); font-weight: 500; white-space: nowrap; }
.media-logos { display: flex; gap: 1.75rem; align-items: center; flex-wrap: wrap; }
.media-logo { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: #bbb; letter-spacing: .05em; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,61,43,.08); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--green-deep); margin-bottom: .45rem; }
.card-body { font-size: .875rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

/* ── FOOTER ── */
footer {
  background: #0f2318;
  padding: 4rem 5vw 0;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand p { font-size: .83rem; color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.75; margin-top: .6rem; }
.footer-col h4 { font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.3); font-weight: 500; margin-bottom: .9rem; }
.footer-col a { display: block; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: .45rem; font-size: .85rem; font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.social-row { display: flex; gap: .75rem; margin-top: 1.1rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none; font-size: .75rem; font-weight: 500;
  transition: border-color .2s, color .2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  background: #0f2318; border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 5vw; margin-top: 3rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.3);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { animation: fadeUp .65s ease both; }
.anim-d1 { animation-delay: .1s; }
.anim-d2 { animation-delay: .2s; }
.anim-d3 { animation-delay: .3s; }
.anim-d4 { animation-delay: .4s; }

/* ── FORM STYLES ── */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 500; color: var(--text-mid); margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .8rem 1rem;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--white); color: var(--text-dark);
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green-accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── RESPONSIVE ── */
@media (max-width: 1020px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: #1a3d2b; padding: 1.5rem; gap: .5rem; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: .65rem 1rem; }
  .hamburger { display: flex; }
  footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  footer { grid-template-columns: 1fr; }
  section { padding: 3.5rem 5vw; }
}
