/* ======================================================
   MARISSE PATISSERIE — Main Stylesheet
   Mobile-first, pure CSS, no frameworks
   ====================================================== */

/* === CUSTOM PROPERTIES === */
:root {
  --cream:        #FAF7F2;
  --cream-mid:    #F0E9DF;
  --cream-dark:   #E4D9CC;
  --brown-pale:   #D4B896;
  --brown-light:  #C09878;
  --brown:        #8B5E3C;
  --brown-mid:    #6B4330;
  --brown-dark:   #3A2012;
  --accent:       #C47A45;
  --accent-light: #E8A87C;
  --gold:         #BFA07A;
  --text:         #2E1A0E;
  --text-mid:     #6B4A38;
  --text-light:   #9E7B66;
  --white:        #FFFDF9;
  --border:       #DDD0C0;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs:   clamp(0.72rem,  1.4vw, 0.82rem);
  --text-sm:   clamp(0.875rem, 1.8vw, 0.975rem);
  --text-base: clamp(1rem,     2vw,   1.0625rem);
  --text-lg:   clamp(1.125rem, 2.4vw, 1.25rem);
  --text-xl:   clamp(1.3rem,   3vw,   1.5rem);
  --text-2xl:  clamp(1.6rem,   4vw,   2rem);
  --text-3xl:  clamp(2rem,     5vw,   2.75rem);
  --text-4xl:  clamp(2.5rem,   6vw,   3.75rem);
  --text-hero: clamp(3rem,     8vw,   5.5rem);

  --gap-xs: 0.375rem;
  --gap-sm: 0.625rem;
  --gap-md: 1rem;
  --gap-lg: 1.5rem;
  --gap-xl: 2rem;
  --gap-2xl: 3rem;
  --gap-3xl: 4.5rem;
  --gap-4xl: 6rem;
  --gap-5xl: 8rem;

  --max-w: 1200px;
  --px: clamp(1.25rem, 5vw, 2.5rem);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast: 180ms var(--ease);
  --t-base: 300ms var(--ease);
  --t-slow: 600ms var(--ease-out);

  --shadow-xs: 0 1px 3px rgba(58, 32, 18, 0.07);
  --shadow-sm: 0 2px 10px rgba(58, 32, 18, 0.09);
  --shadow-md: 0 6px 24px rgba(58, 32, 18, 0.13);
  --shadow-lg: 0 16px 48px rgba(58, 32, 18, 0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); font-size: var(--text-base); color: var(--text); background: var(--cream); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
svg { display: block; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); line-height: 1.15; color: var(--brown-dark); font-weight: 700; }
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
p { color: var(--text-mid); line-height: 1.8; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.section { padding: var(--gap-4xl) 0; }
.section--sm { padding: var(--gap-3xl) 0; }
.section--lg { padding: var(--gap-5xl) 0; }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0; transition: background var(--t-base), box-shadow var(--t-base);
}
.nav--solid {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 var(--px);
  max-width: var(--max-w); margin: 0 auto;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.nav__logo-name {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--brown-dark); letter-spacing: -0.02em;
  transition: color var(--t-fast);
}
.nav--hero .nav__logo-name { color: var(--white); }
.nav__logo-sub {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brown-light); font-weight: 500;
  transition: color var(--t-fast);
}
.nav--hero .nav__logo-sub { color: rgba(255,253,249,0.7); }
.nav__links { display: none; align-items: center; gap: var(--gap-xl); }
.nav__link {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brown-mid);
  transition: color var(--t-fast); position: relative;
}
.nav--hero .nav__link { color: rgba(255,253,249,0.85); }
.nav__link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width var(--t-base);
}
.nav__link:hover, .nav__link.active { color: var(--brown-dark); }
.nav--hero .nav__link:hover, .nav--hero .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link--cta {
  padding: 0.5rem 1.25rem; border-radius: var(--radius-pill);
  background: var(--brown-dark); color: var(--cream) !important;
  letter-spacing: 0.1em; transition: background var(--t-fast) !important;
}
.nav--hero .nav__link--cta { background: rgba(255,253,249,0.15); color: var(--white) !important; border: 1px solid rgba(255,253,249,0.4); }
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--brown) !important; }
.nav--hero .nav__link--cta:hover { background: rgba(255,253,249,0.25) !important; }
.nav__burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; padding: 6px; }
.nav__burger-line { width: 22px; height: 1.5px; background: var(--brown-dark); transition: transform var(--t-base), opacity var(--t-fast); border-radius: 2px; }
.nav--hero .nav__burger-line { background: var(--white); }
.nav__burger.open .nav__burger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open .nav__burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open .nav__burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav__overlay {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: var(--cream); flex-direction: column;
  align-items: center; justify-content: center; gap: var(--gap-xl);
}
.nav__overlay.open { display: flex; }
.nav__overlay-link {
  font-family: var(--font-serif); font-size: var(--text-3xl);
  color: var(--brown-dark); transition: color var(--t-fast);
}
.nav__overlay-link:hover { color: var(--accent); }
.nav__overlay-info { text-align: center; margin-top: var(--gap-xl); }
.nav__overlay-info p { font-size: var(--text-sm); color: var(--text-light); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: var(--gap-sm);
  padding: 0.875rem 2rem; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; transition: all var(--t-base); cursor: pointer;
}
.btn--dark { background: var(--brown-dark); color: var(--cream); border: 1.5px solid var(--brown-dark); }
.btn--dark:hover { background: var(--brown); border-color: var(--brown); }
.btn--outline { background: transparent; color: var(--brown-dark); border: 1.5px solid var(--brown-dark); }
.btn--outline:hover { background: var(--brown-dark); color: var(--cream); }
.btn--ghost { background: rgba(255,253,249,0.15); color: var(--white); border: 1.5px solid rgba(255,253,249,0.5); }
.btn--ghost:hover { background: rgba(255,253,249,0.28); }
.btn--accent { background: var(--accent); color: var(--white); border: 1.5px solid var(--accent); }
.btn--accent:hover { background: var(--brown); border-color: var(--brown); }
.btn svg { width: 16px; height: 16px; }

