:root {
  --ink: #262229;
  --muted: #6f6470;
  --paper: #fbf8f5;
  --surface: #ffffff;
  --blush: #bd6070;
  --blush-deep: #8e3f58;
  --teal: #158a97;
  --violet: #46318f;
  --line: rgba(38, 34, 41, 0.12);
  --shadow: 0 22px 70px rgba(70, 49, 143, 0.13);
  --radius: 8px;
  --shell: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(251, 248, 245, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid rgba(38, 34, 41, 0.08);
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  gap: 26px;
  color: #514a55;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--blush-deep);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action {
  padding: 0 20px;
  color: #fff;
  background: var(--ink);
  font-size: 0.9rem;
}

.button {
  padding: 0 24px;
  border: 1px solid transparent;
}

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

.button-primary {
  color: #fff;
  background: var(--blush-deep);
  box-shadow: 0 14px 32px rgba(142, 63, 88, 0.22);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(245, 195, 204, 0.42), transparent 34%),
    linear-gradient(90deg, #17131b 0%, #2c2430 44%, #d7a8b1 100%);
}

.hero-image-main,
.hero-image-accent {
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.hero-image-main {
  grid-column: 1;
  object-position: center top;
}

.hero-image-accent {
  grid-column: 2;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 13, 18, 0.94), rgba(16, 13, 18, 0.78) 36%, rgba(16, 13, 18, 0.26) 72%, rgba(16, 13, 18, 0.06)),
    linear-gradient(0deg, rgba(16, 13, 18, 0.48), rgba(16, 13, 18, 0.04) 48%);
}

.hero-content {
  display: grid;
  align-content: center;
  width: min(640px, calc(50vw - 56px));
  min-height: inherit;
  margin: 0 auto 0 max(24px, calc((100vw - 1240px) / 2));
  padding: clamp(52px, 7vh, 86px) 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blush);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5c3cc;
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  color: var(--blush);
  font-size: clamp(3.8rem, 4.6vw, 5.4rem);
  line-height: 0.92;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-lede {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  max-width: 560px;
  margin: 42px 0 0;
}

.hero-facts div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 4px;
  color: #fff;
  font-weight: 750;
}

.section-pad {
  padding: 92px 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.intro {
  padding-top: 56px;
  padding-bottom: 60px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.65rem;
  line-height: 1;
  letter-spacing: 0;
}

.intro p:last-child {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.section-heading.compact {
  max-width: 650px;
}

.services {
  background:
    linear-gradient(180deg, rgba(21, 138, 151, 0.08), transparent 36%),
    var(--paper);
}

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

.service-card {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(38, 34, 41, 0.06);
}

.service-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.gallery {
  background: #fff;
}

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

.gallery-item {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #ece4de;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:nth-child(1) img {
  object-position: 18% center;
}

.gallery-item:nth-child(2) img {
  object-position: center 24%;
}

.gallery-item:nth-child(4) img {
  object-position: center 38%;
}

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

.gallery-item figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(38, 34, 41, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.gallery-item figcaption strong {
  font-size: 0.98rem;
}

.gallery-item figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.process {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-list strong {
  color: var(--blush-deep);
  font-size: 1.05rem;
}

.process-list span {
  color: var(--muted);
}

.contact {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(38, 34, 41, 0.94), rgba(70, 49, 143, 0.78)),
    var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.contact .section-kicker,
.contact-copy h2,
.contact-copy p,
.map-address {
  color: #fff;
}

.contact-copy h2 {
  max-width: 700px;
}

.contact-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.contact-copy a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.map-panel {
  display: grid;
  gap: 16px;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.1);
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  pointer-events: none;
}

.map-open-link {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(38, 34, 41, 0.52);
  font-weight: 850;
  opacity: 0;
  transition: opacity 180ms ease;
}

.map-card:hover .map-open-link,
.map-open-link:focus-visible {
  opacity: 1;
}

.map-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.site-footer {
  background: #17131b;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}

.footer-links i {
  color: #f5c3cc;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  :root {
    --shell: min(calc(100% - 32px), 720px);
  }

  .site-header {
    min-height: 66px;
    gap: 14px;
  }

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

  .brand-copy small {
    display: none;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.86rem;
  }

  .header-action {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 6.4vw, 4rem);
  }

  .hero-content {
    width: min(520px, calc(50vw - 28px));
    margin-left: max(16px, calc((100vw - 760px) / 2));
    padding: 56px 0 66px;
  }

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

  .hero-image-main {
    object-position: center top;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .intro-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-pad {
    padding: 72px 0;
  }

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

  .service-card {
    min-height: 220px;
  }

  .gallery-item {
    min-height: 300px;
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(calc(100% - 28px), 520px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  .hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.8rem);
  }

  .hero-content {
    width: min(360px, calc(50vw - 14px));
    margin-left: 14px;
  }

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

  .hero-image-main {
    grid-column: 1;
    opacity: 0.72;
  }

  .hero-image-accent {
    grid-column: 2;
    opacity: 0.72;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 13, 18, 0.9), rgba(16, 13, 18, 0.58)),
      linear-gradient(0deg, rgba(16, 13, 18, 0.6), rgba(16, 13, 18, 0.04) 48%);
  }

  .hero-lede {
    max-width: min(100%, 340px);
  }

  .hero-actions {
    width: min(100%, 340px);
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .section-pad {
    padding: 58px 0;
  }

  .intro {
    padding-top: 42px;
  }

  .intro h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.2rem;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .gallery-item {
    min-height: 360px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
