/**
 * ============================================================================
 * kc roast co — Main Stylesheet
 * ============================================================================
 *
 * @project    kc roast co case study
 * @version    1.0.0
 * @author     Valdez Campos <dez@mediabrilliance.io>
 * @date       2026-01-22
 * @file       /style.css
 *
 * @desc       Complete stylesheet for KC Roast Co. website featuring:
 *             - CSS custom properties (design tokens)
 *             - Modern CSS reset
 *             - Responsive layout system
 *             - Component styles (cards, buttons, forms)
 *             - Utility classes
 *
 * @structure  Table of Contents:
 *             1)  Design Tokens (CSS Variables)
 *             2)  Reset & Global Guards
 *             3)  Accessibility Utilities
 *             4)  Page Transitions
 *             5)  Typography
 *             6)  Layout Primitives (Header, Container)
 *             7)  Images
 *             8)  Buttons
 *             9)  Links
 *             10) Footer
 *             11) Hero Section
 *             12-18) Section Variants
 *             19) Menu Components
 *             20) Testimonials
 *             21) Location & Hours
 *             22) Newsletter
 *             23) Form Elements
 *             24-35) Utilities & Misc
 *
 * @fonts      - Fraunces (display headings)
 *             - Nunito Sans (body text)
 *
 * @colors     Dark coffee-shop palette with warm accents
 *             Primary: #C4A77D (golden/caramel)
 *             Background: #0F0D0C (near black)
 *
 * @breakpoints
 *             - Mobile: < 768px
 *             - Desktop: >= 768px
 *
 * @a11y       - Focus-visible states
 *             - Reduced motion support
 *             - Screen reader utilities
 *             - Sufficient color contrast
 *
 * ============================================================================
 */


/* =========================================================
   1) DESIGN TOKENS (CSS Custom Properties)
   =========================================================
   Centralized design values for consistent theming.
   Modify these to update the entire color scheme.
   ========================================================= */
:root {
  /* ---------------------------------------------------------
     Colors - Coffee Shop Palette
     --------------------------------------------------------- */
  --bg:           #0F0D0C;              /* Main background (near black) */
  --bg-warm:      #1A1615;              /* Warm background variant */
  --bg-card:      rgba(255,245,235,.03); /* Subtle card background */
  --text:         rgba(255,250,245,.9);  /* Primary text (off-white) */
  --muted:        rgba(255,250,245,.6);  /* Secondary/muted text */

  /* ---------------------------------------------------------
     Typography
     --------------------------------------------------------- */
  --font-body: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", serif;

  /* ---------------------------------------------------------
     Brand Accents
     --------------------------------------------------------- */
  /* brand accents */
  --accent-primary:   #C4A77D;
  --accent-secondary: #8B5A2B;
  --accent-highlight: #E8DCC4;
  --accent-dark:      #2C1810;

  /* semantic */
  --success: #7CB342;
  --error:   #D84315;
  --warning: #F9A825;

  /* layout */
  --container:    1200px;
  --container-sm: 720px;
  --header-h:     64px;

  /* shape */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* shadow */
  --shadow-soft:   0 8px 24px rgba(0,0,0,.4);
  --shadow-card:   0 4px 12px rgba(0,0,0,.3);
  --shadow-glow:   0 0 40px rgba(196,167,125,.15);

  /* motion */
  --t-fast: .15s;
  --t-base: .3s;
  --t-slow: .6s;
  --ease:   cubic-bezier(.25,.8,.25,1);
  --ease-out: cubic-bezier(.0, 0, .2, 1);
  --ease-bounce: cubic-bezier(.68, -.55, .265, 1.55);
}


/* =========================================================
   2) reset + global guards
   ========================================================= */
*,*::before,*::after{
  box-sizing: border-box;
}

html,body{
  height: 100%;
}

html{
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }
}

body{
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;

  display: flex;
  flex-direction: column;

  background: var(--bg);
  color: var(--text);

  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================================================
   2.1 global background image
   ========================================================= */
body::before{
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;

  background-image: url('/images/barista_sketch.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

/* =========================================================
   3) accessibility utilities
   ========================================================= */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link{
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;

  padding: .75rem 1.5rem;
  background: var(--accent-primary);
  color: var(--accent-dark);
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);

  transition: top var(--t-base) ease;
}

.skip-link:focus{
  top: 0;
  outline: 2px solid var(--accent-highlight);
  outline-offset: 2px;
}


/* =========================================================
   4) page transition
   ========================================================= */
#page-transition{
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: var(--bg);
  pointer-events: none;

  transform: translateX(0);
  transition: transform var(--t-slow) var(--ease);
}

#page-transition.exit{
  transform: translateX(-100%);
}