/* === HERO === */
.hero {
  position: relative; height: 100svh; min-height: 640px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #6B4832 0%, #3A2012 100%); }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(36,18,8,0.1) 0%, rgba(36,18,8,0.65) 100%);
}
.hero__content {
  position: relative; z-index: 1; width: 100%;
  padding: 0 var(--px) clamp(3rem, 8vh, 6rem);
  max-width: var(--max-w); margin: 0 auto;
}
.hero__eyebrow {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--brown-pale); font-weight: 500; margin-bottom: var(--gap-md);
}
.hero__title {
  font-family: var(--font-serif); font-size: var(--text-hero);
  color: var(--white); font-weight: 700; line-height: 1.05;
  margin-bottom: var(--gap-lg); max-width: 780px;
}
.hero__title em { font-style: italic; color: var(--brown-pale); }
.hero__sub {
  font-size: var(--text-lg); color: rgba(255,253,249,0.8);
  margin-bottom: var(--gap-2xl); max-width: 480px; line-height: 1.65;
}
.hero__actions { display: flex; gap: var(--gap-md); flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: var(--gap-xl); right: var(--px); z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--gap-sm); color: rgba(255,253,249,0.5);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero__scroll-track { width: 1px; height: 48px; background: rgba(255,253,249,0.2); position: relative; overflow: hidden; }
.hero__scroll-track::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: rgba(255,253,249,0.6);
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:200%} }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: calc(72px + clamp(3rem,6vw,5rem)) 0 clamp(3rem,6vw,5rem);
  background: var(--cream-mid); position: relative; overflow: hidden;
}
.page-hero--dark {
  background: var(--brown-dark);
}
.page-hero__bg {
  position: absolute; inset: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.12;
}
.page-hero--dark .page-hero__bg img { opacity: 0.18; }
.page-hero__inner { position: relative; z-index: 1; text-align: center; }
.page-hero__eyebrow {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: var(--gap-md);
}
.page-hero--dark .page-hero__eyebrow { color: var(--brown-pale); }
.page-hero__title { font-family: var(--font-serif); color: var(--brown-dark); }
.page-hero--dark .page-hero__title { color: var(--white); }
.page-hero__sub { color: var(--text-mid); max-width: 540px; margin: var(--gap-lg) auto 0; }
.page-hero--dark .page-hero__sub { color: rgba(250,247,242,0.7); }

/* === SECTION HEADERS === */
.sh { text-align: center; max-width: 580px; margin: 0 auto var(--gap-3xl); }
.sh--left { text-align: left; margin: 0 0 var(--gap-3xl); }
.sh__eyebrow {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: var(--gap-md);
}
.sh__title { color: var(--brown-dark); margin-bottom: var(--gap-md); }
.sh__rule { width: 36px; height: 2px; background: var(--accent); margin: var(--gap-md) auto 0; }
.sh--left .sh__rule { margin-left: 0; }
.sh__sub { color: var(--text-mid); margin-top: var(--gap-md); line-height: 1.8; }

