:root {
  --bg: #f6f3ed;
  --bg-alt: #f1ece4;
  --surface: #ffffff;
  --surface-muted: #fbf7f0;
  --text: #1f1916;
  --muted: #726b64;
  --line: rgba(31, 25, 20, 0.16);
  --accent: #c3a874;
  --accent-dark: #9d8553;
  --brand: #1f1916;
  --container: 1180px;
  --header-h: 68px;
  color-scheme: light;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--accent-dark);
}

p {
  margin: 0 0 1.4rem;
  font-size: 16px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: clamp(22px, 3vw, 30px);
}

ul {
  margin: 0 0 1.4rem;
  padding: 0 0 0 1.2rem;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

.center {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(31, 25, 20, 0.12);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section:nth-of-type(odd):not(.hero) {
  background: var(--surface);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(24px, 5vw, 40px);
}

.section-head p {
  max-width: 520px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 237, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  min-height: var(--header-h);
  padding: 10px 0;
  position: relative;
}

.brand img {
  height: 54px;
  width: auto;
}

.brand,
.nav-toggle {
  position: relative;
  z-index: 120;
}

/* Mobile-first nav */
.site-nav {
  position: fixed;
  top: calc(var(--header-h) + 10px);
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  z-index: 110;
  background: #fff;
  display: grid;
  align-content: center;
  gap: 0;
  padding: 8px 0;
  border: 1px solid rgba(31, 25, 20, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(31, 25, 20, 0.16);
  transform: translateY(-8px) scale(0.98);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  text-align: left;
  justify-items: stretch;
  overflow: hidden;
}

.site-nav.open {
  transform: translateY(0) scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 20px;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(31, 25, 20, 0.12);
  opacity: 0.92;
}

.site-nav a:last-child {
  border-bottom: none;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(31, 25, 20, 0.12);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
}

.nav-toggle:focus:not(:focus-visible) {
  outline: none;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(195, 168, 116, 0.75);
  outline-offset: 3px;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:first-child {
  top: 15px;
}

.nav-toggle span:last-child {
  top: 25px;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 18px 32px rgba(195, 168, 116, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 14px 26px rgba(157, 133, 83, 0.32);
}

.btn:focus-visible {
  outline: 2px solid rgba(157, 133, 83, 0.4);
  outline-offset: 2px;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(31, 25, 20, 0.18);
}

.btn-secondary:hover {
  border-color: var(--text);
}

.btn-plain {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.btn-plain:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Hero */
.hero {
  padding: clamp(72px, 11vh, 128px) 0 clamp(56px, 9vh, 108px);
  background: var(--surface);
  border-bottom: 1px solid rgba(31, 25, 20, 0.08);
}

.hero-grid {
  display: grid;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
  justify-items: stretch;
}

.hero-text {
  display: grid;
  gap: clamp(18px, 3vw, 24px);
  width: 100%;
  max-width: 520px;
  text-align: right;
  justify-items: end;
  justify-self: end;
  min-width: 0;
}

.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(31, 25, 20, 0.58);
}

.hero-lede {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(31, 25, 20, 0.78);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero .btn-plain {
  border-color: rgba(31, 25, 20, 0.18);
  color: var(--text);
  background: transparent;
}

.hero .btn-plain:hover {
  background: rgba(31, 25, 20, 0.08);
}

.hero-image {
  position: relative;
  margin: 0;
  display: grid;
  gap: 12px;
  align-content: start;
  width: min(100%, clamp(300px, 64vw, 540px));
  justify-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: clamp(18px, 3vw, 28px);
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(31, 25, 20, 0.08);
  border: 1px solid rgba(31, 25, 20, 0.1);
}

.hero-image figcaption {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(31, 25, 20, 0.45);
  text-align: center;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(360px, 45vw, 620px);
  width: 100%;
  max-width: clamp(320px, 70vw, 620px);
  justify-self: end;
}

.hero-line {
  position: absolute;
  background: rgba(31, 25, 20, 0.22);
  pointer-events: none;
}

.hero-line-vertical {
  width: 1px;
  height: 82%;
  left: 12%;
  top: 9%;
}

.hero-line-horizontal {
  height: 1px;
  width: 86%;
  top: 18%;
  right: 6%;
}

/* Layout helpers */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 6vw, 48px);
  align-items: center;
}

.about-media img {
  border-radius: 22px;
  box-shadow: 0 32px 64px rgba(31, 25, 20, 0.12);
}

.about-copy p:last-of-type {
  margin-bottom: 1rem;
}

.about-approach {
  margin-top: clamp(20px, 5vw, 40px);
  padding: clamp(18px, 4vw, 28px);
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(31, 25, 20, 0.08);
  box-shadow: 0 18px 40px rgba(31, 25, 20, 0.08);
}

.about-approach h3 {
  margin: 0 0 12px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
}

.about-approach ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about-approach li {
  position: relative;
  padding-left: 28px;
}

.about-approach li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

/* Gallery */
.gallery {
  background: var(--surface-muted);
}

.carousel {
  position: relative;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(31, 25, 20, 0.16);
  background: var(--surface);
  height: clamp(420px, 70vh, 680px);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}

.gallery-item {
  position: relative;
  display: flex;
  isolation: isolate;
  width: 100%;
  height: 100%;
}

.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(31, 25, 20, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.04);
  background: #fff;
}

.carousel-btn.prev {
  left: clamp(10px, 3vw, 24px);
}

.carousel-btn.next {
  right: clamp(10px, 3vw, 24px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid var(--text);
  background: transparent;
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.carousel-dots button[aria-selected="true"] {
  opacity: 1;
  background: var(--text);
}

.gallery-note {
  max-width: 640px;
  margin: clamp(28px, 5vw, 48px) auto 0;
  text-align: center;
  color: var(--muted);
}

/* Services */
.services .section-head p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: clamp(18px, 4vw, 32px);
}

.card {
  background: var(--surface);
  border-radius: 22px;
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid rgba(31, 25, 20, 0.08);
  box-shadow: 0 26px 52px rgba(31, 25, 20, 0.12);
  display: grid;
  gap: 16px;
}

.card-media {
  border-radius: 18px;
  overflow: hidden;
  height: clamp(200px, 30vw, 240px);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
  filter: saturate(0.96);
}

.card:hover .card-media img {
  transform: scale(1.08);
}

.card h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
}

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

.card ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 15px;
}

.card ul li {
  position: relative;
  padding-left: 24px;
}

.card ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

/* Partners */
.partners {
  background: var(--surface-muted);
}

.partners-list {
  list-style: none;
  margin: clamp(24px, 6vw, 48px) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(14px, 3vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.partner-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 3vw, 20px);
  padding: clamp(18px, 3.6vw, 24px) clamp(20px, 5vw, 30px);
  border: 1px solid rgba(31, 25, 20, 0.16);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 36px rgba(31, 25, 20, 0.08);
  overflow: hidden;
  text-align: center;
}

.partner-item::before,
.partner-item::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.partner-item::before {
  inset: 0;
  border: 1px solid rgba(31, 25, 20, 0.08);
}

.partner-item::after {
  inset: 14px;
  border-top: 1px solid rgba(31, 25, 20, 0.1);
  border-left: 1px solid rgba(31, 25, 20, 0.1);
  opacity: 0.6;
}

.partner-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(31, 25, 20, 0.2);
  font-size: 16px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(31, 25, 20, 0.7);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 243, 237, 0.9));
}

