:root {
  color-scheme: light;
  --bg: #f6f2eb;
  --surface: #ffffff;
  --surface-strong: #0f172a;
  --surface-soft: #f1ece3;
  --text: #152133;
  --text-muted: #5d6675;
  --border: rgba(21, 33, 51, 0.1);
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --accent: #d97706;
  --accent-dark: #b45309;
  --accent-contrast: #fff8ef;
  --max-width: 1140px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217, 119, 6, 0.08), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(15, 23, 42, 0.06), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--surface-strong);
  color: #fff;
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 242, 235, 0.88);
  border-bottom: 1px solid rgba(21, 33, 51, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  padding-block: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__mark {
  width: 74px;
  height: 74px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__text {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.brand__name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--surface-strong);
}

.brand__tag {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--surface-strong);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--surface-strong);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.header-cta {
  margin-left: 0.4rem;
  padding: 0.84rem 1.1rem;
  border-radius: 999px;
  background: var(--surface-strong);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
  transition: transform 0.18s ease, background 0.18s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  background: #0b1220;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 6rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 15, 27, 0.96), rgba(13, 20, 36, 0.92) 55%, rgba(23, 36, 61, 0.96)),
    var(--surface-strong);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.28), transparent 26%),
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__content {
  max-width: 38rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.15rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero__lede,
.page-hero__lede {
  margin: 1.15rem 0 0;
  max-width: 35rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--solid {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 36px rgba(217, 119, 6, 0.32);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: var(--accent-dark);
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
  font-weight: 700;
}

.hero__visual {
  display: grid;
  gap: 1rem;
}

.hero__frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 490px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 27, 0.04), rgba(10, 15, 27, 0.28));
  pointer-events: none;
}

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

.floating-card {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.floating-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.22rem;
  color: #fff;
}

.floating-card span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(3.8rem, 8vw, 6.6rem) 0;
}

.section--soft {
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(21, 33, 51, 0.06);
  border-bottom: 1px solid rgba(21, 33, 51, 0.06);
}

.section__head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.section__kicker {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--surface-strong);
}

.section__lead {
  margin: 0;
  max-width: 62ch;
  font-size: 1.04rem;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card--dark {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.97), rgba(23, 36, 61, 0.96));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.card__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.card--dark .card__eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.card h3,
.card h4 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
}

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

.card--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.service-item {
  display: grid;
  gap: 0.25rem;
  min-height: 100%;
}

.service-item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.service-item__title::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.22);
  box-shadow: inset 0 0 0 4px rgba(217, 119, 6, 0.8);
  flex: 0 0 auto;
}

.service-item ul {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: var(--text-muted);
}

.service-item li {
  position: relative;
  padding-left: 1rem;
}

.service-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.feature-list li::before {
  content: "";
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  margin-top: 0.08rem;
  background: linear-gradient(135deg, var(--accent), #f4a93e);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.88);
}

.feature-list strong {
  display: block;
  margin-bottom: 0.12rem;
  color: var(--surface-strong);
}

.feature-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.media-grid__large,
.media-grid__small {
  display: grid;
  gap: 1rem;
}

.photo {
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #e8e1d7;
}

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

.photo--tall {
  aspect-ratio: 4 / 3;
}

.photo--wide {
  aspect-ratio: 16 / 10;
}

.photo--portrait {
  aspect-ratio: 4 / 5;
}

.photo__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.68);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: start;
}

