/*
 * SANTI'S CATERING — SHARED STYLES
 *
 * This Phase 1 file provides only the structural foundation for new pages.
 * The approved visual redesign will be developed in a later phase.
 */

/* ---------- 1. Design tokens ---------- */
:root {
  --color-cream: #f7f3e8;
  --color-sage: #9fa891;
  --color-olive: #3f4a38;
  --color-gold: #b89a62;
  --color-ink: #24251f;
  --color-white: #ffffff;
  --color-error: #8b2e2e;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", Arial, Helvetica, sans-serif;
  --content-width: 75rem;
  --focus-ring: 0 0 0 3px rgba(184, 154, 98, 0.45);
}

/* ---------- 2. Basic reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

/* Screen-reader text remains accessible without appearing visually. */
.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;
}

/* ---------- 3. Shared layout ---------- */
.site-main {
  min-height: 60vh;
}

.page-shell {
  width: min(100% - 2rem, var(--content-width));
  margin-inline: auto;
  padding-block: 5rem;
}

.page-shell h1,
.page-shell h2 {
  font-family: var(--font-heading);
}

.page-shell h1 {
  margin-top: 0;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05;
}

/* ---------- 4. Shared navigation ---------- */
.site-header {
  position: relative;
  z-index: 30;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(63, 74, 56, 0.18);
}

.contact-bar {
  background: var(--color-olive);
  color: var(--color-white);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.contact-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1rem;
  width: min(100% - 1.5rem, var(--content-width));
  margin-inline: auto;
  padding-block: 0.55rem;
}

.contact-bar a {
  text-decoration: none;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--content-width));
  min-height: 8.5rem;
  margin-inline: auto;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
}

.brand-logo {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo--header {
  width: clamp(8.5rem, 42vw, 12.5rem);
}

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

.nav-toggle {
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 1px solid var(--color-olive);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--color-olive);
  cursor: pointer;
  font-size: 1.4rem;
}

.nav-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 10;
  display: none;
  padding: 1rem;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(63, 74, 56, 0.18);
}

.nav-menu.is-open {
  display: grid;
  gap: 0.5rem;
}

.nav-menu a,
.footer-nav a {
  padding: 0.75rem;
  text-decoration: none;
}

.nav-menu a[aria-current="page"],
.footer-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4rem;
}

/* ---------- 5. Shared buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

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

/* ---------- 6. Shared footer ---------- */
.site-footer {
  padding-block: 3rem;
  background: var(--color-olive);
  color: var(--color-white);
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
  width: min(100% - 2rem, var(--content-width));
  margin-inline: auto;
}

.site-footer__intro {
  max-width: 26rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.site-footer__contact {
  display: grid;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-style: normal;
}

.site-footer__contact a {
  text-decoration: none;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.875rem;
}

/* This message appears only if a shared file cannot be loaded. */
.include-error {
  margin: 0;
  padding: 1rem;
  background: #fff0f0;
  color: var(--color-error);
  text-align: center;
}

/* ---------- 7. Larger screens ---------- */
@media (min-width: 64rem) {
  .nav-toggle {
    display: none;
  }

  .nav-menu,
  .nav-menu.is-open {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
  }

  .site-footer__inner {
    grid-template-columns: 1.2fr auto 1fr;
    align-items: start;
  }

  .site-footer__copyright {
    grid-column: 1 / -1;
  }
}

/* ========================================================================== */
/* MENUS LANDING PAGE                                                         */
/* Uses the same editorial styling as the approved Home and menu detail pages.*/
/* ========================================================================== */

.menus-landing-page {
  overflow-x: hidden;
  background: #f8f4ea;
}

.menus-landing-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  background: #e9e8dc;
}

.menus-landing-hero__image {
  height: clamp(26rem, 95vw, 39rem);
}

.menus-landing-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menus-landing-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 10vw, 8rem) max(1rem, calc((100% - var(--content-width)) / 2));
}

.menus-landing-hero h1 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 11vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.86;
}

.menus-landing-hero__content > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: #565a50;
}

.menus-landing-hero__note {
  padding-left: 1rem;
  border-left: 1px solid #917748;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
}

.menus-landing-hero .button {
  margin-top: 2rem;
}

.botanical--menus-landing-hero {
  right: -3rem;
  bottom: 1rem;
}

.menu-collection {
  background: #f8f4ea;
  scroll-margin-top: 2rem;
}

.menu-collection__grid {
  display: grid;
  max-width: 72rem;
  margin-inline: auto;
  gap: 1.5rem;
}

.menu-collection-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(145, 119, 72, 0.48);
  background: #f3eee2;
  box-shadow: 0 1.5rem 3.5rem rgba(50, 54, 45, 0.09);
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.menu-collection-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.menu-collection-card__content {
  padding: clamp(1.75rem, 5vw, 3rem);
}

.menu-collection-card h3 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
}

.menu-collection-card p {
  min-height: 4.2rem;
  margin: 1rem 0 0;
  color: #60635a;
  font-size: 0.84rem;
}

.menu-collection-card .button {
  width: 100%;
  min-height: 3.25rem;
  margin-top: 1.5rem;
  padding-inline: 1rem;
  text-align: center;
}

.menu-customization {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 12rem) 1rem;
  background: #aeb5a1;
  text-align: center;
}

.menu-customization__inner {
  position: relative;
  z-index: 1;
  max-width: 53rem;
  margin-inline: auto;
}

.menu-customization h2,
.printable-menu-note h2,
.menus-landing-cta h2 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.menu-customization__inner > p:not(.eyebrow) {
  max-width: 44rem;
  margin: 1.25rem auto 0;
  color: #3f463a;
}

.menu-customization .button {
  width: auto;
  margin-top: 2rem;
  padding-inline: 2rem;
}

.botanical--menu-customization {
  right: -3rem;
  bottom: 1rem;
}

.printable-menu-note {
  display: grid;
  align-items: start;
  width: min(100% - 2rem, 70rem);
  margin-inline: auto;
  gap: 1.25rem;
  padding-block: clamp(6rem, 11vw, 10rem);
}

