/* ===================================
   WREN & WHEAT BAKEHOUSE — Styles
   Storefront Studio Portfolio Demo
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

/* === VARIABLES === */
:root {
  --terracotta:   #C1693C;
  --terracotta-dk:#A24F2A;
  --terracotta-lt:#E8A97D;
  --crust:        #8C5A35;
  --honey:        #E8A33D;
  --honey-light:  #F4CE8C;
  --cream:        #FBF4EA;
  --cream-dark:   #F2E6D6;
  --butter:       #FFFBF4;
  --sage:         #7C8B6F;
  --sage-dark:    #5C6952;
  --white:        #FFFFFF;
  --dark:         #3A2A1E;
  --text:         #3F3024;
  --text-muted:   #8A7B6C;
  --berry:        #9B3A4B;
  --shadow-sm:    0 1px 3px rgba(60,40,20,.10);
  --shadow-md:    0 6px 20px rgba(60,40,20,.14);
  --shadow-lg:    0 12px 40px rgba(60,40,20,.18);
  --radius:       10px;
  --radius-lg:    18px;
  --font-head:    'Fraunces', Georgia, serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;
  --max-w:        1200px;
  --transition:   all .25s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; font-weight: 600; color: var(--dark); }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 800; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.section-label {
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--terracotta); display: block; margin-bottom: .65rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.08rem; max-width: 620px; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--dark); color: var(--white); }
.section--sage { background: var(--sage); color: var(--white); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 999px; font-weight: 700;
  font-size: 1rem; border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.btn-primary:hover { background: var(--terracotta-dk); border-color: var(--terracotta-dk); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-honey { background: var(--honey); color: var(--dark); border-color: var(--honey); }
.btn-honey:hover { background: var(--honey-light); border-color: var(--honey-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-sage { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-sage:hover { background: var(--sage-dark); border-color: var(--sage-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: .55rem 1.25rem; font-size: .875rem; }

/* === NAVIGATION === */
.nav { position: sticky; top: 0; z-index: 1000; background: var(--butter); box-shadow: var(--shadow-sm); transition: var(--transition); }
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem; height: 76px; max-width: var(--max-w); margin: 0 auto; }
.nav__logo { display: flex; align-items: center; gap: .8rem; }
.nav__logo-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--honey) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: var(--shadow-sm);
}
.nav__logo-text { line-height: 1.15; }
.nav__logo-name { font-family: var(--font-head); font-size: 1.18rem; font-weight: 700; color: var(--dark); display: block; }
.nav__logo-sub { font-size: .68rem; color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: .2rem; }
.nav__link { padding: .5rem .9rem; border-radius: 999px; font-size: .92rem; font-weight: 600; color: var(--text); transition: var(--transition); position: relative; }
.nav__link:hover, .nav__link.active { color: var(--terracotta-dk); background: var(--cream); }
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + .5rem); left: 0; background: var(--white);
  border: 1px solid var(--cream-dark); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 230px; padding: .5rem; opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: var(--transition);
}
.nav__dropdown:hover .nav__dropdown-menu, .nav__dropdown-menu:hover { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav__dropdown-item { display: flex; align-items: center; gap: .75rem; padding: .65rem 1rem; border-radius: 8px; font-size: .9rem; color: var(--text); transition: var(--transition); }
.nav__dropdown-item:hover { background: var(--cream); color: var(--terracotta-dk); }
.nav__dropdown-item span { font-size: 1.1rem; }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__phone { display: flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--terracotta-dk); font-size: .92rem; }
.nav__phone svg { width: 17px; height: 17px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav__mobile { display: none; flex-direction: column; background: var(--butter); border-top: 1px solid var(--cream-dark); padding: 1rem 1.5rem 1.5rem; }
.nav__mobile.open { display: flex; }
.nav__mobile-link { padding: .75rem 0; border-bottom: 1px solid var(--cream-dark); font-weight: 600; color: var(--text); }
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-sub { padding-left: 1rem; font-size: .9rem; color: var(--text-muted); margin-top: .25rem; display: block; }

/* === ANNOUNCEMENT BAR === */
.announce-bar { background: var(--terracotta); color: var(--white); padding: .55rem 1.5rem; text-align: center; font-size: .85rem; font-weight: 700; }
.announce-bar a { color: var(--white); text-decoration: underline; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #4A3424 0%, #6B4426 45%, #8C5A35 100%);
  position: relative; overflow: hidden; padding: 6rem 0 5rem;
  min-height: 82vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.045'%3E%3Ccircle cx='20' cy='20' r='2.5'/%3E%3Ccircle cx='60' cy='60' r='2.5'/%3E%3Ccircle cx='60' cy='20' r='1.5'/%3E%3Ccircle cx='20' cy='60' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 2; max-width: 700px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(232,163,61,.18); border: 1px solid rgba(232,163,61,.45);
  color: var(--honey-light); padding: .4rem 1rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--honey); }
.hero__sub { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 600px; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.8); font-size: .875rem; }
.hero__trust-icon { color: var(--honey); font-size: 1rem; }

