/* =========================================================
   Golden Feet — Elegant stylesheet
   Palette inspired by the logo (deep plum + gold)
   ========================================================= */

:root {
  --bg-dark: #3C3340;
  --bg-darker: #2A2330;
  --bg-cream: #F7F3EC;
  --bg-soft: #FBF8F3;
  --gold: #C9A961;
  --gold-light: #E3CB92;
  --gold-dark: #8C6A2E;
  --text-dark: #2A2330;
  --text-muted: #6B6270;
  --text-light: #EDE6DA;
  --white: #FFFFFF;
  --border-soft: rgba(201, 169, 97, 0.25);

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --shadow-soft: 0 10px 40px rgba(42, 35, 48, 0.08);
  --shadow-deep: 0 20px 60px rgba(42, 35, 48, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-soft);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-muted); }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-dark); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.small-container { max-width: 900px; margin: 0 auto; padding: 0 2rem; }

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(60, 51, 64, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-brand .brand-gold { color: var(--gold-light); }
.nav-brand .brand-white { color: var(--white); text-transform: uppercase; letter-spacing: 0.15em; font-size: 1.1rem; }

.nav-brand-mark {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--bg-darker) !important;
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  letter-spacing: 0.1em !important;
  transition: all 0.25s ease;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  color: var(--white);
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.hero h1 {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 300; }

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 30rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
  background: var(--bg-darker);
  border: 1px solid var(--border-soft);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--border-soft);
  pointer-events: none;
  border-radius: 2px;
}

.hero-visual-inner {
  text-align: center;
  padding: 2rem 1rem;
}

.hero-visual .ornament {
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: 1rem;
  margin-bottom: 1rem;
}

.hero-visual h3 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.hero-visual p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.hero-quote {
  border-top: 1px solid var(--border-soft);
  padding-top: 1.5rem;
  color: var(--text-light);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-darker);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-darker);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 169, 97, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--bg-darker);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--bg-darker); color: var(--gold-light); }

/* ---------- Sections ---------- */
section { padding: 5rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.05rem;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto;
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(42, 35, 48, 0.06);
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: var(--gold);
}

.feature-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-dark);
  font-size: 1.35rem;
}

.feature-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.feature-card p { font-size: 0.95rem; margin: 0; }

/* ---------- Services ---------- */
.services {
  background: var(--bg-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
  transition: all 0.3s ease;
}
.service-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }

.service-card .price {
  font-family: var(--font-display);
  color: var(--gold-dark);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0.5rem 0 1rem;
}
.service-card .price .duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
  margin-left: 0.5rem;
}

.service-card ul {
  list-style: none;
  margin: 1rem 0;
}
.service-card ul li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.service-card ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.7rem;
}

/* ---------- About / Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-image {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  aspect-ratio: 4/5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-image::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--border-soft);
  pointer-events: none;
}

.split-image .monogram {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  font-style: italic;
  opacity: 0.8;
}

.split-image p.tagline {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.split-content h2 { margin-bottom: 1.25rem; }
.split-content p { font-size: 1.05rem; line-height: 1.8; }

.signature {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.25rem;
}

/* ---------- Therapist photo card ---------- */
.therapist-photo {
  position: relative;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(1.05) brightness(1.02);
  transition: transform 0.6s ease;
  position: relative;
  z-index: 2;
}

.therapist-photo:hover img { transform: scale(1.03); }

.therapist-photo::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(227, 203, 146, 0.6);
  pointer-events: none;
  z-index: 3;
}

.therapist-photo .photo-fallback-content {
  display: none;
  text-align: center;
  color: var(--gold);
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.therapist-photo.photo-fallback .photo-fallback-content {
  display: flex;
}

.therapist-photo .photo-fallback-content .monogram {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  margin-bottom: 1rem;
}

.therapist-photo .photo-fallback-content .tagline {
  color: var(--text-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--bg-dark);
  color: var(--text-light);
}
.testimonials .section-header h2,
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-header p { color: var(--text-light); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 2.25rem;
  border: 1px solid var(--border-soft);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  line-height: 1.7;
}

.testimonial-card .author {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
  font-family: var(--font-body);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 70%);
}
.cta-banner::before { top: -50px; left: -50px; }
.cta-banner::after { bottom: -50px; right: -50px; }

.cta-banner-inner { position: relative; z-index: 2; }

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner h2 em { color: var(--gold-light); font-style: italic; }
.cta-banner p {
  color: var(--text-light);
  max-width: 35rem;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ---------- Page header (sub-pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 40px;
  background: var(--gold);
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.page-header h1 em { color: var(--gold-light); font-style: italic; }
.page-header p { color: var(--text-light); max-width: 40rem; margin: 0 auto; }
.page-header .breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 { margin-bottom: 0.5rem; }

.contact-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(42, 35, 48, 0.08);
}
.contact-block:last-child { border-bottom: none; }

.contact-block .label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-block p, .contact-block a {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
}
.contact-block a:hover { color: var(--gold-dark); }

.contact-form {
  background: var(--bg-cream);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(42, 35, 48, 0.15);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.25s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--gold-light); }

.footer p { color: var(--text-light); font-size: 0.95rem; opacity: 0.85; }

.footer h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: var(--text-light); opacity: 0.85; font-size: 0.95rem; }
.footer ul a:hover { color: var(--gold-light); opacity: 1; }

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner,
  .split,
  .contact-grid,
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .hero { padding: 4rem 1.5rem 3rem; }
  section { padding: 3.5rem 0; }
  .container, .small-container { padding: 0 1.25rem; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-darker);
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-soft);
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; }

  .footer-bottom { flex-direction: column; text-align: center; }
}
