:root {
  --ink: #202521;
  --muted: #5b655f;
  --paper: #fbfaf6;
  --soft: #eef2ec;
  --line: #d8ddd5;
  --accent: #496a5f;
  --accent-dark: #263f38;
  --rose: #9b685d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.95rem;
}

nav a {
  display: inline-flex;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: stretch;
  background: var(--soft);
}

.hero-image {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(32, 37, 33, 0.1), rgba(32, 37, 33, 0)),
    url("/static/jessica-borbasi-high-res.webp") center center / cover no-repeat;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 92px);
}

.kicker {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.love-well {
  margin-bottom: 34px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-style: italic;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--accent-dark);
  background: transparent;
  border-color: var(--accent);
}

.section {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 64px);
}

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

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

.section-inner.narrow {
  width: min(720px, 100%);
}

.intro {
  text-align: center;
}

.intro h2,
.page-heading h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.intro p,
.page-heading p {
  color: var(--muted);
  font-size: 1.2rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.service-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
  font-size: 1.15rem;
}

.service-list.compact {
  font-size: 1rem;
}

.pricing-panel,
.form-panel,
.contact-panel,
.info-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
}

.price-row strong {
  font-size: 1.25rem;
}

.pricing-panel .button {
  margin-top: 24px;
}

.page-heading {
  padding: 68px clamp(20px, 5vw, 64px) 34px;
  background: var(--soft);
}

.booking-layout {
  display: grid;
}

.form-panel {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--accent-dark);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.hint {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

fieldset {
  margin: 8px 0 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 1.2rem;
}

.slot-days {
  display: grid;
  gap: 20px;
}

.slot-day {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.slot-day h2 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
}

.slot {
  position: relative;
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.slot input {
  position: absolute;
  opacity: 0;
}

.slot span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.slot input:checked + span {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.slot.booked span {
  color: #8b928d;
  text-decoration: line-through;
  background: #ececea;
}

.flash-wrap {
  display: grid;
  gap: 10px;
  padding: 16px clamp(20px, 5vw, 64px) 0;
}

.flash {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.flash.error {
  color: #702d29;
  background: #f7e8e5;
  border-color: #e7bcb5;
}

.flash.success {
  color: #214a36;
  background: #e7f3ec;
  border-color: #b9dcc7;
}

.admin-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--accent-dark);
  background: var(--soft);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
  background: none;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
}

.muted-text {
  color: var(--muted);
}

.danger {
  color: #8a2b27;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.document-list {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.document-list h2 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.document-list a {
  color: var(--accent-dark);
  font-weight: 700;
}

.delete-form {
  margin-top: 20px;
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

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

  nav {
    justify-content: flex-start;
  }

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

  .hero-image {
    min-height: 52vh;
  }

  .hero-copy {
    padding: 36px 22px 54px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .admin-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