/* === PROOF / INFO BAR === */
.proof-bar { background: var(--dark); color: var(--white); padding: 1.25rem 0; }
.proof-bar__inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 1rem; }
.proof-item { display: flex; align-items: center; gap: .6rem; font-size: .9rem; }
.proof-item__num { font-size: 1.4rem; font-weight: 800; color: var(--honey); font-family: var(--font-head); }
.proof-item__label { color: rgba(255,255,255,.75); }
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* === SIGNATURE / PRODUCT CARDS === */
.product-card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--terracotta-lt); }
.product-card__media {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.product-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.product-card p { color: var(--text-muted); font-size: .9rem; flex: 1; }
.product-card__price { font-weight: 800; color: var(--terracotta-dk); font-family: var(--font-head); font-size: 1.05rem; margin-top: .75rem; }

/* Texture/placeholder swatches for "photos" — warm CSS gradients standing in for real photography */
.swatch-1 { background: linear-gradient(135deg, #E8C9A0 0%, #C1693C 100%); }
.swatch-2 { background: linear-gradient(135deg, #F4CE8C 0%, #C1693C 60%, #8C5A35 100%); }
.swatch-3 { background: linear-gradient(135deg, #EFD9BF 0%, #B97A4E 100%); }
.swatch-4 { background: linear-gradient(135deg, #E3B98C 0%, #9B3A4B 100%); }
.swatch-5 { background: linear-gradient(135deg, #F4CE8C 0%, #7C8B6F 120%); }
.swatch-6 { background: linear-gradient(135deg, #FBF4EA 0%, #E8A97D 50%, #A24F2A 100%); }
.swatch-7 { background: linear-gradient(160deg, #8C5A35 0%, #C1693C 50%, #E8A33D 100%); }
.swatch-8 { background: linear-gradient(135deg, #D9CBB8 0%, #8C5A35 100%); }
.swatch-grain {
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.18) 0, transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(0,0,0,.10) 0, transparent 45%);
}

/* === WHY / FEATURE GRID === */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item__icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.why-item h4 { margin-bottom: .25rem; }
.why-item p { color: var(--text-muted); font-size: .9rem; }

/* === TESTIMONIALS === */
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--cream-dark); }
.stars { color: var(--honey); font-size: 1.1rem; letter-spacing: .12rem; margin-bottom: .75rem; }
.testimonial-card blockquote { font-size: .96rem; color: var(--text); margin-bottom: 1.25rem; line-height: 1.75; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: .75rem; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 1rem; font-family: var(--font-head);
}
.testimonial-card__name { font-weight: 800; font-size: .9rem; }
.testimonial-card__loc { font-size: .8rem; color: var(--text-muted); }
.google-badge { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--text-muted); margin-top: 1rem; }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; cursor: pointer; }
.gallery-item__media {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; transition: transform .4s ease;
}
.gallery-item:hover .gallery-item__media { transform: scale(1.06); }
.gallery-item__overlay { position: absolute; inset: 0; background: rgba(58,42,30,0); display: flex; align-items: flex-end; padding: 1rem; transition: var(--transition); }
.gallery-item:hover .gallery-item__overlay { background: rgba(58,42,30,.55); }
.gallery-item__label { color: var(--white); font-weight: 700; font-size: .85rem; opacity: 0; transform: translateY(8px); transition: var(--transition); }
.gallery-item:hover .gallery-item__label { opacity: 1; transform: translateY(0); }
.gallery-note {
  background: var(--cream); border: 1.5px dashed var(--cream-dark); border-radius: var(--radius);
  padding: 1rem 1.25rem; font-size: .85rem; color: var(--text-muted); text-align: center; margin-top: 1.5rem;
}

/* === LIGHTBOX === */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(40,28,18,.92); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__media {
  width: min(640px, 86vw); aspect-ratio: 4/3; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; font-size: 4.5rem;
  box-shadow: var(--shadow-lg); position: relative;
}
.lightbox__caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; background: linear-gradient(transparent, rgba(0,0,0,.55)); color: var(--white); font-weight: 700; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.lightbox__close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; line-height: 1; }
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: var(--white); font-size: 2rem; cursor: pointer; padding: 1rem; border-radius: var(--radius); transition: var(--transition); }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.3); }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

/* === MENU === */
.menu-tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.menu-tab {
  padding: .65rem 1.4rem; border-radius: 999px; border: 1.5px solid var(--cream-dark);
  background: var(--white); font-weight: 700; font-size: .9rem; cursor: pointer; transition: var(--transition);
}
.menu-tab:hover { border-color: var(--terracotta-lt); }
.menu-tab.active { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.menu-section { display: none; }
.menu-section.active { display: block; }
.menu-list { display: flex; flex-direction: column; gap: 0; }
.menu-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--cream-dark);
}
.menu-row:first-child { border-top: 1px solid var(--cream-dark); }
.menu-row__name { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; margin-bottom: .25rem; }
.menu-row__desc { color: var(--text-muted); font-size: .875rem; max-width: 480px; }
.menu-row__tags { display: flex; gap: .4rem; margin-top: .4rem; flex-wrap: wrap; }
.menu-tag {
  font-size: .7rem; font-weight: 700; padding: .15rem .55rem; border-radius: 999px;
  background: var(--cream); color: var(--sage-dark); letter-spacing: .03em; text-transform: uppercase;
}
.menu-tag--gf { background: #E9F1E5; color: var(--sage-dark); }
.menu-tag--vg { background: #EAF2E2; color: #4F6B3E; }
.menu-tag--nut { background: #FBE9E2; color: var(--berry); }
.menu-row__price { font-family: var(--font-head); font-weight: 700; color: var(--terracotta-dk); font-size: 1.05rem; white-space: nowrap; }
.menu-legend { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: .8rem; color: var(--text-muted); margin: 1.5rem 0 0; }
.menu-legend span { display: inline-flex; align-items: center; gap: .4rem; }

/* === FAQ === */
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; font-size: 1rem; font-weight: 700; cursor: pointer; color: var(--text); gap: 1rem; }
.faq-question:hover { color: var(--terracotta-dk); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--terracotta); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--honey); color: var(--dark); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 0 1.25rem; color: var(--text-muted); line-height: 1.75; }

/* === FORMS === */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 700; font-size: .875rem; margin-bottom: .4rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius); font-size: 1rem; transition: var(--transition); background: var(--white);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(193,105,60,.12); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { background: #E9F1E5; border: 1.5px solid #9CC08A; border-radius: var(--radius); padding: 1.25rem; color: #3F5C30; font-weight: 700; display: none; align-items: center; gap: .75rem; }

/* === BLOG === */
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--cream-dark); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-card__body { padding: 1.5rem; }
.blog-card__tag { font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--terracotta-dk); margin-bottom: .75rem; display: block; }
.blog-card h3 { font-size: 1.15rem; font-family: var(--font-head); font-weight: 700; margin-bottom: .5rem; }
.blog-card__excerpt { color: var(--text-muted); font-size: .875rem; margin-bottom: 1rem; }
.blog-card__meta { font-size: .8rem; color: var(--text-muted); display: flex; gap: 1rem; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin: 2rem 0 1rem; }
.prose h3 { margin: 1.5rem 0 .75rem; }
.prose p { color: var(--text); line-height: 1.85; margin-bottom: 1.15rem; }
.prose ul, .prose ol { margin: 0 0 1.15rem 1.4rem; }
.prose li { margin-bottom: .5rem; color: var(--text); line-height: 1.7; }
.prose blockquote { border-left: 4px solid var(--terracotta); padding: .25rem 0 .25rem 1.25rem; margin: 1.5rem 0; font-style: italic; color: var(--text-muted); }

/* === HOURS / LOCATION CARD === */
.hours-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--cream-dark); }
.hours-row { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--cream-dark); font-size: .92rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row__day { font-weight: 700; }
.hours-row__time { color: var(--text-muted); }
.hours-row--today { color: var(--terracotta-dk); }
.hours-row--today .hours-row__day, .hours-row--today .hours-row__time { color: var(--terracotta-dk); }

.map-placeholder {
  background: var(--cream); border: 2px dashed var(--cream-dark); border-radius: var(--radius-lg);
  height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-muted); gap: 1rem; text-align: center; padding: 1.5rem;
}
.map-placeholder__icon { font-size: 3rem; }

.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: .75rem; }
.area-tag { background: var(--white); border: 1px solid var(--cream-dark); border-radius: 999px; padding: .55rem 1rem; font-size: .875rem; font-weight: 600; text-align: center; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.area-tag::before { content: '📍'; font-size: .75rem; }

/* === TRUST BAR === */
.trust-bar { background: var(--cream); border-top: 1px solid var(--cream-dark); padding: 2rem 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2.5rem; }
.trust-badge { display: flex; align-items: center; gap: .6rem; font-size: .875rem; font-weight: 700; color: var(--terracotta-dk); }
.trust-badge__icon { font-size: 1.5rem; }

/* === EMAIL CAPTURE === */
.email-capture { background: var(--dark); padding: 4rem 0; }
.email-capture h2 { color: var(--white); }
.email-capture p { color: rgba(255,255,255,.75); }
.email-form { display: flex; gap: .75rem; max-width: 480px; margin: 1.5rem auto 0; }
.email-form input { flex: 1; padding: .85rem 1.25rem; border-radius: 999px; border: none; font-size: 1rem; }
.email-form input:focus { outline: 2px solid var(--honey); }

/* === FEATURE LIST === */
.feature-list { display: flex; flex-direction: column; gap: .75rem; }
.feature-item { display: flex; align-items: flex-start; gap: .75rem; }
.feature-item__check { width: 22px; height: 22px; background: var(--terracotta); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .72rem; flex-shrink: 0; margin-top: .15rem; }
.feature-item p { margin: 0; color: var(--text); font-size: .95rem; }

/* === FOOTER === */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer__brand-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--honey) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.footer__brand-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.footer__brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer__social { display: flex; gap: .75rem; }
.footer__social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: var(--transition); }
.footer__social-link:hover { background: var(--honey); color: var(--dark); }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: .85rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__link { font-size: .875rem; transition: var(--transition); }
.footer__link:hover { color: var(--white); }
.footer__contact { display: flex; flex-direction: column; gap: .75rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; }
.footer__contact-icon { margin-top: .1rem; flex-shrink: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.5rem 0; display: flex; flex-direction: column; gap: .5rem; align-items: center; text-align: center; font-size: .8rem; }
.footer__demo-note { color: rgba(255,255,255,.45); font-size: .76rem; }
.footer__demo-note a { color: rgba(255,255,255,.65); text-decoration: underline; }