.printable-menu-note > .leaf-mark {
  margin: 0;
}

.printable-menu-note h2 {
  font-size: clamp(2.3rem, 6vw, 3.75rem);
}

.printable-menu-note p:not(.eyebrow) {
  max-width: 44rem;
  color: #5d6057;
}

.menus-landing-cta {
  padding: clamp(7rem, 12vw, 12rem) 1rem;
  background: #e9e8dc;
  text-align: center;
}

.menus-landing-cta__inner {
  max-width: 54rem;
  margin-inline: auto;
}

.menus-landing-cta__inner > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1.3rem auto 0;
  color: #5d6057;
}

.menus-landing-cta .button {
  width: auto;
  margin-top: 2rem;
  padding-inline: 2rem;
}

@media (min-width: 48rem) {
  .menu-collection__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .printable-menu-note {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 2rem;
  }
}

@media (min-width: 64rem) {
  .menus-landing-hero {
    grid-template-columns: minmax(28rem, 0.85fr) minmax(0, 1fr);
    min-height: 42rem;
  }

  .menus-landing-hero__image {
    height: 100%;
    min-height: 42rem;
  }

  .menus-landing-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: clamp(3rem, 6vw, 7rem);
  }
}

@media (hover: hover) {
  .menu-collection-card:hover {
    border-color: rgba(145, 119, 72, 0.82);
    box-shadow: 0 2rem 4rem rgba(50, 54, 45, 0.13);
    transform: translateY(-0.25rem);
  }

  .menu-collection-card:hover .menu-collection-card__image img {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-collection-card,
  .menu-collection-card__image img {
    transform: none;
    transition: none;
  }
}

/* ========================================================================== */
/* FINAL SHARED POLISH OVERRIDES                                              */
/* Keeps approved layouts intact while standardizing interaction and rhythm. */
/* ========================================================================== */

body {
  overflow-wrap: break-word;
}

.button {
  min-height: 3.125rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.button--primary,
.button--gold {
  border-color: var(--color-olive);
  background: var(--color-olive);
  color: var(--color-white);
  box-shadow: inset 0 -2px 0 rgba(184, 154, 98, 0.55);
}

.button--outline {
  border-color: var(--color-olive);
  background: rgba(248, 244, 234, 0.45);
  color: var(--color-olive);
}

.text-link {
  background-image: linear-gradient(var(--color-gold), var(--color-gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 220ms ease, color 220ms ease;
}

:focus-visible {
  outline: 2px solid #80683e;
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(248, 244, 234, 0.95), 0 0 0 6px rgba(128, 104, 62, 0.5);
}

.site-footer {
  padding-block: clamp(3.5rem, 7vw, 5rem);
}

.site-footer__contact,
.site-footer__contact a,
.contact-bar__inner,
.contact-bar__inner a {
  overflow-wrap: anywhere;
}

.event-form input,
.event-form select,
.event-form textarea,
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-size: 1rem;
}

@media (max-width: 63.999rem) {
  .nav-menu {
    display: grid;
    max-height: 0;
    gap: 0.5rem;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 280ms ease, opacity 220ms ease, padding 280ms ease, visibility 0s linear 280ms;
  }

  .nav-menu.is-open {
    max-height: 38rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav-menu a {
    min-height: 2.75rem;
  }
}

@media (min-width: 64rem) {
  .nav-menu a {
    white-space: nowrap;
  }
}

@media (max-width: 27rem) {
  .contact-bar__inner {
    gap: 0.3rem 0.75rem;
    font-size: 0.68rem;
  }

  .brand-logo--header {
    width: 8rem;
  }

  .site-nav {
    width: min(100% - 1.25rem, var(--content-width));
  }

  .home-hero h1,
  .menu-page-hero h1,
  .menus-landing-hero h1,
  .services-hero h1,
  .gallery-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.65rem, 14vw, 3.4rem);
  }

  .service-feature__actions .button,
  .menu-collection-card .button,
  .pdf-panel .button {
    width: 100%;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (hover: hover) {
  .button--primary:hover,
  .button--gold:hover {
    border-color: #2d3528;
    background: #2d3528;
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: inset 0 -2px 0 rgba(184, 154, 98, 0.7), 0 0.6rem 1.4rem rgba(45, 53, 40, 0.14);
  }

  .button--outline:hover {
    background: var(--color-olive);
    color: var(--color-white);
    transform: translateY(-1px);
  }

  .text-link:hover {
    color: var(--color-olive);
    background-size: 100% 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-menu,
  .nav-menu.is-open,
  .button,
  .text-link {
    transform: none;
    transition: none;
  }
}

/* ========================================================================== */
/* PLAN YOUR EVENT / CONTACT PAGE                                             */
/* Conversion-focused form using the approved shared hospitality aesthetic.  */
/* ========================================================================== */

.contact-page {
  overflow-x: hidden;
  background: #f8f4ea;
}

.contact-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  background: #e9e8dc;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 10vw, 8rem) max(1rem, calc((100% - var(--content-width)) / 2));
}

.contact-hero h1 {
  max-width: 48rem;
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 10vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.contact-hero__content > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: #565a50;
}

.contact-hero .button {
  margin-top: 2rem;
}

.contact-hero__image {
  height: clamp(24rem, 75vw, 38rem);
}

.contact-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.botanical--contact-hero {
  left: -3rem;
  bottom: 1rem;
  transform: rotate(180deg);
}

.contact-form-section {
  display: grid;
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
  gap: clamp(3rem, 8vw, 6rem);
  padding-block: clamp(7rem, 12vw, 12rem);
}

.contact-form-section__intro {
  max-width: 42rem;
}

.contact-form-section__intro h2,
.direct-contact h2,
.contact-cta h2 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.contact-form-section__intro > p:not(.eyebrow) {
  color: #5d6057;
}

.form-required-note {
  margin-top: 1.5rem;
  font-size: 0.72rem;
}

.form-required-note span,
.event-form label > span[aria-hidden="true"] {
  color: #80683e;
}

.event-form {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.4rem, 5vw, 3.25rem);
  border: 1px solid rgba(145, 119, 72, 0.5);
  background: #f3eee2;
  box-shadow: 0 1.5rem 4rem rgba(50, 54, 45, 0.1);
  scroll-margin-top: 2rem;
}

.event-form .form-field input,
.event-form .form-field select,
.event-form .form-field textarea {
  background: rgba(255, 255, 255, 0.62);
}

.optional-label {
  margin-left: 0.4rem;
  color: #77796f;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.form-help,
.event-form__submit p {
  margin: 0.45rem 0 0;
  color: #71736a;
  font-size: 0.68rem;
  line-height: 1.55;
}

.form-submit-status {
  color: #565b4e;
}

.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-process {
  background: #e9e8dc;
}

.contact-process__steps {
  display: grid;
  max-width: 70rem;
  margin: 0 auto;
  padding: 0;
  gap: 1px;
  border: 1px solid rgba(145, 119, 72, 0.38);
  background: rgba(145, 119, 72, 0.3);
  list-style: none;
}

.contact-process__steps li {
  padding: clamp(2rem, 6vw, 3.5rem);
  background: #f8f4ea;
}

.contact-process__steps span {
  color: #80683e;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.contact-process__steps h3 {
  margin: 0.65rem 0 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.05;
}

.contact-process__steps p {
  margin: 0.85rem 0 0;
  color: #62655b;
  font-size: 0.8rem;
}

.direct-contact {
  display: grid;
  width: min(100% - 2rem, 70rem);
  margin-inline: auto;
  gap: clamp(3rem, 8vw, 6rem);
  padding-block: clamp(7rem, 12vw, 12rem);
}

.direct-contact__intro > p:not(.eyebrow) {
  color: #5d6057;
}

.direct-contact__details {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(145, 119, 72, 0.48);
  font-style: normal;
}

.direct-contact__details > div {
  display: grid;
  gap: 0.35rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid rgba(63, 74, 56, 0.16);
}

.direct-contact__details span {
  color: #80683e;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-contact__details a,
.direct-contact__details p {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 4vw, 1.65rem);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25rem;
}

.contact-reassurance {
  display: grid;
  gap: 1px;
  background: rgba(63, 74, 56, 0.3);
}

.contact-reassurance > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1.5rem max(1rem, calc((100vw - var(--content-width)) / 2));
  background: #aeb5a1;
}

.contact-reassurance span {
  color: #665735;
  font-family: var(--font-heading);
}

.contact-reassurance p {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-cta {
  padding: clamp(6rem, 11vw, 10rem) 1rem;
  background: #f3eee2;
  text-align: center;
}

.contact-cta__inner {
  max-width: 50rem;
  margin-inline: auto;
}

.contact-cta__inner > p:not(.eyebrow) {
  color: #5d6057;
}

.contact-cta .button {
  width: auto;
  margin-top: 2rem;
  padding-inline: 2rem;
}

@media (min-width: 48rem) {
  .event-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-form .form-field--wide,
  .event-form .form-honey {
    grid-column: 1 / -1;
  }

  .contact-process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-reassurance {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .contact-reassurance > div {
    display: block;
    padding: 2rem 1.25rem;
    text-align: center;
  }

  .contact-reassurance span {
    display: block;
    margin-bottom: 0.65rem;
  }
}

@media (min-width: 64rem) {
  .contact-hero {
    grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.85fr);
    min-height: 42rem;
  }

  .contact-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: clamp(3rem, 6vw, 7rem);
  }

  .contact-hero__image {
    height: 100%;
    min-height: 42rem;
  }

  .contact-form-section,
  .direct-contact {
    grid-template-columns: 0.7fr 1.3fr;
  }
}

/* ========================================================================== */
/* SERVICES PAGE                                                              */
/* Uses the same colors, typography, buttons, spacing, and motion as Home.    */
/* ========================================================================== */

.services-page {
  overflow-x: hidden;
  background: #f8f4ea;
}

.services-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  background: #e9e8dc;
}

.services-hero__image {
  height: clamp(27rem, 105vw, 39rem);
}

.services-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.services-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 10vw, 8rem) max(1rem, calc((100% - var(--content-width)) / 2));
}

