@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Background palette */
  --bg-base: #f7f4ed;
  /* warm parchment */
  --bg-cream: #f2ede3;
  /* warm cream */
  --bg-cream-deep: #ebe4d6;
  /* deeper cream for alternating sections */
  --bg-white: #FFFFFF;
  --bg-pattern: #f7f4ed;
  /* pattern section bg */

  /* Amber / Yellow accent - buttons */
  --amber: #febc30;
  --amber-dark: #e5a81e;
  --amber-pale: #fff8e6;

  /* Brand colours */
  --green: #febc30;
  /* deep forest green - primary brand */
  --green-mid: #fcecca;
  --green-light: #febc30;
  --green-pale: #fff6e2;
  /* very pale green bg tint */

  --gold: #febc30;
  /* warm gold accent */
  --gold-light: #DDB96A;
  --gold-pale: #FBF5E6;
  /* very pale gold */

  --red: #B83232;
  /* Canadian red */
  --red-pale: #FBE9E9;

  /* Text */
  --text-dark: #1C2B1E;
  /* near-black with green tint */
  --text-body: #3D4E40;
  /* dark green-grey */
  --text-muted: #6B7B6E;
  --text-light: #9BAA9E;

  /* Borders */
  --border: #E0D9CE;
  --border-green: rgba(59, 107, 67, 0.2);
  --border-gold: rgba(196, 154, 60, 0.25);

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(28, 43, 30, 0.08);
  --shadow-md: 0 8px 32px rgba(28, 43, 30, 0.12);
  --shadow-lg: 0 20px 60px rgba(28, 43, 30, 0.15);
  --shadow-xl: 0 32px 80px rgba(28, 43, 30, 0.18);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-alt: 'Cormorant Garamond', Georgia, serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Spacing */
  --section-py: 96px;
  --container: 1300px;

  /* Transitions */
  --tr: all 0.3s ease;
  --tr-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== AMBER / YELLOW BUTTON ===== */
.btn-amber {
  background: var(--amber);
  color: #1C2B1E;
  border-color: var(--amber);
  box-shadow: 0 6px 20px rgba(254, 188, 48, 0.35);
  font-weight: 800;
}

.btn-amber:hover {
  background: #000000;
  border-color: #000000;
  color: #febc30;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(254, 188, 48, 0.45);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: var(--tr);
}

a:hover {
  color: var(--green-light);
}

ul {
  list-style: none;
}

/* ===== REUSABLE PATTERNS (pure CSS SVG) ===== */

/* Dots pattern */
.pat-dots {
  background-color: var(--bg-cream);
  background-image: radial-gradient(circle, rgba(59, 107, 67, 0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* Diagonal lines pattern */
.pat-lines {
  background-color: var(--bg-base);
  background-image: repeating-linear-gradient(-45deg,
      transparent,
      transparent 6px,
      rgba(59, 107, 67, 0.05) 6px,
      rgba(59, 107, 67, 0.05) 7px);
}

/* Grid pattern */
.pat-grid {
  background-color: var(--bg-cream);
  background-image:
    linear-gradient(rgba(59, 107, 67, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 107, 67, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Leaf / organic dots */
.pat-organic {
  background-color: var(--bg-cream-deep);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(59, 107, 67, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 154, 60, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(59, 107, 67, 0.05) 0%, transparent 50%);
}

/* Wave / mesh pattern */
.pat-wave {
  background-color: var(--bg-base);
  background-image:
    radial-gradient(at 40% 20%, rgba(59, 107, 67, 0.07) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(196, 154, 60, 0.06) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(59, 107, 67, 0.05) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(196, 154, 60, 0.05) 0px, transparent 50%),
    radial-gradient(at 10% 90%, rgba(59, 107, 67, 0.06) 0px, transparent 50%);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  /* padding: 0 28px; */
}

.section-py {
  padding: var(--section-py) 0;
}

/* ===== TYPOGRAPHY ===== */
.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #febc30;
  margin-bottom: 14px;
}

.tag-label::before,
.tag-label::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: #febc30;
  display: block;
  flex-shrink: 0;
}

.tag-label.center-label {
  justify-content: center;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: #000000;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 500;
  margin-bottom: 20px;
}

.section-title em {
  color: #febc30;
  font-style: italic;
}

.section-title.centered {
  text-align: center;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
  line-height: 1.8;
}

.body-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  /* letter-spacing: 0.06em; */
  /* text-transform: uppercase; */
  padding: 10px 15px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none;
  white-space: nowrap;
}

.btn i {
  font-size: 13px;
}

.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 6px 20px rgba(59, 107, 67, 0.28);
}

.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 107, 67, 0.38);
}

.btn-outline-green {
  background: transparent;
  color: #febc30;
  border: 1px solid #febc30;
}

.btn-outline-green:hover {
  background: #febc30;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 107, 67, 0.28);
}

a.btn.btn-outline {
  border: 1px solid;
}

.btn-gold {
  background: var(--gold);
  color: #000000;
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(196, 154, 60, 0.3);
}

.btn-gold:hover {
  background: #000000;
  border-color: #000000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(196, 154, 60, 0.4);
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(184, 50, 50, 0.3);
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(184, 50, 50, 0.4);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--green-pale);
  color: var(--green);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* .btn-lg {
  padding: 17px 42px;
  font-size: 15px;
} */

.inline-link {
  color: #febc30;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #febc30;
}

.inline-link:hover {
  text-decoration-color: var(--green);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(28, 43, 30, 0.07);
}

.nav-container {
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  gap: 16px;
}

.nav-logo img {
  height: 54px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 0;
  transition: var(--tr);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 24px 10px;
  color: var(--accent-color);
}

.nav-link i {
  font-size: 9px;
  opacity: 0.6;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--green);
  background: var(--green-pale);
}

.nav-item.active-menu>.nav-link {
  color: var(--green);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + -1px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--r-sm);
  transition: var(--tr);
  text-decoration: none;
}

.dropdown a:hover {
  background: var(--green-pale);
  color: var(--green);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #febc30;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  transition: var(--tr);
  box-shadow: 0 4px 14px rgba(59, 107, 67, 0.28);
  text-decoration: none;
  white-space: nowrap;
}

.btn-book:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px #ffbe3336;
  color: #fff;
}

/* Hamburger CSS-only */
.nav-toggle-check {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  display: block;
  transition: var(--tr);
}

li.nav-item.nav-cta {
  margin-left: 45px;
}

.hero {
  position: relative;
  /* min-height: 88vh; */
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}


.hero--wedding {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(100deg, rgba(20, 17, 14, .84) 25%, rgba(20, 17, 14, .5) 80%, rgba(20, 17, 14, .25) 100%), url(../images/8827.jpg);
}

.hero-inner {
  /* padding: 120px 28px 150px; */
  width: 100%;
}

.hero-content {
  /* max-width: 800px; */
  animation: fadeUp .8s ease both;
  padding: 70px 0px 0px;
  text-align: center;
}

.hero h1 {
  font: 600 72px/1.04 var(--serif);
  color: #FBF7EF;
  margin-bottom: 24px;
  letter-spacing: .5px;
}

