:root {
  --bg: #fff8f8;
  --surface: #ffffff;
  --surface-soft: #f6eeee;
  --surface-cool: #edf8fb;
  --text: #171112;
  --muted: #6d6264;
  --line: rgba(23, 17, 18, 0.12);
  --pink: #ed4f96;
  --pink-dark: #b51f66;
  --blue: #56b9d1;
  --green: #9aaa54;
  --graphite: #252022;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 20px 55px rgba(23, 17, 18, 0.12);
  --max: 1180px;
  --space: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.is-menu-open,
body.is-modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(86, 185, 209, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--graphite);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 12px auto 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-weight: 800;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.92rem;
  padding: 10px 12px;
}

.site-nav a:hover {
  background: var(--surface-soft);
  color: var(--text);
}

.header-cta,
.button,
.mobile-booking-bar a,
.mobile-booking-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta,
.button-primary {
  background: var(--text);
  color: #fff;
}

.header-cta {
  min-width: 132px;
  padding: 10px 18px;
}

.button {
  padding: 12px 18px;
}

.button:hover,
.header-cta:hover,
.mobile-booking-bar a:hover,
.mobile-booking-bar button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button-secondary {
  background: #fff;
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 64px) 0 var(--space);
}

.hero > * {
  min-width: 0;
}

.hero-content {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  overflow-wrap: anywhere;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 700px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.hero-stats li {
  min-height: 92px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.4rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-media {
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface-soft);
}

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

.hero-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(14px);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.75rem;
}

.trust-strip,
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-strip div {
  min-height: 132px;
  padding: 22px;
  background: #fff;
}

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

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(72px, 9vw, 132px) 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 24px;
  max-width: none;
  align-items: end;
}

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

.service-card,
.info-grid article,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card {
  display: grid;
  gap: 18px;
  min-height: 310px;
  padding: 24px;
}

.service-card-accent {
  background: var(--graphite);
  color: #fff;
}

.service-card-accent p,
.service-card-accent dt {
  color: rgba(255, 255, 255, 0.72);
}

.service-card-kicker {
  width: fit-content;
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  color: var(--pink-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card-accent .service-card-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.service-card p {
  color: var(--muted);
}

.service-card dl {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
}

.service-card dl div,
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.service-card dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.service-card dd {
  margin: 0;
  font-weight: 800;
}

.service-card a,
.service-card .booking-link {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 900;
  color: var(--pink-dark);
  cursor: pointer;
}

.service-card-accent a,
.service-card-accent .booking-link {
  color: #fff;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.filter-button.is-active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.portfolio-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
  transition: opacity 180ms ease, transform 180ms ease;
}

.portfolio-card.is-hidden {
  display: none;
}

.portfolio-card.is-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 734px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent);
  pointer-events: none;
}

.portfolio-card div {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
}

.portfolio-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  background: var(--surface-cool);
  border-radius: var(--radius);
}

.portfolio-cta p {
  margin: 0;
  color: var(--muted);
}

.price-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.price-row {
  grid-template-columns: minmax(0, 1fr) auto 92px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row p,
.price-row h3 {
  margin-bottom: 0;
}

.price-row p,
.price-row small {
  color: var(--muted);
}

.price-row span {
  font-weight: 900;
}

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

.info-grid article,
.review-card {
  min-height: 220px;
  padding: 24px;
}

.info-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--pink-dark);
  font-weight: 900;
}

.info-grid p,
.review-card p,
.review-card span {
  color: var(--muted);
}

.review-card p {
  font-size: 1.02rem;
}

.review-card span {
  display: block;
  margin-top: 20px;
  font-size: 0.88rem;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  background: var(--graphite);
  color: #fff;
  border-radius: var(--radius);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel .eyebrow {
  color: #f6a7c7;
}

address {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.contact-actions .button-secondary {
  color: var(--text);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 96px;
  color: var(--muted);
}

.mobile-booking-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(23, 17, 18, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-booking-bar a,
.mobile-booking-bar button {
  min-height: 42px;
  padding: 8px 12px;
  background: var(--text);
  color: #fff;
  font-size: 0.9rem;
}

.mobile-booking-bar a:not(:first-child),
.mobile-booking-bar button:not(:first-child) {
  background: var(--surface-soft);
  color: var(--text);
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 17, 18, 0.46);
  backdrop-filter: blur(8px);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(760px, calc(100svh - 36px));
  overflow-y: auto;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-dialog h2 {
  font-size: clamp(2rem, 6vw, 3rem);
}

.modal-copy {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--text);
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.booking-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}

.booking-form textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.form-status.is-success {
  color: #237b46;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 86px 16px auto;
    display: none;
    grid-column: 1 / -1;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .header-cta {
    justify-self: end;
  }

  .hero,
  .section-heading-row,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 560px;
    order: -1;
  }

  .trust-strip,
  .service-grid,
  .info-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    width: calc(100% - 20px);
    min-height: 66px;
    margin-top: 10px;
    padding: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-subtitle {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .trust-strip,
  .section,
  .site-footer {
    width: calc(100% - 20px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.6vw, 2.35rem);
    line-height: 1.08;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-note {
    display: none;
  }

  .service-card {
    min-height: auto;
  }

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

  .portfolio-card,
  .portfolio-card.is-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 470px;
  }

  .portfolio-cta,
  .site-footer {
    display: grid;
  }

  .price-row,
  .service-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-row small {
    justify-self: start;
  }

  .mobile-booking-bar {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
