:root {
  /* Soft boutique palette inspired by cream paper, dried florals, sage, and dusty rose. */
  --paper: #e9e5dd;
  --paper-warm: #f6efe4;
  --cream: #fff8ed;
  --blush: #edd0cb;
  --dusty-rose: #b77979;
  --rose-deep: #7b4247;
  --soft-tan: #c9aa80;
  --sage: #87977a;
  --sage-soft: #cdd6c1;
  --olive: #2f3a24;
  --muted-brown: #5b493d;
  --ink: #171615;
  --muted: #6d6259;
  --white: #fffdf8;
  --line: rgba(47, 58, 36, 0.35);
  --soft-line: rgba(91, 73, 61, 0.14);
  --radius: 8px;
  --section-padding: clamp(4rem, 9vw, 7rem);
  --display-font: "Bodoni 72", Didot, "Bodoni 72 Smallcaps", Georgia, "Times New Roman", serif;
  --body-font: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  line-height: 1.58;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 73, 61, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.45;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display-font);
  font-weight: 800;
  line-height: 0.96;
}

h1 {
  margin-bottom: 0;
  font-size: 3.2rem;
  text-align: center;
}

h2 {
  margin-bottom: 0;
  font-size: 3rem;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 2.1rem;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: var(--section-padding) 0;
}

.hero {
  width: 100%;
  max-width: none;
  padding-top: 2rem;
  padding-right: max(1rem, calc((100% - 1180px) / 2));
  padding-bottom: 4.5rem;
  padding-left: max(1rem, calc((100% - 1180px) / 2));
}

.hero__masthead {
  margin-bottom: 3rem;
}

.hero__masthead .eyebrow {
  text-align: center;
}

.hero__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__content {
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--rose-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tagline {
  max-width: 10.5ch;
  margin-bottom: 1.2rem;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 4.1rem;
  font-weight: 800;
  line-height: 0.9;
}

.intro,
.section-heading {
  max-width: 44rem;
}

.intro,
.about-card p,
.service-card p,
.booking__panel p,
.contact-card {
  color: var(--muted-brown);
  font-size: 1rem;
}

.intro {
  max-width: 34rem;
  margin-bottom: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.55rem;
  border: 3px solid var(--olive);
  border-radius: 999px;
  color: var(--olive);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--olive);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(123, 66, 71, 0.45);
  outline-offset: 4px;
}

/* Future image areas: replace these blocks with real local photos when available. */
.photo-placeholder {
  position: relative;
  display: grid;
  min-height: 15rem;
  overflow: hidden;
  border: 1px solid rgba(91, 73, 61, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 248, 237, 0.88) 0%, rgba(237, 208, 203, 0.36) 42%, rgba(201, 170, 128, 0.38) 100%),
    linear-gradient(90deg, rgba(47, 58, 36, 0.09), transparent 42%);
  isolation: isolate;
  place-items: end start;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 0;
  width: 34%;
  height: 72%;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(238, 220, 197, 0.92)),
    var(--cream);
  box-shadow:
    -3.8rem 2rem 0 -1.25rem rgba(135, 151, 122, 0.78),
    -7.2rem 3.1rem 0 -1.85rem rgba(91, 73, 61, 0.2);
  transform: skewX(-3deg);
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 18%;
  width: 52%;
  height: 70%;
  border-top: 2px solid rgba(47, 58, 36, 0.42);
  border-left: 2px solid rgba(47, 58, 36, 0.28);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.photo-placeholder span {
  position: relative;
  z-index: 1;
  margin: 1rem;
  padding: 0.52rem 0.78rem;
  border: 2px solid rgba(47, 58, 36, 0.5);
  border-radius: 999px;
  color: var(--olive);
  background: rgba(255, 253, 248, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-placeholder--hero {
  min-height: 28rem;
}

.photo-placeholder--hero::before {
  right: 16%;
  width: 32%;
  height: 68%;
}

.about {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - 1180px) / 2));
  padding-left: max(1rem, calc((100% - 1180px) / 2));
  background: var(--paper-warm);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.about__grid,
.service-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.2rem;
}

.about-card,
.service-card,
.booking__panel {
  border-radius: var(--radius);
}

.about-card {
  padding: 1.25rem 0 0;
  border-top: 2px solid var(--line);
}

.about-card h3 {
  color: var(--muted-brown);
}

.about-card p {
  max-width: 28rem;
}

.service-grid {
  align-items: stretch;
}

.service-card {
  display: grid;
  min-height: 22rem;
  grid-template-rows: auto 1fr auto;
  gap: 1.15rem;
  padding: 0.85rem;
  border: 2px solid rgba(47, 58, 36, 0.28);
  background: rgba(255, 253, 248, 0.38);
}

.service-card__accent {
  min-height: 7.8rem;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.72), rgba(205, 214, 193, 0.72)),
    linear-gradient(90deg, rgba(47, 58, 36, 0.18), transparent);
}

.service-card__accent--rose {
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.82), rgba(237, 208, 203, 0.78)),
    linear-gradient(90deg, rgba(123, 66, 71, 0.18), transparent);
}

.service-card__accent--tan {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.8), rgba(201, 170, 128, 0.74)),
    linear-gradient(90deg, rgba(91, 73, 61, 0.14), transparent);
}

.service-card__accent--sage {
  background:
    linear-gradient(135deg, rgba(246, 239, 228, 0.78), rgba(135, 151, 122, 0.72)),
    linear-gradient(90deg, rgba(47, 58, 36, 0.16), transparent);
}

.service-card p {
  margin-bottom: 0;
}

.price {
  width: fit-content;
  padding: 0.45rem 0.72rem;
  border: 2px solid var(--olive);
  border-radius: 999px;
  color: var(--olive);
  background: transparent;
  font-weight: 900;
}

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

.gallery-grid .photo-placeholder {
  min-height: 13rem;
  aspect-ratio: 1 / 0.86;
}

.booking {
  padding-bottom: 3.5rem;
}

.booking__panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.25rem;
  border: 2px solid var(--olive);
  background: rgba(255, 253, 248, 0.36);
}

.contact-card {
  display: grid;
  gap: 0.55rem;
  font-style: normal;
}

.contact-card a {
  color: var(--rose-deep);
  font-weight: 900;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.button--wide {
  width: 100%;
  margin-top: 0;
}

.footer {
  padding: 1.5rem 1rem 2rem;
  color: var(--muted-brown);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (min-width: 640px) {
  .section {
    width: min(1180px, calc(100% - 3rem));
  }

  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 4.2rem;
  }

  .tagline {
    font-size: 5rem;
  }

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

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

  .booking__panel {
    padding: 2rem;
  }
}

@media (min-width: 900px) {
  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 5.25rem;
  }

  .hero__masthead {
    margin-bottom: 2.7rem;
  }

  .hero__layout {
    grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
    gap: 3.2rem;
  }

  .tagline {
    font-size: 5.55rem;
  }

  .photo-placeholder--hero {
    min-height: 34rem;
  }

  .about__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking__panel {
    grid-template-columns: 1.15fr 1fr auto;
    align-items: center;
  }

  .button--wide {
    width: 13.5rem;
  }
}

@media (min-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