/* === INFO STRIP === */
.strip {
  background: var(--brown-dark); padding: var(--gap-3xl) 0;
}
.strip__inner {
  display: flex; flex-direction: column; gap: var(--gap-xl); align-items: center; text-align: center;
}
.strip__item { display: flex; flex-direction: column; gap: var(--gap-xs); }
.strip__label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--brown-pale); font-weight: 500; }
.strip__value { font-family: var(--font-serif); font-size: var(--text-lg); color: var(--cream); }
.strip__divider { width: 1px; height: 40px; background: rgba(192,152,120,0.3); display: none; }

/* === GRID LAYOUTS === */
.g2 { display: grid; grid-template-columns: 1fr; gap: var(--gap-xl); }
.g3 { display: grid; grid-template-columns: 1fr; gap: var(--gap-xl); }
.g4 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--gap-lg); }

/* === SPLIT / TWO-COL === */
.split { display: grid; grid-template-columns: 1fr; gap: var(--gap-3xl); align-items: center; }
.split__media { position: relative; }
.split__img {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-md);
}
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__accent-box {
  position: absolute; bottom: -20px; right: -20px; z-index: -1;
  width: 55%; aspect-ratio: 1; background: var(--cream-dark);
  border-radius: var(--radius-xl);
}
.split__text { display: flex; flex-direction: column; gap: var(--gap-xl); }
.split__text p { font-size: var(--text-base); }

/* === CARDS === */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__img { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: var(--gap-xl); }
.card__tag { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: var(--gap-sm); }
.card__title { font-family: var(--font-serif); font-size: var(--text-lg); color: var(--brown-dark); margin-bottom: var(--gap-sm); line-height: 1.2; }
.card__desc { font-size: var(--text-sm); color: var(--text-light); line-height: 1.65; }
.card__price { font-size: var(--text-sm); font-weight: 600; color: var(--brown); margin-top: var(--gap-md); }

/* === FEATURE NUMBERS === */
.features { display: flex; flex-direction: column; gap: var(--gap-2xl); }
.feature { display: flex; gap: var(--gap-xl); align-items: flex-start; }
.feature__num {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700;
  color: var(--cream-dark); line-height: 1; flex-shrink: 0; width: 52px;
  transition: color var(--t-base);
}
.feature:hover .feature__num { color: var(--accent); }
.feature__body { border-top: 1px solid var(--border); padding-top: var(--gap-md); flex: 1; }
.feature__title { font-family: var(--font-serif); font-size: var(--text-xl); color: var(--brown-dark); margin-bottom: var(--gap-sm); }
.feature__desc { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.75; }

/* === CATEGORY TILES (home) === */
.cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--gap-md); }
.cat-tile {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; display: block;
}
.cat-tile--wide { grid-column: span 2; aspect-ratio: 16/7; }
.cat-tile__img { position: absolute; inset: 0; }
.cat-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.cat-tile:hover .cat-tile__img img { transform: scale(1.07); }
.cat-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(36,18,8,0.72) 0%, rgba(36,18,8,0.1) 55%);
}
.cat-tile__body { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--gap-xl) var(--gap-lg); }
.cat-tile__name { font-family: var(--font-serif); font-size: var(--text-xl); color: var(--white); font-weight: 600; margin-bottom: var(--gap-xs); }
.cat-tile__sub { font-size: var(--text-xs); color: rgba(255,253,249,0.7); letter-spacing: 0.1em; }

/* === MENU TABS === */
.menu-tabs {
  display: flex; gap: var(--gap-sm); overflow-x: auto; padding-bottom: var(--gap-sm);
  margin-bottom: var(--gap-3xl); scrollbar-width: none; -ms-overflow-style: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0; padding: 0.6rem 1.5rem; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  border: 1.5px solid var(--border); background: var(--white); color: var(--text-mid);
  transition: all var(--t-fast); cursor: pointer;
}
.menu-tab.active, .menu-tab:hover { background: var(--brown-dark); border-color: var(--brown-dark); color: var(--cream); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-cat-title {
  font-family: var(--font-serif); font-size: var(--text-2xl); color: var(--brown-dark);
  margin-bottom: var(--gap-2xl); padding-bottom: var(--gap-lg); border-bottom: 1px solid var(--border);
}
.menu-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap-md); margin-bottom: var(--gap-4xl); }
.menu-item {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-xs);
  display: grid; grid-template-columns: 90px 1fr;
  transition: box-shadow var(--t-base);
}
.menu-item:hover { box-shadow: var(--shadow-sm); }
.menu-item__img { aspect-ratio: 1; overflow: hidden; }
.menu-item__img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item__body { padding: var(--gap-md) var(--gap-lg); display: flex; flex-direction: column; justify-content: center; }
.menu-item__name { font-family: var(--font-serif); font-size: var(--text-base); color: var(--brown-dark); margin-bottom: 3px; }
.menu-item__desc { font-size: var(--text-xs); color: var(--text-light); line-height: 1.5; margin-bottom: var(--gap-sm); }
.menu-item__price { font-size: var(--text-sm); font-weight: 600; color: var(--brown); }

