:root {
  --ink: #1b1a18;
  --charcoal: #292825;
  --paper: #fbfaf7;
  --soft: #efebe3;
  --sage: #62715e;
  --olive: #424d3f;
  --clay: #b86f4b;
  --gold: #c79a54;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(27, 26, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.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: 20;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(27, 26, 24, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a,
.nav-cta {
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  color: var(--clay);
}

.nav-cta {
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(27, 26, 24, 0.18);
  background: transparent;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 80px 24px;
  background:
    linear-gradient(90deg, rgba(27, 26, 24, 0.78), rgba(27, 26, 24, 0.42) 44%, rgba(27, 26, 24, 0.18)),
    url("assets/hero-catering.jpg") center / cover no-repeat;
}

.hero-copy {
  max-width: 680px;
  margin-left: max(24px, calc((100vw - 1200px) / 2));
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c184;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}

h3 {
  font-size: 1.35rem;
}

.hero p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.7);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(27, 26, 24, 0.1);
  border-top: 1px solid rgba(27, 26, 24, 0.08);
  border-bottom: 1px solid rgba(27, 26, 24, 0.08);
}

.intro-strip div {
  min-height: 130px;
  padding: 28px;
  background: var(--paper);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.intro-strip span {
  max-width: 350px;
  color: rgba(27, 26, 24, 0.72);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 104px 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 48px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 64px;
}

.copy-block {
  font-size: 1.02rem;
  color: rgba(27, 26, 24, 0.78);
}

.copy-block p:first-child {
  margin-top: 0;
}

.copy-block .button {
  margin-top: 18px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-list article {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(27, 26, 24, 0.08);
  box-shadow: 0 14px 34px rgba(27, 26, 24, 0.06);
}

.service-list span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--clay);
  font-weight: 800;
}

.service-list p {
  color: rgba(27, 26, 24, 0.68);
}

.gallery-section {
  max-width: none;
  background: var(--soft);
}

.gallery-section .section-heading,
.gallery-controls,
.gallery-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(27, 26, 24, 0.18);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-button.active,
.filter-button:hover {
  background: var(--ink);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  display: block;
  min-width: 0;
  min-height: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}

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

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

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

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

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

.testimonial-marquee {
  position: relative;
  overflow: hidden;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(251, 250, 247, 0));
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(251, 250, 247, 0));
}

.testimonial-grid {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonial-scroll 42s linear infinite;
}

.testimonial-marquee:hover .testimonial-grid,
.testimonial-marquee:focus-within .testimonial-grid {
  animation-play-state: paused;
}

figure {
  flex: 0 0 min(520px, calc(100vw - 72px));
  margin: 0;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(27, 26, 24, 0.08);
  box-shadow: 0 14px 34px rgba(27, 26, 24, 0.06);
}

blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.34;
}

figcaption {
  margin-top: 24px;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.about {
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
  background: var(--olive);
  color: var(--white);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.about .copy-block {
  color: rgba(255, 255, 255, 0.82);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 40px;
}

.contact-card {
  padding: 32px;
  background: var(--ink);
  color: var(--white);
}

.contact-card p {
  margin-top: 0;
}

.contact-card a {
  display: block;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(27, 26, 24, 0.18);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
}

input {
  min-height: 48px;
  padding: 10px 12px;
}

textarea {
  resize: vertical;
  min-height: 150px;
  padding: 12px;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(199, 154, 84, 0.55);
  outline-offset: 3px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
  padding: 34px 24px;
  border-top: 1px solid rgba(27, 26, 24, 0.08);
  color: rgba(27, 26, 24, 0.72);
}

.footer img {
  width: 210px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(27, 26, 24, 0.88);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--paper);
    border-bottom: 1px solid rgba(27, 26, 24, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(27, 26, 24, 0.08);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 680px;
    align-items: flex-end;
    padding-top: 120px;
  }

  .hero-copy {
    margin-left: 0;
  }

  .intro-strip,
  .section-heading,
  .split,
  .about-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-heading {
    gap: 8px;
  }

  .split {
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .service-list,
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    min-height: 70px;
    padding: 0 16px;
  }

  .brand img {
    width: 138px;
  }

  .nav-links {
    inset: 70px 0 auto 0;
  }

  .hero {
    min-height: 620px;
    padding: 96px 18px 54px;
  }

  h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .intro-strip div,
  .section,
  .about {
    padding-left: 18px;
    padding-right: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

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

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 24px;
  }

  figure,
  .contact-card,
  .service-list article {
    padding: 24px;
  }
}

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

  .testimonial-marquee {
    overflow-x: auto;
  }

  .testimonial-grid {
    animation: none;
  }
}
