:root {
  --ink: #17201b;
  --ink-soft: #425047;
  --paper: #fbfaf6;
  --paper-warm: #f2eee5;
  --line: rgba(23, 32, 27, 0.14);
  --olive: #667a4a;
  --olive-dark: #31422d;
  --coral: #c96645;
  --gold: #b18a4a;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23, 32, 27, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 10px 30px rgba(23, 32, 27, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  gap: 0;
  font-weight: 700;
  line-height: 1.1;
}

.brand-text small {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.76;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

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

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

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

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/hero-catering.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 14, 12, 0.9) 0%, rgba(8, 14, 12, 0.68) 34%, rgba(8, 14, 12, 0.2) 70%),
    linear-gradient(180deg, rgba(8, 14, 12, 0.55) 0%, rgba(8, 14, 12, 0.08) 45%, rgba(8, 14, 12, 0.36) 100%);
}

.hero-content {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc4aa;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.4vw, 4.7rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.hero-meta span {
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 128px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: start;
}

.flow p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.strong-line {
  color: var(--ink);
  font-weight: 800;
}

.services {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100% - var(--max)) / 2));
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  background: var(--paper-warm);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.55fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

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

.service-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.service-card-wide {
  grid-column: span 3;
  display: grid;
  min-height: 180px;
  grid-template-columns: auto minmax(0, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.service-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--white);
  border-radius: 50%;
  background: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card-wide .service-icon {
  margin-bottom: 0;
}

.philosophy {
  width: 100%;
  max-width: none;
  padding: clamp(70px, 10vw, 128px) max(18px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(49, 66, 45, 0.96), rgba(23, 32, 27, 0.98)),
    var(--olive-dark);
}

.philosophy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: center;
}

.philosophy .section-kicker {
  color: #f0b79c;
}

.philosophy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.why-list li {
  position: relative;
  min-height: 82px;
  padding: 22px 22px 22px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(23, 32, 27, 0.06);
}

.why-list li::before {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 16px;
  height: 16px;
  content: "";
  border-radius: 50%;
  background: var(--coral);
  box-shadow: inset 0 0 0 4px var(--white);
}

.contact {
  width: 100%;
  max-width: none;
  padding: clamp(70px, 10vw, 118px) max(18px, calc((100% - var(--max)) / 2));
  background: #e8efe7;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: center;
}

.contact-content p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(49, 66, 45, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-card strong {
  margin-bottom: 4px;
  font-size: 1.16rem;
}

.contact-card a,
.contact-card span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--coral);
}

.contact-card a span,
.contact-card > span span {
  flex: 0 0 auto;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--olive-dark);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 14, 12, 0.9) 0%, rgba(8, 14, 12, 0.68) 60%, rgba(8, 14, 12, 0.32) 100%),
      linear-gradient(180deg, rgba(8, 14, 12, 0.62) 0%, rgba(8, 14, 12, 0.2) 48%, rgba(8, 14, 12, 0.56) 100%);
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .split,
  .section-heading,
  .philosophy-panel,
  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .service-card-wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card-wide .service-icon {
    margin-bottom: 34px;
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .brand-text {
    max-width: 170px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-media {
    background-position: 58% center;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.35rem);
  }

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

  .button {
    width: 100%;
  }

  .section {
    width: min(var(--max), calc(100% - 32px));
    padding: 62px 0;
  }

  .services,
  .philosophy,
  .contact {
    padding: 62px 16px;
  }

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

  .service-card,
  .why-list li {
    min-height: auto;
  }

  .service-card-wide {
    grid-column: span 1;
  }

  .contact-content {
    gap: 28px;
  }

  .contact-card {
    padding: 22px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
