:root {
  --bg: #fff8f6;
  --bg-soft: #f8e9e7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --text: #34272b;
  --muted: #846d73;
  --primary: #c98996;
  --primary-dark: #a45f70;
  --accent: #d9b674;
  --line: rgba(164, 95, 112, 0.18);
  --shadow: 0 24px 60px rgba(105, 61, 72, 0.14);
  --radius: 28px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 182, 116, 0.18), transparent 34rem),
    linear-gradient(180deg, #fffaf8 0%, var(--bg) 42%, #ffffff 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 24px), var(--container));
  margin: 12px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 248, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 38px rgba(105, 61, 72, 0.10);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 16px 44px rgba(105, 61, 72, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
  font-family: "Playfair Display", serif;
  font-size: 1rem;
}

.brand-text {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 600;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover {
  color: var(--primary-dark);
  background: rgba(201, 137, 150, 0.10);
}

.main-nav .nav-cta {
  color: #fff;
  background: var(--primary-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(201, 137, 150, 0.13);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--primary-dark);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px 20px 80px;
}

.hero-bg {
  position: absolute;
  inset: 84px 14px 20px;
  border-radius: 38px;
  background:
    linear-gradient(115deg, rgba(255, 248, 246, 0.92), rgba(255, 248, 246, 0.46)),
    radial-gradient(circle at 78% 28%, rgba(217, 182, 116, .32), transparent 22rem),
    radial-gradient(circle at 12% 72%, rgba(201, 137, 150, .28), transparent 20rem),
    linear-gradient(135deg, #f4d8d9, #fffaf8 52%, #ead0b2);
  box-shadow: var(--shadow);
}

.hero-bg::after {
  content: "";
  position: absolute;
  right: clamp(16px, 8vw, 110px);
  bottom: clamp(30px, 9vw, 110px);
  width: clamp(210px, 34vw, 430px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 40% 40% 14% 14% / 34% 34% 12% 12%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.14)),
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.9), transparent 12rem),
    linear-gradient(160deg, #eecbd0, #c98996 58%, #a45f70);
  filter: saturate(1.04);
  opacity: .68;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 9vw, 6.7rem);
}

h2 {
  font-size: clamp(2.35rem, 6vw, 4.25rem);
}

h3 {
  font-size: 1.12rem;
}

.lead {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 16px 32px rgba(164, 95, 112, .25);
}

.btn-secondary {
  color: var(--primary-dark);
  background: rgba(255,255,255,.66);
  border-color: var(--line);
}

.section,
.intro-strip,
.contact-section,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -38px;
  position: relative;
  z-index: 2;
}

.intro-strip div,
.service-card,
.visit-card,
.contact-section,
.image-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.intro-strip div {
  padding: 22px;
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: .94rem;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 7vw, 78px);
}

.reverse .visit-card {
  order: 2;
}

.section-copy p:not(.eyebrow),
.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.image-card {
  padding: 14px;
  transform: rotate(1.2deg);
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 430px;
  border-radius: calc(var(--radius) - 10px);
  color: rgba(52,39,43,.52);
  background:
    linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.05)),
    radial-gradient(circle at 30% 20%, rgba(217, 182, 116, .36), transparent 13rem),
    linear-gradient(145deg, #efd0d4, #fff6f4 58%, #f0dcc0);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

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

.gallery-item {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255,255,255,.82), transparent 8rem),
    linear-gradient(145deg, #f5d7da, #fff8f6 55%, #dfb9a6);
  box-shadow: var(--shadow);
}

.gallery-item:nth-child(even) {
  background:
    radial-gradient(circle at 50% 16%, rgba(255,255,255,.82), transparent 8rem),
    linear-gradient(145deg, #f1dfd1, #fff8f6 55%, #d9a8b2);
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255,255,255,.72);
  font-size: .84rem;
  font-weight: 800;
}

.soft-section {
  position: relative;
  padding-inline: clamp(0px, 3vw, 30px);
}

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

.service-card {
  padding: 24px;
}

.service-card p {
  color: var(--muted);
  min-height: 76px;
}

.service-card strong {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-dark);
}

.visit-card {
  padding: clamp(26px, 5vw, 46px);
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(248,233,231,.7));
}

.visit-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.visit-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.visit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(217, 182, 116, .18);
}

.contact-section {
  padding: clamp(42px, 7vw, 74px) 22px;
  text-align: center;
  background:
    radial-gradient(circle at 25% 15%, rgba(217,182,116,.20), transparent 20rem),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(248,233,231,.78));
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0 42px;
  color: var(--muted);
  font-size: .92rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 920px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, calc(100vw - 24px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 13px 14px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .intro-strip,
  .two-columns,
  .gallery-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .reverse .visit-card {
    order: 0;
  }

  .gallery-item {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand-text {
    font-size: .94rem;
  }

  .hero {
    padding: 120px 12px 64px;
  }

  .hero-bg {
    inset: 76px 10px 12px;
    border-radius: 28px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .intro-strip {
    margin-top: 0;
  }

  .section {
    padding: 66px 0;
  }

  .image-placeholder {
    min-height: 320px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