.hero--wedding h1 {
  font-size: 74px;
  line-height: 1.03;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font: 400 18px/1.7 var(--sans);
  color: #D9D1C3;
  max-width: 560px;
  margin-bottom: 38px;
  text-align: center;
  margin: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 29px;
}

.hero-stats {
  position: absolute;
  right: 28px;
  bottom: -46px;
  display: flex;
  gap: 18px;
  z-index: 5;
}

.stat-card {
  border-radius: 18px;
  padding: 22px 26px;
  min-width: 150px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .25);
}

.stat-card--dark {
  background: #000000;
  border: 1px solid #2E2920;
}

.stat-card--light {
  background: var(--card);
}

.stat-card--gold {
  background: var(--gold);
  box-shadow: 0 24px 50px rgba(229, 160, 25, .32);
}

.stat-card .num {
  font: 700 34px var(--serif);
}

.stat-card--dark .num {
  color: var(--gold);
}

.stat-card--light .num {
  color: var(--heading);
}

.stat-card--gold .num {
  color: #000000;
}

.stat-card .lbl {
  font: 600 12px var(--sans);
  letter-spacing: .5px;
}

.stat-card--dark .lbl {
  color: #B7AE9F;
}

.stat-card--light .lbl {
  color: var(--muted);
}

.stat-card--gold .lbl {
  color: var(--gold-text);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font: 600 13px var(--sans);
  color: #D9D1C3;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb .sep {
  opacity: .5;
}



/* ===== ABOUT SECTION ===== */
.about-wrap {
  padding: var(--section-py) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

/* Decorative background behind image */
.about-img-deco {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 85%;
  height: 85%;
  background: #fff1d2;
  border: 2px solid #ffde96;
  border-radius: var(--r-xl);
  z-index: -1;
}

.about-img-tag {
  position: absolute;
  bottom: 28px;
  right: -28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.about-img-tag i {
  color: var(--gold);
  font-size: 20px;
}

.about-img-tag span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.about-quote {
  border-left: 3px solid #febc30;
  padding: 16px 20px 16px 26px;
  background: #fff1d2;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 24px 0;
}

.about-quote p {
  font-family: var(--font-alt);
  font-size: 19px;
  font-style: italic;
  color: #000000;
  line-height: 1.5;
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  border-radius: 22px;
  padding: 34px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000000;
}

.service-card p {
  font: 400 15px/1.6 var(--sans);
}

.service-card .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

nk .service-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #000000;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.service-card--gold {
  background: var(--gold);
}

.service-card--gold h3 {
  color: #000000;
}

.service-card--gold p {
  color: var(--gold-text);
}

.service-card--gold .service-arrow {
  background: #000000;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.service-card--gold .blob {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.badge-dark {
  display: inline-block;
  background: #000000;
  color: #febc30;
  /* font: 700 11px var(--sans); */
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 300;

}

.service-card--img {
  background-color: #000000;
  justify-content: flex-end;
}

.service-card--img .bgimg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.service-card--img .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(20 17 14 / 67%) 10%, rgba(20, 17, 14, .15) 100%);
  z-index: 1;
}

.service-card--img .service-arrow {
  position: absolute;
  top: 34px;
  right: 34px;
  background: var(--gold);
  color: #000000;
  z-index: 2;
  background: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  /* background: #000000; */
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.service-card--img .body {
  position: relative;
  z-index: 2;
}

.service-card--img h3 {
  color: #FBF7EF;
}

.service-card--img p {
  color: #CFC6B8;
}

.service-card--light {
  background: #f2ede3;
  border: 1px solid #f2ede3;
}

.service-card--light h3 {
  color: var(--heading);
}

.service-card--light p {
  color: var(--muted);
}

.service-card--light .service-arrow {
  background: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  /* background: #000000; */
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.service-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-ico svg {
  stroke: #febc30;
}

.bg-corporate {
  background-image: url(../images/Corporate-catering_result.webp);
}

.bg-private {
  background-image: url(../images/133540.jpg);
}

.card-link {
  font: 700 14px var(--sans);
  color: #000000;
  text-decoration: none;
  border-bottom: 2px solid #000000;
  padding-bottom: 2px;
}

/* ---------- Split section head ---------- */
.split-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.split-head .h2 {
  max-width: 620px;
  font-size: 44px;
  font-weight: 500;
  color: #000000;
}

.split-head .lead {
  max-width: 500px;
}

/* ========== STAMPEDE SECTION ========== */
.stampede-section {
  background: #000000;
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  margin: 0px 0px 70px;
}

/* .stampede-section::before {
    content: 'STAMPEDE';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--ff-stamp);
    font-size: 14rem;
    color: rgba(194, 194, 194, 0.05);
    pointer-events: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
  } */
.stampede-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.stampede-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #febc30;
  margin-bottom: 1rem;
}

.stampede-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.stampede-text p {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.stampede-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.sf-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 0.92rem;
}

.sf-check {
  width: 20px;
  height: 20px;
  background: #febc30;
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
}

.stampede-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.stampede-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.media {
  position: relative;
}

.media-img {
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  background-size: cover;
  background-position: center;
}

.about-img {
  background-image: url(../images/12127.webp);
}

.float-badge {
  position: absolute;
  right: -18px;
  bottom: -26px;
  background: var(--gold);
  border-radius: 18px;
  padding: 24px 30px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .4);
}

.float-badge .big {
  font: 700 40px var(--serif);
  color: #000000;
  line-height: 1;
}

.float-badge .small {
  font: 600 13px var(--sans);
  color: var(--gold-text);
  margin-top: 4px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0 34px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f5d28c30;
  color: #ffad00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.feature .ttl {
  color: #febc30;
  margin-bottom: 0px;
  font-weight: 600;
}

.feature .desc {
  font: 400 13.5px/1.5 var(--sans);
  color: var(--on-dark-faint);
}

section#services {
  padding: 70px 0px;
  background-color: #fffcf6;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  background: #ffffff;
  border: 1px solid var(--line2);
  border-radius: 20px;
  padding: 32px 26px;
  /* margin: 50px 0px 0px; */
  box-shadow: -1px 0px 9px #fff1d9;
}

/* section.section.bg-cream {
    margin: 70px 0px;
    background: #fff4de;
    padding: 70px;
} */

.step--gold {
  background: var(--gold);
  border: none;
}

.step-num {
  color: #febc30;
  line-height: 1;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
}

.step--gold .step-num {
  color: #000000;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}

.step--gold h3 {
  color: #000000;
}

.step p {
  font: 400 14.5px/1.65 var(--sans);
  color: var(--muted);
}

.step--gold p {
  color: #000000;
}

h2.h2 {
  font-size: 36px;
  font-weight: 500;
}

/* ---------- Menu cards ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  background: #fffcf6;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line2);
}

.menu-card .pic {
  height: 210px;
  background-size: cover;
  background-position: center;
}

.menu-card .body {
  padding: 24px;
}

.menu-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.menu-card h3 {
  color: #000000;
  font-size: 22px;
  font-weight: 400;
}

.menu-card .pill {
  color: #febc30;
  font-weight: 700;
}

.menu-card p {
  font: 400 14.5px/1.6 var(--sans);
  color: #575757;
  margin-bottom: 14px;
}

.tags {
  display: flex;
  gap: 8px;
}

.tag {
  /* font: 600 12px var(--sans); */
  color: #000000;
  background: #f6e3bb;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 300;
  ;
}

