/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --green:       #5f7250;
  --green-mid:   #4a5a3c;
  --green-light: #8fa27a;
  --cream:       #faf6f0;
  --beige:       #f0ebe2;
  --beige-dark:  #e2d9ce;
  --tan:         #c4a882;
  --text:        #3a3a30;
  --text-muted:  #6b6b5c;
  --error:       #8b5447;
  --error-soft:  #f6ece7;
  --white:       #ffffff;
  --radius:      8px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section[id] {
  scroll-margin-top: 6.5rem;
}
.section--alt {
  background: var(--beige);
}
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: .6rem;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--tan);
  border-radius: 2px;
  margin: 1rem 0 1.75rem;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--beige-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.nav__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: .85rem;
  line-height: 1.2;
}
.nav__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.14);
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
}
.nav__brand-text span {
  font-family: 'Lato', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--text-muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--green); }
.nav__cta {
  background: var(--green);
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: 4px;
  transition: background .2s !important;
}
.nav__cta:hover { background: var(--green-mid) !important; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Marina_Hero.png');
  background-size: cover;
  background-position: center 20%;
  filter: brightness(.55);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 560px;
  margin-left: clamp(1.5rem, 6vw, 7rem);
  margin-right: auto;
}
.hero__eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.9);
  margin-bottom: 2.5rem;
}
.hero__subtitle + .hero__subtitle {
  margin-top: -1.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .2s;
  cursor: pointer;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover { background: var(--green-mid); }
.btn--outline {
  border: 2px solid rgba(255,255,255,.8);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.15); }
.btn--green-outline {
  border: 2px solid var(--green);
  color: var(--green);
}
.btn--green-outline:hover { background: var(--green); color: var(--white); }

/* ── About ───────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about__image-wrap {
  position: relative;
}
.about__image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 180px;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}
.about__image-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Qualifications */
.qualifications {
  margin-top: 2.5rem;
}
.qualifications h3 {
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.qualifications__list li {
  display: flex;
  gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--beige-dark);
  font-size: .92rem;
}
.qualifications__list li:last-child { border-bottom: none; }
.qual-year {
  flex-shrink: 0;
  color: var(--green);
  font-weight: 700;
  min-width: 90px;
}

/* ── Services ────────────────────────────────────────────── */
.services__intro {
  max-width: 700px;
  margin-bottom: 3.5rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green-light);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.service-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  line-height: 1;
}
.service-card h3 {
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: .75rem;
}
.service-card__list {
  margin: .5rem 0 1rem;
  padding-left: 0;
}
.service-card__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: .3rem;
}
.service-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--tan);
}
.service-card__benefit {
  margin-top: auto;
  font-size: .83rem;
  font-style: italic;
  color: var(--green-mid);
  border-top: 1px solid var(--beige-dark);
  padding-top: .75rem;
}
.service-card__subtitle {
  font-size: .9rem;
  color: var(--text-muted);
}
.service-card--featured {
  background: var(--green);
  border-top-color: var(--tan);
}
.service-card--featured .service-card__icon { font-size: 2.5rem; }
.service-card--featured h3 { color: var(--white); }
.service-card--featured .service-card__text {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  margin-top: .5rem;
}
.service-card--featured .service-card__cta {
  margin-top: auto;
  padding-top: 1.5rem;
}
.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ── Art Therapy Feature ─────────────────────────────────── */
.art-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.art-feature__images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  background: var(--beige-dark);
}
.art-feature__images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.art-feature__text {
  background: var(--green);
  color: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.art-feature__text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.art-feature__text .divider {
  background: rgba(255,255,255,.4);
}
.art-feature__text p {
  color: rgba(255,255,255,.9);
  font-size: .95rem;
}
.art-feature__list {
  margin: 1rem 0 1.5rem;
}
.art-feature__list li {
  position: relative;
  padding-left: 1.3rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  margin-bottom: .4rem;
}
.art-feature__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,.5);
}
.art-feature__text .btn--outline {
  align-self: flex-start;
}
.section-label--light {
  color: rgba(255,255,255,.6);
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.pricing-card--featured {
  background: var(--green);
  color: var(--white);
}
.pricing-card--featured h3 { color: var(--white); }
.pricing-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--green);
  line-height: 1;
  margin: 1rem 0 .25rem;
}
.pricing-card--featured .pricing-card__price { color: var(--white); }
.pricing-card__duration {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.pricing-card--featured .pricing-card__duration { color: rgba(255,255,255,.75); }
.pricing-card__note {
  font-size: .85rem;
  color: var(--text-muted);
}
.pricing-card--featured .pricing-card__note { color: rgba(255,255,255,.75); }
.pricing__intro { max-width: 600px; }
.pricing__footnote {
  margin-top: 2rem;
  font-size: .88rem;
  color: var(--text-muted);
  text-align: center;
}
.workshop__price-note {
  font-size: .9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* ── Workshop ────────────────────────────────────────────── */
.workshop {
  background: var(--beige);
}
.workshop__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.workshop__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.workshop__list {
  margin: 1rem 0 1.5rem;
}
.workshop__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .4rem;
  font-size: .95rem;
}
.workshop__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact__info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__info-text strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .15rem;
}
.contact__link {
  color: var(--green);
  font-weight: 700;
}
.contact__link:hover {
  color: var(--green-mid);
}
.contact__note {
  background: var(--beige);
  border-left: 3px solid var(--tan);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9rem;
  margin-top: 2rem;
  font-style: italic;
  color: var(--text-muted);
}
.contact__alerts {
  margin-bottom: 1.5rem;
}
.contact__alerts[id] {
  scroll-margin-top: 7rem;
}
.contact__alerts .form-status:last-child {
  margin-bottom: 0;
}
.contact__confirmation {
  display: grid;
  gap: 1rem;
}
.contact__confirmation p {
  color: var(--text-muted);
}
.contact__confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

