:root {
  color-scheme: light;
  --ink: #2e252a;
  --muted: #6f6269;
  --rose: #bd6784;
  --rose-dark: #8f3f5f;
  --blush: #f2dce4;
  --cream: #fbf7f4;
  --paper: #ffffff;
  --line: #e9dce1;
  --shadow: 0 24px 70px rgba(77, 45, 59, 0.12);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--rose-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(233, 220, 225, 0.85);
  background: rgba(251, 247, 244, 0.92);
  backdrop-filter: blur(16px);
}

.nav-shell,
.content-shell,
.footer-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.25rem;
}

.wordmark {
  text-decoration: none;
}

.wordmark strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.wordmark span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.nav-links a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--blush);
  color: var(--rose-dark);
}

main {
  min-height: 64vh;
}

.hero {
  padding: clamp(3.25rem, 7vw, 7.5rem) 0 clamp(3rem, 6vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

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

.hero-grid-single > div {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.7rem);
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  margin: 0;
  font-size: 1.65rem;
}

.hero-copy {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(46, 37, 42, 0.18);
}

.button-secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  z-index: -1;
  border-radius: 36px;
  background: var(--blush);
  content: "";
}

.hero-media img {
  width: 100%;
  max-height: 720px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center 28%;
}

.section {
  padding: clamp(3.25rem, 7vw, 7rem) 0;
}

.section-soft {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.card-kicker {
  margin: 0 0 0.65rem;
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.text-link {
  color: var(--rose-dark);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.breadcrumbs {
  padding-top: 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: #ae9ea5;
  content: "/";
}

.breadcrumbs a {
  color: inherit;
}

.unit-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.unit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.info-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.info-list {
  display: grid;
  gap: 1.15rem;
  margin: 0;
}

.info-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-list dt {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-list dd {
  margin: 0;
  font-weight: 650;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 1rem;
  border-radius: 18px;
  background: var(--blush);
  font-weight: 700;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.social-list a {
  display: inline-flex;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--rose-dark);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.data-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 0 0 1px var(--line);
  overflow: hidden;
}

.contact-table th,
.contact-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.contact-table th {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-copy {
  max-width: 76ch;
}

.legal-copy h2 {
  margin-top: 2.5rem;
  font-size: 2rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.footer-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-shell p {
  margin: 0.35rem 0 0;
  color: #d9ced3;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links a {
  color: #fff;
  font-size: 0.9rem;
}

@media (max-width: 880px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

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

  .hero-grid,
  .unit-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 640px;
  }

  .card-grid-three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    text-align: center;
  }

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

  .contact-table,
  .contact-table tbody,
  .contact-table tr,
  .contact-table td {
    display: block;
    width: 100%;
  }

  .contact-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .contact-table tr {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-table td {
    border: 0;
  }

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

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

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

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