main{
  flex: 1 0 auto;
  opacity: 1;
  transition: opacity var(--t-base) ease;
}

body.is-loading main,
body.is-leaving main{
  opacity: 0;
}

@media (prefers-reduced-motion: reduce){
  #page-transition,
  main{
    transition: none;
  }
}


/* =========================================================
   5) typography
   ========================================================= */
h1,h2,h3,h4,h5,h6{
  margin: 0 0 .5em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -.02em;
}

h1{ font-size: clamp(2.5rem, 6vw, 4rem); }
h2{ font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3{ font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4{ font-size: 1.25rem; }
h5{ font-size: 1rem; }
h6{ font-size: .875rem; }

body{
  font-family: var(--font-body);
}

h1,
h2,
h3,
.hero__title,
.section__title,
.card__title{
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.hero__title{
  font-variation-settings: "opsz" 96;
}

.section__title{
  font-weight: 600;
}


p{
  margin: 0 0 1em;
}

small{
  color: var(--muted);
  font-size: .875rem;
}

a{
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}

a:hover{
  color: var(--accent-highlight);
}

a:focus-visible{
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

strong, b{
  font-weight: 700;
}

blockquote{
  margin: 0;
  padding: 0;
}


/* =========================================================
   6) layout primitives
   ========================================================= */
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;

  height: var(--header-h);
  width: 100%;

  background: rgba(15,13,12,.85);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid rgba(255,250,245,.08);
}

.header-grid{
  max-width: var(--container);
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
}


.nav{
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: center;
  width: 100%;
  height: 100%;
}

.nav-left-section{
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-self: start;
  padding-left: 0.5rem;
}

.nav-left-section a{
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: .02em;
  transition: color var(--t-fast) ease;
}

.nav-left-section a:hover{
  color: var(--text);
}

.nav-left-section a.is-active{
  color: var(--accent-primary);
}

.nav .pages,
.nav .socials{
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav .header-title{
  justify-self: center;
}

.nav .header-title a{
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: .05em;
  text-transform: lowercase;
  color: var(--accent-highlight);
  transition: color var(--t-fast) ease;
}

.nav .header-title a:hover{
  color: var(--accent-primary);
}

.nav .socials{
  justify-self: end;
}

/* ============================
   FIX: header social icons
   ============================ */

.nav .socials{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 0.5rem;
}

/* give the social link a real box */
.nav-link--social{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--muted);
}

/* size the SVG/img explicitly */
.nav-link--social .icon,
.nav-link--social svg,
.nav-link--social img{
  width: 20px;
  height: 20px;
}

/* hover behavior */
.nav-link--social:hover{
  color: var(--accent-primary);
}

.nav-link{
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: .02em;
  transition: color var(--t-fast) ease;
}

.nav-link:hover{
  color: var(--text);
}

.nav-link.is-active{
  color: var(--accent-primary);
}

/* mobile nav toggle */
.nav-toggle{
  display: none;
  appearance: none;
  background: transparent;
  border: none;
  padding: .5rem;
  cursor: pointer;
}

.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition:
    transform var(--t-fast) ease,
    opacity var(--t-fast) ease;
}

/* hamburger to X animation */
.nav-toggle.is-active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2){
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* remove bullets from header navigation lists */
.nav ul,
.nav li{
  list-style: none;
  margin: 0;
  padding: 0.2rem;
}



/* =========================================================
   responsive header behavior
   ========================================================= */

/* mobile: hide desktop links, show hamburger */
@media (max-width: 767px){
  .nav-left-section{
    display: none;
  }

  .nav .socials{
    display: none;
  }

  .nav-toggle{
    display: inline-flex;
  }
}


/* mobile menu panel */
.mobile-menu{
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;

  background: var(--bg);
  padding: 2rem 1.5rem;

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    opacity var(--t-base) ease,
    transform var(--t-base) ease;
}

.mobile-menu.is-active{
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu .nav-link{
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  border-bottom: 1px solid rgba(255,250,245,.1);
}

.nav-left,
.nav-center,
.nav-right{
  display: flex;
  align-items: center;
}

.nav-center{
  justify-self: center;
}

.nav-left{
  justify-self: start;
}

.nav-right{
  justify-self: end;
}


/* =========================================================
   7) images
   ========================================================= */
img{
  display: block;
  max-width: 100%;
  height: auto;
}

figure{
  margin: 0;
}


/* =========================================================
   8) buttons
   ========================================================= */
.btn,
.button{
  appearance: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;

  padding: .875rem 1.75rem;
  border-radius: var(--radius-sm);

  font: inherit;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: lowercase;
  text-decoration: none;

  border: 2px solid transparent;
  box-shadow: var(--shadow-card);

  transition:
    transform var(--t-fast) ease,
    box-shadow var(--t-fast) ease,
    background var(--t-fast) ease,
    border-color var(--t-fast) ease,
    color var(--t-fast) ease;
}

.btn:hover,
.button:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn:active,
.button:active{
  transform: translateY(0);
}

.btn:focus-visible,
.button:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(196,167,125,.4),
    var(--shadow-soft);
}

.btn:disabled,
.button:disabled{
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

/* primary button */
.btn--primary,
.button-primary{
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--accent-dark);
}

.btn--primary:hover,
.button-primary:hover{
  background: var(--accent-highlight);
  border-color: var(--accent-highlight);
  color: var(--accent-dark);
}

/* secondary button */
.btn--secondary,
.button-secondary{
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
  color: var(--text);
}

.btn--secondary:hover,
.button-secondary:hover{
  background: #9D6B3A;
  border-color: #9D6B3A;
}

/* outline button */
.btn--outline,
.button-outline{
  background: transparent;
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn--outline:hover,
.button-outline:hover{
  background: var(--accent-primary);
  color: var(--accent-dark);
}

/* ghost button */
.button-ghost{
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--text);
}

.button-ghost:hover{
  background: rgba(255,250,245,.1);
  border-color: transparent;
}

/* button sizes */
.button-sm{
  padding: .5rem 1rem;
  font-size: .8125rem;
}

.button-lg{
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.button-block{
  display: flex;
  width: 100%;
}


/* =========================================================
   9) links with icons/arrows
   ========================================================= */
.link{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--accent-primary);
  transition: 
    color var(--t-fast) ease,
    gap var(--t-fast) ease;
}

.link:hover{
  color: var(--accent-highlight);
}

.link--arrow::after{
  content: '→';
  transition: transform var(--t-fast) ease;
}

.link--arrow:hover::after{
  transform: translateX(4px);
}

.link--icon{
  gap: .625rem;
}

.link--icon .icon{
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}


/* =========================================================
   10) footer
   ========================================================= */
.footer{
  margin-top: auto;
  padding: 1.5rem;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  font-size: .8125rem;
  color: var(--muted);

  border-top: 1px solid rgba(255,250,245,.08);
  background: var(--bg-warm);
}

.footer a{
  color: var(--muted);
}

.footer a:hover{
  color: var(--accent-primary);
}

.footer__case-study{
  font-style: italic;
  opacity: .8;
}


/* =========================================================
   11) hero section – FULL BLEED BACKGROUND
   ========================================================= */
.hero{
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3rem;

  min-height: calc(100vh - var(--header-h));
  padding: 4rem 1.5rem;
  margin: 0 auto;

  overflow: hidden;
}

/* background image layer */
.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url('/images/salute.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* contrast overlay */
.hero::after{
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(15,13,12,.65) 0%,
      rgba(15,13,12,.55) 45%,
      rgba(15,13,12,.85) 100%
    );
}

/* content layer */
.hero__content{
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* typography stays unchanged */
.hero__title{
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: .5em;
  color: var(--accent-highlight);
  letter-spacing: -.03em;
}

.hero__tagline{
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero__cta-group{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}


/* =========================================================
   12) section component - BASE
   ========================================================= */
.section{
  padding: 5rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.section-sm{
  padding: 3rem 1.5rem;
}

.section-lg{
  padding: 7rem 1.5rem;
}

.section__header{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__title{
  margin-bottom: .25em;
  color: var(--accent-highlight);
}

.section__subtitle{
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0;
}

.section__text{
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section__cta{
  text-align: center;
  margin-top: 3rem;
}


/* =========================================================
   13) TWO COLUMN LAYOUT
   ========================================================= */
.section--two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section--two-col .section__content{
  max-width: 100%;
}

.section--two-col .section__media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.section--two-col .section__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* reversed layout - content left, image right */
.section--reversed .section__media{
  order: 2;
}

.section--reversed .section__content{
  order: 1;
}


/* =========================================================
   14) FEATURED SECTION (full-width background)
   ========================================================= */
.section--featured{
  background: var(--bg-warm);
  max-width: 100%;
  padding: 5rem 1.5rem;
}

.section--featured .section__header,
.section--featured .card-grid,
.section--featured .section__cta{
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   15) TESTIMONIALS SECTION
   ========================================================= */
.section--testimonials{
  background: linear-gradient(
    135deg,
    var(--accent-dark) 0%,
    var(--bg) 100%
  );
  max-width: 100%;
  padding: 5rem 1.5rem;
}


/* =========================================================
   16) NEWSLETTER SECTION
   ========================================================= */
.section--newsletter{
  background: var(--bg-warm);
  max-width: 100%;
  padding: 5rem 1.5rem;
}


/* =========================================================
   17) LOCATION SECTION
   ========================================================= */
.section--location{
  background: var(--bg);
}

.section__media--map{
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.section__media--map iframe{
  width: 100%;
  height: 100%;
  display: block;
}


/* =========================================================
   18) card grid + cards
   ========================================================= */
.card-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.card{
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255,250,245,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color var(--t-base) ease,
    transform var(--t-fast) ease,
    box-shadow var(--t-base) ease;
}

.card:hover{
  border-color: rgba(196,167,125,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.card__image{
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-warm);
}

.card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) ease;
}

.card:hover .card__image img{
  transform: scale(1.05);
}

.card__badge{
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .375rem .75rem;
  background: var(--accent-primary);
  color: var(--accent-dark);
  font-size: .75rem;
  font-weight: 700;
  text-transform: lowercase;
  border-radius: var(--radius-sm);
}

.card__content{
  padding: 1.5rem;
}

.card__title{
  font-size: 1.25rem;
  margin-bottom: .25rem;
  color: var(--text);
}

.card__desc{
  font-size: .9375rem;
  color: var(--muted);
  margin-bottom: .5rem;
  font-style: italic;
}

.card__meta{
  font-size: .8125rem;
  color: var(--muted);
  margin-bottom: 1rem;
  text-transform: lowercase;
}

.card__price{
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin: 0;
}

.card__unit{
  font-size: .875rem;
  font-weight: 400;
  color: var(--muted);
}

/* full card link overlay */
.card__link{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card__link:focus-visible{
  outline: none;
  box-shadow: inset 0 0 0 3px var(--accent-primary);
  border-radius: var(--radius-lg);
}


/* =========================================================
   19) menu preview
   ========================================================= */
.menu-preview{
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.menu-preview__item{
  display: flex;
  align-items: baseline;
  gap: .5rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,250,245,.08);
}

.menu-preview__item:last-child{
  border-bottom: none;
}

.menu-preview__name{
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.menu-preview__dots{
  flex: 1;
  border-bottom: 1px dotted rgba(255,250,245,.3);
  margin: 0 .5rem;
  min-width: 2rem;
  transform: translateY(-4px);
}

.menu-preview__price{
  font-weight: 700;
  color: var(--accent-primary);
  white-space: nowrap;
}


/* =========================================================
   19b) menu list (full menu page)
   ========================================================= */
.menu-list{
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin: 0 auto;
}

.menu-list__item{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,250,245,.08);
}

.menu-list__item:last-child{
  border-bottom: none;
}

.menu-list__item--featured{
  background: rgba(196,167,125,.05);
  margin: 0 -1rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-sm);
  border-bottom: none;
  margin-bottom: .5rem;
}

.menu-list__details{
  flex: 1;
}

.menu-list__name{
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text);
  display: block;
  margin-bottom: .25rem;
}

.menu-list__desc{
  font-size: .875rem;
  color: var(--muted);
  display: block;
}

.menu-list__price{
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--accent-primary);
  white-space: nowrap;
}

.menu-list--compact .menu-list__item{
  padding: .75rem 0;
}

.menu-list--compact .menu-list__name{
  font-size: .9375rem;
}

.menu-list--compact .menu-list__price{
  font-size: .9375rem;
}


/* =========================================================
   19c) page header
   ========================================================= */
.section__header--page{
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  background: linear-gradient(
    180deg,
    var(--bg-warm) 0%,
    var(--bg) 100%
  );
}

.section__header--page .section__title{
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: .5rem;
}

.section__header--page .section__subtitle{
  font-size: 1.125rem;
  color: var(--muted);
}


/* =========================================================
   19d) contact form
   ========================================================= */
.contact-form{
  margin-top: 2rem;
}

.contact-form .form-group{
  margin-bottom: 1.5rem;
}


/* =========================================================
   20) testimonial
   ========================================================= */
.testimonial{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__quote{
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2rem;
}

.testimonial__quote p{
  margin: 0;
}

.testimonial__quote::before{
  content: '"';
  display: block;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-primary);
  opacity: .5;
  margin-bottom: .5rem;
}

.testimonial__author{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}

.testimonial__avatar{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: .5rem;
  border: 2px solid var(--accent-primary);
}

.testimonial__name{
  font-weight: 700;
  color: var(--text);
}

.testimonial__location{
  font-size: .875rem;
  color: var(--muted);
}


/* =========================================================
   21) location & hours
   ========================================================= */
.location-info{
  font-style: normal;
  margin-bottom: 2rem;
}

.location-info__address{
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.location-info__address strong{
  display: block;
  color: var(--text);
  margin-bottom: .25rem;
}

.hours{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .5rem 1.5rem;
  margin-bottom: 2rem;
}

.hours__label{
  font-weight: 600;
  color: var(--text);
  text-transform: lowercase;
}

.hours__value{
  color: var(--muted);
  margin: 0;
}

.contact-links{
  display: flex;
  flex-direction: column;
  gap: .75rem;
}


/* =========================================================
   22) newsletter
   ========================================================= */
.newsletter{
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__title{
  color: var(--accent-highlight);
  margin-bottom: .5rem;
}

.newsletter__text{
  color: var(--muted);
  margin-bottom: 2rem;
}

.newsletter__form .form-group{
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
}

.newsletter__form .form-input{
  flex: 1;
}

.newsletter__disclaimer{
  font-size: .8125rem;
  color: var(--muted);
  margin: 0;
}

.newsletter__disclaimer a{
  color: var(--muted);
  text-decoration: underline;
}

.newsletter__disclaimer a:hover{
  color: var(--accent-primary);
}


/* =========================================================
   23) form elements
   ========================================================= */
.form-group{
  margin-bottom: 1.25rem;
}

.form-label{
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
  font-size: .875rem;
  color: var(--text);
}

.form-input,
.form-textarea,
.form-select{
  width: 100%;
  padding: .875rem 1.25rem;

  font: inherit;
  font-size: 1rem;
  color: var(--text);

  background: rgba(255,250,245,.05);
  border: 1px solid rgba(255,250,245,.15);
  border-radius: var(--radius-sm);

  transition:
    border-color var(--t-base) ease,
    box-shadow var(--t-base) ease,
    background var(--t-base) ease;
}

.form-input::placeholder,
.form-textarea::placeholder{
  color: var(--muted);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover{
  border-color: rgba(255,250,245,.25);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus{
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(196,167,125,.2);
  background: rgba(255,250,245,.08);
}

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

.form-select{
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23E8DCC4' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* checkbox + radio */
.form-check{
  display: flex;
  align-items: center;
  gap: .625rem;
  cursor: pointer;
}

.form-check-input{
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;

  background: rgba(255,250,245,.05);
  border: 1px solid rgba(255,250,245,.25);
  border-radius: var(--radius-xs);

  cursor: pointer;
  transition:
    background var(--t-fast) ease,
    border-color var(--t-fast) ease;
}

.form-check-input[type="radio"]{
  border-radius: 50%;
}

.form-check-input:checked{
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.form-check-input:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(196,167,125,.25);
}

/* validation states */
.form-input.is-valid,
.form-textarea.is-valid{
  border-color: var(--success);
}

.form-input.is-invalid,
.form-textarea.is-invalid{
  border-color: var(--error);
}

.form-hint{
  margin-top: .375rem;
  font-size: .8125rem;
  color: var(--muted);
}

.form-error{
  margin-top: .375rem;
  font-size: .8125rem;
  color: var(--error);
}


/* =========================================================
   24) grid system
   ========================================================= */
.grid{
  display: grid;
  gap: 1.5rem;
}

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

.grid-auto-fit{
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-auto-fill{
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* flex utilities */
.flex{ display: flex; }
.flex-col{ flex-direction: column; }
.flex-wrap{ flex-wrap: wrap; }
.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}

.items-start{ align-items: flex-start; }
.items-center{ align-items: center; }
.items-end{ align-items: flex-end; }

.justify-start{ justify-content: flex-start; }
.justify-center{ justify-content: center; }
.justify-end{ justify-content: flex-end; }
.justify-between{ justify-content: space-between; }

.gap-0{ gap: 0; }
.gap-xs{ gap: .25rem; }
.gap-sm{ gap: .5rem; }
.gap-md{ gap: 1rem; }
.gap-lg{ gap: 2rem; }
.gap-xl{ gap: 4rem; }


/* =========================================================
   25) container variants
   ========================================================= */
.container-sm{
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-lg{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-full{
  width: 100%;
  padding: 0 1.5rem;
}


/* =========================================================
   26) badge / tag
   ========================================================= */
.badge{
  display: inline-flex;
  align-items: center;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: lowercase;
  border-radius: var(--radius-sm);
  background: rgba(255,250,245,.1);
  color: var(--text);
}

.badge-primary{
  background: var(--accent-primary);
  color: var(--accent-dark);
}

.badge-secondary{
  background: var(--accent-secondary);
  color: var(--text);
}


/* =========================================================
   27) divider
   ========================================================= */
.divider{
  height: 1px;
  background: rgba(255,250,245,.1);
  margin: 2rem 0;
  border: none;
}

.divider-lg{
  margin: 4rem 0;
}


/* =========================================================
   28) spacing utilities
   ========================================================= */
/* margin */
.m-0{ margin: 0; }
.m-auto{ margin: auto; }
.mx-auto{ margin-left: auto; margin-right: auto; }
.my-auto{ margin-top: auto; margin-bottom: auto; }

.mt-0{ margin-top: 0; }
.mt-xs{ margin-top: .25rem; }
.mt-sm{ margin-top: .5rem; }
.mt-md{ margin-top: 1rem; }
.mt-lg{ margin-top: 2rem; }
.mt-xl{ margin-top: 4rem; }

.mb-0{ margin-bottom: 0; }
.mb-xs{ margin-bottom: .25rem; }
.mb-sm{ margin-bottom: .5rem; }
.mb-md{ margin-bottom: 1rem; }
.mb-lg{ margin-bottom: 2rem; }
.mb-xl{ margin-bottom: 4rem; }

.ml-auto{ margin-left: auto; }
.mr-auto{ margin-right: auto; }

/* padding */
.p-0{ padding: 0; }
.p-xs{ padding: .25rem; }
.p-sm{ padding: .5rem; }
.p-md{ padding: 1rem; }
.p-lg{ padding: 2rem; }
.p-xl{ padding: 4rem; }

.py-xs{ padding-top: .25rem; padding-bottom: .25rem; }
.py-sm{ padding-top: .5rem; padding-bottom: .5rem; }
.py-md{ padding-top: 1rem; padding-bottom: 1rem; }
.py-lg{ padding-top: 2rem; padding-bottom: 2rem; }
.py-xl{ padding-top: 4rem; padding-bottom: 4rem; }

.px-xs{ padding-left: .25rem; padding-right: .25rem; }
.px-sm{ padding-left: .5rem; padding-right: .5rem; }
.px-md{ padding-left: 1rem; padding-right: 1rem; }
.px-lg{ padding-left: 2rem; padding-right: 2rem; }
.px-xl{ padding-left: 4rem; padding-right: 4rem; }


/* =========================================================
   29) text utilities
   ========================================================= */
.text-left{ text-align: left; }
.text-center{ text-align: center; }
.text-right{ text-align: right; }

.text-xs{ font-size: .75rem; }
.text-sm{ font-size: .875rem; }
.text-base{ font-size: 1rem; }
.text-lg{ font-size: 1.125rem; }
.text-xl{ font-size: 1.25rem; }
.text-2xl{ font-size: 1.5rem; }
.text-3xl{ font-size: 2rem; }
.text-4xl{ font-size: 2.5rem; }
.text-5xl{ font-size: 3rem; }

.font-light{ font-weight: 300; }
.font-normal{ font-weight: 400; }
.font-medium{ font-weight: 500; }
.font-semibold{ font-weight: 600; }
.font-bold{ font-weight: 700; }

.text-muted{ color: var(--muted); }
.text-primary{ color: var(--accent-primary); }
.text-secondary{ color: var(--accent-secondary); }
.text-highlight{ color: var(--accent-highlight); }

.leading-none{ line-height: 1; }
.leading-tight{ line-height: 1.25; }
.leading-normal{ line-height: 1.5; }
.leading-relaxed{ line-height: 1.75; }

.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uppercase{ text-transform: uppercase; }
.lowercase{ text-transform: lowercase; }
.capitalize{ text-transform: capitalize; }


/* =========================================================
   30) display utilities
   ========================================================= */
.hidden{ display: none; }
.block{ display: block; }
.inline{ display: inline; }
.inline-block{ display: inline-block; }

.relative{ position: relative; }
.absolute{ position: absolute; }
.fixed{ position: fixed; }
.sticky{ position: sticky; }

.inset-0{
  top: 0; right: 0; bottom: 0; left: 0;
}

.w-full{ width: 100%; }
.h-full{ height: 100%; }
.min-h-screen{ min-height: 100vh; }

.overflow-hidden{ overflow: hidden; }
.overflow-auto{ overflow: auto; }

.rounded{ border-radius: var(--radius-sm); }
.rounded-md{ border-radius: var(--radius-md); }
.rounded-lg{ border-radius: var(--radius-lg); }
.rounded-xl{ border-radius: var(--radius-xl); }
.rounded-full{ border-radius: 9999px; }
.rounded-none{ border-radius: 0; }

.shadow{ box-shadow: var(--shadow-soft); }
.shadow-card{ box-shadow: var(--shadow-card); }
.shadow-glow{ box-shadow: var(--shadow-glow); }
.shadow-none{ box-shadow: none; }

.opacity-0{ opacity: 0; }
.opacity-50{ opacity: .5; }
.opacity-75{ opacity: .75; }
.opacity-100{ opacity: 1; }

.pointer-events-none{ pointer-events: none; }
.pointer-events-auto{ pointer-events: auto; }

.cursor-pointer{ cursor: pointer; }
.cursor-not-allowed{ cursor: not-allowed; }


/* =========================================================
   31) list reset + styles
   ========================================================= */
.list-none{
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-disc{
  list-style: disc;
  padding-left: 1.5rem;
}

.list-decimal{
  list-style: decimal;
  padding-left: 1.5rem;
}


/* =========================================================
   32) overlay / backdrop
   ========================================================= */
.overlay{
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(15,13,12,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) ease;
}

.overlay.is-active{
  opacity: 1;
  pointer-events: auto;
}


/* =========================================================
   33) modal structure
   ========================================================= */
.modal{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  z-index: 1001;

  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;

  background: var(--bg-warm);
  border: 1px solid rgba(255,250,245,.1);
  border-radius: var(--radius-lg);

  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--t-base) ease,
    transform var(--t-base) ease;
}

.modal.is-active{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header{
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,250,245,.1);
}

.modal-body{
  padding: 1.5rem;
}

.modal-footer{
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,250,245,.1);
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
}


/* =========================================================
   34) icon utility
   ========================================================= */
.icon{
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  stroke: currentColor;
}

.icon-sm{ width: .875rem; height: .875rem; }
.icon-md{ width: 1.25rem; height: 1.25rem; }
.icon-lg{ width: 1.5rem; height: 1.5rem; }
.icon-xl{ width: 2rem; height: 2rem; }


/* =========================================================
   35) header hover image effects
   ========================================================= */

/* logo hover swap */
.header-title a{
  display: block;
}

.header-title .logo-default{
  display: block;
}

.header-title .logo-hover{
  display: none;
}

.header-title a:hover .logo-default{
  display: none;
}

.header-title a:hover .logo-hover{
  display: block;
}

/* social icon hover swap */
.nav-link--social .icon-default{
  display: block;
}

.nav-link--social .icon-hover{
  display: none;
}

.nav-link--social:hover .icon-default{
  display: none;
}

.nav-link--social:hover .icon-hover{
  display: block;
}

/* =========================================================
   end of style.css
   ========================================================= */