/* =========================================================
   Savory Spoonful Catering — coastal hospitality redesign
   Navy + cream dual theme; sage & carrot brand accents.
   ========================================================= */

:root {
  --navy: #0b1f3a;
  --navy-deep: #071628;
  --navy-soft: #163456;
  --navy-mist: #e8eef5;
  --cream: #f7f4ef;
  --cream-dark: #efe8df;
  --cream-deep: #e7dfd3;
  --sage: #7d8b6a;
  --sage-dark: #5f6b50;
  --sage-soft: #e4eadc;
  --carrot: #d9853b;
  --carrot-dark: #c86b2f;
  --carrot-soft: #e8b78a;
  --radish: #c48a8a;
  --charcoal: #2a2a2a;
  --charcoal-soft: #4a4541;
  --ink-muted: #6b645c;
  --soft-grey: #c8c4be;
  --white: #ffffff;

  --shadow-sm: 0 1px 3px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 16px 40px rgba(11, 31, 58, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --header-h: 88px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --border-soft: 1px solid rgba(11, 31, 58, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--carrot-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--carrot);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--charcoal);
  margin: 0 0 0.55em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.85rem); }
h2 { font-size: clamp(1.95rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.01em; }

p { margin: 0 0 1.05em; }

code {
  font-size: 0.9em;
  background: var(--cream-dark);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-heading { margin-bottom: 0.15rem; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin: 0 0 0.9rem;
}

.section-label--light {
  color: var(--carrot-soft);
}

.section-intro {
  max-width: 40rem;
  color: var(--ink-muted);
  margin-bottom: 2.4rem;
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.section--sage {
  background: linear-gradient(165deg, var(--sage-soft) 0%, #f3f6ef 48%, var(--cream) 100%);
}

.section--contact {
  background: linear-gradient(180deg, var(--cream) 0%, var(--navy-mist) 100%);
}

/* ---------- Crest / logo accents (navy plates) ---------- */
.crest-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  max-width: 120px;
  margin-bottom: 0.85rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.crest-accent img {
  width: 72px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.crest-accent--on-navy {
  background: var(--navy-deep);
  border-color: rgba(255, 255, 255, 0.18);
}

.crest-accent--footer {
  width: auto;
  height: auto;
  margin: 0 auto 0.85rem;
  background: transparent;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.55rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn--primary {
  background: var(--carrot);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--carrot-dark);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(42, 42, 42, 0.18);
}

.btn--ghost:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 244, 239, 0.45);
}

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

.btn--nav {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 244, 239, 0.35);
  padding: 0.55rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn--nav:hover {
  background: var(--carrot);
  border-color: var(--carrot);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Header (navy) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 31, 58, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(7, 22, 40, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 0.55rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

.logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.logo--header img,
.logo-plate img {
  height: 72px;
  width: auto;
  max-width: min(520px, 66vw);
  display: block;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.15;
}

.logo-wordmark__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.logo-wordmark__sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--carrot-soft);
}

.logo--footer .logo-plate--footer {
  padding: 0.2rem;
  background: var(--navy-deep);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-md);
}

.logo--footer img {
  height: 110px;
  width: auto;
  max-width: 260px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.05rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav__panel {
  display: contents;
}

.site-nav__top,
.site-nav__close {
  display: none;
}

.site-nav__links {
  display: contents;
}

.site-nav a:not(.btn) {
  color: rgba(247, 244, 239, 0.82);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.site-nav a:not(.btn):hover {
  color: var(--cream);
  border-bottom-color: rgba(217, 133, 59, 0.55);
}

.site-nav .btn { margin-left: 0.35rem; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--navy);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 40, 0.45) 0%, rgba(7, 22, 40, 0.55) 40%, rgba(7, 22, 40, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 22, 40, 0.55) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 4rem;
  max-width: 40rem;
}

.hero__logo-badge {
  width: auto;
  height: auto;
  max-width: 180px;
  margin: 0 auto 1.1rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-badge img {
  width: 160px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  display: block;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--carrot-soft);
  margin: 0 0 1rem;
}

.hero__eyebrow-dot { margin: 0 0.35rem; opacity: 0.7; }

.hero h1 {
  color: var(--cream);
  margin-bottom: 0.85rem;
}

.hero__lead {
  color: rgba(247, 244, 239, 0.88);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  margin-bottom: 2.5rem;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ---------- Equipment badge ---------- */
.equipment-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.15rem 1.4rem;
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.equipment-badge__label {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal-soft);
}

.equipment-badge__note {
  margin: 0;
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.equipment-badge__logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.equipment-badge__logo--kj {
  width: 118px;
  height: auto;
}

.equipment-badge__logo--mb {
  width: 130px;
  height: auto;
}

.equipment-badge--inline {
  margin: 0.75rem 0 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
}

.equipment-badge--inline .equipment-badge__logo--kj {
  width: 100px;
  height: auto;
}

.equipment-badge--footer {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  justify-content: center;
  margin-bottom: 1rem;
}

.equipment-badge--footer .equipment-badge__label {
  color: rgba(247, 244, 239, 0.7);
  font-size: 0.8rem;
}

.equipment-badge--footer .equipment-badge__logo--kj { width: 88px; }
.equipment-badge--footer .equipment-badge__logo--mb {
  width: 100px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.card {
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.55rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.section--alt .card {
  background: var(--cream);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card--featured {
  border-color: rgba(11, 31, 58, 0.18);
  background: linear-gradient(165deg, var(--navy-mist), var(--cream));
}

.card__icon {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.card h3 { margin-bottom: 0.4rem; }
.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.card--with-photo {
  padding-top: 0;
  overflow: hidden;
}

.card__photo {
  margin: 0 -1.4rem 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: var(--navy-mist);
  max-height: 200px;
}

.card__photo img {
  display: block;
  width: 100%;
  height: 200px;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
}

.card__cta {
  margin-top: 0.75rem !important;
  color: var(--navy) !important;
  font-size: 0.95rem !important;
}

.card__cta a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.card__cta a:hover {
  color: var(--charcoal);
}

/* ---------- Menu toolbar / filters ---------- */
.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.menu-tab {
  appearance: none;
  border: 1px solid rgba(11, 31, 58, 0.14);
  background: var(--white);
  color: var(--charcoal-soft);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.15rem;
  min-height: 44px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
  flex: 0 0 auto;
}

.menu-tab:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.menu-tab.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.price-disclaimer {
  background: var(--navy-mist);
  border-left: 3px solid var(--carrot);
  padding: 0.9rem 1.15rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  margin: 0 0 1.75rem;
}

.price-disclaimer strong { color: var(--navy); }

/* ---------- Accordion menus ---------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.accordion-item:hover,
.accordion-item.is-open {
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 31, 58, 0.16);
}

.accordion-item[hidden] { display: none !important; }

.accordion-item > h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.accordion-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: var(--charcoal);
}

.accordion-trigger:hover {
  background: rgba(11, 31, 58, 0.03);
}

.accordion-trigger__main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.accordion-trigger__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--navy);
}

.accordion-trigger__meta {
  font-size: 0.86rem;
  color: var(--ink-muted);
}

.accordion-trigger__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--carrot-dark);
  white-space: nowrap;
  background: rgba(217, 133, 59, 0.12);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
}

.accordion-trigger__price span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: 0.15rem;
  opacity: 0.85;
}

.accordion-trigger__chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-right: 0.35rem;
  flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-trigger__chevron {
  transform: rotate(-135deg);
  margin-top: 0.25rem;
}

.accordion-panel[hidden] { display: none; }

.accordion-panel__inner {
  padding: 0 1.35rem 1.45rem;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
}

.package-price-line { margin: 1rem 0 0.75rem; }

.price-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
}

.menu-subgroup-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 1.15rem 0 0.5rem;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.1rem;
  color: var(--charcoal-soft);
  border-bottom: 1px solid rgba(11, 31, 58, 0.05);
  font-size: 0.98rem;
}

.menu-list li:last-child { border-bottom: 0; }

.menu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.menu-list strong { color: var(--charcoal); font-weight: 550; }

/* ---------- Gallery ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--navy-mist);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img,
.gallery-item:nth-child(7) img {
  height: 280px;
}

.gallery-item figcaption {
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.4rem;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--carrot);
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.step h3 { margin-bottom: 0.35rem; }
.step p { margin: 0; color: var(--ink-muted); font-size: 0.96rem; }

/* ---------- Testimonials carousel ---------- */
.testimonials-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.testimonials-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.testimonials-track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  background: var(--cream);
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: 1.85rem 1.6rem 1.7rem;
  box-shadow: var(--shadow-md);
  min-height: 220px;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.testimonials-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 58, 0.15);
  background: var(--white);
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.testimonials-btn:hover {
  background: var(--navy-mist);
  border-color: var(--navy);
}

.testimonials-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.testimonials-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.22);
  cursor: pointer;
}

.testimonials-dot.is-active {
  background: var(--navy);
  width: 22px;
}

.testimonial-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-soft);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--navy);
}

.testimonial-name {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-event {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}

.contact-card h2 { color: var(--cream); }

.contact-card p {
  color: rgba(247, 244, 239, 0.88);
}

.contact-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.contact-list li {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--carrot-soft);
  margin-bottom: 0.25rem;
}

.contact-list a,
.contact-list span {
  color: var(--cream);
  text-decoration: none;
}

.contact-list a:hover { color: var(--carrot-soft); }

.form-panel {
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal-soft);
}

