/* GCL Wellness - global styles */

:root {
  --green: #3d5a45;
  --green-dark: #2c4232;
  --cream: #faf6ef;
  --sand: #f1e9dc;
  --terracotta: #c4704f;
  --terracotta-dark: #a85a3c;
  --ink: #2b2b28;
  --ink-soft: #5c5a53;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(43, 43, 40, 0.08);
  --max: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { color: var(--ink-soft); }

a { color: var(--green); }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}

.btn-outline:hover { background: var(--green-dark); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--green-dark);
}

.btn-light:hover { background: var(--sand); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 43, 40, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.brand svg { width: 34px; height: 34px; }

.brand img {
  width: 52px;
  height: auto;
  mix-blend-mode: multiply;
}

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
}

.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--terracotta); }

.nav-links .btn { padding: 10px 22px; font-size: 0.95rem; color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Botanical decorations */
:root {
  --leaf-branch-green: url("/images/deco-branch.svg");
  --leaf-branch-white: url("/images/deco-branch-white.svg");
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--sand) 0%, var(--cream) 70%);
  padding: 90px 0 80px;
}

.hero, .page-hero {
  position: relative;
  overflow: hidden;
}

.hero > .wrap, .page-hero > .wrap { position: relative; z-index: 1; }

.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -40px;
  width: 340px;
  height: 400px;
  background: var(--leaf-branch-green) no-repeat center / contain;
  opacity: 0.2;
  transform: rotate(14deg);
  pointer-events: none;
}

.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 40% 40%, rgba(196, 112, 79, 0.14), rgba(196, 112, 79, 0) 68%);
  pointer-events: none;
}

.hero-inner { max-width: 700px; }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

.hero p {
  font-size: 1.15rem;
  margin: 20px 0 32px;
  max-width: 560px;
}

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

/* Sections */
section { padding: 70px 0; }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head p { margin-top: 12px; font-size: 1.05rem; }

.section-alt {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.section-alt > .wrap { position: relative; z-index: 1; }

.section-alt::before {
  content: "";
  position: absolute;
  bottom: -70px;
  right: -50px;
  width: 280px;
  height: 320px;
  background: var(--leaf-branch-green) no-repeat center / contain;
  opacity: 0.1;
  transform: scaleX(-1) rotate(10deg);
  pointer-events: none;
}

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.98rem; flex-grow: 1; }

.card .card-link {
  margin-top: 18px;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
}

.card .card-link:hover { text-decoration: underline; }

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg { width: 24px; height: 24px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step { position: relative; padding-left: 0; }

.step-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
  color: var(--terracotta);
  font-weight: 600;
}

.step h3 { margin: 8px 0; }

/* CTA band */
.cta-band {
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band > * { position: relative; z-index: 1; }

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 260px;
  background: var(--leaf-branch-white) no-repeat center / contain;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.cta-band::before {
  top: -50px;
  left: -40px;
  transform: rotate(160deg);
}

.cta-band::after {
  bottom: -60px;
  right: -40px;
  transform: scaleX(-1) rotate(8deg);
}

.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 520px; margin: 0 auto 28px; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-col .visual {
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.two-col .visual svg { width: 120px; height: 120px; opacity: 0.9; }

.two-col .visual-photo {
  background: none;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.two-col .visual-photo img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: var(--radius);
}

.two-col p { margin-bottom: 16px; }

/* Service detail rows */
.service-row {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.service-row h2 { font-size: 1.45rem; margin-bottom: 10px; }
.service-row p { margin-bottom: 10px; }

.service-row .meta {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.service-row ul {
  margin: 12px 0 16px 22px;
  color: var(--ink-soft);
}

.service-row li { margin-bottom: 6px; }

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-item summary {
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--terracotta);
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item .faq-body { padding: 0 26px 22px; }

/* Forms */
.form-grid { display: grid; gap: 18px; max-width: 560px; }

label { font-weight: 600; font-size: 0.95rem; color: var(--green-dark); display: block; margin-bottom: 6px; }

input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(43, 43, 40, 0.18);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.contact-card h3 { margin-bottom: 8px; }
.contact-card a { font-weight: 600; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer p { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; font-size: 0.95rem; }

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-footer a:hover { color: var(--white); text-decoration: underline; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand svg { width: 30px; height: 30px; }

.footer-brand {
  gap: 8px;
}

.footer-brand img {
  width: 46px;
  height: auto;
  background: var(--cream);
  border-radius: 10px;
  padding: 3px;
}

.footer-brand span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 22px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--sand) 0%, var(--cream) 70%);
  padding: 64px 0 52px;
}

.page-hero p { max-width: 620px; margin-top: 14px; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 860px) {
  .two-col, .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .two-col .visual { min-height: 220px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid rgba(43, 43, 40, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }

  .hero { padding: 64px 0 56px; }
  section { padding: 52px 0; }
  .cta-band { padding: 44px 24px; }

  .hero::before, .page-hero::before {
    width: 200px;
    height: 240px;
    right: -60px;
    opacity: 0.1;
  }

  .section-alt::before { width: 180px; height: 210px; }

  .cta-band::before, .cta-band::after { width: 150px; height: 170px; }
}