/* === EVENTS === */
.event-card {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.event-card__hero { aspect-ratio: 16/8; overflow: hidden; }
.event-card__hero img { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { padding: clamp(1.5rem, 5vw, 3rem); }
.event-details {
  display: grid; grid-template-columns: 1fr; gap: var(--gap-md);
  margin: var(--gap-xl) 0;
}
.event-detail { display: flex; gap: var(--gap-md); align-items: flex-start; }
.event-detail__icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--cream-mid); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--brown-mid);
}
.event-detail__icon svg { width: 18px; height: 18px; }
.event-detail__label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); font-weight: 500; margin-bottom: 2px; }
.event-detail__val { font-size: var(--text-sm); font-weight: 500; color: var(--brown-dark); }
.includes-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap-md); }
.include-item { display: flex; gap: var(--gap-md); align-items: center; background: var(--cream-mid); border-radius: var(--radius-md); padding: var(--gap-lg); }
.include-item__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.include-item__icon svg { width: 18px; height: 18px; }
.include-item__text { font-size: var(--text-sm); color: var(--text-mid); }

/* === CONTACT === */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: var(--gap-4xl); }
.contact-info { display: flex; flex-direction: column; gap: var(--gap-2xl); }
.contact-item { display: flex; gap: var(--gap-lg); align-items: flex-start; }
.contact-item__icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--cream-mid); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--brown-mid);
}
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item__label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); font-weight: 500; margin-bottom: 4px; }
.contact-item__val { font-size: var(--text-base); font-weight: 500; color: var(--brown-dark); line-height: 1.55; }
.contact-item__sub { font-size: var(--text-sm); color: var(--text-mid); margin-top: 2px; }
.hours-list { display: flex; flex-direction: column; }
.hours-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: var(--text-sm); }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-mid); }
.hours-time { font-weight: 500; color: var(--brown-dark); }
.hours-closed { color: var(--text-light); }
.map-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* === FORM === */
.form { display: flex; flex-direction: column; gap: var(--gap-lg); }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--gap-lg); }
.form-group { display: flex; flex-direction: column; gap: var(--gap-xs); }
.form-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); }
.form-input, .form-textarea, .form-select {
  padding: 0.875rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); background: var(--white);
  color: var(--text); transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--brown); box-shadow: 0 0 0 3px rgba(139,94,60,0.1);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }

/* === TESTIMONIAL === */
.testimonial {
  background: var(--white); border-radius: var(--radius-xl);
  padding: var(--gap-2xl); box-shadow: var(--shadow-xs); position: relative;
}
.testimonial__quote {
  font-family: var(--font-serif); font-size: 5rem; color: var(--cream-dark);
  position: absolute; top: 0; left: var(--gap-xl); line-height: 1.2;
}
.testimonial__text {
  font-style: italic; font-size: var(--text-base); color: var(--text-mid);
  line-height: 1.8; margin-bottom: var(--gap-lg); position: relative; z-index: 1;
}
.testimonial__author { font-size: var(--text-sm); font-weight: 600; color: var(--brown-dark); }
.testimonial__loc { font-size: var(--text-xs); color: var(--text-light); margin-top: 2px; }

/* === VALUE CARDS === */
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: var(--gap-2xl); box-shadow: var(--shadow-xs); }
.value-card__icon {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.75rem; color: var(--accent);
  margin-bottom: var(--gap-md); display: block;
}
.value-card__title { font-family: var(--font-serif); font-size: var(--text-lg); color: var(--brown-dark); margin-bottom: var(--gap-sm); }
.value-card__desc { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.7; }