.req { color: var(--carrot-dark); }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(11, 31, 58, 0.14);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(125, 139, 106, 0.2);
  background: var(--white);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 0.25rem;
}

.form-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.form-fallback {
  margin: 1.25rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  text-align: center;
  font-size: 0.98rem;
  color: var(--charcoal-soft);
}

.form-fallback a {
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-fallback a:hover {
  color: var(--carrot-dark);
}

.form-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.75rem 1rem;
  background: #fdecea;
  color: #8a2b2b;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.form-success {
  text-align: left;
}

.form-success h3 { color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(247, 244, 239, 0.82);
  padding: 3.5rem 0 2rem;
}

.footer-brand { margin-bottom: 2rem; }

.footer-brand .logo { margin-bottom: 1rem; }

.footer-tagline {
  max-width: 32rem;
  color: rgba(247, 244, 239, 0.7);
  font-size: 0.98rem;
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer h3 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.site-footer a {
  color: rgba(247, 244, 239, 0.82);
  text-decoration: none;
}

.site-footer a:hover { color: var(--carrot-soft); }

.footer-meta {
  margin: 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-meta-muted { color: rgba(247, 244, 239, 0.5); }

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li { margin-top: 0.45rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  color: rgba(247, 244, 239, 0.55);
}

/* ---------- Utilities ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.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;
}

.is-hidden,
[hidden] { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .logo-wordmark { display: none; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: block;
    background: rgba(7, 22, 40, 0.55);
    padding: 0;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__panel {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 420px);
    height: 100%;
    max-height: 100dvh;
    background: var(--navy-deep);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.28);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
  }

  .site-nav.is-open .site-nav__panel {
    transform: translateX(0);
  }

  .site-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 1;
    min-height: 64px;
    padding: 0.85rem 1.25rem;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--cream);
    letter-spacing: -0.01em;
  }

  .site-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: transparent;
    color: var(--cream);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }

  .site-nav__close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--carrot-soft);
  }

  .site-nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem 1.25rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav a:not(.btn) {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.95rem 1rem;
    border-bottom: 0;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--cream);
  }

  .site-nav a:not(.btn):hover,
  .site-nav a:not(.btn):focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: transparent;
    color: var(--cream);
  }

  .site-nav .btn {
    margin: 0.85rem 0 0;
    align-self: stretch;
    justify-content: center;
    min-height: 52px;
    width: 100%;
    font-size: 0.9rem;
    padding: 0.95rem 1.25rem;
    background: var(--carrot);
    border-color: var(--carrot);
    color: var(--white);
  }

  .site-nav .btn:hover {
    background: var(--carrot-dark);
    border-color: var(--carrot-dark);
  }

  .menu-toolbar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.35rem;
    margin-right: -1.25rem;
    padding-right: 1.25rem;
  }

  .accordion-trigger {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "main chev"
      "price chev";
    gap: 0.45rem 0.75rem;
  }

  .accordion-trigger__main { grid-area: main; }
  .accordion-trigger__price { grid-area: price; justify-self: start; }
  .accordion-trigger__chevron { grid-area: chev; align-self: center; }
}

@media (max-width: 640px) {
  .card-grid,
  .testimonials-grid,
  .steps,
  .gallery-strip,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img,
  .gallery-item:nth-child(1) img,
  .gallery-item:nth-child(2) img,
  .gallery-item:nth-child(3) img,
  .gallery-item:nth-child(7) img {
    height: 220px;
  }

  .hero__content { padding: 3.5rem 0 3rem; }

  .logo--header img,
  .logo-plate img { height: 58px; width: auto; max-width: min(360px, 78vw); }
}

@media (min-width: 981px) {
  .gallery-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-row: span 1;
  }
}


/* ---------- Open menu package cards (no accordion) ---------- */
.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.menu-package {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.menu-package[hidden] {
  display: none !important;
}

.menu-package__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

.menu-package__head h3 {
  margin: 0 0 0.2em;
  color: var(--navy);
  font-size: 1.35rem;
}

.menu-package__meta {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.menu-package__price {
  margin: 0;
  background: var(--navy);
  color: #f7f1e4;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.menu-package__price span {
  font-weight: 500;
  opacity: 0.85;
  font-size: 0.85em;
}

.menu-package > p {
  margin: 0 0 0.85rem;
  color: var(--charcoal-soft);
}

.menu-tier {
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  padding: 0.75rem 0 0.15rem;
  margin-top: 0.55rem;
}

.menu-tier:first-of-type {
  border-top: none;
  margin-top: 0.25rem;
}

.menu-tier h4 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.tier-price {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--carrot-dark);
  letter-spacing: 0;
}

.menu-tier p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

@media (max-width: 640px) {
  .menu-card-grid {
    grid-template-columns: 1fr;
  }
  .menu-package__price {
    width: 100%;
    text-align: center;
  }
}

/* ---------- Partner / sourcing badge (Bird Island) ---------- */
.partner-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.85rem 0 1.1rem;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius-sm);
}

.partner-badge--about {
  max-width: 520px;
  margin: 1rem auto 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.partner-badge__logo {
  width: 96px;
  height: auto;
  flex-shrink: 0;
}

.partner-badge__label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.partner-badge__name {
  margin: 0.15rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
}

.partner-badge__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}

.partner-badge__meta a {
  color: var(--navy);
}


/* ---------- Simple kind-words quotes ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quotes-simple {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  max-width: 920px;
  margin: 0 auto;
}

.quote-card {
  background: var(--cream);
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 400;
}

.quote-card__name {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.quote-card__event {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

@media (max-width: 720px) {
  .quotes-simple {
    grid-template-columns: 1fr;
  }
}

.logo-wordmark--hidden { display: none !important; }
.logo--header .logo-plate,
.logo--header .logo-plate img,
.logo--footer img,
.crest-accent,
.crest-accent img { border-radius: 0 !important; }


/* Wide elegant wordmark header */
.logo--header {
  gap: 0;
  max-width: min(560px, 68vw);
}
.logo--header .logo-plate {
  width: 100%;
}
.logo--header .logo-plate img {
  width: 100%;
  height: auto;
  max-height: 84px;
  max-width: 100%;
}
@media (max-width: 820px) {
  .logo--header { max-width: min(380px, 78vw); }
  .logo--header .logo-plate img { max-height: 64px; }
}

/* Blend wordmark into navy header */
.site-header .logo--header .logo-plate {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.site-header .logo--header img {
  background: transparent !important;
  mix-blend-mode: normal;
  filter: none;
}

/* Final header wordmark blend */
.site-header .header-inner {
  min-height: 84px;
  align-items: center;
}
.site-header .logo--header {
  max-width: min(520px, 62vw);
  gap: 0;
}
.site-header .logo--header .logo-plate {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 100%;
}
.site-header .logo--header .logo-plate img,
.site-header .logo--header img {
  width: 100%;
  height: auto;
  max-height: 76px;
  max-width: 100%;
  background: transparent !important;
  border-radius: 0 !important;
  object-fit: contain;
}
.hero__logo-badge {
  /* header already carries brand; keep hero mark smaller & quiet */
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}
.hero__logo-badge img {
  width: 130px;
  max-height: none;
}
@media (max-width: 820px) {
  .site-header .header-inner { min-height: 72px; }
  .site-header .logo--header { max-width: min(340px, 74vw); }
  .site-header .logo--header .logo-plate img,
  .site-header .logo--header img { max-height: 58px; }
}

.equipment-badge__link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.equipment-badge__link:hover,
.equipment-badge__link:focus-visible {
  opacity: 0.85;
  transform: translateY(-1px);
  outline: none;
}


/* ---------- FAQ cards (open readable style) ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: 0.35rem;
}

.faq-card {
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.45rem;
  box-shadow: var(--shadow-sm);
}

.faq-card h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.2rem;
}

.faq-card p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.98rem;
}

.service-area {
  margin-top: 2rem;
  padding: 1.5rem 1.5rem 1.55rem;
  background: linear-gradient(165deg, var(--navy-mist) 0%, var(--cream) 100%);
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 820px;
}

.service-area__label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.service-area h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.service-area p {
  margin: 0;
  color: var(--charcoal-soft);
  max-width: 58ch;
}


/* ---------- Client payments ---------- */
.payments-panel {
  max-width: 720px;
  padding: 1.65rem 1.55rem 1.7rem;
}

.payments-panel__title {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.payments-steps {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
  color: var(--charcoal-soft);
}

.payments-steps li {
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.payments-steps li:last-child {
  margin-bottom: 0;
}

.payments-steps strong {
  color: var(--navy);
}

.payments-note {
  margin: 0 0 1.35rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
  max-width: 54ch;
}

/* ---------- Sticky mobile quote CTA ---------- */
.sticky-quote {
  display: none;
}

@media (max-width: 820px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .sticky-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0.85rem;
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    z-index: 95;
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-pill);
    background: var(--carrot);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(11, 31, 58, 0.28);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background 0.2s var(--ease);
  }

  .sticky-quote:hover,
  .sticky-quote:focus-visible {
    background: var(--carrot-dark);
    color: var(--white);
    text-decoration: none;
  }

  .sticky-quote.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
  }

  body.has-sticky-quote {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  /* Keep contact form clear of the floating CTA while visible */
  #contact .form-actions {
    padding-bottom: 0.25rem;
  }
}

@media (min-width: 821px) {
  .sticky-quote {
    display: none !important;
  }
}

