:root {
  --blue: #29acdf;
  --blue-dark: #1c8cba;
  --blue-light: #e3f4fc;
  --blue-deep: #147c9f;
  --sky: #a9c8ef;
  --ink: #17171c;
  --ink-soft: #21212a;
  --muted: #6a6a71;
  --soft: #e4e7ee;
  --warm: #ffffff;
  --line: rgba(23, 23, 28, 0.1);
  --radius: 8px;
  --wrap: 1280px;
  --header-h: 118px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background-color: var(--warm);
  overflow-x: clip;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

section[id] {
  scroll-margin-top: 118px;
}

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

img:not([src*="logo"]) {
  background-color: var(--soft);
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

h2, h3, h4, h5, h6 {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.1;
}

h3, h4, h5, h6 { font-weight: 700; }

h1, .hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: 3.25rem;
  line-height: 1.06;
}

h2 {
  font-size: 2.1rem;
  line-height: 1.1;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.18;
}

p {
  margin: 0;
  line-height: 1.65;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section--warm { background: var(--warm); }
.section--soft { background: var(--soft); }
.section--dark { background: var(--ink); }
.section--dark .section__head .eyebrow { color: rgba(255, 255, 255, 0.5); }
.section--dark .section__head h2 { color: #fff; }
.section--dark .section__head p { color: rgba(255, 255, 255, 0.72); }
.section--dark .svc-card { border-color: rgba(255, 255, 255, 0.06); box-shadow: 0 24px 48px -26px rgba(0, 0, 0, 0.6); }
.section--dark .svc-card:hover { box-shadow: 0 34px 62px -26px rgba(0, 0, 0, 0.7); }
.section--dark .faq__intro .eyebrow { color: rgba(255, 255, 255, 0.5); }
.section--dark .faq__intro h2 { color: #fff; }
.section--dark .faq__intro > p { color: rgba(255, 255, 255, 0.72); }
.section--dark .faq__list { border-top-color: rgba(255, 255, 255, 0.15); }
.section--dark .faq__item { border-bottom-color: rgba(255, 255, 255, 0.15); }
.section--dark .faq__item summary { color: #fff; }
.section--dark .faq__item summary:hover { color: var(--blue); }
.section--dark .faq__answer p { color: rgba(255, 255, 255, 0.66); }

.section__head {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section__head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.125rem;
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #85868c;
  margin-bottom: 0.85rem;
}

.eyebrow--light { color: rgba(255, 255, 255, 0.62); }
.eyebrow--warm { color: rgba(255, 255, 255, 0.55); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px -18px rgba(23, 23, 28, 0.72);
}
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn--dark-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 23, 28, 0.2);
}
.btn--dark-outline:hover { border-color: rgba(23, 23, 28, 0.42); }

.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover { background: var(--soft); }

.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--glass:hover { background: rgba(255, 255, 255, 0.2); }

.btn--line-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--line-light:hover { background: rgba(255, 255, 255, 0.1); }

.btn:active { transform: scale(0.985); }

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.875rem;
}

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  gap: 1rem;
}

.topbar__group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar a { display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.15s ease; }
.topbar a:hover { color: var(--blue-light); }
.topbar__row i { color: var(--blue-light); }
.topbar__muted { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255, 255, 255, 0.75); }
.topbar strong { font-weight: 600; }

#nav-bar {
  background: rgba(253, 253, 253, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(23, 23, 28, 0.08);
  transition: box-shadow 0.3s ease;
}

#nav-bar.nav-scrolled {
  box-shadow: 0 18px 42px -24px rgba(23, 23, 28, 0.48);
}

.nav {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

.brand-logo--light {
  height: 44px;
  filter: brightness(0) invert(1);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--blue-deep); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.nav__dd {
  position: relative;
  display: flex;
  align-items: center;
  height: 72px;
}
.nav__dd-caret {
  font-size: 0.58rem;
  margin-left: 0.42rem;
  color: #9a9aa2;
  transition: transform 0.25s ease, color 0.25s ease;
}
.nav__dd:hover .nav__dd-caret,
.nav__dd:focus-within .nav__dd-caret {
  transform: rotate(180deg);
  color: var(--blue-deep);
}
.nav__dd-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 15.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(23, 23, 28, 0.06), 0 26px 52px -22px rgba(23, 23, 28, 0.38);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 60;
}
.nav__dd:hover .nav__dd-menu,
.nav__dd:focus-within .nav__dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav__dd-menu a {
  display: block;
  padding: 0.62rem 0.9rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav__dd-menu a:hover {
  background: var(--blue-light);
  color: var(--blue-deep);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__cta { padding: 0.85rem 1.5rem; }

#mobile-menu-button {
  display: none;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
}
#mobile-menu-button svg { height: 1.25rem; width: 1.25rem; }

#mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--warm);
  max-height: 74vh;
  overflow-y: auto;
}
#mobile-menu.is-open { display: block; }