.pic-plated {
  background-image: url(../images/Plated-Dinners_result.webp);
}

.pic-canape {
  background-image: url(../images/Cocktail-Canapés_result.webp);
}

.pic-dessert {
  background-image: url(../images/Dessert-Cake_result.webp);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 96px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-image: linear-gradient(rgba(20, 17, 14, .84), rgba(20, 17, 14, .84)), url(../images/cta_result.webp);
  /* margin-top: 70px; */
}

.cta-band-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.cta-band h2 {
  color: #FBF7EF;
  margin-bottom: 18px;
  line-height: normal;
  font-size: 50px;
  font-weight: 500;
}

.cta-band p {
  font: 400 17px/1.7 var(--sans);
  color: #D9D1C3;
  margin-bottom: 34px;
  font-size: 20px;
}

/* ---------- Chef ---------- */
.chef-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.chef-img {
  border-radius: 24px;
  overflow: hidden;
  height: 440px;
  background-size: cover;
  background-position: center;
  background-image: url(../images/team-2.webp);
}

.chef-badge {
  position: absolute;
  left: -18px;
  bottom: 24px;
  background: #000000;
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.chef-badge .nm {
  font: 600 20px var(--serif);
  color: var(--gold);
}

.chef-badge .ro {
  font: 600 12px var(--sans);
  color: #B7AE9F;
}

.chef-grid p {
  font: 400 16px/1.78 var(--sans);
  color: var(--muted);
  margin-bottom: 18px;
}

.chef-sign {
  font: 500 18px var(--serif);
  font-style: italic;
  color: var(--heading);
  font-size: 20px;
}

.chef-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.cta-band .eyebrow span.label {
  color: #febc30;
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

/* ---------- Testimonials ---------- */
.tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: var(--ink2);
  border: 1px solid #2E2920;
  border-radius: 20px;
  padding: 32px;
}

.tcard--gold {
  background: var(--gold);
  border: none;
}

.stars {
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  color: var(--gold);
}

.tcard--gold .stars {
  color: #000000;
}

.tcard p {
  font: 500 17px/1.7 var(--sans);
  color: #DDD5C7;
  margin-bottom: 24px;
}

.tcard--gold p {
  color: #000000;
}

.tauthor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.tauthor .nm {
  font: 700 15px var(--sans);
  color: #FBF7EF;
}

.tauthor .ro {
  font: 500 12.5px var(--sans);
  color: var(--on-dark-faint);
}

.tcard--gold .tauthor .nm {
  color: #000000;
}

.tcard--gold .tauthor .ro {
  color: var(--gold-text);
}

.av1 {
  background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?auto=format&fit=crop&w=200&q=80');
}

.av2 {
  background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=200&q=80');
}

.av3 {
  background-image: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=200&q=80');
}

section.section.bg-ink {
  /* background: #000000; */
  padding: 0px 0px 70px;
}

section.bg-step {
  background: #fffcf6;
  padding: 70px;
  margin-bottom: 70px;
}

a.btn.btn-dark.btn-sm {
  background: #000000;
  color: #ffffff;
  padding: 5px 6px 5px 15px;
}

a.btn.btn-dark.btn-sm span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgb(229, 160, 25);
  color: rgb(24, 21, 18);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== PATTERN SECTION HELPERS ===== */
.section-pat-dots {
  /* background-color: var(--bg-cream);
  background-image: radial-gradient(circle, rgba(59, 107, 67, 0.1) 1.5px, transparent 1.5px); */
  background-size: 26px 26px;
}

.section-pat-lines {
  background-color: var(--bg-base);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(59, 107, 67, 0.04) 8px, rgba(59, 107, 67, 0.04) 9px);
}

.section-pat-grid {
  background-color: var(--bg-cream);
  background-image: linear-gradient(rgba(59, 107, 67, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 107, 67, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}

.section-pat-cream {
  background-color: var(--bg-cream-deep);
}

.section-white {
  background-color: #fff;
}

/* Organic blobs decorators for sections */
.section-blob-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.blob-tl,
.blob-tr,
.blob-bl,
.blob-br {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.blob-tl {
  top: -120px;
  left: -120px;
  /* background: radial-gradient(circle, rgba(59, 107, 67, 0.07) 0%, transparent 65%); */
}

.blob-tr {
  top: -80px;
  right: -100px;
  /* background: radial-gradient(circle, rgba(196, 154, 60, 0.07) 0%, transparent 65%); */
}

.blob-bl {
  bottom: -100px;
  left: -80px;
  /* background: radial-gradient(circle, rgba(196, 154, 60, 0.06) 0%, transparent 65%); */
}

.blob-br {
  bottom: -120px;
  right: -120px;
  /* background: radial-gradient(circle, rgba(59, 107, 67, 0.06) 0%, transparent 65%); */
}

.section-blob-wrap>.container {
  position: relative;
  z-index: 1;
}

/* ---------- Quote / Contact ---------- */
.quote-card {
  background: var(--ink);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quote-info {
  padding: 56px;
  color: var(--on-dark);
}

.quote-info--photo {
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(rgba(20, 17, 14, .72), rgba(20, 17, 14, .82)), url('https://images.unsplash.com/photo-1478146896981-b80fe463b330?auto=format&fit=crop&w=1100&q=80');
}

.quote-info h2 {
  color: #febc30;
  margin-bottom: 18px;
  font-size: 30px;
  line-height: normal;
}

.quote-info .lead {
  color: #575757;
  margin-bottom: 36px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-row .ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgb(229 160 25 / 6%);
  color: #ffad00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-row .ttl {
  color: #000000;
  font-weight: 500;
  font-size: 18px;
}

.contact-row .sub {
  font: 500 13px var(--sans);
  color: var(--on-dark-faint);
}

.quote-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: 0px 29px 20px 0px rgb(235 235 235 / 21%);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E2D7C4;
  border-radius: 12px;
  background: #fff;
  font: 500 14px var(--sans);
  color: var(--heading);
  outline: none;
}

.field:focus {
  border-color: var(--gold);
}

textarea.field {
  resize: vertical;
  margin-bottom: 18px;
}

input.field {
  margin-bottom: 0;
}

.quote-form input.field.solo {
  margin-bottom: 16px;
}

section#quote {
  /* margin: 70px 0px 0px; */
  background: #fffcf6;
  padding: 70px;
}

section.bg-faq {
  padding: 70px 0px;
  /* background: #fffbf2bf;
    margin: 70px 0px 0px; */
}

/* ---------- FAQ ---------- */
.faq {
  /* max-width: 900px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fffcf6;
  border: 1px solid #fff2d8;
  border-radius: 16px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font: 700 17px var(--sans);
  color: var(--heading);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--chip);
  color: var(--gold2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: .2s;
}

.faq-item.open .faq-toggle {
  background: var(--gold);
  color: var(--ink);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 26px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-a p {
  font: 400 15.5px/1.7 var(--sans);
  color: var(--muted);
}

section.bg-textimonial {
  /* background: #f1e9da; */
  padding: 0px 0px 70px;
}

.sec-head {
  margin-bottom: 40px;
}

section#menu {
  margin-bottom: 70px;
}

.faq-image {
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.faq-image img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  object-fit: cover;
  /* filter: brightness(2.8); */
  opacity: 0.5;
  filter: grayscale(50%);
}

span.label {
  font-size: 21px;
  color: #febc30;
}

p.faq-phara {
  padding: 16px 0px 0px;
  font-size: 17px;
  max-width: 500px;
  margin: auto;
}

.button {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  margin-top: 20px;
}

a.btn.read {
  background: #ffad00;
  padding: 8px 24px;
  color: #000000;
}



/* stampede-cartering */


/* ---- Animations ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tickerAnim {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

/* ---- Intersection observer reveal ---- */
/* .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
} */

/* ---- Utility ---- */
.sc-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

.sc-amber {
  color: #febc30;
}

.sc-section {
  padding: 96px 0;
}

.sc-section-sm {
  padding: 70px 0;
}

/* ---- Eye-brow label ---- */
.sc-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #febc30;
  margin-bottom: 16px;
}

