*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1d2a2d;
  --muted: #617174;
  --surface: #ffffff;
  --background: #f7f5ef;
  --sage: #4f7668;
  --sage-dark: #31584c;
  --clay: #a45f50;
  --soft-blue: #dfecef;
  --line: #d9ddd8;
  --danger: #b34242;
  --success: #2f7d54;
  --warning: #8a6a2e;
  --shadow: 0 18px 42px rgba(29, 42, 45, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  max-width: 55vw;
  color: var(--ink);
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--sage-dark);
}

.hero {
  min-height: min(720px, 86vh);
  display: flex;
  align-items: end;
  padding: clamp(5rem, 12vw, 9rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 8vw, 5rem);
  color: #ffffff;
  /* Placeholder royalty-free style image. Replace with owned business photography when available. */
  background-image:
    linear-gradient(90deg, rgba(20, 34, 33, 0.78), rgba(20, 34, 33, 0.3)),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d9f0e3;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.2rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.primary-link,
.primary-button,
.book-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.1rem;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: var(--sage-dark);
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.primary-link:hover,
.primary-link:focus,
.primary-button:hover,
.primary-button:focus,
.book-service:hover,
.book-service:focus {
  background: var(--sage);
  transform: translateY(-1px);
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 2rem));
}

.intro {
  background: var(--surface);
}

.intro p,
.section-heading {
  max-width: 680px;
}

.section-heading {
  margin-bottom: 1.7rem;
}

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

.service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(29, 42, 45, 0.06);
}

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

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-card-footer strong {
  font-size: 1.35rem;
}

.notes-band {
  color: #ffffff;
  background: var(--ink);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.notes-grid h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.notes-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.booking-section {
  background: var(--surface);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}

.calendar-panel,
.form-panel,
.review-panel {
  min-width: 0;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  box-shadow: var(--shadow);
}

.selected-summary,
.selected-slot-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 6px;
  background: var(--soft-blue);
}

.selected-summary span,
.selected-slot-box span {
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.calendar-toolbar h3 {
  text-align: center;
}

.calendar-toolbar button,
.review-actions button,
.slot-button {
  min-height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
}

.calendar-toolbar button,
.review-actions button {
  padding: 0.65rem 0.85rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.65rem;
}

.calendar-day {
  min-width: 0;
}

.calendar-day header {
  min-height: 3.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.05rem;
  padding: 0.55rem;
  border-radius: 6px 6px 0 0;
  background: var(--ink);
  color: #ffffff;
  text-align: center;
}

.calendar-day header span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.slot-list {
  display: grid;
  gap: 0.45rem;
  padding-top: 0.45rem;
}

.slot-button {
  width: 100%;
  padding: 0.6rem 0.4rem;
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.slot-button.available {
  color: #ffffff;
  border-color: var(--success);
  background: var(--success);
}

.slot-button.booked {
  color: #ffffff;
  border-color: var(--danger);
  background: var(--danger);
}

.slot-button.unavailable {
  color: #5b6364;
  background: #ecefec;
}

.slot-button.selected {
  outline: 3px solid var(--clay);
  outline-offset: 2px;
}

.calendar-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem;
}

form {
  display: grid;
  gap: 0.7rem;
}

label {
  color: var(--ink);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  padding: 0.78rem 0.85rem;
  border: 1px solid #cbd2ce;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 1.5rem;
  color: var(--muted);
}

.form-status.error,
.error-text {
  color: var(--danger);
}

.form-status.success {
  color: var(--success);
}

.review-panel {
  margin-top: 1.25rem;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.review-list div {
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.review-list dt {
  color: var(--muted);
  font-size: 0.85rem;
}

.review-list dd {
  margin: 0.2rem 0 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.review-notices {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
  padding: 1rem;
  border-left: 4px solid var(--clay);
  background: #fff8f4;
}

.review-notices p {
  margin: 0;
}

.review-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.privacy-section {
  background: var(--soft-blue);
}

.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 2rem;
  align-items: start;
}

address {
  display: grid;
  gap: 0.65rem;
  font-style: normal;
}

address a,
address span {
  display: block;
  padding: 0.85rem;
  border-radius: 6px;
  background: var(--background);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 1.4rem 1rem;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .services-grid,
  .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    max-width: 100%;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 78vh;
  }

  .services-grid,
  .notes-grid,
  .review-list {
    grid-template-columns: 1fr;
  }

  .calendar-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .calendar-day {
    display: grid;
    grid-template-columns: minmax(84px, 0.25fr) minmax(0, 1fr);
    gap: 0.5rem;
    align-items: start;
  }

  .calendar-day header {
    min-height: 100%;
    border-radius: 6px;
  }

  .slot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
  }
}

@media (max-width: 420px) {
  .container,
  .narrow {
    width: min(100% - 1rem, 1120px);
  }

  .section {
    padding: 2.5rem 0;
  }

  .calendar-panel,
  .form-panel,
  .review-panel {
    padding: 0.85rem;
  }

  .calendar-day {
    grid-template-columns: 1fr;
  }

  .slot-list {
    grid-template-columns: 1fr;
  }
}