.partner-divider {
  width: 60%;
  height: 1px;
  min-height: 1px;
  background: rgba(31, 25, 20, 0.14);
}

.partner-text {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.partner-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 26px);
  text-transform: capitalize;
  color: var(--text);
}

.partner-type {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(31, 25, 20, 0.5);
}

/* Contact */
.contact {
  background: linear-gradient(160deg, var(--surface-muted) 0%, var(--surface) 100%);
}

.contact-grid {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(31, 25, 20, 0.1);
  box-shadow: 0 30px 70px rgba(31, 25, 20, 0.12);
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 16px;
}

.contact-copy p {
  margin: 0;
}

.contact-copy .muted {
  font-size: 14px;
  letter-spacing: 0.04em;
}

.contact-direct a {
  font-weight: 500;
}

.contact-direct span {
  opacity: 0.4;
  margin: 0 12px;
}

.contact-form {
  background: var(--surface);
  border-radius: 22px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(31, 25, 20, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  display: grid;
  gap: 18px;
}

.guard-field {
  display: none !important;
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.contact-form .field {
  display: grid;
  gap: 8px;
}

.contact-form .form-group {
  border: 0;
  border-top: 1px solid rgba(31, 25, 20, 0.1);
  display: grid;
  gap: 14px;
  margin: 0;
  min-width: 0;
  padding: 18px 0 0;
}

.contact-form .form-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-form legend {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  line-height: 1.1;
  padding: 0;
}

.form-fields {
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(31, 25, 20, 0.68);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(31, 25, 20, 0.16);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(195, 168, 116, 0.2);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.turnstile-field {
  min-height: 65px;
}

.contact-form .actions {
  margin-top: 8px;
  display: flex;
  gap: 12px;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
}

.form-status-success {
  background: rgba(195, 168, 116, 0.16);
  color: var(--text);
}

.form-status-error {
  background: rgba(127, 47, 38, 0.12);
  color: #7f2f26;
}

.privacy {
  font-size: 12px;
  margin: 0;
  color: rgba(31, 25, 20, 0.6);
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid rgba(31, 25, 20, 0.08);
  padding: 28px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 18px;
  align-items: center;
}

.footer-brand img {
  height: 28px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer-meta {
  font-size: 13px;
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(13, 11, 9, 0.9);
  z-index: 1000;
}

.lightbox.open {
  display: grid;
}

.lightbox-stage {
  width: min(100%, 1200px);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
}

.lightbox-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78vh, 820px);
  max-height: min(78dvh, 820px);
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  color: #e5e2dd;
  margin: 0;
  max-width: min(92vw, 760px);
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

/* Responsive */
@media (min-width: 600px) {
  .section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }

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

  .partner-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .partner-divider {
    flex: 1;
    width: auto;
    max-width: 160px;
  }

  .partner-text {
    text-align: left;
    justify-items: start;
  }

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

  .field-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  :root {
    --header-h: 72px;
  }

  .container {
    width: min(100% - 2rem, var(--container));
  }

  h1 {
    font-size: clamp(32px, 10vw, 38px);
  }

  .site-nav {
    left: max(14px, env(safe-area-inset-left));
    right: max(14px, env(safe-area-inset-right));
  }

  .site-nav a {
    min-height: 50px;
    padding-inline: 18px;
    font-size: 14px;
    letter-spacing: 0.09em;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-stage {
    max-height: calc(100vh - 28px);
    max-height: calc(100dvh - 28px);
    gap: 10px;
  }

  .lightbox-img {
    max-height: 74vh;
    max-height: 74dvh;
    border-radius: 12px;
  }

  .lightbox-caption {
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }

  .hero {
    padding-top: clamp(56px, 12vw, 72px);
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-ctas {
    width: 100%;
    display: grid;
    justify-items: end;
  }

  .hero-ctas .btn {
    width: min(100%, 276px);
    height: auto;
    min-height: 44px;
    padding: 12px 16px;
    letter-spacing: 0.11em;
  }

  .hero-visual {
    min-height: auto;
    max-width: 100%;
  }

  .hero-image {
    width: 100%;
  }

  .hero-line {
    display: none;
  }

  .contact-direct p:not(.muted) {
    display: grid;
    gap: 4px;
  }

  .contact-direct span {
    display: none;
  }

  .contact-direct a {
    overflow-wrap: anywhere;
  }
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    margin-left: auto;
    justify-content: flex-end;
    overflow: visible;
    text-align: right;
    justify-items: initial;
  }

  .site-nav a {
    width: auto;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 8px 2px;
    font-size: 13px;
    position: relative;
    opacity: 1;
    white-space: nowrap;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    opacity: 0.5;
  }

  .site-nav a:hover::after {
    transform: scaleX(1);
  }

  .hero-text {
    text-align: right;
    justify-items: end;
  }

  .hero-ctas {
    justify-content: flex-end;
  }

  .hero-image {
    justify-self: end;
  }

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

  .two-col {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

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

  .contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .footer-inner {
    grid-template-columns: auto 1fr auto;
    text-align: left;
  }

  .footer-brand {
    justify-self: start;
  }

  .footer-meta {
    justify-self: end;
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    justify-items: stretch;
  }

  .hero-visual {
    justify-self: end;
  }

  .carousel-viewport {
    border-radius: 30px;
  }

  .card {
    padding: clamp(24px, 3vw, 32px);
  }
}

@media (min-width: 1100px) {
  .hero-text {
    max-width: 600px;
  }

  .card-media {
    height: 260px;
  }
}