.sc-label::before,
.sc-label::after {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: #febc30;
  flex-shrink: 0;
}

.sc-label.center {
  justify-content: center;
}

/* ---- Section headings ---- */
.sc-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
}

.sc-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  color: #0d0d0d;
}

.sc-h2 em,
.sc-h1 em {
  font-style: italic;
  color: #febc30;
}

.sc-h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: #0d0d0d;
  line-height: 1.25;
}

.sc-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.85;
}

.sc-body-light {
  color: #575757;
}

/* ---- Buttons ---- */
.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.sc-btn-amber {
  background: #febc30;
  color: #000;
  border-color: #febc30;
  box-shadow: 0 6px 22px rgba(254, 188, 48, 0.38);
}

.sc-btn-amber:hover {
  background: #000;
  border-color: #000;
  color: #febc30;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(254, 188, 48, 0.35);
}

.sc-btn-outline {
  background: transparent;
  color: #febc30;
  border-color: #febc30;
}

.sc-btn-outline:hover {
  background: #febc30;
  color: #000;
  transform: translateY(-3px);
}

.sc-btn-dark {
  background: #000;
  color: #fff;
  border-color: #000;
}

.sc-btn-dark:hover {
  background: #febc30;
  border-color: #febc30;
  color: #000;
  transform: translateY(-3px);
}

.sc-btn-white {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}

.sc-btn-white:hover {
  background: #febc30;
  border-color: #febc30;
  color: #000;
  transform: translateY(-3px);
}

.sc-btn i {
  font-size: 13px;
}

.sc-btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.sc-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0d0d0d;
  padding-top: 76px;
  /* header height */
}

.sc-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(10, 8, 5, 0.88) 0%, rgba(10, 8, 5, 0.6) 60%, rgba(10, 8, 5, 0.75) 100%),
    url(../images/Stampede.jpg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.sc-hero:hover .sc-hero-bg {
  transform: scale(1);
}

.sc-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(254, 188, 48, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.sc-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.sc-hero-content {
  max-width: 780px;
  animation: fadeUp 0.9s ease both;
  padding: 40px 0;
}

.sc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 188, 48, 0.15);
  border: 1px solid rgba(254, 188, 48, 0.4);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #febc30;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.sc-hero-badge i {
  font-size: 10px;
}

.sc-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.sc-hero-title em {
  font-style: italic;
  color: #febc30;
}

.sc-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
}

.sc-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== INTRO / WE SHOW UP ===== */


section#intro {
      padding: 70px 0px;
    margin-top: 74px;
    background: radial-gradient(circle at 20% 15%, rgb(254 188 48 / 47%), rgb(235 167 21 / 7%) 30%), radial-gradient(circle at 85% 40%, rgba(123, 75, 255, 0.1), rgb(254 188 48 / 3%) 40%), linear-gradient(rgb(255, 255, 255) 0%, rgb(247, 251, 255) 100%);
}

section#packages {
  /* background: #fffcf6; */
  padding: 70px 0px;
  /* margin-top: 70px; */
}

.intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}



.intro img {
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(33, 26, 22, .35);
}

.intro-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-bottom: 18px;
}

.intro-content p {
  color: var(--brown);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.callout {
  border-left: 4px solid #febc30;
  background: #febc3012;
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  font-weight: 500;
  font-size: 16px;
  margin: 22px 0;
  box-shadow: 0 1px 18px -12px rgba(33, 26, 22, .18);
}



/* ===== PACKAGES ===== */
/* .bg-deep {
      background: #f3e6d0;
      padding: 70px 0px;
    } */

.center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.center p {
  color: var(--brown);
  margin-top: 14px;
  line-height: 1.7;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pkg-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #211a1608;
  display: flex;
  flex-direction: column;
}

.pkg-card .img {
  height: 180px;
  overflow: hidden;
}

.pkg-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.pkg-card:hover .img img {
  transform: scale(1.08);
}

.pkg-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pkg-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 20px;
}

.pkg-body h3 {
  font-size: 1.15rem;
}

.pkg-body p {
  font-size: .88rem;
  color: var(--brown);
  line-height: 1.6;
  flex: 1;
}

