﻿:root {
  color-scheme: light;
  --green-950: #10281c;
  --green-900: #173f2a;
  --green-800: #205b38;
  --green-700: #33784a;
  --green-100: #e9f3ea;
  --gold-800: #936719;
  --gold-600: #c09638;
  --gold-300: #ead18a;
  --gold-100: #fbf5df;
  --cream: #f8f4ea;
  --paper: #fffdf8;
  --ink: #1c241f;
  --muted: #67736a;
  --line: #dde4d9;
  --shadow: 0 22px 50px rgba(16, 40, 28, 0.12);
  --radius: 8px;
  --font: "Segoe UI", Arial, sans-serif;
  --signature: "Segoe Script", "Lucida Handwriting", "Brush Script MT", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  right: -9vw;
  top: 13vh;
  z-index: -1;
  width: min(760px, 72vw);
  aspect-ratio: 1;
  content: "";
  background: url("logo.png") center / contain no-repeat;
  opacity: 0.075;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(20px, 4vw, 58px);
  border-bottom: 1px solid rgba(16, 40, 28, 0.1);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(16, 40, 28, 0.06);
}

.brand {
  display: grid;
  min-width: 0;
  gap: 2px;
  margin-right: auto;
  color: var(--green-950);
}

.brand-title {
  overflow: hidden;
  color: var(--green-950);
  font-family: var(--signature);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-signature {
  width: fit-content;
  color: var(--gold-800);
  font-family: var(--signature);
  font-size: 1.08rem;
  line-height: 1;
  transform: rotate(-2deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.header-cta,
.menu-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 760;
}

.site-nav a {
  padding: 0 13px;
  color: var(--green-950);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--green-100);
  outline: none;
}

.header-cta {
  padding: 0 18px;
  background: var(--green-900);
  color: #fff;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--green-800);
  outline: none;
}

.menu-button {
  display: none;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--green-950);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  overflow: hidden;
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(232, 246, 233, 0.94), rgba(255, 253, 248, 0.96) 48%, rgba(251, 245, 223, 0.9)),
    linear-gradient(90deg, rgba(192, 150, 56, 0.12) 1px, transparent 1px);
  background-size: auto, 82px 82px;
}

.hero::before {
  position: absolute;
  left: clamp(-110px, -6vw, -34px);
  top: 50%;
  width: min(620px, 48vw);
  aspect-ratio: 1;
  content: "";
  background: url("logo.png") center / contain no-repeat;
  opacity: 0.13;
  pointer-events: none;
  transform: translateY(-50%);
}

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

.hero-content {
  max-width: 760px;
}

.hero-note {
  position: relative;
  display: grid;
  gap: 1px;
  align-self: center;
  border: 1px solid rgba(192, 150, 56, 0.32);
  border-radius: var(--radius);
  background: rgba(192, 150, 56, 0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-note span {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 18px 24px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--green-950);
  font-family: var(--signature);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.1;
  text-align: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-800);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--green-950);
  font-family: var(--signature);
  font-size: clamp(4rem, 8.8vw, 7.6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-family: var(--signature);
  font-size: clamp(2.45rem, 5.4vw, 4.35rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-family: var(--signature);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.05;
}

.hero-subline {
  margin-bottom: 20px;
  color: var(--gold-800);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 760;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.17rem;
}

.hero-actions,
.contact-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 14px 30px rgba(23, 63, 42, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-800);
}

.button.secondary {
  border-color: rgba(192, 150, 56, 0.55);
  background: var(--gold-100);
  color: var(--green-950);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--gold-600);
  box-shadow: 0 12px 26px rgba(192, 150, 56, 0.16);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.wide {
  width: 100%;
}

.focus-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(192, 150, 56, 0.35);
}

.focus-band span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 820;
  text-align: center;
}

.section-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.practice,
.appointment-section {
  padding: 90px 0;
  background: var(--paper);
}

.practice-grid,
.method-grid,
.appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.practice-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.15rem;
}

.practice-copy p {
  margin: 0;
}

