:root {
  /*
    Victoria's Catering Website styles.
    Change colors, spacing, cards, and mobile layout in this file.
    Main brand colors are below.
  */
  --ink: #211a17;
  --muted: #6d5f58;
  --paper: #fbf6f1;
  --panel: #fffdf9;
  --line: #eadbd2;
  --rose: #c9897c;
  --rose-dark: #9f5f55;
  --wine: #5a252d;
  --sage: #697b5a;
  --cream: #fff2df;
  --shadow: 0 18px 46px rgba(33, 26, 23, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header.is-scrolled,
.site-header.is-open,
.inner-page .site-header {
  color: var(--ink);
  background: rgba(251, 246, 241, 0.96);
  box-shadow: 0 8px 22px rgba(33, 26, 23, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(201, 137, 124, 0.42);
  box-shadow: 0 8px 22px rgba(33, 26, 23, 0.12);
}

.brand span {
  font-size: 1.08rem;
  color: #d9ad75;
  background: linear-gradient(90deg, #f4d6bd 0%, #d9a074 32%, #c9897c 63%, #f0c98e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 14px rgba(36, 18, 14, 0.2);
}

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

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--rose);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  min-height: min(92svh, 760px);
  display: flex;
  align-items: center;
  padding: 96px clamp(18px, 6vw, 84px) 52px;
  background:
    linear-gradient(90deg, rgba(20, 15, 13, 0.86) 0%, rgba(20, 15, 13, 0.62) 48%, rgba(20, 15, 13, 0.16) 100%),
    url("/static/images/victorias-catering-event-hero.jpg") center 58% / cover no-repeat;
  color: #fff;
}

.hero-media {
  min-height: 440px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 242, 223, 0.9), rgba(251, 246, 241, 0.65)),
    var(--cream);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: min(340px, 70%);
  opacity: 0.9;
}

.hero-copy {
  width: min(780px, 100%);
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 248, 240, 0.84);
  text-shadow: 0 2px 14px rgba(20, 15, 13, 0.42);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

h1 {
  max-width: 840px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 900;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.9rem, 4.8vw, 4.5rem);
  color: #d9ad75;
  background: linear-gradient(90deg, #f4d6bd 0%, #d9a074 32%, #c9897c 63%, #f0c98e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 24px rgba(36, 18, 14, 0.34);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
}

h3 {
  font-size: 1.15rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 248, 240, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(20, 15, 13, 0.46);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--rose-dark);
}

.button-primary:hover {
  background: var(--wine);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-actions .button,
.hero-actions .button-primary,
.hero-actions .button-secondary {
  color: #111;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.hero-actions .button:hover,
.hero-actions .button-primary:hover,
.hero-actions .button-secondary:hover {
  color: #111;
  background: rgba(255, 255, 255, 0.96);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1100px, 100%);
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-info div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section,
.page-heading,
.service-list,
.tier-grid,
.contact-section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 84px);
}

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

.call-section .contact-copy {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.call-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.contact-option-card {
  display: grid;
  gap: 12px;
  padding: 22px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(33, 26, 23, 0.07);
}

.contact-option-card span {
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-option-card strong {
  font-size: 1.12rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.call-option,
.text-option {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 900;
}

.call-option {
  color: #fff;
  background: var(--rose-dark);
}

.call-option:hover {
  background: var(--wine);
}

.text-option {
  color: var(--wine);
  background: #fff7f2;
  border: 1px solid rgba(201, 137, 124, 0.6);
}

.text-option:hover {
  color: #fff;
  background: var(--wine);
  border-color: var(--wine);
}

.service-area {
  margin-top: 28px;
  font-weight: 800;
}

.section-heading,
.page-heading {
  width: min(800px, 100%);
}

.section-heading {
  margin-bottom: 34px;
}

.story-section .section-heading {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.story-section .section-heading p:not(.eyebrow) {
  margin: 24px auto 0;
}

.event-services {
  display: grid;
  justify-items: center;
  gap: 38px;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 84px);
  text-align: center;
  background: var(--paper);
}

.event-services .section-heading {
  max-width: 800px;
}

.event-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
  width: min(1160px, 100%);
  text-align: left;
}

.event-service-grid article {
  padding-top: 22px;
  border-top: 3px solid var(--rose);
}

.event-service-grid h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.event-service-grid p {
  margin: 0;
  color: var(--muted);
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: clamp(60px, 8vw, 104px) clamp(18px, 6vw, 84px);
  background: var(--panel);
}

.showcase-reverse {
  background: #f4eee8;
}

.showcase-reverse .showcase-copy {
  order: 2;
}

.showcase-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.gallery {
  min-width: 0;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.gallery-stage:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 4px;
}

.gallery-stage.is-dragging {
  cursor: grabbing;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.gallery-stage img.is-changing-left {
  animation: gallery-from-right 220ms ease;
}

.gallery-stage img.is-changing-right {
  animation: gallery-from-left 220ms ease;
}

@keyframes gallery-from-right {
  from { opacity: 0.45; transform: translateX(24px); }
}

@keyframes gallery-from-left {
  from { opacity: 0.45; transform: translateX(-24px); }
}

.food-gallery .gallery-stage img {
  object-fit: contain;
}

.food-gallery .gallery-stage {
  aspect-ratio: 3 / 4;
  background: #f4eee8;
}

.food-gallery {
  width: clamp(280px, 50%, 420px);
  justify-self: center;
}

.gallery-controls {
  display: grid;
  grid-template-columns: 44px minmax(64px, auto) 44px;
  align-items: center;
  width: fit-content;
  margin: 14px auto 0;
  color: #fff;
  background: var(--wine);
  box-shadow: 0 8px 20px rgba(33, 26, 23, 0.16);
}

.gallery-controls button {
  width: 44px;
  height: 44px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
}

.gallery-controls button:hover {
  background: var(--rose-dark);
}

.gallery-controls button:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: -4px;
}

.gallery-controls span {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 900;
}

.home-details {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 84px);
}

.home-contact-button {
  min-width: min(320px, 100%);
}

.event-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(36px, 6vw, 86px);
  padding: 0 clamp(18px, 6vw, 84px) clamp(72px, 9vw, 118px);
  background: var(--paper);
}