.services-hero h1 {
  max-width: 42rem;
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 10vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.services-hero__content > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 1.5rem 0 0;
  color: #55594f;
}

.services-hero .button {
  margin-top: 2rem;
}

.botanical--services-hero {
  right: -3rem;
  bottom: 1rem;
}

.services-collection {
  background: #f8f4ea;
}

.service-grid {
  display: grid;
  max-width: 72rem;
  margin-inline: auto;
  gap: 1.5rem;
}

.service-feature {
  min-width: 0;
  border: 1px solid rgba(145, 119, 72, 0.46);
  background: #f3eee2;
  box-shadow: 0 1.3rem 3.25rem rgba(50, 54, 45, 0.08);
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.service-feature > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-feature {
  overflow: hidden;
}

.service-feature__content {
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.service-feature h3 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
}

.service-feature__content > p {
  min-height: 4.2rem;
  margin: 0.9rem 0 0;
  color: #61645b;
  font-size: 0.84rem;
}

.service-feature__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.service-feature__actions .button {
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
}

.services-trust {
  background: #e9e8dc;
}

.trust-grid {
  display: grid;
  max-width: 70rem;
  margin-inline: auto;
  gap: 1px;
  border: 1px solid rgba(145, 119, 72, 0.35);
  background: rgba(145, 119, 72, 0.3);
}

.trust-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f4ea;
}

.trust-point span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid rgba(145, 119, 72, 0.62);
  border-radius: 50%;
  color: #80683e;
  font-family: var(--font-heading);
}

.trust-point p {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
}

.service-process {
  background: #f8f4ea;
}

.service-process__steps {
  display: grid;
  max-width: 70rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.service-process__steps li {
  position: relative;
  padding: 2rem 1rem 3.5rem;
  text-align: center;
}

.service-process__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1px solid #917748;
  border-bottom: 1px solid #917748;
  transform: translateX(-50%) rotate(45deg);
}

.service-process__steps span {
  color: #917748;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.service-process__steps h3 {
  margin: 0.6rem 0 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.05;
}

