:root {
  --ink: #16324a;
  --ink-soft: #35556e;
  --muted: #687c8c;
  --pink: #c35c7b;
  --pink-dark: #a84564;
  --blue: #4a83ad;
  --paper: #fbf7f8;
  --paper-strong: #f6f2f4;
  --white: #fff;
  --line: #e7dde1;
  --line-strong: #d7cbd1;
  --shadow: 0 22px 60px rgba(22, 50, 74, .09);
  --shadow-soft: 0 12px 30px rgba(22, 50, 74, .08);
  --shadow-medium: 0 18px 50px rgba(22, 50, 74, .12);
  --radius: 22px;
  --radius-small: 12px;
  --container: 1180px;
  --font-h1: clamp(42px, 4.8vw, 64px);
  --font-h2: clamp(32px, 3.4vw, 46px);
  --font-h3: clamp(21px, 2vw, 26px);
  --font-body: 16px;
  --font-lead: clamp(17px, 1.25vw, 19px);
  --font-small: 14px;
  --font-label: 13px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Figtree, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: var(--font-h1);
  font-weight: 800;
}

h2 {
  font-size: var(--font-h2);
  font-weight: 700;
}

h3 {
  font-size: var(--font-h3);
  font-weight: 700;
}

ul {
  margin: 0;
  padding: 0;
}

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

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 999;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(231, 221, 225, .9);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  transition: box-shadow .22s ease, background .22s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 30px rgba(22, 50, 74, .08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 96px;
  transition: min-height .22s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 74px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: clamp(82px, 7vw, 108px);
  height: clamp(82px, 7vw, 108px);
  object-fit: contain;
  transition: width .22s ease, height .22s ease;
}

.site-header.is-scrolled .brand img {
  width: clamp(66px, 5.5vw, 82px);
  height: clamp(66px, 5.5vw, 82px);
}

.brand strong,
.footer-brand strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand em,
.footer-brand em {
  display: block;
  color: var(--pink);
  font-size: .86rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 700;
}

.site-nav a {
  padding-block: 8px;
}

.site-nav a:hover {
  color: var(--pink);
}

.header-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-weight: 800;
  line-height: 1.1;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(195, 92, 123, .18);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(22, 50, 74, .18);
}

.button-ghost {
  background: var(--white);
  border-color: var(--line-strong);
  color: var(--ink);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .76);
}

.button-small {
  min-height: 44px;
  padding: 12px 16px;
  font-size: .92rem;
}

.eyebrow {
  color: var(--pink);
  font-size: var(--font-label);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(54px, 8vw, 96px);
}

.section-tight {
  padding-block: clamp(36px, 6vw, 70px);
}

.section-header {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 30px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header p,
.lead {
  color: var(--ink-soft);
  font-size: var(--font-lead);
  line-height: 1.65;
}

.hero {
  padding-block: clamp(42px, 8vw, 86px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .58), rgba(246, 242, 244, .96)),
    var(--paper-strong);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.hero-copy .lead {
  max-width: 720px;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
  padding: 13px 14px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 800;
}

.hero-pricing {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(18px, 3vw, 26px);
  box-shadow: var(--shadow);
}

.hero-pricing-head {
  display: grid;
  gap: 7px;
  padding-bottom: 8px;
}

.hero-pricing-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.price-mini-list {
  display: grid;
  gap: 10px;
}

.price-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffafb;
  padding: 14px;
}

.price-mini.featured {
  border-color: rgba(195, 92, 123, .38);
  background: #fff4f7;
}

.price-mini strong {
  font-size: 1.55rem;
  line-height: 1;
}

.price-mini span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

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

.card,
.service-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(22px, 2.5vw, 30px);
  box-shadow: var(--shadow-soft);
}

.service-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  min-height: 100%;
}

.service-card .eyebrow,
.service-pill {
  width: fit-content;
  border: 1px solid rgba(74, 131, 173, .24);
  border-radius: 999px;
  background: #f7fbfe;
  color: var(--blue);
  padding: 7px 11px;
  font-size: var(--font-label);
  font-weight: 800;
  letter-spacing: .08em;
}

.service-card .button {
  align-self: end;
  width: 100%;
  min-height: 52px;
}