.pkg-link {
  font-weight: 500;
  font-size: .85rem;
  color: #febc30;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}


/* ===== EVENT TYPES (alt rows) ===== */
section.section-pad.bg-deep {
  padding: 70px 0px;
  background-color: #fffcf6;
  margin-top: 0px;
}

.event-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.event-row:last-child {
  margin-bottom: 0;
}

.event-row.reverse .img-col {
  order: 2;
  height: 300px;
  width: 100%;
}

.img-col {
  height: 300px !important;
  width: 100%;
}

.event-row .img-col img {
  border-radius: 18px;
  /* box-shadow: 0 24px 50px -20px rgba(33, 26, 22, .3); */
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.event-row .txt-col h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
  font-weight: 500;
}

.event-row .txt-col p {
  color: var(--brown);
  line-height: 1.75;

}




/* ===== WHY CHOOSE / DIET tags ===== */
section#why-choose {
  /* padding: 70px 0px;
    background-color: #fffcf6; */
  margin: 70px 0px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.why-list li {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-list .num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: #0d0d0d;
  font-size: 18px;
  border: 2px dotted var(--gold);
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-list h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-list p {
  font-size: .9rem;
  color: var(--brown);
  line-height: 1.6;
}

.diet-card {
  background: #000000;
  color: #fbf4e9;
  border-radius: 18px;
  padding: 36px;
}

.diet-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.diet-card p {
  opacity: .8;
  font-size: .92rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.diet-tags {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diet-tag {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, .06);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.diet-tag .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.diet-tag span {
  font-size: .9rem;
}


/* ======================================================
   8. MENU HIGHLIGHTS (gallery style)
   ====================================================== */
.sc-menu-highlights {
  /* background: #0d0d0d; */
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.sc-menu-highlights-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}

.sc-menu-highlights-header .sc-h2 {
  color: #000000;
}

.sc-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.sc-menu-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.sc-menu-item:first-child {
  grid-row: 1 / 3;
}

.sc-menu-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.sc-menu-item:first-child .sc-menu-img {
  min-height: 540px;
}

.sc-menu-item:hover .sc-menu-img {
  transform: scale(1.06);
}

.sc-menu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.sc-menu-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.sc-menu-info span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #febc30;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* menu image bgs */
.sc-menu-bg-1 {
  background-image: url(../images/17675.webp);
}

.sc-menu-bg-2 {
  background-image: url(../images/1646.webp);
}

.sc-menu-bg-3 {
  background-image: url(../images/12205.webp);
}




/* wedding catering */


/* ===== wedding-wedding-services  ===== */
.wedding-services {
  /* background: #fffcf6;
  margin: 70px 0px 0px; */
  padding: 70px 0px;
}

.wedding-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wedding-service-card {
  background: var(--ivory);
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(28, 56, 41, 0.3);
  transition: transform .4s ease, box-shadow .4s ease;
}

.wedding-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -25px rgba(28, 56, 41, 0.4);
}

.wedding-service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.wedding-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.wedding-service-card:hover .wedding-service-img img {
  transform: scale(1.08);
}

.wedding-service-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.wedding-service-body {
  padding: 30px 28px 34px;
}

.wedding-service-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}

.wedding-service-body p {
  font-size: 16px;
  color: #575757;
  margin-bottom: 16px;
}

.wedding-service-link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wedding-service-link svg {
  width: 14px;
  height: 14px;
  transition: transform .3s ease;
}

.wedding-service-card:hover .wedding-service-link svg {
  transform: translateX(4px);
}

/* ===== COMPARE: buffet vs plated ===== */
.compare {
  background: #fffcf6;
  position: relative;
  padding: 70px 0px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: 0 20px 60px -25px rgba(28, 56, 41, 0.35);
  ;
}

.compare-col {
  padding: 64px 52px;
  position: relative;
}

.compare-col.dark {
  background: #f6bd43d9;
  color: #000000;
}

.compare-col.light {
  background: #f2ece0;
  ;
  color: #000000;
}

.compare-col .ctag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: #000000;
  margin-bottom: 16px;
  display: block;
}

.compare-col h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.compare-col.dark h3 {
  color: var(--ivory);
}

.compare-col p {
  font-size: 14.5px;
  margin-bottom: 24px;
}

.compare-col.dark p {
  color: #000000;
}

.compare-col.light p {
  color: var(--ink-soft);
}

.compare-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 12px;
}

.compare-col ul li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: #000000;
}

.compare-vs {
      position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 17px;
    z-index: 3;
    box-shadow: 0 0 0 8px #fffaef;
}

/* dinner page */

section.sp {
    /* margin: 70px 0px 0px; */
    /* BACKGROUND: #fffcf6; */
    PADDING: 70PX;
}

/* ─── OCCASIONS ─── */
    .occ-head {
          text-align: center;
    margin-bottom: 52px;
    width: 750px;
    margin: auto;
    padding-bottom: 40px;
    }

    .occ-head h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.9rem);
      margin-bottom: 14px;
      font-weight: 500;
    }

    .occ-head p {
      color: var(--brown);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .occ-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .occ-card {
          background: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 18PX;
    overflow: hidden;
    transition: .25s;
    box-shadow: 0 24px 44px -18px rgb(28 21 16 / 3%);
    }

    .occ-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 44px -18px rgba(28, 21, 16, .22);
    }

    .occ-img {
      height: 180px;
      overflow: hidden;
    }

    .occ-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .4s;
    }

    .occ-card:hover .occ-img img {
      transform: scale(1.08);
    }

    .occ-body {
      padding: 22px 20px;
    }

    .occ-ic {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .occ-body h4 {
      font-size: 20px;
    margin-bottom: 8px;
    font-weight: 400;
    }

    .occ-body p {
      font-size: .87rem;
      color: var(--brown);
      line-height: 1.6;
    }

    /* ─── MENU SHOWCASE (SIGNATURE SECTION) ─── */
    .menu-sec {
      background: var(--char);
      color: var(--white);
      margin: 70px 0px;
    }

    .menu-head {
          text-align: center;
    padding-bottom: 30px;
    max-width: 750px;
    margin: auto;
    }

    .menu-head h2 {
     color: #000000;
    margin-bottom: 14px;
    font-size: 44px;
    font-weight: 500;
    }

    .menu-head p {
      opacity: .72;
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #393838;
    }

    .menu-tabs {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .mt {
      padding: 10px 22px;
      border-radius: 999px;
      border: 1.5px solid #ffad00;
      font-size: .86rem;
      font-weight: 600;
      color: #ffad00;
      cursor: pointer;
      transition: .22s;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
    }

    .mt:hover,
    .mt.on {
         background: #ffad00;
    color: #000000;
    border-color: #ffad00;
    font-weight: 500;
    }

    .dish-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
    }

    .dish-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
    }

    .dish-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }

    .dish-card:hover img {
      transform: scale(1.06);
    }

    .dish-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(28, 21, 16, .92) 0%, transparent 55%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px 24px;
      transition: .3s;
    }

    .dish-card:hover .dish-card-overlay {
      background: linear-gradient(0deg, rgba(28, 21, 16, .97) 0%, rgba(28, 21, 16, .3) 60%);
    }

    .dish-cat {
          font-size: 18px;
    color: #febc30;
    font-weight: 600;
    margin-bottom: 6px;
     font-family: 'Cormorant Garamond', serif;
    }

    .dish-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      line-height: 1.1;
    }

    .dish-desc {
      font-size: .82rem;
      color: rgba(255, 255, 255, .7);
      line-height: 1.55;
      max-height: 0;
      overflow: hidden;
      transition: .3s;
    }

    .dish-card:hover .dish-desc {
      max-height: 80px;
    }

    .dish-bot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 12px;
    }

    .dish-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      color: #febc30;;
    }

    .dish-tag {
      font-size: .7rem;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .25);
      color: rgba(255, 255, 255, .7);
    }

    .dish-card {
      transition: opacity .28s ease, transform .28s ease;
    }

    .menu-cta {
      text-align: center;
      padding-top: 44px;
    }

 /* ─── LOCATION / VISIT ─── */
    .visit-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 60px;
      align-items: center;
    }

    .visit-grid img {
      border-radius: var(--r);
      width: 100%;
      aspect-ratio: 3/3;
      object-fit: cover;
      box-shadow: 0 28px 56px -20px rgba(28, 21, 16, .3);
    }

    .visit-content h2 {
      font-size: clamp(1.9rem, 3vw, 2.7rem);
      margin-bottom: 16px;
    }

    .visit-content p {
      color: var(--brown);
      line-height: 1.78;
      margin-bottom: 14px;
    }

    .info-cards {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 24px 0;
    }

    .ic-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: var(--cream-2);
      border-radius: 12px;
      padding: 6px 18px;
    }

    .ic-row .ico {
      font-size: 1.3rem;
      flex: none;
    }

    .ic-row b {
      display: block;
      font-size: .92rem;
      margin-bottom: 3px;
    }

    .ic-row span {
      font-size: .85rem;
      color: var(--brown);
    }

    @media(max-width:860px) {
      .visit-grid {
        grid-template-columns: 1fr;
      }
    }



     /* ─── FARM TO TABLE STRIP ─── */
    .farm-strip {
      background: var(--cream-2);
      padding: 52px 0;
    }

    .farm-row {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: space-between;
      align-items: stretch;
    }

    .farm-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      flex: 1 1 220px;
      background: var(--white);
      border-radius: 14px;
      padding: 22px;
      border: 1px solid var(--line);
    }

    .farm-item .fic {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(200, 32, 46, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      flex: none;
    }

    .farm-item h4 {
      font-size: 1rem;
      margin-bottom: 5px;
    }

    .farm-item p {
      font-size: .85rem;
      color: var(--brown);
      line-height: 1.55;
    }


    /* menu-page */

        /* HERO */
    .hero {
      position: relative;
      height: 370px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
          top: 73px;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(170deg, rgba(28, 21, 16, .15) 0%, rgba(28, 21, 16, .78) 100%);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      padding: 60px 28px;
      max-width: var(--max);
      margin: 0 auto;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 24px;
    }

    .hero-text {
         color: #fff;
    width: 750px;
    margin: auto;
    text-align: center;
    }

    .hero-crumb {
      font-size: .78rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .7;
      margin-bottom: 14px;
    }

    .hero-crumb a {
      opacity: .7;
    }

    .hero-crumb span {
      opacity: 1;
      color: var(--gold-lt);
    }

    .hero h1 {
      font-size: 55px;
      line-height: 1;
      margin-bottom: 14px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-lt);
    }

    /* .hero-sub {
      font-size: 1.05rem;
      opacity: .88;
      max-width: 480px;
      line-height: 1.65;
    } */

    .hero-counts {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .hero-count {
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .22);
      padding: 16px 20px;
      border-radius: 14px;
      text-align: center;
      backdrop-filter: blur(6px);
    }

    .hero-count b {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      color: var(--gold-lt);
    }

    .hero-count span {
      font-size: .78rem;
      opacity: .82;
    }


    .ml-catnav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #f6eedb;
    backdrop-filter: blur(14px);
}

    /* STICKY CATEGORY NAV */
    .cat-nav {
      position: sticky;
      top: 73px;
      z-index: 200;
      background: #ffffff;
      border-bottom: 1px solid var(--line);
      box-shadow: 0 4px 20px rgba(28, 21, 16, .06);
    }

    .ml-wrap {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scrollbar-width: none;
      max-width: 1160px;
      margin: 0 auto;
      padding: 15px;
      align-items: center;
      justify-content: center;
    }

    .cat-scroll::-webkit-scrollbar {
      display: none;
    }

    .ml-catpill {
      padding: 10px 24px;
      font-family: 'DM Sans', sans-serif;
      background: transparent;
      cursor: pointer;
      transition: .22s;
      border-bottom: 2.5px solid transparent;
      flex: 0 0 auto;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: #464646;
    /* border: 1px solid #004f4f61;
    background: #ffffff; */
    transition: all .2s;
    white-space: nowrap;
    }

    .ml-catpill:hover {
      color: var(--char);
    }

    .cat-btn.on {
      color: var(--red);
      border-bottom-color: var(--red);
    }

    .cat-btn .cb-ic {
      margin-right: 7px;
      font-size: .95rem;
    }

