:root {
  --bg: #faf3ee;
  --bg-alt: #f3dfd7;
  --surface: #fffaf7;
  --accent: #8f4f48;
  --accent-dark: #713b36;
  --accent-2: #e6c1b7;
  --text: #4a3a35;
  --text-soft: #745c54;
  --line: #e8d5cc;
  --shadow: 0 1px 3px rgba(74, 58, 53, 0.08);
  --radius: 12px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.78), rgba(250, 243, 238, 0.28) 38%, rgba(250, 243, 238, 0));
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(143, 79, 72, 0.45);
  outline-offset: 4px;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 7vw, 5.1rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  padding: 0.65rem 0.9rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(232, 213, 204, 0.9);
  background: rgba(250, 243, 238, 0.94);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 1.5rem, 1120px);
  min-height: 72px;
  margin: 0 auto;
  padding: 0.55rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
}

.brand__heart {
  width: 46px;
  height: 42px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__name,
.brand__title {
  display: block;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.05;
}

.brand__title {
  color: var(--text-soft);
  font-size: 0.76rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.nav__links a {
  border-radius: 999px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.1;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
}

.nav__links a:hover {
  background: rgba(230, 193, 183, 0.42);
  color: var(--accent-dark);
}

.button,
.nav__links .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  padding: 0.82rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.button--small,
.nav__links .button--small {
  min-height: 40px;
  padding: 0.6rem 0.95rem;
}

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

.button--secondary:hover {
  background: var(--accent-2);
  color: var(--accent-dark);
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--contact {
  background: linear-gradient(180deg, rgba(243, 223, 215, 0), rgba(243, 223, 215, 0.92));
}

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

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

.container--text {
  width: min(100% - 2rem, 860px);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: 4rem 0 5rem;
  place-items: center;
}

.hero__inner {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hello {
  margin-bottom: 0.3rem;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(4rem, 11vw, 6rem);
  font-style: italic;
  line-height: 0.95;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 1.55rem;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.hero__meta,
.note {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.hero__mark {
  display: none;
}

.hero__heart {
  width: min(38vw, 360px);
  fill: none;
  opacity: 0.32;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 0.45rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 100%;
  border: 1px solid rgba(232, 213, 204, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.82);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.price-list {
  border: 1px solid rgba(232, 213, 204, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.84);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.95rem 0.25rem;
  font-size: 1.15rem;
}

.price-row + .price-row {
  border-top: 1px solid var(--line);
}

.price-row__dots {
  min-width: 2rem;
  border-bottom: 2px dotted rgba(116, 92, 84, 0.42);
  transform: translateY(-0.25rem);
}

.price-row strong {
  color: var(--accent-dark);
  font-size: 1.25rem;
}

.note {
  margin: 1rem 0 0;
  text-align: center;
}

.about-copy {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
}

.contact-grid {
  display: grid;
  gap: 1.1rem;
}

.contact-details,
.booking-box {
  border: 1px solid rgba(232, 213, 204, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.82);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.contact-item + .contact-item {
  margin-top: 1.25rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-phone {
  display: inline-block;
  font-size: clamp(1.7rem, 6vw, 2.45rem);
  font-weight: 800;
  line-height: 1.15;
}

.booking-box h3 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.booking-box__actions {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.booking-box p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.footer {
  border-top: 1px solid rgba(232, 213, 204, 0.92);
  background: var(--bg);
  padding: 2.4rem 1rem;
  text-align: center;
}

.footer__inner {
  width: min(100%, 820px);
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer__heart {
  width: 46px;
  height: 42px;
  margin-bottom: 0.7rem;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.footer p {
  margin-bottom: 0.35rem;
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.55rem 0 0.75rem;
  }

  .brand__heart {
    width: 40px;
    height: 37px;
  }

  .nav__links {
    justify-content: flex-start;
    width: 100%;
    gap: 0.15rem;
  }

  .nav__links a {
    padding: 0.5rem 0.55rem;
    font-size: 0.86rem;
  }

  .nav__links .button--small {
    min-height: 36px;
    padding: 0.5rem 0.7rem;
  }

  .hero {
    min-height: auto;
    padding-top: 3.2rem;
  }

  .section {
    padding: 3.7rem 0;
  }

  .service-card {
    padding: 0.85rem;
  }

  .service-card h3 {
    font-size: 0.98rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero__mark {
    display: block;
  }

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

  .service-card {
    padding: 1.2rem;
  }

  .price-list {
    padding: 1.25rem 1.5rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 1.4rem;
  }

  .contact-details,
  .booking-box {
    padding: 1.5rem;
  }
}

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