:root {
  color-scheme: light;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2f2a27;
  background: #f5efe8;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --muted: #7f746b;
  --text-soft: #675c55;
  --border: rgba(113, 97, 85, 0.12);
  --shadow: 0 28px 48px rgba(85, 74, 69, 0.08);
  --radius: 28px;
  --accent: #d8c9bc;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: radial-gradient(circle at top left, rgba(235, 228, 219, 0.75), transparent 28%),
    radial-gradient(circle at bottom right, rgba(248, 241, 232, 0.9), transparent 28%),
    #f5efe8;
}

body {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--text-soft);
  padding-top: 68px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px 0;
}

.site-header {
  width: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 9999;
  background: linear-gradient(
    180deg,
    rgba(248, 244, 237, 0.94) 0%,
    rgba(248, 244, 237, 0.9) 62%,
    rgba(248, 244, 237, 0.66) 84%,
    rgba(248, 244, 237, 0) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: none;
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
    -webkit-mask-image: radial-gradient(120% 95% at 50% 50%, #000 72%, rgba(0, 0, 0, 0.88) 82%, rgba(0, 0, 0, 0.45) 92%, transparent 100%);
    mask-image: radial-gradient(120% 95% at 50% 50%, #000 72%, rgba(0, 0, 0, 0.88) 82%, rgba(0, 0, 0, 0.45) 92%, transparent 100%);
  padding: 10px 16px;
}

.brand {
  display: flex;
  align-items: center;
  background: transparent;
  margin: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-height: 34px;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(26, 43, 60, 0.14);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #1a2b3c;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: #3b322e;
  outline: none;
  box-shadow: 0 10px 24px rgba(67, 54, 48, 0.08);
}

.menu-dots {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.menu-dropdown {
  position: static;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  z-index: 20;
}

.menu-dropdown.active {
  display: flex;
}

.menu-dropdown li {
  margin: 0;
}

.menu-dropdown a {
  display: block;
  padding: 8px 10px;
  color: #4f6272;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 0;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-dropdown a:hover,
.menu-dropdown a:focus {
  background: transparent;
  color: #3d5060;
}

section,
footer {
  scroll-margin-top: 96px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #3b322e;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 58vh;
  padding: 0 0 8px;
  background: none;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 244, 237, 0.98) 0%,
      rgba(248, 244, 237, 0.88) 8%,
      rgba(248, 244, 237, 0.7) 16%,
      rgba(248, 244, 237, 0.45) 26%,
      rgba(248, 244, 237, 0.15) 38%,
      rgba(248, 244, 237, 0) 52%
    ),
    linear-gradient(
      90deg,
      rgba(248, 244, 237, 0.988) 0%,
      rgba(248, 244, 237, 0.954) 24%,
      rgba(248, 244, 237, 0.824) 44%,
      rgba(248, 244, 237, 0.584) 64%,
      rgba(248, 244, 237, 0.284) 82%,
      rgba(248, 244, 237, 0.06) 100%
    ),
    url("Hero_picture.jpg");
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  bottom: 0;
  height: 110px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(245, 239, 232, 0) 0%, #f5efe8 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  min-height: clamp(340px, 42vw, 480px);
  background: transparent;
  overflow: hidden;
}

.hero-media {
  display: none;
}

.hero-media::after {
  content: none;
}

.hero-image {
  position: static;
  z-index: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
  opacity: 0.88;
  filter: saturate(0.85) contrast(0.9) brightness(1.04);
  box-shadow: none;
}

/* --- HERO PANEL & COPY --- */
.hero-panel {
  position: relative;
  z-index: 2;
  max-width: 48%;
  margin: 0 0 0 32px;
  padding: 64px 42px 52px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border: none;
}

.hero-copy {
  display: grid;
  gap: 0.5rem 0;
}

.hero h1 {
  margin: 0 0 0.7em 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38.4px;
  line-height: 1.13;
  letter-spacing: -0.02em;
  color: #3d4f5c;
  font-weight: 600;
}

/* Hero headline: enforce manual line breaks, controlled width, and tight leading */
.hero h1.hero-headline {
  max-width: 36ch; /* slightly reduced width for elegant measure */
  text-align: left;
  line-height: 1.10; /* target 1.05-1.15 for tight, elegant spacing */
  white-space: normal;
  margin-right: auto;
}

.hero p {
  margin: 0 auto;
  max-width: 580px;
  font-size: 1.08rem;
  color: #4a5a67;
  line-height: 1.7;
  padding-bottom: 0;
}

.hero-copy .button-primary {
  margin-top: 2.2rem;
  justify-self: start;
  width: fit-content;
  min-width: 260px;
  padding: 10px 24px;
}

/* --- HERO BUTTON: Premium, balanced, responsive --- */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  min-height: 48px;
  max-width: 100%;
  border: 1px solid rgba(74, 97, 117, 0.16); /* Softer, lighter border */
  border-radius: 14px;
  background: rgba(245, 239, 232, 0.7); /* Very soft cream */
  color: #3d4f5c;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  cursor: pointer;
}
.button-primary:hover,
.button-primary:focus-visible {
  background: #edeae6;
  color: #2f2a27;
  border-color: rgba(74, 97, 117, 0.16);
  box-shadow: none;
}

@media (max-width: 900px) {
  .hero {
    background: none;
    overflow: visible;
  }

  .hero::before {
    content: none;
  }

  .hero::after {
    content: none;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    background: transparent;
    gap: 14px;
    overflow: visible;
  }

  .hero-media {
    display: block;
    order: 1;
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    justify-self: stretch;
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(
        180deg,
        rgba(248, 244, 237, 0.98) 0%,
        rgba(248, 244, 237, 0.9) 9%,
        rgba(248, 244, 237, 0.72) 18%,
        rgba(248, 244, 237, 0.46) 30%,
        rgba(248, 244, 237, 0.2) 42%,
        rgba(248, 244, 237, 0) 56%
      );
  }

  .hero-image {
    height: 260px;
    min-height: 230px;
    max-height: 300px;
    border-radius: 0;
    opacity: 0.9;
    transform: none;
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 70%,
      rgba(0, 0, 0, 0.95) 80%,
      rgba(0, 0, 0, 0.68) 89%,
      rgba(0, 0, 0, 0.26) 96%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 70%,
      rgba(0, 0, 0, 0.95) 80%,
      rgba(0, 0, 0, 0.68) 89%,
      rgba(0, 0, 0, 0.26) 96%,
      transparent 100%
    );
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .hero-panel {
    width: min(100%, 680px);
    max-width: calc(100vw - 56px);
    margin: 0 auto;
    padding: 0 18px 18px;
  }
  .hero-copy {
    gap: 14px;
  }
  .hero h1 {
    margin-bottom: 0;
    font-size: clamp(2rem, 5.6vw, 2.65rem);
    line-height: 1.10;
  }
  .button-primary {
    min-height: 46px;
    padding: 10px 22px;
    font-size: 1rem;
    max-width: 420px;
    width: auto;
    min-width: 250px;
    margin: 0 auto;
    display: block;
  }
  .hero p {
    margin: 0;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 600px) {
  .hero-panel {
    padding: 0 6vw 18px 6vw;
    margin: 0 auto;
    max-width: 100vw;
  }
  .hero h1 {
    font-size: clamp(1.1rem, 8vw, 1.5rem);
    line-height: 1.10;
  }
  .button-primary {
    min-height: 46px;
    padding: 8px 22px;
    font-size: 0.98rem;
    max-width: 90vw;
    width: 88%;
    margin: 0 auto;
    display: block;
  }
  .hero-copy {
    gap: 14px;
  }
  .hero p {
    max-width: 98vw;
  }
}

/* ── Services Section ── */

.services-section {
  margin-top: 72px;
}

.section-title {
  margin: 0 0 32px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  color: #5d6d79;
  text-align: center;
}

.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: transparent;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding: 20px 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #5d6d79;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.accordion-header:hover {
  background-color: rgba(93, 109, 121, 0.04);
}

.accordion-header:focus-visible {
  outline: 2px solid #5d6d79;
  outline-offset: -2px;
}

.accordion-icon-left {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  width: 32px;
  flex-shrink: 0;
}

.accordion-title {
  flex: 1;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.accordion-icon-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  width: 32px;
  flex-shrink: 0;
  font-weight: 300;
  color: #5d6d79;
  transition: transform 0.3s ease;
}

.accordion-item:not(.is-open) .accordion-icon-right {
  transform: rotate(0deg);
}

.accordion-item.is-open .accordion-icon-right {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(255, 255, 255, 0.3);
}

.accordion-item.is-open .accordion-content {
  max-height: 1000px;
  padding: 0 24px 20px;
}

.accordion-intro {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.accordion-intro em {
  font-style: italic;
  color: #675c55;
}

.accordion-content ul {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: disc;
  color: var(--text-soft);
}

.accordion-content ul li {
  margin: 8px 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.services-tagline {
  margin: 28px 0 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  font-style: italic;
}

/* ── How It Works Section ── */

.how-section {
  margin-top: 72px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.how-step {
  text-align: center;
  padding: 32px 24px;
}

.how-number {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #5d6d79;
  opacity: 0.35;
  margin-bottom: 12px;
}

.how-step h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #5d6d79;
}

.how-step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

/* ── Personal Approach Section ── */

.about-section {
  margin-top: 72px;
}

.about-inner {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 44px;
  align-items: start;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 0;
}

.about-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(
      135% 135% at 50% 50%,
      rgba(245, 239, 232, 0) 42%,
      rgba(245, 239, 232, 0.36) 64%,
      rgba(245, 239, 232, 0.72) 82%,
      rgba(245, 239, 232, 0.94) 100%
    ),
    linear-gradient(
      180deg,
      rgba(245, 239, 232, 0.82) 0%,
      rgba(245, 239, 232, 0.46) 16%,
      rgba(245, 239, 232, 0.1) 30%,
      rgba(245, 239, 232, 0.1) 70%,
      rgba(245, 239, 232, 0.48) 84%,
      rgba(245, 239, 232, 0.84) 100%
    ),
    linear-gradient(
      90deg,
      rgba(245, 239, 232, 0.84) 0%,
      rgba(245, 239, 232, 0.5) 12%,
      rgba(245, 239, 232, 0.12) 26%,
      rgba(245, 239, 232, 0.12) 74%,
      rgba(245, 239, 232, 0.5) 88%,
      rgba(245, 239, 232, 0.84) 100%
    );
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.about-copy p {
  margin: 0 0 9px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* ── FAQ Section ── */

.faq-section {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid rgba(93, 109, 121, 0.15);
}

.faq-accordion .accordion-header.faq-header {
  padding: 20px 24px;
}

.faq-accordion .accordion-title {
  font-size: 1.05rem;
  font-weight: 500;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #5d6d79;
}

.faq-answer {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text-soft);
}

/* ── Plans & Pricing Section ── */

.pricing-section {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid rgba(93, 109, 121, 0.15);
}

.pricing-subtitle {
  margin: -8px 0 28px;
  text-align: center;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 24px 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 30px rgba(85, 74, 69, 0.06);
}

.pricing-card-popular {
  border-color: rgba(93, 109, 121, 0.55);
  background: rgba(246, 241, 236, 0.95);
}

.pricing-label {
  margin: 0 0 8px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7f746b;
}

.pricing-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.25;
  color: #5d6d79;
}

.pricing-price {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #5d6d79;
}

.pricing-description {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.pricing-list {
  margin: 16px 0 0;
  padding: 0 0 0 20px;
  color: var(--text-soft);
}

.pricing-list li {
  margin: 8px 0;
  font-size: 0.98rem;
  line-height: 1.75;
}

.pricing-footnote {
  max-width: 980px;
  margin: 30px auto 0;
  text-align: left;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(245, 239, 232, 0.9);
}

.pricing-footnote p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.pricing-footnote p:last-child {
  margin-bottom: 0;
}

.pricing-cta {
  margin: 22px 0 0;
  text-align: center;
  color: #5d6d79;
  font-size: 1.05rem;
  font-weight: 600;
}

.pricing-cta a {
  color: #5d6d79;
  text-decoration: none;
}

.pricing-cta a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .faq-section {
    margin-top: 44px;
    padding-top: 44px;
  }

  .pricing-section {
    margin-top: 44px;
    padding-top: 44px;
  }

  .pricing-subtitle {
    margin: -4px 0 20px;
    font-size: 0.95rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card {
    padding: 20px 18px;
  }

  .pricing-title {
    font-size: 1.28rem;
  }

  .pricing-price {
    font-size: 1.4rem;
  }

  .pricing-description,
  .pricing-list li,
  .pricing-footnote p {
    font-size: 0.95rem;
  }

  .pricing-footnote {
    margin-top: 24px;
    padding: 18px 16px;
  }

  .pricing-cta {
    margin-top: 18px;
    font-size: 1rem;
  }
}

/* ── Footer ── */

.site-footer {
  margin-top: 72px;
  padding: 28px 0;
  text-align: center;
  border-top: 1px solid rgba(93, 109, 121, 0.15);
}

.site-footer p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-footer-legal {
  margin-top: 10px !important;
  font-size: 0.82rem !important;
  opacity: 0.7;
}

.site-footer a {
  color: #5d6d79;
  font-weight: 500;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .page-shell {
    padding: 28px 28px 52px;
  }

  .about-inner {
    grid-template-columns: 320px 1fr;
    gap: 36px;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-photo {
    width: min(340px, 70vw);
    margin: 0 auto;
  }

  .about-copy {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .about-copy p {
    font-size: 14px;
    line-height: 1.62;
    margin-bottom: 10px;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 56px;
  }

  .page-shell {
    padding: 0 14px 36px;
  }

  .navbar-inner {
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 7px 10px;
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }

  .brand-logo {
    height: 30px;
    max-height: 30px;
  }

  .site-nav {
    margin-left: 0;
    position: absolute;
    top: 7px;
    right: 10px;
    z-index: 10001;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #1a2b3c;
    position: fixed;
    top: 7px;
    right: clamp(6px, calc(100vw - 384px), 90px);
    z-index: 10002;
    pointer-events: auto;
  }

  .menu-toggle .menu-text {
    display: none;
  }

  .menu-dots {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
    color: #5d6d79;
    font-weight: 400;
    opacity: 0.85;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #1a2b3c;
  }

  .menu-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 20px;
    left: auto;
    width: 170px;
    min-width: 0;
    max-width: 90vw;
    border-radius: 10px;
    background: rgba(248, 244, 237, 0.68);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    box-shadow: none;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10003;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(0.4,0,0.2,1), transform 0.22s cubic-bezier(0.4,0,0.2,1), visibility 0.22s cubic-bezier(0.4,0,0.2,1);
  }

  .menu-dropdown a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    color: #4a6175;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    line-height: 1.2;
    text-align: right;
    transition: color 0.18s cubic-bezier(0.4,0,0.2,1), background 0.18s cubic-bezier(0.4,0,0.2,1);
  }

  .site-nav.is-open .menu-dropdown,
  .menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-media {
    order: 1;
    border-radius: 0;
  }

  .hero-image {
    height: 240px;
    min-height: 220px;
    max-height: 260px;
    object-position: center 8%;
    border-radius: 0;
    opacity: 0.9;
  }

  .hero-panel {
    order: 2;
    padding: 0 18px 8px;
    margin: 0 auto;
    width: min(100%, 300px);
    max-width: 300px;
  }

  .hero-copy {
    gap: 14px;
    width: 100%;
    min-width: 0;
  }

  .hero h1 {
    margin-bottom: 0;
    font-size: clamp(1.22rem, 5.2vw, 1.48rem);
    line-height: 1.14;
    max-width: 480px;
    overflow-wrap: normal;
  }

  .hero p {
    margin: 0;
    max-width: 100%;
    font-size: 0.86rem;
    line-height: 1.55;
    overflow-wrap: normal;
  }

  .hero-copy .button-primary {
    margin-top: 4px;
    width: auto;
    min-width: 244px;
    padding: 10px 22px;
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 20px;
  }

  .services-section {
    margin-top: 34px;
  }

  .section-title {
    margin-bottom: 24px;
    font-size: 1.75rem;
  }

  .accordion-header {
    padding: 16px 20px;
    font-size: 1rem;
    gap: 12px;
  }

  .accordion-icon-left {
    font-size: 1.2rem;
    width: 28px;
  }

  .accordion-icon-right {
    font-size: 1.2rem;
    width: 28px;
  }

  .accordion-intro {
    font-size: 0.95rem;
  }

  .accordion-content ul li {
    font-size: 0.95rem;
  }

  .services-tagline {
    max-width: 286px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
  }

  .how-step {
    padding: 20px 16px;
  }

  .modal-overlay {
    padding: 16px;
  }

  .modal-overlay .consultation-card {
    padding: 28px 24px 32px;
    border-radius: 22px;
  }

  .about-copy p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-copy {
    display: contents;
  }

  .about-photo {
    order: 2;
    margin: 16px auto;
    max-width: 60%;
  }

  .about-photo::after {
    background:
      radial-gradient(
        138% 138% at 50% 50%,
        rgba(245, 239, 232, 0.22) 0%,
        rgba(245, 239, 232, 0.22) 40%,
        rgba(245, 239, 232, 0.42) 60%,
        rgba(245, 239, 232, 0.74) 80%,
        rgba(245, 239, 232, 0.96) 100%
      );
  }

  .about-text {
    order: 3;
    padding: 0;
  }

  .about-photo img {
    max-width: none;
    margin: 0;
    display: block;
  }
}

@media (max-width: 420px) {
  body {
    padding-top: 52px;
  }

  .page-shell {
    padding: 0 10px 28px;
  }

  .site-header {
    margin: 10px 0 12px;
  }

  .menu-dropdown {
    right: 20px;
    left: auto;
    top: calc(100% + 4px);
    width: 170px;
    min-width: 0;
    max-width: 70vw;
    padding: 10px 14px;
    gap: 4px;
    border-radius: 10px;
    background: rgba(248, 244, 237, 0.68);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    box-shadow: none;
  }

  .menu-dropdown a {
    padding: 5px 0;
    font-size: 14px;
    font-weight: 400;
    color: #4a6175;
    line-height: 1.2;
    text-align: right;
  }

  .hero-media::after {
    background:
      linear-gradient(
        180deg,
        rgba(248, 244, 237, 0.98) 0%,
        rgba(248, 244, 237, 0.9) 9%,
        rgba(248, 244, 237, 0.72) 18%,
        rgba(248, 244, 237, 0.46) 30%,
        rgba(248, 244, 237, 0.2) 42%,
        rgba(248, 244, 237, 0) 56%
      );
  }

  .about-photo::after {
    background:
      radial-gradient(
        142% 142% at 50% 50%,
        rgba(245, 239, 232, 0.28) 0%,
        rgba(245, 239, 232, 0.28) 38%,
        rgba(245, 239, 232, 0.48) 58%,
        rgba(245, 239, 232, 0.78) 79%,
        rgba(245, 239, 232, 0.98) 100%
      );
  }

  .hero-inner {
    gap: 16px;
  }

  .hero-image {
    height: 218px;
    min-height: 200px;
    max-height: 230px;
    object-position: center 8%;
  }

  .hero-panel {
    padding: 0 16px 4px;
    width: min(100%, 240px);
    max-width: 240px;
  }

  .hero-copy {
    gap: 12px;
    min-width: 0;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.08rem, 5vw, 1.22rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero p {
    font-size: 0.82rem;
    line-height: 1.55;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero-copy .button-primary {
    margin-top: 2px;
    width: auto;
    min-width: 240px;
    padding: 10px 22px;
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
  }

  .about-copy p {
    font-size: 13px;
    line-height: 1.5;
  }

  .button-primary {
    width: 100%;
    min-height: 46px;
    padding: 8px 22px;
  }

  .accordion-header {
    padding: 14px 16px;
    font-size: 0.95rem;
    gap: 10px;
  }

  .accordion-icon-left {
    font-size: 1.1rem;
    width: 26px;
  }

  .accordion-icon-right {
    font-size: 1.1rem;
    width: 26px;
  }

  .how-step {
    padding: 16px 10px;
  }

  .how-number {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .modal-overlay {
    padding: 10px;
  }

  .modal-overlay .consultation-card {
    padding: 24px 18px 28px;
    border-radius: 18px;
  }
}

/* ── Consultation Modal ── */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(45, 40, 35, 0.45);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-overlay.is-visible {
  display: flex;
  opacity: 1;
}

.modal-overlay .consultation-card {
  position: relative;
  width: min(440px, 88vw);
  max-height: none;
  overflow-y: visible;
  background: #f5efe8;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(90, 79, 71, 0.15);
  padding: 18px 20px;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.modal-overlay.is-visible .consultation-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 20001;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #2d2823;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.consultation-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  color: #2d2823;
}

.consultation-card > p {
  margin: 6px 0 20px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2d2823;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  padding: 7px 12px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: #2d2823;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #b8a99a;
}

.form-group textarea {
  resize: vertical;
  min-height: 60px;
}

.consultation-form .button-primary {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  margin-top: 2px;
  padding: 8px 18px;
  min-height: 36px;
  border-radius: 14px;
  font-size: 0.96rem;
}

.consultation-form .form-group:last-of-type {
  margin-bottom: 4px;
}

/* Form submission message (success / error feedback) */
.form-message {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  min-height: 0;
}

.form-message:empty {
  display: none;
}

.form-message--success {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(180, 200, 180, 0.28);
  color: #4a6b52;
  border: 1px solid rgba(120, 150, 120, 0.25);
}

.form-message--error {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(200, 160, 150, 0.28);
  color: #8a4a3e;
  border: 1px solid rgba(170, 120, 110, 0.25);
}

@media (max-width: 420px) {
  .modal-overlay {
    padding: 18px;
  }

  .modal-overlay .consultation-card {
    width: min(440px, 88vw);
    max-height: none;
    padding: 18px 20px;
    border-radius: 24px;
  }

  .modal-close {
    top: 12px;
    right: 14px;
  }

  .consultation-form {
    gap: 6px;
  }

  .form-group {
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 15px;
    padding: 7px 12px;
    min-height: 40px;
  }

  .form-group textarea {
    min-height: 60px;
  }

  .consultation-form .button-primary {
    width: 100%;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 14px;
  }
}

@media (min-width: 421px) and (max-width: 768px) {
  .modal-overlay {
    padding: 20px;
  }

  .modal-overlay .consultation-card {
    width: min(440px, 88vw);
    max-height: none;
    padding: 18px 20px;
    border-radius: 24px;
  }

  .modal-close {
    top: 14px;
    right: 14px;
  }

  .consultation-form {
    gap: 6px;
  }

  .form-group {
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 15px;
    padding: 7px 12px;
    min-height: 40px;
  }

  .form-group textarea {
    min-height: 60px;
  }

  .consultation-form .button-primary {
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .how-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .how-section .section-title {
    margin-bottom: 18px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .how-step {
    min-height: 0;
    height: auto;
    padding: 0 12px;
    margin-bottom: 18px;
  }

  .how-step:last-child {
    margin-bottom: 0;
  }

  .how-number {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 3rem;
  }

  .how-step h3 {
    margin-bottom: 10px;
    line-height: 1.1;
  }

  .how-step p {
    margin-top: 0;
    line-height: 1.45;
    margin-bottom: 0;
  }

  .about-photo {
    max-width: 70%;
  }

  .about-photo img {
    max-width: none;
    margin: 0;
    display: block;
  }
}