/* === STICKY MOBILE CTA === */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: var(--dark); border-top: 3px solid var(--honey); padding: .85rem 1.5rem; flex-direction: column; gap: .5rem; }
.sticky-cta__top { display: flex; align-items: center; justify-content: space-between; }
.sticky-cta__label { color: rgba(255,255,255,.75); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.sticky-cta__btns { display: flex; gap: .75rem; }
.sticky-cta__call, .sticky-cta__quote { flex: 1; padding: .85rem; border-radius: 999px; font-weight: 800; font-size: .95rem; text-align: center; border: none; cursor: pointer; }
.sticky-cta__call { background: var(--honey); color: var(--dark); }
.sticky-cta__quote { background: rgba(255,255,255,.15); color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }

/* === INNER PAGE HERO === */
.page-hero { background: linear-gradient(135deg, #4A3424 0%, #6B4426 100%); padding: 4rem 0 3rem; color: var(--white); }
.page-hero .section-label { color: var(--honey-light); }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.75rem); }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 640px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* === SCROLL FADE === */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === MISC CARDS === */
.info-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--cream-dark); }
.tag-pill { display: inline-block; font-size: .78rem; font-weight: 700; padding: .3rem .85rem; border-radius: 999px; background: var(--cream); color: var(--terracotta-dk); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__right .btn, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .hero { padding: 4rem 0 3rem; min-height: auto; }
  .hero__trust { gap: .75rem; flex-direction: column; }
  .hero__trust-item { font-size: .8rem; }

  .announce-bar { font-size: .78rem; padding: .5rem 1rem; }

  .proof-bar__inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem 0; text-align: center; }
  .proof-item { flex-direction: column; gap: .15rem; }
  .proof-item__num { font-size: 1.2rem; }
  .proof-item__label { font-size: .72rem; }
  .proof-divider { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  .menu-row { flex-direction: column; gap: .25rem; }
  .menu-row__price { align-self: flex-start; }

  .trust-bar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; justify-items: start; padding: 0 .5rem; }

  .email-form { flex-direction: column; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 2.5rem 0 0; }

  .sticky-cta { display: flex; padding-bottom: calc(.85rem + env(safe-area-inset-bottom, 0px)); }
  body { padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px)); }

  .section { padding: 3.5rem 0; }
  .page-hero { padding: 2.5rem 0 2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .proof-bar__inner { grid-template-columns: 1fr 1fr; }
  .trust-bar__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .menu-tabs { gap: .4rem; }
  .menu-tab { padding: .55rem 1.1rem; font-size: .82rem; }
}