.event-detail-grid article {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.event-detail-grid span {
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-detail-grid h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.event-detail-grid p,
.event-planning-band p {
  color: var(--muted);
}

.event-planning-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: clamp(54px, 7vw, 86px) clamp(18px, 6vw, 84px);
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.event-planning-band > div:first-child {
  max-width: 720px;
}

.event-planning-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.business-address {
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.section-heading p:not(.eyebrow),
.page-heading p,
.contact-copy p,
.service-list p,
.tier-card p,
.feature-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.service-list,
.tier-grid {
  display: grid;
  gap: 20px;
}

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

.service-list {
  grid-template-columns: repeat(2, 1fr);
  padding-top: 20px;
}

.tier-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 20px;
}

.feature-grid article,
.service-list article,
.tier-card,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(33, 26, 23, 0.07);
}

.feature-grid article,
.service-list article,
.tier-card {
  padding: 28px;
}

.feature-grid span,
.tier-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--rose-dark);
  font-weight: 900;
}

.page-main {
  padding-top: 78px;
}

.page-heading {
  padding-bottom: 30px;
}

.page-heading h1,
.contact-section h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

.event-page-heading {
  width: min(1060px, 100%);
}

.event-page-heading h1 {
  max-width: 1000px;
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
}

.event-page-heading > p:last-child {
  max-width: 820px;
}

.tier-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 18px;
  padding-left: 20px;
  color: var(--muted);
}

.tier-note {
  margin: 10px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.tier-note-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.tier-note-list .tier-note {
  margin: 0;
  padding: 12px 14px;
  background: #fff7f2;
  border: 1px solid rgba(201, 137, 124, 0.34);
  border-radius: 8px;
}

.tier-note span {
  display: block;
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tier-side-note {
  padding: 0 clamp(18px, 6vw, 84px) clamp(70px, 9vw, 118px);
  text-align: center;
}

.tier-side-note p {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 22px;
  color: var(--ink);
  background: #fff7f2;
  border: 1px solid rgba(201, 137, 124, 0.45);
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 900;
}

.tier-card a {
  display: inline-block;
  margin-top: 22px;
  font-weight: 900;
  color: var(--rose-dark);
}

.featured-tier {
  background: #fff7f2;
  border-color: rgba(201, 137, 124, 0.7);
  transform: translateY(-12px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

address {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-style: normal;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(201, 137, 124, 0.22);
  border-color: var(--rose-dark);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 6vw, 84px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 900;
  color: #f4c4b9;
}

@media (max-width: 980px) {
  .hero,
  .feature-grid,
  .service-list,
  .tier-grid,
  .contact-section,
  .showcase-section {
    grid-template-columns: 1fr;
  }

  .showcase-reverse .showcase-copy {
    order: initial;
  }

  .food-gallery {
    width: min(78%, 420px);
  }

  .featured-tier {
    transform: none;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .event-service-grid,
  .event-detail-grid,
  .event-planning-band {
    grid-template-columns: 1fr;
  }

  .event-planning-actions {
    justify-content: flex-start;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--ink);
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    background-position: 62% center;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .call-options {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }
}

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

  .brand span {
    max-width: 160px;
    font-size: 0.92rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: calc(100svh - 52px);
    padding-top: 88px;
    padding-bottom: 44px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .food-gallery {
    width: min(100%, 360px);
  }

  .hero-media {
    min-height: 280px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .site-footer {
    flex-direction: column;
  }
}