/* === FOOTER === */
.footer { background: var(--brown-dark); color: var(--cream); padding: var(--gap-5xl) 0 var(--gap-2xl); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--gap-3xl); margin-bottom: var(--gap-4xl); }
.footer__brand-name { font-family: var(--font-serif); font-size: 1.875rem; color: var(--cream); margin-bottom: 4px; }
.footer__brand-sub { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--gap-lg); }
.footer__brand-desc { font-size: var(--text-sm); color: rgba(212,184,150,0.65); line-height: 1.75; max-width: 280px; }
.footer__col-title { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: var(--gap-lg); }
.footer__links { display: flex; flex-direction: column; gap: var(--gap-sm); }
.footer__link { font-size: var(--text-sm); color: rgba(212,184,150,0.65); transition: color var(--t-fast); }
.footer__link:hover { color: var(--cream); }
.footer__info { display: flex; flex-direction: column; gap: var(--gap-lg); }
.footer__info-item { display: flex; flex-direction: column; gap: 3px; }
.footer__info-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.footer__info-val { font-size: var(--text-sm); color: rgba(212,184,150,0.8); line-height: 1.55; }
.footer__bottom {
  border-top: 1px solid rgba(192,152,120,0.18); padding-top: var(--gap-xl);
  display: flex; flex-direction: column; gap: var(--gap-sm); text-align: center;
}
.footer__copy { font-size: 0.72rem; color: rgba(192,152,120,0.4); }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

/* === DISCLAIMER MODAL === */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(36,18,8,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--px);
  animation: mFadeIn 0.35s var(--ease-out);
}
@keyframes mFadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--white); border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 5vw, 3rem);
  max-width: 500px; width: 100%;
  box-shadow: var(--shadow-lg);
  animation: mSlideUp 0.4s var(--ease-out);
}
@keyframes mSlideUp { from { transform: translateY(28px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-box__badge {
  display: inline-flex; padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(196,122,69,0.12); color: var(--accent);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: var(--gap-lg);
}
.modal-box__title {
  font-family: var(--font-serif); font-size: var(--text-2xl);
  color: var(--brown-dark); margin-bottom: var(--gap-lg); line-height: 1.2;
}
.modal-box__body {
  font-size: var(--text-sm); color: var(--text-mid); line-height: 1.85;
  margin-bottom: var(--gap-xl);
}
.modal-box__body strong { color: var(--brown-dark); font-weight: 600; }
.modal-box__rule { width: 32px; height: 2px; background: var(--accent); margin: var(--gap-lg) 0; }
.modal-box__footer { display: flex; justify-content: flex-end; }

/* Warm fallback for broken/slow images */
.menu-item__img, .card__img, .cat-tile__img { background: var(--cream-dark); }
.split__img, .event-card__hero { background: var(--cream-dark); }
.page-hero__bg { background: var(--cream-mid); }

/* === UTILS === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.bg-cream-mid { background: var(--cream-mid); }
.bg-white { background: var(--white); }

/* ======================================
   RESPONSIVE — TABLET (640px+)
   ====================================== */
@media (min-width: 640px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .strip__inner { flex-direction: row; justify-content: center; gap: var(--gap-4xl); text-align: left; }
  .strip__divider { display: block; }
  .g2 { grid-template-columns: repeat(2,1fr); }
  .g3 { grid-template-columns: repeat(2,1fr); }
  .cat-grid { gap: var(--gap-lg); }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .menu-item { grid-template-columns: 100px 1fr; }
  .event-details { grid-template-columns: repeat(2,1fr); }
  .includes-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ======================================
   RESPONSIVE — DESKTOP (900px+)
   ====================================== */
@media (min-width: 900px) {
  .g3 { grid-template-columns: repeat(3,1fr); }
  .g4 { grid-template-columns: repeat(4,1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 2; }
  .cat-grid { grid-template-columns: repeat(4,1fr); }
  .cat-tile--wide { grid-column: span 2; aspect-ratio: 4/3; }
  .menu-grid { grid-template-columns: repeat(3,1fr); }
  .menu-item { grid-template-columns: 1fr; display: block; }
  .menu-item__img { aspect-ratio: 4/3; }
  .menu-item__body { padding: var(--gap-lg); }
  .includes-grid { grid-template-columns: repeat(3,1fr); }
  .contact-layout { grid-template-columns: 1fr 1.5fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* ======================================
   RESPONSIVE — WIDE (1200px+)
   ====================================== */
@media (min-width: 1200px) {
  .split { gap: var(--gap-5xl); }
}
