:root {
  --bg-main: #f4f2ee;
  --bg-sage: #c7d1b9;
  --bg-rose: #f0d9d6;
  --bg-soft-rose: #e7c6c2;
  --text-main: #6d625e;
  --text-dark: #544b47;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: #fffdfa;
  --border-soft: rgba(109, 98, 94, 0.15);
  --shadow-soft: 0 18px 45px rgba(109, 98, 94, 0.11);
  --shadow-card: 0 12px 28px rgba(109, 98, 94, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --transition: 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.7;
}

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

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

button,
.button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(244, 242, 238, 0.92);
  border-bottom: 1px solid rgba(109, 98, 94, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--text-dark);
}

.brand-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-main);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.94rem;
  transition: background var(--transition), color var(--transition),
    transform var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  background: rgba(109, 98, 94, 0.08);
  color: var(--text-dark);
}

.header-cta {
  margin-left: 0.5rem;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0 !important;
  border-radius: 50% !important;
  background: var(--bg-soft-rose);
  border: 1px solid rgba(109, 98, 94, 0.08);
  color: var(--text-dark);
  box-shadow: var(--shadow-card);
}

.nav-social svg {
  width: 20px;
  height: 20px;
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.98rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(109, 98, 94, 0.14);
}

.button-primary {
  background: var(--bg-sage);
  color: var(--text-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-dark);
  border: 1px solid rgba(109, 98, 94, 0.12);
}

.button-rose {
  background: var(--bg-soft-rose);
  color: var(--text-dark);
}

.button-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(109, 98, 94, 0.18);
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(199, 209, 185, 0.45);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--bg-sage);
}

.hero h1,
.page-hero h1,
h2,
h3 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.intro {
  font-size: 1.08rem;
  max-width: 63ch;
}

.hero-copy p + p,
.rich-text p + p {
  margin-top: 1rem;
}

.hero-actions,
.cta-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.highlight-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.highlight-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.hero-visual,
.image-panel,
.photo-placeholder,
.hero-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: calc(var(--radius-xl) - 6px);
  background: rgba(255, 253, 250, 0.65);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.photo-frame.tall {
  min-height: 520px;
}

.photo-frame.medium {
  min-height: 460px;
}

.photo-frame.hero-fill {
  min-height: 100%;
}

.photo-overlay-note {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.88);
  backdrop-filter: blur(8px);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-card);
}

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

.image-grid .photo-frame {
  min-height: 260px;
}

.hero-visual {
  min-height: 620px;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(109, 98, 94, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-placeholder,
.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 40%),
    linear-gradient(135deg, rgba(199, 209, 185, 0.9), rgba(240, 217, 214, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.photo-placeholder::before,
.hero-placeholder::before {
  content: "";
  position: absolute;
  inset: auto auto 12% -6%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(6px);
}

.placeholder-content {
  position: relative;
  z-index: 1;
  width: min(82%, 360px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background: rgba(255, 253, 250, 0.75);
  border: 1px solid rgba(109, 98, 94, 0.12);
}

.placeholder-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 74px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(199, 209, 185, 0.5);
  color: var(--text-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.placeholder-content h2,
.placeholder-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.placeholder-content p {
  margin: 0;
  font-size: 0.96rem;
}

.logo-card {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 22px;
  background: rgba(255, 253, 250, 0.92);
  box-shadow: var(--shadow-card);
}

.logo-card img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.logo-card strong {
  display: block;
  color: var(--text-dark);
}

.section {
  padding: 3.6rem 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.28);
}

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

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

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

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head.compact {
  margin-bottom: 1.4rem;
}

.section-head p,
.section-intro {
  max-width: 62ch;
  margin: 0;
}

.section h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  margin-bottom: 0.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.card {
  height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(109, 98, 94, 0.12);
  background: rgba(255, 253, 250, 0.82);
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.95rem;
}

.card p {
  margin: 0;
}

.card p + p,
.card ul + p {
  margin-top: 0.85rem;
}

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  padding-left: 1.15rem;
}

.list-clean li + li {
  margin-top: 0.55rem;
}

.list-clean li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--bg-sage);
}

.feature-split,
.page-split,
.contact-layout,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.detail-layout.reverse > :first-child,
.feature-split.reverse > :first-child {
  order: 2;
}

.detail-layout.reverse > :last-child,
.feature-split.reverse > :last-child {
  order: 1;
}

.image-panel,
.content-panel,
.info-panel {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 250, 0.82);
  border: 1px solid rgba(109, 98, 94, 0.12);
  box-shadow: var(--shadow-card);
}