.mobile-menu__inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mobile-menu__link {
  display: block;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--ink);
  font-weight: 500;
  transition: background-color 0.15s ease;
}
.mobile-menu__link:hover { background: var(--blue-light); }

.mobile-menu__cta {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.mobile-menu__cta .btn { width: 100%; }

.mobile-menu__acc summary.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}
.mobile-menu__acc summary::-webkit-details-marker { display: none; }
.mobile-menu__acc summary i {
  font-size: 0.68rem;
  color: #9a9aa2;
  transition: transform 0.25s ease;
}
.mobile-menu__acc[open] summary i { transform: rotate(180deg); }
.mobile-menu__acc[open] summary.mobile-menu__link { color: var(--blue-deep); }
.mobile-menu__sub {
  padding-left: 0.9rem;
  border-left: 2px solid var(--blue-light);
  margin-left: 1rem;
  margin-bottom: 0.35rem;
}
.mobile-menu__sub .mobile-menu__link {
  font-size: 0.95rem;
  padding: 0.58rem 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(94deg, rgba(19, 19, 24, 0.95) 0%, rgba(21, 21, 27, 0.86) 35%, rgba(23, 23, 29, 0.62) 68%, rgba(25, 25, 31, 0.42) 100%),
    linear-gradient(180deg, rgba(23, 23, 28, 0.1) 0%, rgba(23, 23, 28, 0.72) 100%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 9.5rem;
  padding-bottom: 4.5rem;
}

.hero__content { max-width: 34rem; }

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.04;
  max-width: 12.5ch;
  margin-top: 0.4rem;
}

.hero__lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 30rem;
  line-height: 1.6;
}

.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quote-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.62);
  padding: 1.5rem;
  max-width: 28rem;
  width: 100%;
  margin-left: auto;
}

.quote-card__title { font-size: 1.4rem; }
.quote-card__sub { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; margin-bottom: 1rem; }

.toggle {
  display: flex;
  background: var(--soft);
  border-radius: 999px;
  padding: 0.25rem;
  margin-bottom: 1rem;
}

.customer-type-btn,
.hero-customer-type-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--muted);
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.customer-type-btn.active,
.hero-customer-type-btn.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(29, 140, 186, 0.32);
}
.customer-type-btn:hover:not(.active),
.hero-customer-type-btn:hover:not(.active) { color: var(--blue); }

.field-stack > * + * { margin-top: 0.65rem; }

.form-row {
  display: grid;
  gap: 0.65rem;
}
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-row--3 { grid-template-columns: 2fr 1fr; }

.form-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #d7d5cf;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.form-input--white { background: #fff; }
.quote-card .form-input { background: #fff; }
.form-input:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41, 172, 223, 0.20);
}
textarea.form-input { resize: none; }
input::placeholder, textarea::placeholder { color: #9a9a96; }

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.btn--block { width: 100%; }

.hero__proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 2rem;
  padding-top: 1.75rem;
  padding-bottom: 3rem;
}
.hero__proof-item { padding: 0.25rem 1.5rem; border-left: 1px solid rgba(255, 255, 255, 0.12); }
.hero__proof-item:first-child { border-left: none; padding-left: 0; }
.hero__proof-item strong { display: block; color: #fff; font-family: 'Archivo', 'Inter', sans-serif; font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em; margin-bottom: 0.2rem; }
.hero__proof-item span { display: block; color: rgba(255, 255, 255, 0.6); font-size: 0.8rem; line-height: 1.35; }

.results {
  background: radial-gradient(circle at top left, rgba(41, 172, 223, 0.06), transparent 36rem), var(--warm);
}

.results__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.results__intro h2 { margin-bottom: 1.25rem; }
.results__intro > p { color: var(--muted); font-size: 1.125rem; line-height: 1.6; margin-bottom: 1.5rem; }

.result-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.result-note {
  background: #fff;
  border: 1px solid rgba(23, 23, 28, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 1px 2px rgba(23, 23, 28, 0.05), 0 12px 26px -16px rgba(23, 23, 28, 0.12);
}
.result-note h3 { font-size: 1.2rem; }
.result-note p { color: var(--muted); font-size: 0.875rem; margin-top: 0.25rem; }

.result-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-auto-rows: 15rem;
  gap: 1rem;
}

.result-tile {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 24px 54px -34px rgba(23, 23, 28, 0.62);
}
.result-tile--large { grid-row: span 2; }
.result-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.result-tile--large img { object-position: 34% center; }
.result-tile::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent 0%, rgba(23, 23, 28, 0.82) 100%);
}
.result-tile figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}
.result-tile:hover img { transform: scale(1.045); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border: 1px solid rgba(23, 23, 28, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(23, 23, 28, 0.05), 0 14px 28px -16px rgba(23, 23, 28, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 4px rgba(23, 23, 28, 0.06), 0 30px 50px -24px rgba(23, 23, 28, 0.22);
}

.svc-card__media {
  position: relative;
  height: 15rem;
  overflow: hidden;
}
.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-card:hover .svc-card__media img { transform: scale(1.06); }

.svc-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(23, 23, 28, 0.72);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.62rem;
  border-radius: 4px;
}
.svc-tag--alt { background: rgba(23, 23, 28, 0.72); }

.svc-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.5rem;
}
.svc-card__body h3 { font-size: 1.4rem; line-height: 1.15; margin-bottom: 0.4rem; }
.svc-card__body p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 0.85rem; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: gap 0.25s ease, color 0.25s ease;
}
.svc-card:hover .svc-link { gap: 0.85rem; color: var(--blue-dark); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__media { position: relative; }
.about__media img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 30px 60px -30px rgba(23, 23, 28, 0.5);
}

