:root {
  --bg: #ffffff;
  --bg-alt: #f5f2ed;
  --surface: rgba(255, 255, 255, 0.92);
  --text: #111111;
  --muted: #67615d;
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(17, 17, 17, 0.22);
  --accent: #c38a61;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", sans-serif;
  --container: min(1120px, calc(100% - 2rem));
  --section-space: clamp(4.75rem, 8vw, 8rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 1)),
    radial-gradient(circle at top left, rgba(195, 138, 97, 0.06), transparent 35%);
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  border: 1px solid var(--text);
  background: var(--bg);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
textarea {
  border-radius: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.section {
  position: relative;
  padding: var(--section-space) 0;
  scroll-margin-top: 7rem;
}

.section--alt {
  background: var(--bg-alt);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.96;
}

.section-heading p:not(.eyebrow) {
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.85;
}

.divider {
  width: 76px;
  height: 1px;
  background: rgba(17, 17, 17, 0.35);
}

.divider--center {
  margin: 1.6rem auto 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.4rem;
}

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

.brand__mark {
  width: 3rem;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem;
  background: var(--bg);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand__name,
.brand__sub {
  text-transform: uppercase;
}

.brand__name {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.36em;
}

.brand__sub {
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.34em;
}

.menu-toggle,
.menu-close,
.button,
.social-links a,
.back-to-top {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  background: var(--bg);
}

.menu-toggle:hover,
.menu-close:hover,
.button:hover,
.social-links a:hover,
.back-to-top:hover {
  transform: translateY(-2px);
}

.menu-toggle__label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  display: grid;
  gap: 0.26rem;
}

.menu-toggle__icon span {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: var(--text);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 45;
}

.menu-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.24);
}

.menu-panel__dialog {
  position: relative;
  width: min(70rem, calc(100% - 2rem));
  max-height: calc(100vh - 6rem);
  margin: 5rem auto 1rem;
  overflow: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.menu-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--line);
}

.menu-panel__logo {
  width: min(20rem, 100%);
  border: 1px solid var(--line);
  background: var(--bg);
}

.menu-close {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  font-size: 1.6rem;
  line-height: 1;
}

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

.menu-link {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}

.menu-link.active {
  color: var(--accent);
}

.hero {
  position: relative;
  padding: 0 0 var(--section-space);
  background: var(--bg-alt);
}

.page-hero {
  position: relative;
  padding: 0 0 clamp(3.5rem, 7vw, 6rem);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.page-hero__media {
  position: relative;
  min-height: min(62vh, 38rem);
  overflow: hidden;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.42)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.78), transparent 36%);
}

.page-hero__image {
  width: 100%;
  min-height: min(62vh, 38rem);
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.97);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  margin-top: clamp(-6.25rem, -9vw, -3.8rem);
}

.page-hero__card {
  max-width: 50rem;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.page-hero__card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.96;
}

.page-hero__summary {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.hero__media {
  position: relative;
  min-height: min(80vh, 52rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.38)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.7), transparent 32%);
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.8), transparent 24%),
    radial-gradient(circle at 85% 14%, rgba(255, 255, 255, 0.5), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 55%);
  mix-blend-mode: screen;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: min(80vh, 52rem);
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}

.hero__content {
  position: relative;
  z-index: 2;
  margin-top: clamp(-8.25rem, -11vw, -5.8rem);
}