/* SECTION GENERAL */
    /* .menu-section {
      display: none;
      animation: fadeUp .35s ease;
    } */

    .menu-section.on {
      display: block;
      /* margin: 70px 0px; */
    }



    /* SECTION HERO STRIP */
    .sec-banner {
      background: var(--char);
      color: #fff;
      padding: 52px 0;
      position: relative;
      overflow: hidden;
    }

    .sec-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('var(--bg)') center/cover;
      opacity: .18;
    }

    .sec-banner-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      flex-wrap: wrap;
    }

    .sec-banner h2 {
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      margin-bottom: 8px;
    }

    .sec-banner p {
      opacity: .8;
      max-width: 520px;
      line-height: 1.7;
      font-size: .97rem;
    }

    .sec-count {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      color: rgba(200, 151, 58, .25);
      font-weight: 700;
      line-height: 1;
    }

    .eb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold-lt);
      margin-bottom: 10px;
    }

    .eb i {
      width: 24px;
      height: 1.5px;
      background: var(--gold-lt);
      display: block;
      font-style: normal;
    }

    /* MENU ZIGZAG LAYOUT */
    .menu-zigzag {
      padding: 80px 0 0px;
    }

    .mz-row {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 60px;
      align-items: start;
      margin-bottom: 80px;
    }

    .mz-row:last-child {
      margin-bottom: 0;
    }

    .mz-row.rev {
      direction: rtl;
    }

    .mz-row.rev>* {
      direction: ltr;
    }

    .mz-img {
      border-radius: var(--r);
      overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: 0 28px 56px -20px rgba(28, 21, 16, .28);
    }

    .mz-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .4s;
    }

    .mz-img:hover img {
      transform: scale(1.04);
    }

    .mz-content {}

    .mz-eyebrow {
      font-size: .72rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 700;
      color: #ffad00;
      margin-bottom: 6px;
    }

    .mz-title {
      font-size: 1.7rem;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .mz-desc {
      color: var(--brown);
      font-size: .92rem;
      line-height: 1.65;
      margin-bottom: 24px;
    }

    .dish-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .dish-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      padding: 15px 0;
      border-bottom: 1px dashed rgba(92, 67, 50, .18);
      transition: .2s;
    }

    .dish-row:last-child {
      border-bottom: none;
    }

    .dish-row:hover {
      background: rgba(200, 32, 46, .03);
      margin: 0 -12px;
      padding: 15px 12px;
      border-radius: 8px;
    }

    .dr-left {
      flex: 1;
    }

    .dr-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.12rem;
      font-weight: 700;
      margin-bottom: 3px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .dr-name a {
      transition: .2s;
    }

    .dr-name a:hover {
      color: var(--red);
    }

    .dr-badge {
      font-size: .65rem;
      background: var(--red);
      color: #fff;
      padding: 2px 8px;
      border-radius: 999px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .dr-badge.chef {
      background: var(--gold);
    }

    .dr-badge.veg {
      background: #4a8c3f;
    }

    .dr-desc {
      font-size: .83rem;
      color: var(--brown);
      line-height: 1.5;
    }

    .dr-stars {
      color: var(--gold);
      font-size: .7rem;
      letter-spacing: 1px;
      margin-bottom: 2px;
    }

    .dr-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: #feac00;
      flex: none;
      margin-top: 2px;
    }

      .menu-grid-full {
      padding: 70px 0;
          padding: 70px 0;
    margin-top: 70px;
    background: #fffcf6;
    }

    .mgf-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .mgf-card {
          background: #ffffff;
    border: 1px solid #efefef;
    border-radius: 18px;
    overflow: hidden;
    transition: .25s;
    }

    .mgf-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px -16px rgba(28, 21, 16, .2);
    }

    .mgf-img {
      height: 160px;
      overflow: hidden;
    }

    .mgf-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .4s;
    }

    .mgf-card:hover .mgf-img img {
      transform: scale(1.06);
    }

    .mgf-body {
      padding: 20px;
    }

    .mgf-body .dr-name {
      font-size: 22px;
      margin-bottom: 4px;
    }

    .mgf-body .dr-desc {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .mgf-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mgf-foot .dr-price {
      font-size: 1.2rem;
    }

    .mgf-foot .btn-book {
      font-size: 14px;
      padding: 7px 16px;
      background: #f3e6d0;
      color: #575757;
      border-radius: 999px;
      font-weight: 500;
      border: none;
      cursor: pointer;
      transition: .2s;
      box-shadow: none;
      letter-spacing: normal;
      text-transform:none;
    }

    .mgf-foot .btn-book:hover {
      background: var(--red);
      color: #fff;
    }

    @media(max-width:900px) {
      .mgf-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:560px) {
      .mgf-inner {
        grid-template-columns: 1fr;
      }
    }
  /* DESSERTS SPECIAL (3 cards dark) */
    .dessert-sec {
      background: #000000;
      padding: 80px 0;
    }

    .ds-head {
      text-align: center;
      color: #fff;
      margin-bottom: 48px;
    }

    .ds-head h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      margin-bottom: 10px;
      color: #ffffff;
    }

    .ds-head p {
      opacity: .75;
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .ds-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .ds-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--r);
      overflow: hidden;
      transition: .25s;
    }

    .ds-card:hover {
      transform: translateY(-5px);
      border-color: rgba(200, 151, 58, .4);
    }

    .ds-card .ds-img {
      height: 200px;
      overflow: hidden;
    }

    .ds-card .ds-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .4s;
      filter: brightness(.85);
    }

    .ds-card:hover .ds-img img {
      transform: scale(1.06);
      filter: brightness(1);
    }

    .ds-body {
      padding: 22px;
    }

    .ds-body h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: #fff;
      margin-bottom: 4px;
    }

    .ds-body span {
      font-size: .82rem;
      color: rgba(255, 255, 255, .55);
    }

    .ds-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 14px;
    }

    .ds-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: #ffad00;
      font-weight: 700;
    }

    .ds-order {
      font-size: .78rem;
      padding: 7px 16px;
      background: transparent;
      color: rgba(255, 255, 255, .7);
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 999px;
      cursor: pointer;
      font-weight: 600;
      transition: .2s;
      font-family: 'DM Sans', sans-serif;
    }

    .ds-order:hover {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }

    @media(max-width:760px) {
      .ds-grid {
        grid-template-columns: 1fr;
      }
    }


    @media(max-width:860px) {

      .mz-row,
      .mz-row.rev {
        grid-template-columns: 1fr;
        direction: ltr;
      }

      .mz-img {
        aspect-ratio: 16/9;
      }
    }



    @media(max-width:760px) {
      .dish-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:480px) {
      .dish-grid {
        grid-template-columns: 1fr;
      }
    }


    @media(max-width:960px) {
      .occ-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:520px) {
      .occ-grid {
        grid-template-columns: 1fr;
      }
    }