.content-panel h2,
.content-panel h3,
.info-panel h2,
.info-panel h3 {
  margin-bottom: 0.9rem;
}

.content-panel p:last-child,
.info-panel p:last-child {
  margin-bottom: 0;
}

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

.step-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.8);
  border: 1px solid rgba(109, 98, 94, 0.1);
  box-shadow: var(--shadow-card);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--bg-soft-rose);
  color: var(--text-dark);
  font-weight: 700;
  border: 1px solid rgba(109, 98, 94, 0.08);
  box-shadow: 0 8px 18px rgba(109, 98, 94, 0.08);
}

.section-sage .step-number {
  background: var(--bg-soft-rose);
}

.step-number-rose {
  background: #e7c6c2 !important;
  border-color: rgba(109, 98, 94, 0.1) !important;
}

.step-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.cta-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid rgba(109, 98, 94, 0.12);
  box-shadow: var(--shadow-soft);
}

.cta-panel.centered {
  text-align: center;
}

.cta-panel h2 {
  margin-bottom: 0.75rem;
}

.mini-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: rgba(109, 98, 94, 0.88);
}

.stats-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag,
.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 98, 94, 0.1);
  font-size: 0.88rem;
  font-weight: 600;
}

.page-hero {
  padding: 3.2rem 0 2.4rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.page-hero-card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 250, 0.82);
  border: 1px solid rgba(109, 98, 94, 0.12);
  box-shadow: var(--shadow-card);
}

.icon-list {
  display: grid;
  gap: 1rem;
}

.icon-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  align-items: start;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(199, 209, 185, 0.45);
  font-size: 1.4rem;
}

.icon-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.two-column-text {
  columns: 2;
  column-gap: 2rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.8);
  border: 1px solid rgba(109, 98, 94, 0.12);
}

.faq-item h3 {
  margin-bottom: 0.55rem;
  font-size: 1.7rem;
}

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

.contact-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.82);
  border: 1px solid rgba(109, 98, 94, 0.12);
  box-shadow: var(--shadow-card);
}

.contact-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.55rem;
}

.contact-card p {
  margin: 0;
}

.contact-card p + p {
  margin-top: 0.55rem;
}

.contact-card a.inline-link,
.inline-link {
  color: var(--text-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-content {
  display: grid;
  gap: 1.1rem;
}

.legal-block {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.8);
  border: 1px solid rgba(109, 98, 94, 0.1);
}

.legal-block h2 {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}

.legal-block h3 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.site-footer {
  padding: 2rem 0 2.4rem;
  background: rgba(109, 98, 94, 0.06);
  border-top: 1px solid rgba(109, 98, 94, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
}

.footer-links a {
  color: var(--text-main);
  font-size: 0.94rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text-dark);
}

.footer-note {
  margin: 0;
  font-size: 0.9rem;
}

.divider-top {
  border-top: 1px solid rgba(109, 98, 94, 0.1);
}

.spacer-top {
  margin-top: 1.5rem;
}

@media (max-width: 1120px) {
  .hero-grid,
  .page-hero-grid,
  .feature-split,
  .page-split,
  .contact-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border-radius: 24px;
    background: rgba(255, 253, 250, 0.97);
    border: 1px solid rgba(109, 98, 94, 0.1);
    box-shadow: var(--shadow-soft);
  }

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

  .main-nav a,
  .header-cta {
    width: 100%;
    margin-left: 0;
  }

  .nav-social {
    width: 100%;
    height: auto;
    min-height: 52px;
    padding: 0.98rem 1.5rem !important;
    border-radius: 999px !important;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .cards-grid,
  .cards-grid.two-up,
  .contact-grid,
  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .header-inner {
    min-height: 78px;
  }

  .brand-title {
    font-size: 1.45rem;
  }

  .hero,
  .section,
  .page-hero {
    padding: 2.6rem 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .cards-grid,
  .cards-grid.two-up,
  .contact-grid,
  .hero-highlights,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .button-secondary,
  .button-primary,
  .button-rose,
  .button-ghost {
    width: 100%;
  }

  .button-row,
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .two-column-text {
    columns: 1;
  }

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