:root {
  --cream: #f5ede4;
  --cream-2: #fffdf9;
  --blush: #ead8cf;
  --rose: #c8998f;
  --rose-deep: #9f6f66;
  --ink: #2a2425;
  --muted: #66585a;
  --line: rgba(42, 36, 37, 0.12);
  --shadow: 0 18px 42px rgba(46, 29, 31, 0.09);
  --radius-xl: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(200, 153, 143, 0.16), transparent 30%),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.84), transparent 32%),
    linear-gradient(180deg, #fffdfb 0%, #f4ece3 100%);
}

body.page-prices {
  --cream: #f5f6ee;
  --cream-2: #fcfcf8;
  --blush: #e1e7d6;
  --rose: #a9b594;
  --rose-deep: #74815f;
  --line: rgba(92, 110, 82, 0.14);
  background:
    radial-gradient(circle at top left, rgba(169, 181, 148, 0.22), transparent 30%),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.86), transparent 32%),
    linear-gradient(180deg, #fcfcf7 0%, #eef2e5 100%);
}

body.page-book {
  --cream: #f4f6fb;
  --cream-2: #ffffff;
  --blush: #dde4f1;
  --rose: #a3b2d8;
  --rose-deep: #6d7fa8;
  --line: rgba(109, 127, 168, 0.15);
  background:
    radial-gradient(circle at top left, rgba(163, 178, 216, 0.24), transparent 30%),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.88), transparent 32%),
    linear-gradient(180deg, #fcfdff 0%, #ecf1f9 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 252, 248, 0.78);
  border-bottom: 1px solid rgba(42, 36, 37, 0.06);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.94);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

main {
  display: block;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 80px 24px 100px;
  background:
    linear-gradient(180deg, rgba(28, 16, 17, 0.2), rgba(28, 16, 17, 0.44)),
    url("https://images.unsplash.com/photo-1519014816548-bf5fe059798b?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(190, 132, 124, 0.2), rgba(248, 241, 235, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: min(100%, 1200px);
  margin: 0 auto;
  color: #fffdfb;
  padding: 36px 0;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #efd0c8;
}

.hero h1,
.section-heading h2,
.about-card h2,
.prices-hero h1,
.booking-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.6rem, 8vw, 7.6rem);
}

.tagline {
  margin: 16px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 250, 246, 0.92);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.03rem;
  line-height: 1.8;
  color: rgba(255, 250, 246, 0.88);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover,
.button:focus-visible,
.service-link:hover,
.service-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border: 0;
  background: linear-gradient(135deg, #cfa79d, var(--rose-deep));
  color: #fffaf8;
  box-shadow: 0 12px 24px rgba(159, 111, 102, 0.22);
}

.button-secondary {
  border: 1px solid rgba(255, 250, 246, 0.22);
  color: #fffaf8;
  background: rgba(255, 250, 246, 0.06);
  backdrop-filter: blur(8px);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.about-card h2,
.prices-hero h1,
.booking-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-heading p:last-child,
.about-card p,
.service-card p,
.quote-card p,
.contact-card p,
.form-row label,
.form-row input,
.form-row select,
.form-row textarea,
.form-status {
  line-height: 1.7;
}

.section-heading p:last-child,
.about-card p,
.prices-copy,
.booking-hero .hero-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.services-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.quote-card,
.contact-card,
.booking-form,
.gallery-intro-card,
.prices-hero,
.booking-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: rgba(255, 252, 248, 0.9);
}

.service-card {
  padding: 30px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3,
.contact-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

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

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(159, 111, 102, 0.2);
  background: rgba(255, 252, 248, 0.95);
  color: var(--rose-deep);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.gallery-item {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(42, 36, 37, 0.14), rgba(42, 36, 37, 0.34)),
    linear-gradient(135deg, #e9d4cd, #f8f1eb 45%, #dcb4aa);
}

.gallery-item-large {
  grid-row: span 2;
  min-height: 498px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 24, 24, 0.02) 40%, rgba(32, 24, 24, 0.42) 100%);
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px 24px 24px;
  color: rgba(255, 250, 246, 0.98);
  text-transform: uppercase;
}

.gallery-item span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  opacity: 0.9;
}

.gallery-item strong {
  display: block;
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
  text-transform: none;
}

.gallery-item:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(42, 36, 37, 0.12), rgba(42, 36, 37, 0.3)),
    linear-gradient(135deg, #e7c8c0, #fff6f1 52%, #d8a79c);
}

.gallery-item:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(42, 36, 37, 0.12), rgba(42, 36, 37, 0.3)),
    linear-gradient(135deg, #d7b1a8, #f7efe8 50%, #f1ddd5);
}

.about-section {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.about-card {
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 252, 248, 0.96), rgba(234, 216, 207, 0.56));
  border: 1px solid rgba(42, 36, 37, 0.08);
}

.about-aside {
  display: grid;
}

.quote-card {
  padding: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(159, 111, 102, 0.14), rgba(255, 252, 248, 0.94));
}

.quote-card p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  text-align: center;
  color: var(--ink);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.booking-form {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(42, 36, 37, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
  min-height: 150px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(159, 111, 102, 0.22);
  border-color: rgba(159, 111, 102, 0.34);
}

.form-button {
  grid-column: 1 / -1;
  justify-self: start;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.5em;
  margin: -4px 0 0;
  font-size: 0.95rem;
  color: var(--rose-deep);
}

.form-status.is-success {
  color: #2f6f4f;
}

.contact-card {
  padding: 32px;
  position: sticky;
  top: 108px;
}

.contact-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.price-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--rose-deep);
}

.prices-hero,
.booking-hero {
  margin-top: 32px;
  padding: 48px 36px;
}

.prices-hero {
  background: rgba(255, 252, 248, 0.62);
}

.booking-hero .hero-copy,
.prices-copy {
  max-width: 720px;
}

.prices-grid .service-card {
  min-height: 260px;
}

.site-footer {
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 32px 24px 42px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(42, 36, 37, 0.08);
}

.site-footer a:hover,
.site-footer a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  color: var(--rose-deep);
}

.site-footer strong {
  color: var(--ink);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.8);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--rose-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.page-prices .service-card,
body.page-prices .booking-form,
body.page-prices .contact-card,
body.page-prices .quote-card,
body.page-book .service-card,
body.page-book .booking-form,
body.page-book .contact-card,
body.page-book .quote-card {
  background: rgba(255, 252, 248, 0.92);
}

body.page-prices .service-link,
body.page-book .service-link {
  background: rgba(255, 252, 248, 0.96);
}

body.page-prices .button-primary,
body.page-book .button-primary {
  box-shadow: 0 12px 24px rgba(109, 127, 168, 0.16);
}

@media (max-width: 980px) {
  .navbar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    width: 100%;
    display: none;
    margin-left: 0;
    padding: 18px 0 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .services-grid,
  .gallery-grid,
  .about-section,
  .booking-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-row: auto;
    min-height: 320px;
  }

  .contact-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 68px 20px 84px;
  }

  .section {
    padding: 76px 20px 0;
  }

  .services-grid,
  .gallery-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .prices-hero,
  .booking-hero,
  .about-card,
  .quote-card,
  .service-card,
  .booking-form,
  .contact-card {
    padding: 24px;
  }

  .site-footer {
    margin-top: 78px;
    padding-bottom: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .service-link {
    width: 100%;
  }
}