/* ===================================================================
   Simply Seated Massage — stylesheet
   Palette (warmed):
     --teal-deep   #5C4033   (warm deep espresso-brown, replacing navy)
     --teal-mid    #8A6A52   (warm mid brown)
     --coral       #E37B4C   (from the sunset photography)
     --gold        #E8AE55
     --sand        #FBF4EA   (warm, soft background — not stark white)
     --ink         #2A2723   (warm near-black for text)
   Type:
     Display: "Fraunces" — warm, slightly organic serif for headlines
     Body:    "Nunito Sans" — soft, rounded, easy to read
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Comic+Neue:ital,wght@1,700&family=Nunito+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --teal-deep: #5C4033;
  --teal-mid: #8A6A52;
  --teal-pale: #F3E6D8;
  --coral: #E37B4C;
  --coral-dark: #C7623A;
  --gold: #E8AE55;
  --sand: #FBF4EA;
  --sand-deep: #F3E8D8;
  --ink: #2A2723;
  --ink-soft: #5B564E;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow-soft: 0 10px 30px rgba(92, 64, 51, 0.14);
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--teal-deep);
}

p { margin: 0 0 1em; }

a { color: var(--teal-mid); }

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

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

.eyebrow {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--coral-dark);
  margin-bottom: 0.75em;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85em 1.8em;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(227, 123, 76, 0.35);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}
.btn-teal {
  background: var(--teal-deep);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 244, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(92, 64, 51, 0.10);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo-mark {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-lockup {
  display: flex;
  align-items: center;
  height: 46px;
}
.logo-lockup img.logo-s {
  height: 73px;
  width: auto;
  display: block;
}
.logo-lockup .logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -15px;
  font-family: 'Comic Neue', cursive;
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
  color: #1c1c1c;
}
/* Modified styles for .logo-wordmark */
.logo-wordmark {
  display: flex;
  flex-direction: column;
  margin-left: -18px; 
  margin-top: 12px;    
}
.logo-lockup .logo-wordmark span {
  font-size: 0.95rem;
}
.logo-lockup .logo-wordmark span:nth-child(1) { margin-left: 6px; }
.logo-lockup .logo-wordmark span:nth-child(2) { margin-left: 11px; }
.logo-lockup .logo-wordmark span:nth-child(3) { margin-left: 16px; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--coral-dark);
  border-color: var(--coral);
}
.nav-cta {
  display: none;
}
@media (min-width: 720px) {
  .nav-cta { display: inline-block; }
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--teal-deep);
  cursor: pointer;
}
@media (max-width: 719px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sand);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(92,64,51,0.10);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  color: var(--white);
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-sunset-lg.jpg');
  background-size: cover;
  background-position: center 60%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(92,64,51,0.50) 0%, rgba(92,64,51,0.32) 45%, rgba(58,40,30,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 120px 24px 90px;
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  margin-bottom: 0.3em;
}
.hero .tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 1.6em;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* wave divider echoing the lake horizon / logo swoosh */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ===== How can we help (paths) ===== */
.paths {
  background: var(--sand);
  padding: 70px 0 40px;
  text-align: center;
}
.paths h2 { margin-bottom: 0.2em; }
.paths .lede {
  max-width: 560px;
  margin: 0 auto 2.2em;
  color: var(--ink-soft);
}
.path-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .path-cards { grid-template-columns: 1fr 1fr; }
}
.path-card {
  background: var(--white);
  border: 2px solid var(--teal-deep);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.path-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.path-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2em;
}
.path-card p {
  color: var(--ink-soft);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== Section shell ===== */
.section {
  padding: 80px 0;
}
.section-sand { background: var(--sand); }
.section-white { background: var(--white); }
.section-teal {
  background: var(--teal-deep);
  color: var(--sand);
}
.section-teal h2, .section-teal h3 { color: var(--white); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3em;
}

/* ===== Services ===== */
.service-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
@media (min-width: 860px) {
  .service-intro { grid-template-columns: 1.1fr 0.9fr; }
}
.service-intro img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2em 0;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.7em;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 860px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.info-card h3 {
  font-size: 1.3rem;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1em;
  padding: 0;
  list-style: none;
}
.tag-list li {
  background: var(--teal-pale);
  color: var(--teal-deep);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

/* What to expect */
.expect-strip {
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 780px) {
  .expect-strip { grid-template-columns: 1fr 1fr; }
}
.expect-strip h3 { color: var(--white); }
.expect-strip .check-list li::before { color: var(--gold); }
.expect-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(92,64,51,0.16);
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--teal-deep);
  padding: 20px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--coral);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  padding-bottom: 20px;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== About ===== */
.about-person {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 56px;
}
@media (min-width: 720px) {
  .about-person { grid-template-columns: 260px 1fr; }
  .about-person.reverse { direction: rtl; }
  .about-person.reverse > * { direction: ltr; }
}
.about-photo-group {
  position: relative;
}
.about-photo-group img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.about-person h3 {
  font-size: 1.6rem;
  margin-bottom: 0.15em;
}
.about-role {
  color: var(--coral-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1em;
  display: block;
}
.together-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-style: italic;
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.testimonial-card .quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: var(--coral);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.4em;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.contact-info h2 { color: var(--white); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.6em 0;
}
.contact-list li {
  margin-bottom: 1.2em;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-list .ico {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-list a { color: var(--gold); }
.badge-license {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.contact-form h3 { color: var(--teal-deep); }
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--teal-deep);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #DCD3C3;
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--sand);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal-mid);
  background: var(--white);
}
.form-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 520px) {
  .form-two { grid-template-columns: 1fr 1fr; }
}
.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 34px 0;
  text-align: center;
  font-size: 0.88rem;
}
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer .footer-logo {
  display: inline-flex;
  margin-bottom: 10px;
}
.site-footer .footer-logo .logo-lockup {
  height: 60px;
}
.site-footer .footer-logo .logo-wordmark {
  color: var(--sand);
}
.site-footer .logo-wordmark {
  text-align: start; /* Changed from center to match header */
  margin-left: -18px;
  margin-top: 12px;
}
.site-footer .footer-logo .logo-wordmark {
  margin-left: -15px;
  margin-top: 12px;
  text-align: start;
}
/* skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--teal-deep);
  color: var(--white);
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}