.service-area {
  display: grid;
  background: #e9e8dc;
}

.service-area__image {
  min-height: 26rem;
}

.service-area__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-area__content {
  align-self: center;
  padding: clamp(4rem, 9vw, 8rem) max(1rem, calc((100% - var(--content-width)) / 2));
}

.service-area h2,
.services-cta h2 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.service-area__content > p:not(.eyebrow) {
  max-width: 39rem;
  color: #5d6057;
}

.service-area__future {
  padding-left: 1rem;
  border-left: 1px solid #917748;
  font-size: 0.8rem;
}

.service-area .text-link {
  margin-top: 1rem;
}

.services-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 11vw, 10rem) 1rem;
  background: #aeb5a1;
  text-align: center;
}

.services-cta__inner {
  max-width: 48rem;
  margin-inline: auto;
}

.services-cta p:not(.eyebrow) {
  margin: 1.25rem 0 0;
  color: #3f463a;
}

.services-cta .button {
  width: auto;
  margin-top: 2rem;
  padding-inline: 2rem;
}

@media (min-width: 42rem) {
  .service-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .services-hero {
    grid-template-columns: minmax(28rem, 0.85fr) minmax(0, 1fr);
    min-height: 42rem;
  }

  .services-hero__image {
    height: 100%;
    min-height: 42rem;
  }

  .services-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: clamp(3rem, 6vw, 7rem);
  }

  .service-process__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-process__steps li {
    padding: 2rem 2.5rem;
  }

  .service-process__steps li:not(:last-child)::after {
    top: 50%;
    right: -0.3rem;
    bottom: auto;
    left: auto;
    transform: translateY(-50%) rotate(-45deg);
  }

  .service-area {
    grid-template-columns: 1fr 1fr;
    min-height: 40rem;
  }

  .service-area__content {
    padding-left: clamp(4rem, 7vw, 8rem);
  }
}

@media (hover: hover) {
  .service-feature:hover {
    border-color: rgba(145, 119, 72, 0.8);
    box-shadow: 0 2rem 4rem rgba(50, 54, 45, 0.12);
    transform: translateY(-0.25rem);
  }

  .service-feature:hover > img {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-feature,
  .service-feature > img {
    transform: none;
    transition: none;
  }
}

/* ========================================================================== */
/* ABOUT PAGE                                                                 */
/* Personal editorial layouts built from the approved shared design system.  */
/* ========================================================================== */

.about-page {
  overflow-x: hidden;
  background: #f8f4ea;
}

.about-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  background: #e9e8dc;
}

.about-hero__image {
  height: clamp(27rem, 105vw, 40rem);
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 10vw, 8rem) max(1rem, calc((100% - var(--content-width)) / 2));
}

.about-hero h1 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 11vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.86;
}

.about-hero__content > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: #565a50;
}

.about-hero .button {
  margin-top: 2rem;
}

.botanical--about-hero {
  right: -3rem;
  bottom: 1rem;
}

.about-story {
  display: grid;
  width: min(100% - 2rem, 70rem);
  margin-inline: auto;
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(7rem, 12vw, 12rem);
}

.about-story__heading h2,
.about-experience h2,
.behind-food h2,
.about-service-area h2,
.about-cta h2 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.about-story__copy {
  color: #5d6057;
}

.about-story__copy p {
  margin: 0 0 1.25rem;
}

.about-story__copy p:first-child {
  color: #42463e;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.45;
}

.about-values {
  background: #e9e8dc;
}

.about-values__grid {
  display: grid;
  max-width: 70rem;
  margin-inline: auto;
  gap: 1px;
  border: 1px solid rgba(145, 119, 72, 0.35);
  background: rgba(145, 119, 72, 0.28);
}

.about-value {
  padding: clamp(2rem, 5vw, 3.25rem);
  background: #f8f4ea;
}

.about-value > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.4rem;
  place-items: center;
  border: 1px solid rgba(145, 119, 72, 0.62);
  border-radius: 50%;
  color: #80683e;
  font-family: var(--font-heading);
}

.about-value h3 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.05;
}

.about-value p {
  margin: 0.85rem 0 0;
  color: #60635a;
  font-size: 0.84rem;
}

.about-experience {
  display: grid;
  background: #f8f4ea;
}

.about-experience__image {
  min-height: 27rem;
}

.about-experience__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience__content {
  align-self: center;
  padding: clamp(5rem, 10vw, 9rem) max(1rem, calc((100% - var(--content-width)) / 2));
}

.about-experience__content > p:not(.eyebrow) {
  max-width: 38rem;
  color: #5d6057;
}

.about-experience__list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(145, 119, 72, 0.45);
  list-style: none;
}

.about-experience__list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(63, 74, 56, 0.16);
  color: var(--color-olive);
  font-size: 0.78rem;
  font-weight: 600;
}

.behind-food {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  background: #e9e8dc;
}

.behind-food__content > p:not(.eyebrow) {
  max-width: 38rem;
  color: #5d6057;
}

.behind-food__photos {
  position: relative;
  min-height: 34rem;
  padding: 0 0 4rem 2rem;
}

.behind-food__photos img {
  object-fit: cover;
  box-shadow: 0 1.5rem 3.5rem rgba(50, 54, 45, 0.14);
}

.behind-food__primary {
  width: min(88%, 28rem);
  height: 31rem;
}

.behind-food__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(58%, 19rem);
  height: 15rem;
  border: 0.75rem solid #e9e8dc;
}

.about-service-area {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 12rem) 1rem;
  background: #f8f4ea;
  text-align: center;
}

.about-service-area__inner {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  margin-inline: auto;
}

.about-service-area__inner > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.4rem auto 0;
  color: #5d6057;
}

.about-service-area .text-link {
  margin-top: 1.5rem;
}

.botanical--about-area {
  right: -3rem;
  bottom: 1rem;
}

.about-cta {
  padding: clamp(6rem, 11vw, 10rem) 1rem;
  background: #aeb5a1;
  text-align: center;
}

.about-cta__inner {
  max-width: 52rem;
  margin-inline: auto;
}