/* ---------- Responsive ---------- */
@media(max-width:980px) {
  .nav-links {
    display: none;
  }

  .chef-grid,
  .intro-grid,
  .inc-grid,
  .menu-courses {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0px 70px;
  }

  .section-blob-wrap,
  .section#services,
  .stampede-section {
    padding: 70px;
  }

  /* .stampede-section
  {
    margin-top: 70px;
    padding: 70px;
  } */
  .section#menu {
    padding: 0px 70px;
  }

  section.bg-faq {
    padding: 0px;
  }

  .faq {
    padding: 0px 70px;
    max-width: 900px;
  }

  .faq-image img {
    width: 100%;
    height: 80%;
  }

  .media-img {
    height: 600px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .two-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0px 70px;
  }

  h2.h2 {
    font-size: 26px;
  }

  .step {
    margin-top: 0px;
  }

  .services-grid,
  .steps-grid,
  .menu-grid,
  .stats-row,
  .tcards,
  .pricing-grid,
  .styles-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .sec-head {
    margin-bottom: 0px;
  }

  .sec-head .h2 {
    margin-bottom: 40px;
  }

  .split-head {
    gap: 14px;
    margin-bottom: 30px;
  }

  .container.footer-bottom-inner {
    padding: 0px 40px;
  }

  .hero h1,
  .hero--wedding h1 {
    font-size: 50px;
  }

  .h2,
  .quote-info h2 {
    font-size: 34px;
  }

  .cta-band h2 {
    font-size: 36px;
  }

  .hero-stats {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }

  .price-card--feature {
    transform: none;
  }

  .stat+.stat {
    border-left: none;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .tl-line {
    display: none;
  }

  .quote-info,
  .quote-form {
    padding: 25px;
  }

  .footer-grid-disabled {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 0px 70px;
  }

  .cta-band {
    background-attachment: scroll;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-main img {
    height: 380px;
  }

  .about-img-tag {
    right: 0;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile nav */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 20px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .nav-toggle-check:checked~.nav-menu {
    transform: translateX(0);
    height: 480px;
    width: 100%;
    overflow: hidden;
  }

  .nav-toggle-check:checked~.hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle-check:checked~.hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-check:checked~.hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-link {
    padding: 16px 4px;
    width: 100%;
    font-size: 16px;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 8px 16px;
    display: none;
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    display: block;
  }

  .dropdown a {
    padding: 10px 8px;
  }

  .nav-cta {
    padding-top: 16px;
    border: none;
    margin-left: 0px !important;
  }

  section.section.bg-ink {
    margin: 40px 0px 0px;
  }

  .faq-image {
    display: none;
  }

  .faq {
    grid-template-columns: 1fr;
  }

  section.bg-faq {
    padding: 40px 0px 0px;
  }

  .container {
    padding: 0px 40px;
  }

  section#packages,
  section.section-pad.bg-deep {
    padding: 40px 0px;
  }

  .center {
    text-align: left;
    margin: 0 0px 30px;
  }

  .event-row {
    gap: 25px;
  }

  section#why-choose {
    margin: 40px 0px;
  }

  section.bg-step {
    padding: 40px;
  }

  .sc-menu-grid {
    display: grid;
    grid-template-columns: 1fr, 1fr;
  }

  section.section.bg-ink {
    margin-top: 40px;
    padding: 40px 0px !important;
  }

  section#quote {
    padding: 40px 0px;
  }

  .wedding-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pkg-grid {
    grid-template-columns: 1fr 1fr;
  }

  section.bg-step {
    padding: 0px;
  }

  .stampede-section,
  section.bg-step,
  .sc-menu-highlights {
    padding: 40px 0px;
  }

  /* .sc-menu-highlights
    {
      padding: 40px 0px;
      margin: 40px 0px;
    } */

  .compare-vs {
    display: none;
  }
     .menu-sec
   {
    margin: 40px 0px;
   }
.site-footer-disabled
{
  margin: 40px 0px 0px;
}
}

