/* ATB Catering LLC redesigned site */

:root {
  --ink: #20211f;
  --charcoal: #2b2d2a;
  --forest: #263d36;
  --sage: #8fa69a;
  --leaf: #4f6f63;
  --brass: #b98f4f;
  --clay: #b66a4e;
  --paper: #fffdf8;
  --mist: #f4f6f1;
  --stone: #d9d7cc;
  --white: #ffffff;
  --muted: #666a62;
  --line: rgba(32, 33, 31, 0.14);
  --shadow: 0 18px 50px rgba(32, 33, 31, 0.12);
  --max: 1180px;
  --nav-h: 82px;
  --radius: 8px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(185, 143, 79, 0.55);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 94px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-dark {
  color: var(--paper);
  background: var(--forest);
}

.section-mist {
  background: var(--mist);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section-kicker {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.6rem, 7.2vw, 6.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.45rem, 5vw, 5rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
}

h4 {
  font-size: 1.28rem;
}

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

.section-dark p,
.section-dark .muted-dark {
  color: rgba(255, 253, 248, 0.76);
}

.lead {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.55;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-title-stack {
  max-width: 760px;
}

.section-title-stack h2 {
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
}

.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.btn-light:hover {
  color: var(--paper);
  background: var(--brass);
  border-color: var(--brass);
}

.btn-outline {
  color: var(--forest);
  background: transparent;
  border-color: rgba(38, 61, 54, 0.34);
}

.btn-outline:hover {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
}

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

.nav-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(38, 61, 54, 0.26);
  border-radius: 50%;
  color: var(--paper);
  background: var(--forest);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 700;
  line-height: 1;
}

.brand-sub {
  display: block;
  margin-top: 3px;
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-panel a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.nav-panel a:not(.nav-cta) {
  position: relative;
  padding: 30px 0;
}

.nav-panel a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-panel a:hover::after,
.nav-panel a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 18px;
  color: var(--paper) !important;
  background: var(--forest);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--ink);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle::before {
  transform: translate(-50%, calc(-50% - 7px));
}

.nav-toggle::after {
  transform: translate(-50%, calc(-50% + 7px));
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(760px, 82svh);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(17, 22, 19, 0.82) 0%, rgba(17, 22, 19, 0.5) 46%, rgba(17, 22, 19, 0.18) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(0deg, rgba(17, 22, 19, 0.72), transparent);
}

.hero-home {
  --hero-image: url("../images/IMG_3693.jpg");
}

.hero-copy {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 86px 0 72px;
}

.hero .eyebrow {
  color: rgba(255, 253, 248, 0.78);
}

.hero p {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.12rem, 1.8vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero .btn-outline,
.page-hero .btn-outline {
  color: var(--paper);
  border-color: rgba(255, 253, 248, 0.52);
}

.hero .btn-outline:hover,
.page-hero .btn-outline:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100% - 40px, var(--max));
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -62px auto 0;
  border: 1px solid rgba(255, 253, 248, 0.36);
  background: rgba(255, 253, 248, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.proof-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 124px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(12px);
}

.proof-value {
  display: block;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1;
}

.proof-label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(17, 22, 19, 0.82), rgba(17, 22, 19, 0.24)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero-copy {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 90px 0 70px;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 6.2vw, 5.9rem);
}

.page-hero p {
  max-width: 670px;
  margin-top: 20px;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1.08rem, 1.8vw, 1.26rem);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  border-left: 1px solid rgba(255, 253, 248, 0.14);
}

.pillar {
  min-height: 260px;
  padding: 34px 26px;
  border-right: 1px solid rgba(255, 253, 248, 0.14);
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.pillar-number {
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.9;
}

.pillar h3 {
  margin-top: 34px;
  font-size: 2rem;
}

.pillar p {
  margin-top: 14px;
}

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

.service-tile {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(17, 22, 19, 0.82), rgba(17, 22, 19, 0.08)), var(--tile-image);
  background-position: center;
  background-size: cover;
  transition: transform 450ms ease;
}

.service-tile:hover::before {
  transform: scale(1.05);
}

.service-tile-body {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.service-tile-body p {
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.82);
}

.tile-one {
  --tile-image: url("../images/IMG_3687.jpg");
}

.tile-two {
  --tile-image: url("../images/IMG_2940.jpg");
}

.tile-three {
  --tile-image: url("../images/IMG_3692.jpg");
}