/* Contact Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact__form-title {
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-help {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .55rem;
}
.form-status {
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
}
.form-status--success {
  background: rgba(151,146,101,.12);
  border: 1px solid rgba(124,120,79,.2);
  color: var(--green-mid);
}
.form-status--error {
  background: var(--error-soft);
  border: 1px solid rgba(139,84,71,.2);
  color: var(--error);
}
.form-status--warning {
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  color: var(--text-muted);
}
.form-field-error {
  color: var(--error);
  font-size: .78rem;
  margin-top: .45rem;
}
.form-checkbox {
  align-items: flex-start;
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
}
.form-checkbox input {
  accent-color: var(--green);
  flex-shrink: 0;
  height: 1rem;
  margin-top: .35rem;
  width: 1rem;
}
.form-checkbox label {
  color: var(--text-muted);
  font-size: .85rem;
}
.form-checkbox a {
  color: var(--green);
  text-decoration: underline;
}
.form-checkbox a:hover {
  color: var(--green-mid);
}
.form-recaptcha {
  margin-bottom: 1rem;
}
.form-submit {
  border: none;
  width: 100%;
}
.form-submit:disabled {
  cursor: not-allowed;
  opacity: .6;
}
.form__disclaimer {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .5rem;
}
.form__cancellation {
  background: var(--beige);
  border-left: 3px solid var(--tan);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.55;
  margin-top: 1rem;
  padding: .8rem 1rem;
}

/* ── Legal ───────────────────────────────────────────────── */
.legal {
  max-width: 900px;
}
.legal__card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.legal__list {
  list-style: disc;
  margin: 1rem 0;
  padding-left: 1.2rem;
}
.legal__list li {
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.legal__meta {
  border-top: 1px solid var(--beige-dark);
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 2rem;
  font-size: .88rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer__sub {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.footer h4 {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-family: 'Lato', sans-serif;
  margin-bottom: 1rem;
}
.footer__links li { margin-bottom: .4rem; }
.footer__links a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer__disclaimer {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.footer__disclaimer-title {
  color: rgba(255,255,255,.75);
}
.footer__link-muted {
  color: rgba(255,255,255,.6);
}
.footer__link-soft {
  color: rgba(255,255,255,.5);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid  { grid-template-columns: 1fr; max-width: 420px; }
  .about__grid    { grid-template-columns: 1fr; }
  .about__image-wrap { margin-bottom: 3rem; }
  .art-feature    { grid-template-columns: 1fr; }
  .art-feature__images { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .workshop__inner { grid-template-columns: 1fr; }
  .contact__grid  { grid-template-columns: 1fr; }
  .footer__inner  { grid-template-columns: 1fr 1fr; }
  .hero__content  {
    max-width: 520px;
    margin-left: 1.5rem;
  }
}
@media (max-width: 640px) {
  .services__grid  { grid-template-columns: 1fr; }
  .nav__links      { display: none; }
  .hero            { min-height: 70vh; }
  .hero__bg        { background-position: 80% 20%; }
  .hero__content   {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .contact__form,
  .legal__card {
    padding: 1.5rem;
  }
  .art-feature__images { grid-template-columns: 1fr; }
  .footer__inner   { grid-template-columns: 1fr; }
  .footer__bottom  { flex-direction: column; text-align: center; }
}