.split__panel {
  padding: clamp(1.3rem, 2.4vw, 2rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.split__panel--dark {
  color: #fff;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(23, 36, 61, 0.96));
}

.split__panel--dark .section__title {
  color: #fff;
}

.split__panel--dark .page-section__lead {
  color: rgba(255, 255, 255, 0.78);
}

.stack {
  display: grid;
  gap: 1rem;
}

.stack--tight {
  gap: 0.8rem;
}

.review {
  padding: 1.5rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.review__title {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review blockquote {
  margin: 0;
  font-size: 1.06rem;
  color: var(--surface-strong);
}

.review footer {
  margin-top: 1rem;
  display: grid;
  gap: 0.1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.review footer strong {
  color: var(--surface-strong);
}

.review-grid {
  display: grid;
  gap: 1rem;
}

.review-grid--2 {
  grid-template-columns: 1.15fr 0.85fr;
}

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

.callout {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(28, 43, 71, 0.96));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.callout h2,
.callout h3,
.callout p {
  margin: 0;
}

.callout p {
  color: rgba(255, 255, 255, 0.8);
}

.callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.callout .button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
}

.detail-list {
  display: grid;
  gap: 0.95rem;
  margin: 1.2rem 0 0;
}

.detail-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(21, 33, 51, 0.08);
}

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

.detail-row strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--surface-strong);
}

.detail-row span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-card__label {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-card__value {
  margin: 0;
  font-size: 1.05rem;
  color: var(--surface-strong);
}

.contact-map {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(28, 43, 71, 0.9)),
    var(--surface-strong);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-map__inner {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.contact-map .section__kicker {
  color: rgba(255, 255, 255, 0.68);
}

.contact-map__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.contact-map__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-map__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 22% 28%, rgba(217, 119, 6, 0.9), transparent 0 13px),
    radial-gradient(circle at 24% 32%, rgba(255, 255, 255, 0.95), transparent 0 5px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.04);
  min-height: 250px;
  position: relative;
}

.map-frame::after {
  content: "Map preview";
  position: absolute;
  inset: auto 1rem 1rem auto;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.64);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 2.4rem;
  border-top: 1px solid rgba(21, 33, 51, 0.08);
  background: rgba(255, 255, 255, 0.48);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.8rem;
}

.footer-brand__top {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand__top img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a,
.footer-links span {
  color: var(--text-muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--surface-strong);
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(21, 33, 51, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.section-compact {
  padding-block: clamp(2.8rem, 5vw, 4.4rem);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.6rem, 5vw, 4rem) 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(19, 29, 50, 0.95)),
    var(--surface-strong);
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(217, 119, 6, 0.28), transparent 20%),
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  align-items: center;
}

.page-hero__media {
  display: grid;
  gap: 0.85rem;
}

.page-hero__media .photo {
  border-color: rgba(255, 255, 255, 0.12);
}

.page-hero__aside {
  display: grid;
  gap: 0.85rem;
}

.page-hero__card {
  padding: 1.1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.page-hero__card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}

.page-hero__card span {
  color: rgba(255, 255, 255, 0.78);
}

.page-section {
  padding: clamp(3.4rem, 7vw, 5.8rem) 0;
}

.page-section__header {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.page-section__title {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-section__lead {
  margin: 0;
  max-width: 64ch;
  color: var(--text-muted);
  font-size: 1.03rem;
}

.list-section {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.list-section li {
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.list-section li::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f4a93e);
}

.list-section strong {
  display: block;
  margin-bottom: 0.14rem;
  color: var(--surface-strong);
}

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

@media (max-width: 1020px) {
  .hero__inner,
  .page-hero__inner,
  .split,
  .media-grid,
  .review-grid--2,
  .review-grid--3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .grid--3,
  .grid--2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .page-hero__content {
    max-width: none;
  }

  .hero__frame {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.9rem 0 0.25rem;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .header-cta {
    margin-left: auto;
  }

  .site-nav a[aria-current="page"]::after {
    bottom: -0.22rem;
  }

  .hero {
    padding-top: 1.6rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .hero__frame {
    min-height: 340px;
    border-radius: 26px;
  }

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

  .button,
  .contact-map__link {
    width: 100%;
  }

  .header-cta {
    width: auto;
  }

  .hero__actions,
  .callout__actions {
    width: 100%;
  }

  .hero__actions .button,
  .callout__actions .button {
    flex: 1 1 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.2rem));
  }

  .site-header__inner {
    min-height: 76px;
  }

  .brand__mark {
    width: 58px;
    height: 58px;
  }

  .brand__tag {
    font-size: 0.8rem;
  }

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

  .hero__frame {
    min-height: 280px;
  }

  .photo--tall {
    aspect-ratio: auto;
    height: clamp(220px, 54vw, 300px);
    min-height: 0;
  }

  .floating-card,
  .card,
  .review,
  .contact-card,
  .split__panel {
    border-radius: 22px;
  }

  .photo,
  .contact-map,
  .callout {
    border-radius: 24px;
  }

  .section__title,
  .page-section__title {
    max-width: 12ch;
  }
}