.service-card p,
.info-card p,
.card p {
  color: var(--ink-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-grid-compact .price-card {
  padding: 18px;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-rows: 28px 20px 38px 84px auto 1fr auto;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(22px, 2.5vw, 30px);
  box-shadow: var(--shadow-medium);
}

.price-card.featured {
  border-color: rgba(195, 92, 123, .42);
  background: #fff8fb;
}

.price-badge {
  width: fit-content;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 800;
}

.price-badge.is-empty {
  visibility: hidden;
}

.price-label {
  color: var(--blue);
  font-size: var(--font-label);
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
  border-block: 1px solid var(--line);
  min-height: 84px;
  padding-block: 14px;
}

.price-row strong {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-row span {
  color: var(--muted);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 9px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.best-for {
  color: var(--ink-soft);
  font-size: .95rem;
}

.booking-fee-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: 16px;
  border: 1px solid rgba(22, 50, 74, .12);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 16px 18px;
}

.booking-fee-note span {
  color: rgba(255, 255, 255, .84);
}

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

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.gallery-grid {
  display: grid;
  gap: 8px;
}

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

.gallery-grid-portrait,
.gallery-grid-black-white {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  overflow: hidden;
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  background: var(--line);
  padding: 0;
  cursor: zoom-in;
}

.gallery-grid-landscape .gallery-item {
  aspect-ratio: 3 / 2;
}

.gallery-grid-portrait .gallery-item,
.gallery-grid-black-white .gallery-item {
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  background: rgba(8, 16, 24, .88);
  padding: 24px;
}

.lightbox[aria-hidden="false"] {
  display: grid;
}

.lightbox img {
  max-height: min(84vh, 980px);
  width: auto;
  max-width: min(92vw, 1280px);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .36);
}

.lightbox p {
  max-width: min(92vw, 900px);
  margin-top: 12px;
  color: rgba(255, 255, 255, .88);
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.process-list {
  display: grid;
  gap: 12px;
  counter-reset: process;
}

.process-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px;
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.process-step p {
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px 18px;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 12px;
  color: var(--ink-soft);
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-top: 20px;
  color: var(--muted);
  font-size: .9rem;
}

.breadcrumbs a {
  color: var(--ink-soft);
}

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

.page-hero {
  padding-block: clamp(48px, 7vw, 86px);
  background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(246,242,244,.96));
}

.page-hero-inner {
  display: grid;
  gap: 20px;
  max-width: 900px;
}

.footer-cta {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(42px, 7vw, 76px);
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.footer-cta h2 {
  max-width: 800px;
}

.footer-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .78);
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 30px;
  padding-block: 42px;
}

.footer-grid p {
  max-width: 360px;
  margin-top: 14px;
  color: var(--ink-soft);
}

.footer-grid h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-grid a:not(.footer-brand) {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-grid a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 18px;
  color: var(--muted);
  font-size: .9rem;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 16px;
}

.plain-content {
  max-width: 860px;
}

.plain-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.plain-content h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.plain-content p,
.plain-content li {
  color: var(--ink-soft);
}

.plain-content ul {
  display: grid;
  gap: 8px;
  margin-block: 12px;
  padding-left: 22px;
}

.callout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.callout .button {
  width: 100%;
}

.callout.pink {
  background: #fff8fb;
  border-color: rgba(195, 92, 123, .28);
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    padding: 8px 16px 18px;
  }

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

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .two-column,
  .footer-cta-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .pricing-grid,
  .services-grid,
  .card-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand img {
    width: clamp(76px, 24vw, 92px);
    height: clamp(76px, 24vw, 92px);
  }

  .brand strong {
    font-size: .95rem;
  }

  .hero-image img {
    min-height: 280px;
  }

  .trust-strip,
  .pricing-grid,
  .services-grid,
  .card-grid,
  .footer-grid,
  .gallery-grid-landscape,
  .gallery-grid-portrait,
  .gallery-grid-black-white {
    grid-template-columns: 1fr;
  }

  .gallery-grid-landscape .gallery-item {
    aspect-ratio: 3 / 2;
  }

  .gallery-grid-portrait .gallery-item,
  .gallery-grid-black-white .gallery-item {
    aspect-ratio: 4 / 5;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom span:last-child {
    flex-wrap: wrap;
  }

  .cta-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .gallery-actions {
    flex-direction: column;
  }
}
