@font-face {
  font-family: "League Spartan";
  src: url("assets/fonts/LeagueSpartan-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --bg: #f7f6f0;
  --surface: #ffffff;
  --surface-2: #edf3f4;
  --ink: #17202b;
  --muted: #5d6b78;
  --line: rgba(23, 32, 43, 0.14);
  --accent: #b1873a;
  --accent-2: #2f6677;
  --deep: #111820;
  --deep-2: #263544;
  --paper: #fffdf8;
  --shadow: 0 24px 70px rgba(17, 24, 32, 0.13);
  --radius: 8px;
}

body.catering-theme {
  --bg: #fff8f4;
  --surface: #ffffff;
  --surface-2: #f3e8df;
  --ink: #202128;
  --muted: #6f625d;
  --line: rgba(32, 33, 40, 0.14);
  --accent: #5b7457;
  --accent-2: #a7475d;
  --deep: #19201c;
  --deep-2: #39433b;
  --paper: #fffaf4;
  --shadow: 0 24px 70px rgba(25, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(23, 32, 43, 0.035) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, var(--bg) 0%, #ffffff 64%, var(--bg) 100%);
  color: var(--ink);
  font-family: "League Spartan", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.18;
  background-image: linear-gradient(rgba(23, 32, 43, 0.08) 1px, transparent 1px);
  background-size: 100% 7px;
  mix-blend-mode: multiply;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--deep);
  color: #ffffff;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-shell {
  min-height: 100dvh;
  overflow: hidden;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1200px, calc(100% - 32px));
  padding: 11px 13px 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(17, 24, 32, 0.09);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--deep);
  box-shadow:
    inset 0 0 0 3px #ffffff,
    0 0 0 1px color-mix(in srgb, var(--accent) 54%, transparent);
}

.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-name span {
  margin-top: 4px;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 25px);
  color: rgba(23, 32, 43, 0.75);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 9px 0 7px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px 10px;
  border: 1px solid var(--deep);
  border-radius: 999px;
  background: var(--deep);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.btn:hover,
.nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--deep);
  transform: translateY(-2px);
}

.btn:active,
.nav-cta:active {
  transform: translateY(1px) scale(0.99);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.86);
  color: var(--deep);
}

.btn.tertiary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--deep);
}

.hero {
  position: relative;
  min-height: 92dvh;
  display: grid;
  align-items: end;
  padding: 138px 0 82px;
  color: #ffffff;
  background: var(--deep);
  overflow: hidden;
}

.hero.page-hero {
  min-height: 62dvh;
  align-items: center;
}

.hero-media,
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media video,
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(0.86) contrast(1.08);
}

.hero-media::after,
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 26%, rgba(177, 135, 58, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(17, 24, 32, 0.94) 0%, rgba(17, 24, 32, 0.68) 48%, rgba(17, 24, 32, 0.42) 100%),
    linear-gradient(180deg, rgba(17, 24, 32, 0.12), rgba(17, 24, 32, 0.9));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.page-hero .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.38fr);
  align-items: center;
}

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

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.hero h1,
.page-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 8.1rem);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-title {
  font-size: clamp(3rem, 6.2vw, 6.6rem);
}

.serif {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

.hero-copy,
.page-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

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

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.hero-panel strong {
  display: block;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 0.9;
}

.hero-panel span,
.hero-panel p {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
}

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

.section.tight {
  padding: clamp(54px, 8vw, 92px) 0;
}

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

.section.dark {
  background: var(--deep);
  color: #ffffff;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(24px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 68px);
}

h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 4.9rem);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.55rem);
  line-height: 1;
}

p {
  margin: 0;
}

.section-heading p,
.lead,
.body-copy {
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
}

.dark .section-heading p,
.section.dark .lead,
.section.dark .body-copy {
  color: rgba(255, 255, 255, 0.72);
}

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

.metric {
  min-height: 190px;
  padding: 24px;
  background: var(--surface);
}

.metric strong {
  display: block;
  color: var(--accent-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.9;
}

.metric span {
  display: block;
  max-width: 20ch;
  margin-top: 34px;
  color: var(--muted);
  font-weight: 760;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.image-panel {
  min-height: 520px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 24, 32, 0.24), rgba(17, 24, 32, 0.82)),
    var(--image) center / cover;
  box-shadow: var(--shadow);
}

.image-panel.small {
  min-height: 380px;
}

.content-stack {
  display: grid;
  gap: 22px;
}

.check-list,
.plain-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.check-list b,
.plain-list b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 16%, #ffffff);
  color: var(--accent);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1;
}

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

.service-card,
.project-card,
.package-card,
.info-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 320px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 46px rgba(17, 24, 32, 0.07);
}

.service-card::before,
.project-card::before,
.package-card::before {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--accent);
}

.service-card p,
.project-card p,
.package-card p,
.info-card p {
  color: var(--muted);
}

.service-card ul,
.package-card ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  list-style: none;
}

.service-card li,
.package-card li {
  position: relative;
  padding-left: 17px;
}

.service-card li::before,
.package-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

.process-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-number {
  color: var(--accent);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.process-item p {
  max-width: 70ch;
  color: var(--muted);
}

.band {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 92px);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 85% 20%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 34%),
    linear-gradient(135deg, var(--deep), var(--deep-2));
  color: #ffffff;
}

.band p {
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.76);
}

.band .btn {
  margin-top: 28px;
  border-color: #ffffff;
  background: #ffffff;
  color: var(--deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-card {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--deep);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.contact-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-lines a,
.contact-lines span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 760;
}

.contact-lines small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-wrap {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 54px rgba(17, 24, 32, 0.08);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: rgba(23, 32, 43, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 14px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--accent-2);
  font-weight: 760;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 42px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

footer {
  padding: 52px 0 34px;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.7fr;
  gap: 28px;
}

.footer-brand {
  max-width: 430px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links b {
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .nav.is-open {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .nav.is-open .nav-links {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding: 12px 0 4px;
  }

  .hero-grid,
  .page-hero .hero-grid,
  .section-heading,
  .split,
  .split.reverse,
  .metric-strip,
  .service-grid,
  .project-grid,
  .package-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .container,
  .nav {
    width: min(100% - 24px, 1200px);
  }

  .nav {
    top: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    gap: 10px;
    padding: 10px 10px 10px 12px;
    transform: none;
  }

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

  .brand-name strong {
    font-size: 0.96rem;
  }

  .brand-name span {
    font-size: 0.57rem;
    letter-spacing: 0.18em;
  }

  .hero,
  .hero.page-hero {
    min-height: auto;
    padding: 130px 0 72px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .hero-copy,
  .page-copy,
  .section-heading p,
  .lead,
  .body-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .footer-bottom,
  .contact-lines a,
  .contact-lines span {
    flex-direction: column;
  }

  .form-grid,
  .process-item,
  .check-list li,
  .plain-list li {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 340px;
  }

  .metric {
    min-height: 150px;
  }

  .service-card,
  .project-card,
  .package-card,
  .info-card {
    min-height: auto;
  }

  .band {
    padding: 28px;
  }
}

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