.about-cta__inner > p:not(.eyebrow) {
  max-width: 43rem;
  margin: 1.3rem auto 0;
  color: #3f463a;
}

.about-cta .button {
  width: auto;
  margin-top: 2rem;
  padding-inline: 2rem;
}

@media (min-width: 42rem) {
  .about-values__grid,
  .about-experience__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-experience__list li:nth-child(odd) {
    padding-right: 1rem;
  }

  .about-experience__list li:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid rgba(63, 74, 56, 0.16);
  }
}

@media (min-width: 64rem) {
  .about-hero {
    grid-template-columns: minmax(28rem, 0.85fr) minmax(0, 1fr);
    min-height: 42rem;
  }

  .about-hero__image {
    height: 100%;
    min-height: 42rem;
  }

  .about-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: clamp(3rem, 6vw, 7rem);
  }

  .about-story {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .about-values__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-experience {
    grid-template-columns: 1fr 1fr;
    min-height: 43rem;
  }

  .about-experience__content {
    padding-left: clamp(4rem, 7vw, 8rem);
  }

  .behind-food {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

/* ========================================================================== */
/* GALLERY PAGE                                                               */
/* Editorial grid, touch-friendly filters, and native accessible lightbox.   */
/* ========================================================================== */

.gallery-page {
  overflow-x: hidden;
  background: #f8f4ea;
}

.gallery-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  background: #e9e8dc;
}

.gallery-hero__image {
  height: clamp(25rem, 80vw, 38rem);
}

.gallery-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 10vw, 8rem) max(1rem, calc((100% - var(--content-width)) / 2));
}

.gallery-hero h1 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 11vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.86;
}

.gallery-hero__content > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: #565a50;
}

.gallery-hero__note {
  padding-left: 1rem;
  border-left: 1px solid #917748;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
}

.botanical--gallery-hero {
  right: -3rem;
  bottom: 1rem;
}

.gallery-portfolio {
  padding: clamp(6rem, 11vw, 10rem) max(1rem, calc((100% - var(--content-width)) / 2));
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 70rem;
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
  gap: 0.65rem;
}

.gallery-filter {
  min-height: 2.9rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(63, 74, 56, 0.42);
  border-radius: 999px;
  background: transparent;
  color: var(--color-olive);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.gallery-filter.is-active,
.gallery-filter[aria-pressed="true"] {
  border-color: var(--color-olive);
  background: var(--color-olive);
  color: #fff;
}

.gallery-empty {
  max-width: 38rem;
  margin: 0 auto 4rem;
  padding: 2rem;
  border: 1px solid rgba(145, 119, 72, 0.42);
  background: #f3eee2;
  color: #5f6258;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 75rem;
  margin-inline: auto;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.portfolio-item {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #dedbce;
  cursor: zoom-in;
  box-shadow: 0 1.3rem 3rem rgba(50, 54, 45, 0.08);
}

.portfolio-item::after {
  content: "View";
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.5rem 0.7rem;
  background: rgba(41, 48, 36, 0.84);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.portfolio-item--feature,
.portfolio-item--wide {
  aspect-ratio: 4 / 3;
}

.portfolio-item--portrait,
.portfolio-item--tall {
  aspect-ratio: 4 / 5;
}

.portfolio-item--standard {
  aspect-ratio: 1;
}

.gallery-lightbox {
  width: min(94vw, 72rem);
  max-width: none;
  max-height: 94vh;
  padding: 3.5rem 1rem 1rem;
  overflow: auto;
  border: 1px solid rgba(218, 198, 157, 0.72);
  background: #252a22;
  color: #fff;
}

.gallery-lightbox::backdrop {
  background: rgba(20, 23, 18, 0.86);
  backdrop-filter: blur(4px);
}

.gallery-lightbox__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  min-width: 4.5rem;
  min-height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-lightbox figure {
  margin: 0;
}

.gallery-lightbox img {
  display: block;
  width: 100%;
  max-height: calc(94vh - 8rem);
  margin-inline: auto;
  object-fit: contain;
}

.gallery-lightbox figcaption {
  padding: 0.85rem 0 0;
  color: #ded7c7;
  font-size: 0.75rem;
  text-align: center;
}

.gallery-cta {
  padding: clamp(6rem, 11vw, 10rem) 1rem;
  background: #aeb5a1;
  text-align: center;
}

.gallery-cta__inner {
  max-width: 50rem;
  margin-inline: auto;
}

.gallery-cta h2 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.gallery-cta p:not(.eyebrow) {
  margin: 1.3rem 0 0;
  color: #3f463a;
}

.gallery-cta .button {
  width: auto;
  margin-top: 2rem;
  padding-inline: 2rem;
}

@media (min-width: 40rem) {
  .portfolio-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .portfolio-item--feature,
  .portfolio-item--wide {
    grid-column: span 4;
  }

  .portfolio-item--portrait,
  .portfolio-item--tall,
  .portfolio-item--standard {
    grid-column: span 2;
  }
}

@media (min-width: 64rem) {
  .gallery-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(26rem, 0.85fr);
    min-height: 42rem;
  }

  .gallery-hero__image {
    height: 100%;
    min-height: 42rem;
  }

  .gallery-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(3rem, 6vw, 7rem);
  }

  .portfolio-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .portfolio-item--feature {
    grid-column: span 7;
  }

  .portfolio-item--wide {
    grid-column: span 6;
  }

  .portfolio-item--portrait,
  .portfolio-item--tall {
    grid-column: span 5;
  }

  .portfolio-item--standard {
    grid-column: span 4;
  }
}

@media (hover: hover) {
  .gallery-filter:hover {
    border-color: var(--color-olive);
  }

  .portfolio-item:hover img {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-filter,
  .portfolio-item img {
    transform: none;
    transition: none;
  }
}

/* Respect visitors who prefer less animation. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ========================================================================== */
/* SHARED MENU PAGE STYLES                                                     */
/* These classes serve all four menu pages. Edit them once to update all four. */
/* ========================================================================== */

.menu-page {
  overflow-x: hidden;
  background: #f8f4ea;
}

.menu-page-hero {
  position: relative;
  overflow: hidden;
  background: #e9e8dc;
}

.menu-page-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 10vw, 8rem) max(1rem, calc((100% - var(--content-width)) / 2));
}