.about__badge {
  position: absolute;
  bottom: -1.25rem;
  right: -0.75rem;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -20px rgba(23, 23, 28, 0.55);
  padding: 1rem 1.5rem;
  text-align: center;
}
.about__badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; line-height: 1; font-feature-settings: "lnum" 1; }
.about__badge span { font-size: 0.75rem; color: rgba(255, 255, 255, 0.85); }

.about__intro h2 { margin-bottom: 1.25rem; }
.about__intro > p { color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.about__intro > p:last-of-type { margin-bottom: 1.5rem; }

.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.about-card {
  background: #fff;
  border: 1px solid rgba(23, 23, 28, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(23, 23, 28, 0.05), 0 12px 26px -16px rgba(23, 23, 28, 0.12);
}
.about-card h3 { font-size: 1.05rem; }
.about-card p { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }

#process {
  background: radial-gradient(ellipse 90% 55% at 50% -5%, rgba(41, 172, 223, 0.13), transparent 62%), #eef2f7;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.step {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(23, 23, 28, 0.07);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  box-shadow: 0 1px 2px rgba(23, 23, 28, 0.05), 0 16px 34px -20px rgba(23, 23, 28, 0.13);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(23, 23, 28, 0.06), 0 24px 46px -20px rgba(23, 23, 28, 0.2); }
.step h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.step p { color: var(--muted); line-height: 1.65; }

.heart {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.heart__bg { position: absolute; inset: 0; z-index: -1; }
.heart__bg img { width: 100%; height: 100%; object-fit: cover; }
.heart__bg::after { content: ''; position: absolute; inset: 0; background: rgba(23, 23, 28, 0.85); }

.heart__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.heart h2 { color: #fff; margin-bottom: 1.5rem; }
.heart__text p { color: rgba(255, 255, 255, 0.85); line-height: 1.65; margin-bottom: 1rem; }
.heart__text p:last-child { margin-bottom: 0; }

.heart__aside { justify-self: end; }
.heart-card {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
  padding: 2rem;
  max-width: 24rem;
}
.heart-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  font-feature-settings: "lnum" 1;
}
.heart-card p { color: rgba(255, 255, 255, 0.85); line-height: 1.6; margin-top: 1rem; margin-bottom: 1.5rem; }

.rut {
  background: #e6f5fc;
  border-top: 1px solid rgba(41, 172, 223, 0.18);
  border-bottom: 1px solid rgba(41, 172, 223, 0.18);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.rut__inner { max-width: 620px; margin: 0 auto; text-align: center; }
.rut__stat {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-feature-settings: "lnum" 1;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue-deep);
  margin: 0.35rem 0 0.85rem;
}
.rut h2 { margin-bottom: 1rem; }
.rut__inner > p { color: var(--muted); max-width: 46ch; margin: 0 auto; }
.rut__actions { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.75rem; }

.contact__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2rem;
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  background: #fff;
  border: 1px solid rgba(23, 23, 28, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(23, 23, 28, 0.05), 0 12px 26px -16px rgba(23, 23, 28, 0.12);
}
.info-card h3 { font-size: 1.2rem; margin-bottom: 0.15rem; }
.info-card a { color: var(--blue-deep); font-weight: 600; transition: color 0.15s ease; }
.info-card a:hover { color: var(--blue-dark); }
.info-card p { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }
.info-card .addr { color: var(--ink); font-weight: 500; margin-top: 0; }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px -18px rgba(23, 23, 28, 0.3);
  height: 14rem;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact__form-wrap {
  background: var(--soft);
  border-radius: 12px;
  padding: 1.75rem;
}
.contact__form-wrap .toggle { background: #fff; box-shadow: 0 2px 8px rgba(17,16,13,0.05); margin-bottom: 1.25rem; }
#contact-form > * + * { margin-top: 1rem; }
#contact-form .form-row { gap: 1rem; }

.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.faq__intro h2 { margin-bottom: 1.25rem; }
.faq__intro > p { color: var(--muted); line-height: 1.65; margin-bottom: 1.75rem; max-width: 34ch; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.15s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue-deep); }
.faq__chevron {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--blue);
  transition: transform 0.25s ease;
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__answer { padding: 0 0 1.4rem; }
.faq__answer p { color: var(--muted); line-height: 1.7; max-width: 54ch; }

.about-card, .result-note { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.about-card:hover, .result-note:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(23, 23, 28, 0.06), 0 20px 38px -18px rgba(23, 23, 28, 0.18); }

.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero__inner {
  position: relative;
  max-width: 42rem;
  padding-top: 11.5rem;
  padding-bottom: 5.5rem;
}
.page-hero h1 {
  color: #fff;
  max-width: 16ch;
  margin-top: 0.4rem;
}
.page-hero__lead {
  margin-top: 1.4rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  line-height: 1.6;
}
.page-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: start;
}
.intro__text h2 { margin-bottom: 1.25rem; }
.intro__text p { color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.intro__text p:last-of-type { margin-bottom: 1.5rem; }

.panel {
  background: #fff;
  border: 1px solid rgba(23, 23, 28, 0.08);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(23, 23, 28, 0.05), 0 20px 42px -24px rgba(23, 23, 28, 0.18);
}
.panel h3 { font-size: 1.3rem; margin-bottom: 1.15rem; }
.panel__note { font-size: 0.875rem; color: var(--muted); margin-top: 1.15rem; line-height: 1.55; }

.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.price-card {
  border: 1px solid rgba(23, 23, 28, 0.09);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  background: #fff;
}
.price-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-feature-settings: "lnum" 1;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--blue-deep);
  margin-bottom: 0.4rem;
}
.price-card span { display: block; font-size: 0.85rem; color: var(--muted); line-height: 1.45; }

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.42rem 0;
  line-height: 1.5;
  color: var(--ink);
}
.check-list li::before {
  content: "\2713";
  flex: 0 0 auto;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: inherit;
}
.check-list--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
}

.incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.incl-card {
  background: #fff;
  border: 1px solid rgba(23, 23, 28, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(23, 23, 28, 0.05), 0 14px 28px -16px rgba(23, 23, 28, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.incl-card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(23, 23, 28, 0.06), 0 22px 42px -20px rgba(23, 23, 28, 0.2); }
.incl-card h3 { font-size: 1.25rem; margin-bottom: 0.85rem; }
.incl-card .check-list li { font-size: 0.92rem; padding: 0.34rem 0; }

.incl-panel { max-width: 56rem; margin: 0 auto; }

.section--dark .incl-card {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px -26px rgba(0, 0, 0, 0.6);
}
.section--dark .incl-card:hover { box-shadow: 0 34px 62px -26px rgba(0, 0, 0, 0.7); }
.section--dark .panel {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.65);
}

@media (max-width: 1023px) {
  .intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .incl-grid { grid-template-columns: 1fr; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .incl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .page-hero__inner { padding-top: 10rem; padding-bottom: 4rem; }
  .check-list--cols { grid-template-columns: 1fr; }
  .panel { padding: 1.5rem; }
}
@media (max-width: 460px) {
  .price-cards { grid-template-columns: 1fr; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view { opacity: 1; transform: none; }

.site-footer { background: var(--ink); color: #fff; }

.footer-cta {
  background: var(--blue);
}
.footer-cta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.footer-cta h2 { color: #fff; font-size: 2rem; }
.footer-cta p { color: rgba(255, 255, 255, 0.72); margin-top: 0.5rem; }
.footer-cta__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.footer__brand p { color: rgba(255, 255, 255, 0.65); font-size: 0.875rem; line-height: 1.6; margin-top: 1rem; margin-bottom: 1.25rem; }
.footer__brand a.mail { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; transition: color 0.15s ease; }
.footer__brand a.mail:hover { color: #fff; }
.footer__brand a.mail i { color: var(--blue-light); }

.footer-col h3 { font-size: 1.15rem; margin-bottom: 1rem; color: #fff; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--blue-light); }
.footer-col i { color: var(--blue-light); width: 1rem; }
.footer-col .addr { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255, 255, 255, 0.65); font-size: 0.875rem; margin-bottom: 0.65rem; }
.footer-col .addr i { margin-top: 0.25rem; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); }
.footer__badges { display: flex; align-items: center; gap: 1.25rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); }
.footer__badges span { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer__badges i { color: rgba(217, 236, 255, 0.7); }

#scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(23, 23, 28, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
}
#scroll-to-top.is-visible { opacity: 1; visibility: visible; }
#scroll-to-top:hover { background: var(--blue-dark); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: var(--radius);
}
::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--soft); }
::-webkit-scrollbar-thumb { background: #c7c6c0; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

#contact-form, #quick-contact-form { max-width: 100%; overflow: hidden; }

#contact-form .g-recaptcha,
#quick-contact-form .g-recaptcha {
  transform-origin: left center;
  max-width: 100%;
}

@media (max-width: 400px) {
  #contact-form .g-recaptcha,
  #quick-contact-form .g-recaptcha {
    transform: scale(0.85);
  }
}

@media (max-width: 340px) {
  #contact-form .g-recaptcha,
  #quick-contact-form .g-recaptcha {
    transform: scale(0.75);
  }
}