@media(max-width:860px) {
  .intro {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .wedding-services-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }
 

}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
  }

  /* 
 .container 
 {
  padding: 40px;
 } */
  .services-grid,
  .steps-grid,
  .menu-grid,
  .stats-row,
  .tcards,
  .pricing-grid,
  .styles-grid,
  .timeline,
  .feature-grid,
  .inc-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    gap: 0px;
  }

  .faq-image {
    display: none;
  }

  .faq {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 40px 0px;
  }

  section.bg-faq {
    padding: 40px 0px 0px;
  }

  .section#menu {
    margin: 40px 0px 0px;
    padding: 40px 0px;
  }

  /* section.section.bg-ink {
    padding: 0px !important;
    margin: 0px;
} */
  section.bg-step {
    padding: 40px 0px !important;
    /* margin: 40px 0px 0px; */
  }

  /* .menu-card {
    margin: 10px 0px;
} */
  section.bg-chef {
    padding: 40px 0px !important;
  }

  .two-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0px 40px;
  }

  .stampede-section {
    margin: 40px 0px;
  }

  .media-img.about-img {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stampede-grid {
    grid-template-columns: 1fr;
    gap: 2rem;

  }
  .site-footer-disabled
{
  margin: 0px;
}
    .cta-band h2 {
        font-size: 24px;
    }
    .cta-band p
    {
      font-size: 16px;
    }
span.label {
    font-size: 14px;
}
  /* .section-blob-wrap
{
  padding: 40px;
} */

  /* section#quote
{
  padding: 0px;
} */
  .quote-card {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 39px;
    margin-top: 40px;
  }

  .quote-info {
    padding: 0px;
  }

  .footer-grid-disabled {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .back-top {
    display: none;
  }

  .footer-bottom-inner {
    padding: 0px 40px;
  }

  .split-head .h2 {
    font-size: 30px;
  }

  .split-head .lead {
    max-width: 100%;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-blob-wrap {
    padding: 0px;
    margin-top: 120px;
  }

  .section#services {
    padding: 40px 0px;
    margin-top: 40px;
  }

  /* section.section.bg-ink
   {
    margin-top: 0px;
    padding: 0px !important;
   } */

  .about-img-main img {
    height: 228px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card {
    height: 260px;
  }

  .footer-body-disabled {
    padding: 64px 0 0;
  }

  .sec-head .h2 {
    margin-bottom: 0px;
  }

  input.field {
    margin-bottom: 10px;
  }

  .form-row {
    margin-bottom: 0px;
  }

  .hero--wedding {
    position: relative;
    height: 369px;
  }

  .step {
    margin-top: 20px;
  }

  .sec-head {
    margin-bottom: 0;
    padding-bottom: 0px !important;
  }

  .faq-content {
    margin: 40px 0px 40px;
  }

  .compare,
  .wedding-services {
    padding: 40px 0px;
    margin: 0px;
  }

  .wedding-services {
    margin-top: 40px;
  }


  .media {
    position: relative;
    display: none;
  }

  .stampede-img {
    aspect-ratio: 6/3;
  }

  section#menu {
    margin-bottom: 0px;
  }

  /* section#intro {
    margin-top: 70px;
} */
  section#packages, .stampede-section {
    margin-top: 0px;
    /* padding: 0px ; */
  }

  h2.h2 {
    font-size: 24px;
  }

  .center,
  .sc-menu-highlights-header {
    text-align: start;
  }

  .event-row {
    gap: 20px;
  }

  .event-row .txt-col h3 {
    font-size: 22px;
  }

  .why-list {
    margin-top: 25px;
  }

  .why-list .num {
    width: 35px;
    height: 35px;
    font-size: 15px;
    font-weight: 500;
  }

  .why-list h4 {
    font-weight: 500;
  }

  section#why-choose {
    margin: 0px;
  }

  .sc-menu-highlights {
    padding: 40px 0px;
  }

  .sc-menu-highlights-header .sc-h2 {
    text-align: left !important;
    font-size: 24px;
    font-weight: 500;
  }

  .sc-menu-highlights-header .sc-body.sc-body-light {
    text-align: left !important;
  }

  .sc-menu-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .container.footer-bottom-inner {
    padding: 0px 20px;
  }

  section.section-pad.bg-deep {
    padding: 40px 0px;
  }

  section#why-choose {
    margin-top: 40px;
  }
  .menu-sec
  {
    margin: 40px 0px;
  }
}

@media(max-width:600px) {
  .section {
    padding: 0px 0;
  }

  .services-grid,
  .steps-grid,
  .menu-grid,
  .stats-row,
  .tcards,
  .pricing-grid,
  .styles-grid,
  .timeline,
  .feature-grid,
  .inc-list,
  .faq,
  .footer-grid-disabled,
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero h1,
  .hero--wedding h1 {
    font-size: 40px;
  }

  .container {
    padding: 40px 20px;
  }

  section#quote,
  section.bg-ink,
  .sec-head,
  section.bg-step {
    padding: 0px !important;
  }

  .sec-head {
    margin: 0px !important;
  }

  section#menu {
    margin-bottom: 0px;
  }

  .step {
    margin: 15px 0px 0px;
  }

  .media {
    position: relative;
    display: none;
  }

  .service-card--img {
    margin-top: 20px;
  }

  .service-card.service-card--light {
    margin-top: 20px;
  }

  .footer-grid-disabled {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 39px;
  }

  .tcards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  p.faq-phara {
    padding: 16px 26px 0px;
  }

  .section#menu {
    padding: 0px 19px;
  }

  .h2,
  .split-head .h2 {
    font-size: 24px;
  }

  .split-head {
    gap: 10px;
    margin-bottom: 20px;
  }

  .section#menu {
    padding: 0px !important;
  }

  section#menu {
    margin: 0px;
    padding: 0px;
  }

  section.bg-step,
  section#why-choose {
    margin: 0px;
  }

  section.section-pad.bg-deep {
    padding: 0px;
  }

  .stampede-grid {
    gap: 20px;
  }

  section#intro {
    margin-top: 80px;
  }

  .wedding-services {
    margin-top: 0px;
  }
  .stampede-section {
        margin: 0px;
        padding: 0px;
    }

  .compare,
  .wedding-services {
    padding: 0px;
    margin: 0px;
  }
  section.bg-chef
  {
    padding: 0px !important;
  }

  /* .sec-head .h2 {
    margin-bottom: 0px;
    text-align: left !important;
  } */
   .faq-content
   {
    margin: 0px;
   }

   .menu-head
   {
    text-align: left;
    margin: 0px;
   }
   .menu-head h2
   {
    font-size: 24px;
   }
   .menu-tabs
   {
    justify-content: left;
    margin-bottom: 30px;
   }
   .mt
   {
        padding: 10px 10px;
            font-size: 12px;
            font-weight: 600;
   }
   .menu-sec, section#packages
   {
    margin: 0px;
   }
       section#packages, section#intro
       {
        padding: 0px;
       }
       .footer-body-disabled {
        padding: 0;
    }
    .compare-col {
    padding: 30px 24px;
    }
}

@media(max-width:560px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:860px) {

  .event-row,
  .event-row.reverse {
    grid-template-columns: 1fr;
  }

  .event-row.reverse .img-col {
    order: 0;
  }
}