.menu-page-hero h1 {
  max-width: 45rem;
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.menu-page-hero__content > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: #55594f;
}

.menu-page-hero__content .button {
  margin-top: 2rem;
}

.menu-page-hero__image {
  position: relative;
  height: clamp(24rem, 95vw, 36rem);
}

.menu-page-hero__image::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 1;
  border: 1px solid rgba(218, 198, 157, 0.8);
  pointer-events: none;
}

.menu-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.botanical--menu-hero {
  top: 1rem;
  left: -3.5rem;
  z-index: 1;
  transform: rotate(180deg);
}

.menu-content {
  width: min(100% - 2rem, 70rem);
  margin-inline: auto;
  padding-block: clamp(6rem, 11vw, 10rem);
}

.menu-content__heading {
  max-width: 45rem;
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}

.menu-content__heading h2,
.pdf-panel h2,
.menu-quote-cta h2 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 7vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.menu-content__heading > p:last-child {
  margin-top: 1.2rem;
  color: #686a61;
}

.menu-sections {
  display: grid;
  gap: 4rem;
}

.menu-section {
  min-width: 0;
}

.menu-section h3 {
  margin: 0 0 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(145, 119, 72, 0.5);
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
}

.menu-items {
  display: grid;
  gap: 0;
}

.menu-item {
  display: grid;
  gap: 0.75rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(63, 74, 56, 0.16);
}

.menu-item h4 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
}

.menu-item p {
  margin: 0.5rem 0 0;
  color: #686a61;
  font-size: 0.82rem;
}

.dietary-notice {
  display: grid;
  width: min(100% - 2rem, 70rem);
  margin: 0 auto clamp(6rem, 11vw, 10rem);
  gap: 1rem;
  padding: clamp(2rem, 6vw, 3.5rem);
  border: 1px solid rgba(145, 119, 72, 0.48);
  background: #e9e8dc;
}

.dietary-notice .leaf-mark {
  margin: 0;
}

.dietary-notice h2 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  font-weight: 600;
  line-height: 1;
}

.dietary-notice p {
  margin: 0.8rem 0 0;
  color: #5b5f54;
}

.pdf-panel {
  display: grid;
  align-items: center;
  width: min(100% - 2rem, 70rem);
  margin: 0 auto clamp(6rem, 11vw, 10rem);
  gap: 2rem;
  padding: clamp(2rem, 7vw, 4.5rem);
  border: 1px solid rgba(145, 119, 72, 0.46);
  background: #f3eee2;
}

.pdf-panel p:not(.eyebrow) {
  max-width: 38rem;
  color: #62655b;
}

.pdf-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pdf-panel .button {
  width: 100%;
}

.menu-quote-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 11vw, 10rem) 1rem;
  background: #aeb5a1;
  text-align: center;
}

.menu-quote-cta::before,
.menu-quote-cta::after {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(63, 74, 56, 0.22);
  border-radius: 50%;
}

.menu-quote-cta::before {
  top: -5rem;
  left: -4rem;
}

.menu-quote-cta::after {
  right: -4rem;
  bottom: -5rem;
}

.menu-quote-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin-inline: auto;
}

.menu-quote-cta__inner > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.3rem auto 0;
  color: #3f463a;
}

.menu-quote-cta .button {
  width: auto;
  margin-top: 2rem;
  padding-inline: 2rem;
}

@media (min-width: 40rem) {
  .menu-item {
    align-items: start;
  }

  .dietary-notice {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem;
  }

  .pdf-panel .button {
    width: fit-content;
  }

  .pdf-panel__actions {
    align-items: flex-start;
  }
}

@media (min-width: 64rem) {
  .menu-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.85fr);
    min-height: 40rem;
  }

  .menu-page-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: clamp(3rem, 6vw, 7rem);
  }

  .menu-page-hero__image {
    height: 100%;
    min-height: 40rem;
  }

  .menu-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem 5rem;
  }

  .pdf-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4rem;
  }

  .pdf-panel__actions {
    align-items: stretch;
  }
}

/* ---------- 8. Future page styles ---------- */
/* Homepage, menu, gallery, services, about, and contact styles go here later. */

/* ========================================================================== */
/* HOMEPAGE REDESIGN PREVIEW                                                  */
/* ========================================================================== */

.homepage-preview {
  overflow-x: hidden;
  background: #f8f4ea;
}

/* Keep offset botanical accents visible inside their sections without widening the page. */
.homepage-preview .home-hero,
.homepage-preview .welcome-section,
.homepage-preview .menu-preview,
.homepage-preview .quote-section {
  overflow-x: clip;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  background: var(--color-white);
  color: var(--color-olive);
  font-weight: 700;
}

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

.section {
  position: relative;
  padding: clamp(5.5rem, 10vw, 10rem) max(1rem, calc((100% - var(--content-width)) / 2));
}

.section-heading {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.quote-section h2 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.section-heading > p:last-child {
  max-width: 38rem;
  margin: 1.25rem auto 0;
  color: #5e6058;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: #917748;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.botanical-divider {
  position: relative;
  display: block;
  width: 5.5rem;
  height: 1px;
  margin: 1.4rem auto 0;
  background: var(--color-gold);
}

.botanical-divider::before,
.botanical-divider::after,
.leaf-mark::before,
.leaf-mark::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 1.15rem;
  border-radius: 100% 0 100% 0;
  background: var(--color-sage);
}

.botanical-divider::before {
  top: -0.55rem;
  left: 2rem;
  transform: rotate(-45deg);
}

.botanical-divider::after {
  top: -0.55rem;
  right: 2rem;
  transform: scaleX(-1) rotate(-45deg);
}

.botanical {
  position: absolute;
  width: 8rem;
  height: 8rem;
  border: solid rgba(111, 126, 98, 0.3);
  border-width: 0 0 1px 1px;
  border-radius: 0 0 0 100%;
  pointer-events: none;
}