@media (min-width: 640px) {
  .wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
  h1 { font-size: 4rem; }
  h2 { font-size: 2.5rem; }
  .hero-title { font-size: 4.4rem; }
}

@media (min-width: 1024px) {
  .wrap { padding-left: 2rem; padding-right: 2rem; }
  .section { padding-top: 7rem; padding-bottom: 7rem; }
  h1 { font-size: 4.85rem; }
  h2 { font-size: 2.82rem; }
  .hero-title { font-size: 5.6rem; }
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    min-height: max(66vh, 560px);
    padding-top: 9rem;
    padding-bottom: 1.5rem;
  }
  .heart { padding-top: 8rem; padding-bottom: 8rem; }
  .rut { padding-top: 5rem; padding-bottom: 5rem; }
  .rut__stat { font-size: 6rem; }
  .footer-cta h2 { font-size: 2.4rem; }
}

@media (max-width: 1023px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  #mobile-menu-button { display: inline-flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .about__grid, .heart__grid, .results__grid, .contact__grid, .faq__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__intro { order: -1; }
  .heart__aside { justify-self: stretch; }
  .heart-card { max-width: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  footer { padding-bottom: 24px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__brand { grid-column: auto; }
}

@media (max-width: 900px) {
  .rut__row { flex-direction: column; align-items: flex-start; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .hero__inner { padding-top: 8.5rem; padding-bottom: 3.5rem; }
  .hero-title { font-size: 2.9rem; max-width: 15ch; }
  .svc-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .svc-card__media { height: 13rem; }
  .svc-card__body { padding: 1.25rem; }
  .about__cards { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .result-notes { grid-template-columns: 1fr; }
  .result-gallery { grid-template-columns: 1fr; grid-auto-rows: 14rem; }
  .result-tile--large { grid-row: span 1; }
  .footer-cta__row { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__badges { flex-wrap: wrap; }
  .about__media img { height: 20rem; }
  form input, form select, form textarea { font-size: 16px; }
  .brand-logo { height: 40px; }
  .rut__stat { font-size: 4rem; }
}

@media (min-width: 640px) and (max-width: 767px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .form-row--2, .form-row--3 { grid-template-columns: 1fr; }
}

.nav__brand,
.footer__brand > a { display: inline-flex; align-items: center; }

@media (max-width: 639px) { .topbar__hours { display: none; } }
@media (max-width: 767px) { .topbar__loc { display: none; } }
@media (min-width: 1024px) { #scroll-to-top { display: flex; } }

@media (max-width: 980px) {
  .hero__proof { grid-template-columns: 1fr 1fr; row-gap: 1.5rem; column-gap: 1.5rem; }
  .hero__proof-item { border-left: none; padding-left: 0; padding-right: 0.5rem; }
}

@media print {
  #site-header, #scroll-to-top { position: static; }
}