.services {
  padding: 90px 0;
  background: #f2eddf;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: 26px;
  border: 1px solid rgba(23, 63, 42, 0.12);
  border-top: 4px solid var(--gold-600);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffefb, var(--paper));
  box-shadow: 0 16px 32px rgba(16, 40, 28, 0.07);
}

.featured-service {
  background:
    linear-gradient(180deg, rgba(233, 243, 234, 0.88), var(--paper));
}

.service-card span {
  color: var(--gold-800);
  font-size: 0.85rem;
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.method {
  padding: 90px 0;
  background: var(--green-950);
  color: #fff;
}

.method h2,
.method h3 {
  color: #fff;
}

.method .eyebrow {
  color: var(--gold-300);
}

.method-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(234, 209, 138, 0.25);
  background: rgba(234, 209, 138, 0.25);
}

.method-list article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.method-list strong {
  color: var(--gold-300);
  font-size: 1.05rem;
}

.method-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.appointment-copy p {
  color: var(--muted);
  font-size: 1.1rem;
}

.notice {
  display: grid;
  gap: 5px;
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--gold-600);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--muted);
}

.notice strong {
  color: var(--green-950);
}

.booking-form,
.calendar-panel,
.appointment-list-panel {
  border: 1px solid rgba(23, 63, 42, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 14px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-700);
  outline: 3px solid rgba(51, 120, 74, 0.16);
}

.form-message {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--green-800);
  font-weight: 800;
}

.calendar-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 20px;
  margin-top: 28px;
}

.calendar-panel,
.appointment-list-panel {
  min-width: 0;
  padding: 18px;
}

.calendar-toolbar,
.list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.calendar-toolbar h3,
.list-header h3 {
  margin: 0;
}

.icon-button,
.text-button,
.delete-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-950);
  font-weight: 850;
}

.icon-button {
  width: 42px;
  height: 42px;
}

.text-button {
  min-height: 38px;
  padding: 0 12px;
}

.icon-button:hover,
.icon-button:focus-visible,
.text-button:hover,
.text-button:focus-visible,
.delete-button:hover,
.delete-button:focus-visible {
  border-color: var(--gold-600);
  background: var(--gold-100);
  outline: none;
}

.weekday-row,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.weekday-row {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-align: center;
}

.calendar-day {
  min-height: 76px;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-950);
}

.calendar-day.is-muted {
  background: #f5f3ee;
  color: #99a49b;
}

.calendar-day.is-today {
  border-color: var(--gold-600);
  box-shadow: inset 0 0 0 2px rgba(192, 150, 56, 0.18);
}

.calendar-day strong {
  font-size: 0.9rem;
}

.calendar-day span {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-950);
  font-size: 0.75rem;
  font-weight: 850;
}

.appointment-list {
  display: grid;
  gap: 10px;
}

.appointment-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf5;
}

.appointment-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.appointment-card h4 {
  margin: 0;
  color: var(--green-950);
  font-size: 1rem;
}

.appointment-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.delete-button {
  min-height: 34px;
  padding: 0 10px;
}

.empty-state {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.contact {
  padding: 78px 0;
  background: var(--green-900);
  color: #fff;
}

.contact h2,
.contact .eyebrow {
  color: #fff;
}

.contact p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.contact-inner {
  justify-content: space-between;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 58px);
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .hero,
  .practice-grid,
  .method-grid,
  .appointment-layout,
  .calendar-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    left: -90px;
    width: min(520px, 72vw);
    opacity: 0.1;
  }

  .hero-note {
    max-width: 680px;
  }

  .focus-band,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 12px;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 18px 18px;
    border-bottom: 1px solid rgba(16, 40, 28, 0.12);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: grid;
  }

  .brand-title {
    max-width: 178px;
    font-size: 1.28rem;
  }

  .brand-signature {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-note,
  .focus-band,
  .service-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .method-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .button,
  .hero-actions .button,
  .contact-inner .button {
    width: 100%;
  }

  .booking-form {
    padding: 18px;
  }

  .calendar-panel,
  .appointment-list-panel {
    padding: 12px;
  }

  .calendar-day {
    min-height: 58px;
    padding: 6px;
  }

  .calendar-day span {
    padding: 0 5px;
    font-size: 0.68rem;
  }
}