.botanical::before,
.botanical::after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 2.3rem;
  border: 1px solid rgba(111, 126, 98, 0.35);
  border-radius: 100% 0 100% 0;
}

.botanical::before {
  bottom: 1rem;
  left: 1.3rem;
  transform: rotate(30deg);
}

.botanical::after {
  bottom: 3.3rem;
  left: 3.5rem;
  transform: rotate(55deg);
}

/* ---------- Hero ---------- */
.home-hero {
  position: relative;
  min-height: 42rem;
  background: var(--color-sage);
}

.home-hero__photo {
  height: 31rem;
}

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

.home-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 31rem;
  background: linear-gradient(90deg, rgba(28, 31, 24, 0.3), transparent 65%);
  pointer-events: none;
}

.home-hero__card {
  position: relative;
  z-index: 2;
  width: calc(100% - 2rem);
  max-width: 42rem;
  margin: -4.5rem auto 0;
  padding: 4rem 1.4rem 3.4rem;
  border: 1px solid rgba(184, 154, 98, 0.65);
  background: var(--color-cream);
  box-shadow: 0 1.5rem 4rem rgba(42, 46, 37, 0.15);
  text-align: center;
}

.home-hero h1 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.home-hero__tagline {
  margin: 1.3rem 0 0;
  color: #65675f;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
}

.home-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.nav-menu .button--primary {
  min-height: 3.25rem;
  padding-inline: 1.75rem;
}

.button--outline {
  border-color: var(--color-olive);
  background: transparent;
  color: var(--color-olive);
}

.button--gold {
  width: 100%;
  border: 0;
  background: #a98548;
  color: #25271f;
  cursor: pointer;
}

.botanical--hero {
  right: -3rem;
  bottom: 0;
}

/* ---------- Welcome ---------- */
.welcome-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 11vw, 11rem) 1rem;
  background: #f8f4ea;
  text-align: center;
}

.welcome-section__inner {
  position: relative;
  z-index: 1;
  max-width: 51rem;
  margin-inline: auto;
}

.welcome-section h2 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.welcome-section p:not(.eyebrow) {
  max-width: 45rem;
  margin: 1.25rem auto 0;
  color: #5b5d55;
}

.welcome-section .welcome-section__lead {
  margin-top: 2rem;
  color: #42463e;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.45;
}

.welcome-section .welcome-section__closing {
  max-width: 42rem;
  padding-top: 0.5rem;
}

.welcome-section .text-link {
  margin-top: 1.6rem;
}

.botanical--welcome {
  right: -3rem;
  bottom: 1rem;
}

/* ---------- Brand qualities ---------- */
.quality-strip {
  padding: 6.5rem 1rem;
  background: #aeb5a1;
}

.quality-strip__inner {
  display: grid;
  max-width: var(--content-width);
  margin-inline: auto;
  gap: 2rem;
}

.quality-item {
  position: relative;
  padding: 0.5rem 1rem;
  text-align: center;
}

.quality-item__number {
  color: rgba(63, 74, 56, 0.45);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.quality-item h2 {
  margin: 0.3rem 0;
  color: #283023;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
}

.quality-item p {
  margin: 0;
  color: #41483c;
  font-size: 0.8rem;
}

/* ---------- Why choose Santi's ---------- */
.why-section {
  background: #f3eee2;
}

.why-grid {
  display: grid;
  max-width: 70rem;
  margin-inline: auto;
  gap: 1px;
  border: 1px solid rgba(145, 119, 72, 0.35);
  background: rgba(145, 119, 72, 0.28);
}

.why-card {
  min-width: 0;
  padding: clamp(2rem, 5vw, 3rem);
  background: #f8f4ea;
}

.why-card__mark {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.4rem;
  place-items: center;
  border: 1px solid rgba(145, 119, 72, 0.62);
  border-radius: 50%;
  color: #80683e;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.why-card h3 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.05;
}

.why-card p {
  margin: 0.85rem 0 0;
  color: #5d6057;
  font-size: 0.84rem;
}

/* ---------- Occasions ---------- */
.serving-section {
  background: var(--color-cream);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 68rem;
  margin-inline: auto;
  gap: 2.25rem 1rem;
}

.occasion-card {
  text-align: center;
}

.occasion-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(184, 154, 98, 0.6);
  border-radius: 50%;
  box-shadow: 0 0.8rem 2rem rgba(52, 57, 46, 0.1);
}

.occasion-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.occasion-card h3 {
  margin: 1rem 0 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 600;
}

/* ---------- Menus ---------- */
.menu-preview {
  background: #e9e8dc;
}

.botanical--menus {
  top: 2rem;
  left: -3rem;
  transform: rotate(180deg);
}

.menu-card-grid {
  display: grid;
  max-width: 70rem;
  margin-inline: auto;
  gap: 1.5rem;
}

.home-menu-card {
  display: grid;
  min-width: 0;
  border: 1px solid rgba(184, 154, 98, 0.58);
  background: var(--color-cream);
  box-shadow: 0 1.5rem 3.5rem rgba(50, 54, 45, 0.09);
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.home-menu-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-menu-card__content {
  position: relative;
  padding: 2rem;
}

.leaf-mark {
  position: relative;
  display: block;
  width: 2.3rem;
  height: 1.3rem;
  margin-bottom: 0.75rem;
}

.leaf-mark::before {
  top: 0;
  left: 0.35rem;
  transform: rotate(-45deg);
}

.leaf-mark::after {
  top: 0;
  left: 1.15rem;
  transform: scaleX(-1) rotate(-45deg);
}

.home-menu-card h3 {
  margin: 0;
  color: var(--color-olive);
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.home-menu-card p {
  color: #61635b;
  font-size: 0.85rem;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-olive);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

/* ---------- Dietary options ---------- */
.dietary-strip {
  padding: 1.5rem 1rem;
  background: var(--color-olive);
  color: var(--color-white);
}

.dietary-strip p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.85rem;
  max-width: var(--content-width);
  margin: 0 auto;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.dietary-strip i {
  color: #d4be8d;
  font-style: normal;
}

/* ---------- Gallery ---------- */
.gallery-preview {
  background: #f8f4ea;
}

.gallery-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 70rem;
  margin-inline: auto;
  gap: 1.25rem;
}

.gallery-preview__grid img {
  width: 100%;
  height: clamp(18rem, 70vw, 26rem);
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-preview__wide {
  grid-column: auto;
}

.gallery-preview__grid img:nth-child(2),
.gallery-preview__grid img:nth-child(4) {
  height: clamp(15rem, 58vw, 22rem);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ---------- Quote form ---------- */
.quote-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 10rem) max(1rem, calc((100% - var(--content-width)) / 2));
  background: #aeb5a1;
}

.quote-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 70rem;
  margin-inline: auto;
  gap: 3rem;
}

