:root {
  --rose: #b76e79;
  --rose-dark: #8f4d58;
  --wine: #4a2430;
  --gold: #c4a07a;
  --cream: #f7efe8;
  --cream-dark: #eee2d6;
  --ink: #2c1f24;
  --ink-soft: #5c4a50;
  --paper: #fdf9f5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(44, 31, 36, 0.12);
  --radius: 22px;
  --header: 84px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

figure {
  margin: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: calc(var(--header) + 8px);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 12px;
}

.topbar {
  background: var(--wine);
  color: rgba(247, 239, 232, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.6rem 0;
}

.topbar a:hover {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(253, 249, 245, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(253, 249, 245, 0.96);
  border-bottom-color: rgba(44, 31, 36, 0.08);
  box-shadow: 0 8px 24px rgba(44, 31, 36, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  font-size: 0.92rem;
}

.nav-list a.is-active,
.nav-list a:hover {
  color: var(--ink);
}

.nav-list a.is-active::after,
.nav-list a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--rose);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary,
.btn-nav {
  background: var(--rose);
  color: var(--white);
}

.btn-primary:hover,
.btn-nav:hover {
  background: var(--rose-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header) - 2.2rem);
  display: grid;
  place-items: end start;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(44, 31, 36, 0.72) 0%, rgba(44, 31, 36, 0.28) 52%, rgba(44, 31, 36, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 90px;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 500;
  max-width: 12ch;
}

.hero h1 em {
  font-style: italic;
  color: #f0d9c8;
}

.lead {
  font-size: 1.15rem;
  max-width: 42ch;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stats {
  background: var(--cream);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--rose);
}

.stats span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about,
.services,
.contact {
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 520px;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.about-quote {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
  border-left: 2px solid var(--rose);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
}

.checklist {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.gallery {
  padding: 0 0 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

.services {
  background: var(--cream-dark);
}

.section-intro {
  max-width: 640px;
  margin-bottom: 42px;
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-body {
  padding: 24px;
}

.service-index {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

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

.contact {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.contact-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 28px;
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.contact-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.contact-list span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 4px;
}

.contact-list a:hover {
  color: var(--rose-dark);
}

address,
.contact-list p {
  font-style: normal;
  margin: 0;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(44, 31, 36, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: var(--paper);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}

.contact-form .btn {
  width: 100%;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-weight: 500;
}

.form-status.is-success {
  color: #4f7a57;
}

.form-status.is-error {
  color: var(--rose-dark);
}

.map-wrap {
  height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--wine);
  color: rgba(255, 255, 255, 0.86);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.site-footer .brand-text {
  color: var(--white);
}

.site-footer h2 {
  font-size: 1.1rem;
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 0.92rem;
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.error-inner h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.error-inner .lead {
  margin: 0 auto 28px;
  color: var(--ink-soft);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 0 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 18px;
  }

  .stats-grid,
  .about-grid,
  .gallery-grid,
  .service-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    display: grid;
  }

  .about-photo img,
  .gallery-grid img,
  .service-card img {
    min-height: 0;
    height: 240px;
  }

  .about,
  .services,
  .contact {
    padding: 64px 0;
  }
}
