:root {
  color-scheme: light;
  --ink: #151515;
  --ink-soft: #2f302d;
  --muted: #696a63;
  --paper: #fbfaf6;
  --white: #ffffff;
  --mist: #eff4f1;
  --line: #e4ded1;
  --gold: #b9873a;
  --gold-deep: #805b24;
  --teal: #206f68;
  --teal-dark: #164d49;
  --wine: #8b3f4b;
  --shadow: 0 22px 70px rgba(22, 22, 22, 0.14);
  --soft-shadow: 0 14px 40px rgba(22, 22, 22, 0.08);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(184, 135, 58, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--white);
  background: rgba(16, 16, 16, 0.44);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(21, 21, 21, 0.08);
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.site-header.is-scrolled .brand-mark,
.site-header.nav-active .brand-mark,
.brand-footer .brand-mark {
  border-color: rgba(184, 135, 58, 0.36);
  background: rgba(184, 135, 58, 0.08);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text span {
  font-weight: 800;
  font-size: 1rem;
}

.brand-text small {
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
  opacity: 0.9;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(128, 91, 36, 0.24);
}

.btn-primary:hover {
  background: var(--gold-deep);
}

.btn-secondary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(32, 111, 104, 0.18);
}

.btn-secondary:hover {
  background: var(--teal-dark);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(21, 21, 21, 0.08);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost-dark {
  color: var(--ink);
  border-color: rgba(21, 21, 21, 0.16);
  background: rgba(255, 255, 255, 0.58);
}

.btn-compact {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.92rem;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
}

.site-header.is-scrolled .menu-toggle,
.site-header.nav-active .menu-toggle {
  border-color: rgba(21, 21, 21, 0.14);
  background: rgba(21, 21, 21, 0.04);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(850px, 88svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.54));
}

.hero-content {
  padding-block: 132px 78px;
  max-width: 1180px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.trust-intro,
.shop-banner h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  text-wrap: balance;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 750;
  line-height: 1.28;
}

.hero-copy {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

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

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 750;
}

.hero-contact a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 5px;
}

.shop-badge {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 40px;
  width: min(310px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.54);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.shop-badge strong,
.shop-badge span {
  display: block;
}

.shop-badge strong {
  color: var(--gold);
  font-size: 1rem;
}

.shop-badge span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}

.trust-section {
  position: relative;
  padding: 34px 0 54px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-intro {
  max-width: 840px;
  color: var(--ink-soft);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  min-height: 148px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f8f5ed);
  box-shadow: var(--soft-shadow);
}

.stat-card span,
.stat-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.stat-card strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.section {
  padding: clamp(72px, 10vw, 124px) 0;
}

.section h2,
.shop-banner h2,
.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  text-wrap: balance;
}

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

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

.section-heading p:last-child,
.section-copy p,
.contact-copy p,
.shop-banner p {
  font-size: 1.04rem;
}

.split-layout,
.brand-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.image-feature,
.brand-photo {
  margin: 0;
}

.image-feature img,
.brand-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-feature figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mini-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-feature-list span {
  border: 1px solid rgba(184, 135, 58, 0.28);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--gold-deep);
  background: rgba(184, 135, 58, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.services-section {
  background: #f1f5f2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: rgba(32, 111, 104, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 1.13rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
}

.brand-section {
  background: var(--white);
}

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

.brand-panel {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.brand-tab {
  min-height: 40px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--ink-soft);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.brand-tab.is-active {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-chip {
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(21, 21, 21, 0.04);
}

.shop-section {
  padding-block: clamp(54px, 8vw, 92px);
  background: #171818;
}

.shop-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.72fr) auto;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 46px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(184, 135, 58, 0.22), rgba(32, 111, 104, 0.18)),
    #1d1e1d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.shop-banner h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.shop-banner p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.shop-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}

.shop-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 214px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--ink);
  box-shadow: var(--soft-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease, opacity 300ms ease;
}

.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.56);
  font-size: 0.82rem;
  font-weight: 750;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  opacity: 0.84;
}

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

.gallery-item.tall {
  grid-row: span 2;
}

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

.contact-section {
  background: var(--white);
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-card {
  display: grid;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-card div {
  display: grid;
  gap: 5px;
}

.contact-card span {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a {
  width: fit-content;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(184, 135, 58, 0.36);
  text-underline-offset: 5px;
}

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

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #111312;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.5fr) minmax(180px, 0.48fr);
  gap: 34px;
  padding: 54px 0 34px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-block h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer-block a {
  width: fit-content;
}

.footer-block a:hover,
.site-credit a:hover {
  color: var(--gold);
}

.footer-block p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px 0 24px;
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.site-credit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.site-credit a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(184, 135, 58, 0.44);
  text-underline-offset: 4px;
}

.mobile-contact-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(21, 21, 21, 0.22);
  backdrop-filter: blur(18px);
}

.mobile-contact-bar a {
  min-height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.mobile-contact-bar a:nth-child(2) {
  background: var(--teal);
}

.mobile-contact-bar a:nth-child(3) {
  background: var(--gold-deep);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(86vh, 860px);
  margin: 0;
  display: grid;
  gap: 12px;
}

.lightbox-dialog img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #050505;
}

.lightbox-dialog figcaption {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  font-size: 1.7rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

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

  .shop-banner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  :root {
    --container: min(100% - 28px, 720px);
    --header-height: 70px;
  }

  body {
    padding-bottom: 74px;
  }

  .menu-toggle {
    position: relative;
    display: grid;
  }

  .main-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 4px;
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: var(--radius);
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    border-radius: 6px;
    padding: 13px 12px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(184, 135, 58, 0.08);
  }

  .header-actions .btn {
    display: none;
  }

  .brand-text span {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding-block: 112px 150px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.34) 36%, rgba(0, 0, 0, 0.76)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.8rem);
  }

  .hero-actions .btn {
    flex: 1 1 148px;
  }

  .shop-badge {
    left: 14px;
    right: 14px;
    bottom: 24px;
    width: auto;
  }

  .stats-grid,
  .split-layout,
  .brand-layout,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

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

  .mobile-contact-bar {
    display: grid;
  }
}

@media (max-width: 620px) {
  .hero-contact {
    display: none;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .section {
    padding-block: 62px;
  }

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

  .stat-card {
    min-height: 118px;
  }

  .service-card {
    min-height: auto;
  }

  .brand-panel {
    padding: 12px;
  }

  .brand-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .brand-tab {
    min-width: max-content;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .mobile-contact-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 6px;
    padding: 7px;
  }

  .mobile-contact-bar a {
    min-height: 38px;
    font-size: 0.78rem;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