.hero__card {
  max-width: min(51rem, calc(100% - 1rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero__card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.96;
}

.hero__lead {
  max-width: 38rem;
  margin: 1.4rem auto 0;
  color: var(--muted);
  line-height: 1.9;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.store-alert {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.store-directory-section .container {
  width: min(1240px, calc(100% - 2rem));
}

.store-directory-section .section-heading {
  max-width: 920px;
  margin-bottom: 3.5rem;
}

.store-grid {
  gap: 1.7rem;
}

.store-grid .store-card {
  min-height: 100%;
}

.store-grid .card__image img {
  aspect-ratio: 5 / 4;
}

.store-grid .card__body {
  padding: 1.55rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-align: center;
  text-transform: uppercase;
}

.button--dark {
  background: var(--text);
  color: var(--bg);
}

.button--full {
  width: 100%;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.split-layout--align-start {
  align-items: start;
}

.media-frame,
.contact-card,
.map-card,
.contact-form,
.panel,
.stat-card,
.job-card,
.process-card,
.card,
.gallery-card {
  border: 1px solid var(--line);
  background: var(--bg);
}

.media-frame {
  overflow: hidden;
}

.media-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.story-media-stack {
  display: grid;
  gap: 1.25rem;
}

.story-portrait-card figcaption {
  padding: 1rem 1.2rem 1.15rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.media-frame img.story-portrait--kenneth {
  aspect-ratio: 4 / 5;
  object-position: center 18%;
}

.media-frame img.story-portrait--maria {
  aspect-ratio: 4 / 5;
  object-position: center 12%;
}

.card__image img.maria-portrait--card {
  object-position: center 14%;
}

.media-frame img.maria-portrait--feature {
  aspect-ratio: 4 / 5;
  object-position: center 12%;
}

.card__image img.leadership-portrait--robert-card {
  object-position: center 10%;
}

.media-frame img.mavis-portrait--feature {
  aspect-ratio: 4 / 5;
  object-position: center 8%;
}

.media-frame:hover img,
.card:hover .card__image img,
.gallery-card:hover img,
.process-card:hover img,
.contact-card:hover img {
  transform: scale(1.04);
}

.panel {
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.85;
}

.copy p:last-child {
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  padding: 1.25rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 500;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.7;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding-left: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding: 0 0 0 2.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--bg);
  box-shadow: 0 0 0 0.55rem rgba(255, 255, 255, 0.95);
}

.timeline-item span,
.job-card span,
.process-card__body span,
.card__date {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.timeline-item h3,
.card__body h3,
.gallery-card__caption h3,
.job-card h3,
.contact-card__body h3,
.process-card__body h3 {
  margin: 0.45rem 0 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
}

.timeline-item p,
.card__body p,
.job-card p,
.contact-card__body p,
.process-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.card-grid,
.gallery-grid,
.process-grid,
.stack-grid,
.contact-stack {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card {
  overflow: hidden;
}

.card:hover,
.gallery-card:hover,
.job-card:hover,
.process-card:hover,
.contact-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.card__image,
.contact-card__image {
  overflow: hidden;
  background: var(--bg-alt);
}

.card__image img,
.contact-card__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.store-card .eyebrow {
  margin-bottom: 0.75rem;
}

.store-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.store-card__top h3 {
  margin: 0;
}

.store-status {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.store-status--open {
  border-color: rgba(30, 88, 57, 0.18);
  background: rgba(30, 88, 57, 0.08);
  color: #1e5839;
}

.store-status--closed {
  background: rgba(17, 17, 17, 0.035);
  color: var(--muted);
}

.store-address {
  margin: 1rem 0 0;
  color: var(--text);
  line-height: 1.8;
}

.store-note {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.store-card .meta-list strong {
  font-weight: 600;
}

[data-page="leadership-team.html"] .leadership-portrait--kenneth {
  object-position: center 18%;
}

[data-page="leadership-team.html"] .leadership-portrait--robert {
  object-position: center 10%;
}

[data-page="leadership-team.html"] .leadership-portrait--daniel {
  object-position: center 20%;
}

.card__body,
.contact-card__body,
.job-card,
.process-card__body {
  padding: 1.3rem;
}

.card__body .button {
  margin-top: 1.15rem;
}

.card--horizontal {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.card--horizontal .card__image img {
  height: 100%;
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  aspect-ratio: 5 / 6;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.gallery-card__caption {
  padding: 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.meta-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.meta-list strong {
  font-weight: 700;
}

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

.process-card {
  overflow: hidden;
}

.process-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.25rem;
  align-items: start;
}

.map-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contact-form {
  padding: 1.3rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.contact-form label span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 0.95rem 1rem;
  color: var(--text);
}

.contact-form textarea {
  min-height: 12rem;
  resize: vertical;
}

.form-note {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--bg);
}

.faq-item summary {
  list-style: none;
  padding: 1.2rem 1.3rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.3rem;
  color: var(--muted);
  line-height: 1.85;
}

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

.policy-panel {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.policy-panel h2,
.policy-panel h3 {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.policy-panel p,
.policy-panel li {
  color: var(--muted);
  line-height: 1.85;
}

.policy-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

.error-shell {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 14rem);
}

.error-card {
  width: min(760px, 100%);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background: var(--bg);
  text-align: center;
  box-shadow: var(--shadow);
}

.error-code {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.error-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
}

.error-card p {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.8fr));
  gap: 1.5rem;
}

.footer-logo {
  max-width: 17rem;
  border: 1px solid var(--line);
  background: var(--bg);
}

.footer-copy {
  max-width: 30rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.footer-title {
  margin: 0 0 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
  line-height: 1.65;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-links a {
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

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

.legal-links a {
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.6rem);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .card-grid--five,
  .card-grid--four,
  .gallery-grid,
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .split-layout,
  .contact-layout,
  .card--horizontal,
  .field-row,
  .stats-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .card-grid--three,
  .card-grid--four,
  .card-grid--five,
  .gallery-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero__content {
    margin-top: -4.75rem;
  }

  .page-hero__content {
    margin-top: -3.5rem;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    min-height: 5rem;
  }

  .brand__name {
    font-size: 0.78rem;
    letter-spacing: 0.26em;
  }

  .brand__sub,
  .menu-toggle__label {
    letter-spacing: 0.22em;
  }

  .hero__media,
  .hero__image,
  .page-hero__media,
  .page-hero__image {
    min-height: 66vh;
  }

  .hero__card h1 {
    font-size: clamp(2.8rem, 12vw, 4.3rem);
  }

  .card-grid--three,
  .card-grid--four,
  .card-grid--five,
  .gallery-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-panel__header,
  .menu-grid,
  .contact-form,
  .panel,
  .card__body,
  .job-card,
  .process-card__body {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .button,
  .social-links a {
    width: 100%;
  }

  .hero__actions,
  .button-row {
    flex-direction: column;
  }

  .page-hero__content {
    margin-top: -2.5rem;
  }

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

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

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