.tile-four {
  --tile-image: url("../images/IMG_3877.jpg");
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.8fr 0.55fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-stack img:last-child {
  height: 320px;
}

.copy-block h2 {
  margin: 10px 0 24px;
}

.copy-block p + p {
  margin-top: 16px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brass);
}

.image-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  gap: 14px;
}

.image-row img {
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.quote-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
}

.quote-mark {
  color: var(--brass);
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.82;
}

blockquote {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.04;
}

.quote-author {
  margin-top: 24px;
  color: rgba(255, 253, 248, 0.75);
  font-weight: 800;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 22, 19, 0.88), rgba(17, 22, 19, 0.34)), var(--cta-image, url("../images/IMG_3685.jpg"));
  background-position: center;
  background-size: cover;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 76px 0;
}

.cta-inner p {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 253, 248, 0.78);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.story-grid img {
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
}

.timeline {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px;
  background: var(--paper);
}

.timeline-item strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.credential {
  min-height: 190px;
  padding: 28px;
  background: var(--paper);
}

.credential h3 {
  font-size: 1.7rem;
}

.credential p {
  margin-top: 12px;
}

.menu-tabs,
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 28px;
}

.tab-btn,
.filter-btn {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(38, 61, 54, 0.26);
  border-radius: 999px;
  color: var(--forest);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.tab-btn.active,
.filter-btn.active,
.tab-btn:hover,
.filter-btn:hover {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  gap: 22px;
}

.menu-section {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.menu-section h3 {
  margin-bottom: 14px;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
}

.menu-table tr {
  border-bottom: 1px solid var(--line);
}

.menu-table td {
  padding: 16px 10px 16px 0;
  vertical-align: top;
}

.menu-table td:first-child {
  width: 30%;
  color: var(--ink);
  font-weight: 800;
}

.menu-table td:nth-child(2) {
  color: var(--muted);
}

.menu-table td:last-child {
  width: 16%;
  color: var(--forest);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.event-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.event-card p {
  margin-top: 12px;
}

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

.gallery-item {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 494px;
}

.gallery-item.hidden {
  display: none;
}

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

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.82);
}

.gallery-item::after {
  content: "View";
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 12px;
  color: var(--paper);
  background: rgba(32, 33, 31, 0.72);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(17, 22, 19, 0.92);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 253, 248, 0.08);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-detail {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  display: inline-block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.email-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.email-panel h3 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.email-panel p {
  margin-top: 14px;
}

.contact-mail-button {
  margin-top: 26px;
}

.email-panel-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.email-panel-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 800;
}

.email-panel-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brass);
}

.email-panel-note {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  color: rgba(255, 253, 248, 0.78);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(160px, 0.55fr));
  gap: 42px;
  padding: 68px 0 44px;
}

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

.footer-brand p {
  max-width: 420px;
  margin-top: 22px;
  color: rgba(255, 253, 248, 0.72);
}

.footer-col h4 {
  margin-bottom: 16px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a:hover {
  color: var(--brass);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  font-size: 0.9rem;
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .nav-panel {
    gap: 18px;
  }

  .service-showcase,
  .gallery-grid,
  .credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 860px) {
  :root {
    --nav-h: 74px;
  }

  .container {
    width: min(100% - 32px, var(--max));
  }

  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: absolute;
    top: var(--nav-h);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-panel a:not(.nav-cta) {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-panel a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 14px;
    text-align: center;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 5.5rem);
  }

  .hero {
    min-height: 84svh;
  }

  .hero-copy {
    padding: 76px 0 64px;
  }

  .split-heading,
  .editorial-split,
  .story-grid,
  .quote-band,
  .contact-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .pillars,
  .event-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }

  .brand-name {
    font-size: 1.16rem;
  }

  .brand-sub {
    font-size: 0.64rem;
  }

  .hero-actions,
  .cta-inner .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 62px 0 54px;
  }

  .hero-proof {
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
  }

  .hero-proof,
  .pillars,
  .service-showcase,
  .credential-grid,
  .event-grid,
  .gallery-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 106px;
  }

  .service-tile {
    min-height: 330px;
  }

  .image-stack,
  .image-row {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:last-child,
  .story-grid img,
  .image-row img {
    height: 300px;
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

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

  .menu-table tr {
    padding: 14px 0;
  }

  .menu-table td {
    padding: 4px 0;
  }

  .menu-table td:last-child {
    text-align: left;
  }

  .email-panel {
    padding: 24px 18px;
  }

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