.quote-section__intro {
  max-width: 36rem;
}

.quote-section__intro > p:last-child {
  color: #3f463a;
}

.quote-form {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid rgba(184, 154, 98, 0.65);
  background: var(--color-cream);
  box-shadow: 0 1.5rem 4rem rgba(45, 50, 40, 0.12);
}

.form-field {
  min-width: 0;
}

.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-olive);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #c7c5b8;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
  color: var(--color-ink);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.botanical--quote {
  right: -2.5rem;
  bottom: -2.5rem;
}

/* ---------- Testimonials ---------- */
.testimonial-section {
  background: #f3eee2;
}

.testimonial-grid {
  display: grid;
  max-width: 70rem;
  margin-inline: auto;
  gap: 1.25rem;
}

.testimonial-card {
  margin: 0;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(145, 119, 72, 0.45);
  background: #f8f4ea;
  color: var(--color-olive);
  text-align: center;
}

.testimonial-card::before {
  content: "“";
  display: block;
  height: 2.5rem;
  color: #9a7c45;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
}

.testimonial-card p {
  margin: 0.75rem 0 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-style: italic;
  line-height: 1.35;
}

.testimonial-card cite {
  color: #77776e;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Restrained scroll reveals ---------- */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* ---------- Homepage responsive layout ---------- */
@media (min-width: 30rem) {
  .home-hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .quote-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field--wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 48rem) {
  .contact-bar__inner {
    justify-content: flex-end;
  }

  .quality-strip__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .quality-item + .quality-item {
    border-left: 1px solid rgba(63, 74, 56, 0.25);
  }

  .occasion-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .gallery-preview__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 20rem 17rem;
    gap: 1.5rem;
  }

  .gallery-preview__grid img,
  .gallery-preview__grid img:nth-child(2),
  .gallery-preview__grid img:nth-child(4) {
    height: 100%;
  }

  .gallery-preview__grid img:nth-child(1) {
    grid-column: span 7;
  }

  .gallery-preview__grid img:nth-child(2) {
    grid-column: span 5;
  }

  .gallery-preview__grid img:nth-child(3) {
    grid-column: span 5;
  }

  .gallery-preview__grid img:nth-child(4) {
    grid-column: span 7;
  }
}

@media (min-width: 64rem) {
  .site-nav {
    min-height: 10rem;
    justify-content: flex-start;
  }

  .site-nav .nav-menu {
    margin-left: clamp(1.75rem, 3.5vw, 3.25rem);
  }

  .home-hero {
    min-height: 46rem;
    padding-bottom: 5rem;
  }

  .home-hero__photo {
    width: 72%;
    height: 41rem;
  }

  .home-hero__photo::after {
    width: 72%;
    height: 41rem;
  }

  .home-hero__card {
    position: absolute;
    top: 50%;
    right: max(2rem, calc((100% - var(--content-width)) / 2));
    width: 43%;
    margin: 0;
    padding: 4.5rem 3.5rem;
    transform: translateY(-45%);
  }

  .quote-section__inner {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: 5rem;
  }
}

@media (min-width: 80rem) {
  .why-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-menu-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .home-menu-card__image {
    height: 100%;
    aspect-ratio: auto;
    min-height: 24rem;
  }
}

@media (hover: hover) {
  .nav-menu a:not(.button):hover,
  .footer-nav a:hover,
  .site-footer__contact a:hover,
  .contact-bar a:hover,
  .text-link:hover {
    color: var(--color-gold);
  }

  .button--primary:hover {
    background: #2d3528;
    transform: translateY(-1px);
  }

  .button--outline:hover {
    background: var(--color-olive);
    color: var(--color-white);
    transform: translateY(-1px);
  }

  .button--gold:hover {
    background: #b89659;
    transform: translateY(-1px);
  }

  .home-menu-card:hover {
    border-color: rgba(145, 119, 72, 0.85);
    box-shadow: 0 2rem 4rem rgba(50, 54, 45, 0.13);
    transform: translateY(-0.25rem);
  }

  .home-menu-card:hover .home-menu-card__image img,
  .gallery-preview__grid img:hover,
  .occasion-card__image:hover img {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal,
  .js-enabled .reveal.is-visible,
  .button,
  .home-menu-card,
  .home-menu-card__image img,
  .gallery-preview__grid img,
  .occasion-card__image img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Final cascade: shared controls intentionally override page-specific legacy rules. */
.button {
  min-height: 3.125rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.button--primary,
.button--gold {
  border-color: var(--color-olive);
  background: var(--color-olive);
  color: var(--color-white);
  box-shadow: inset 0 -2px 0 rgba(184, 154, 98, 0.55);
}

.button--outline {
  border-color: var(--color-olive);
  background: rgba(248, 244, 234, 0.45);
  color: var(--color-olive);
}

@media (max-width: 27rem) {
  .home-hero h1,
  .menu-page-hero h1,
  .menus-landing-hero h1,
  .services-hero h1,
  .gallery-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.65rem, 14vw, 3.4rem);
  }
}

@media (hover: hover) {
  .button--primary:hover,
  .button--gold:hover {
    border-color: #2d3528;
    background: #2d3528;
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: inset 0 -2px 0 rgba(184, 154, 98, 0.7), 0 0.6rem 1.4rem rgba(45, 53, 40, 0.14);
  }

  .button--outline:hover {
    background: var(--color-olive);
    color: var(--color-white);
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transform: none;
    transition: none;
  }
}
