/* =========================================================
   Breadko. — Brand Design System
   Artisanal bakery, wholesale & distribution, PAN India
   ========================================================= */

:root {
  /* Brand palette (from Breadko Brand Guidelines) */
  --terracotta: #d25245;
  --terracotta-dark: #b8443a;
  --cream: #f2e9d1;
  --cream-soft: #f8f2e4;
  --peach: #efaa72;
  --brown: #754731;
  --brown-dark: #5a3524;
  --ink: #241d17;
  --white: #ffffff;

  --text: #2c2420;
  --text-soft: #5c5048;
  --border: rgba(36, 29, 23, 0.12);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Baloo 2", var(--font-display);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(36, 21, 13, 0.08);
  --shadow-md: 0 10px 30px rgba(36, 21, 13, 0.12);
  --shadow-lg: 0 24px 60px rgba(36, 21, 13, 0.18);

  --container: 1220px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-soft); }
p.lede { font-size: 1.2rem; color: var(--text); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.section-pad { padding-block: clamp(56px, 9vw, 120px); }
.section-pad-sm { padding-block: clamp(40px, 6vw, 72px); }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  display: inline-block;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.max-w-content { max-width: 680px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.bg-cream { background: var(--cream); }
.bg-brown { background: var(--brown); color: var(--cream); }
.bg-brown h1, .bg-brown h2, .bg-brown h3, .bg-brown h4 { color: var(--cream); }
.bg-brown p { color: rgba(242,233,209,0.82); }
.bg-terracotta { background: var(--terracotta); color: var(--cream); }
.bg-terracotta h1, .bg-terracotta h2, .bg-terracotta h3 { color: var(--cream); }
.bg-terracotta p { color: rgba(242,233,209,0.9); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--cream); }
.bg-ink p { color: rgba(242,233,209,0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--terracotta-dark); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: #35291f; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.bg-brown .btn-outline, .bg-terracotta .btn-outline, .bg-ink .btn-outline { color: var(--cream); }
.bg-brown .btn-outline:hover { background: var(--cream); color: var(--brown); }
.bg-terracotta .btn-outline:hover { background: var(--cream); color: var(--terracotta); }
.bg-ink .btn-outline:hover { background: var(--cream); color: var(--ink); }

.btn-cream { background: var(--cream); color: var(--brown); }
.btn-cream:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 242, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}
.brand-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 600;
  font-size: 0.96rem;
}
.nav-links a {
  position: relative;
  padding-block: 4px;
  color: var(--text);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--terracotta);
  transition: right 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--terracotta); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: none; }
@media (min-width: 1024px) {
  .nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.92rem; color: var(--brown); }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.25s ease;
}
.nav-toggle::before { transform: translateY(-7px); }
.nav-toggle::after { transform: translateY(6px); }
.nav-toggle.open span { opacity: 0; }
.nav-toggle.open::before { transform: rotate(45deg); }
.nav-toggle.open::after { transform: rotate(-45deg) translateY(0); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 36px var(--gutter);
    gap: 26px;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-cta .btn-primary { padding: 12px 20px; font-size: 0.88rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,29,23,0.35) 0%, rgba(36,29,23,0.55) 55%, rgba(36,29,23,0.94) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 80px 64px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(242,233,209,0.12);
  border: 1px solid rgba(242,233,209,0.3);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 { color: var(--cream); max-width: 15ch; }
.hero .lede { max-width: 56ch; color: rgba(242,233,209,0.88); font-size: clamp(1.05rem, 1.6vw, 1.25rem); margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(242,233,209,0.2);
}
.hero-stats .stat-num { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--peach); }
.hero-stats .stat-label { font-size: 0.82rem; color: rgba(242,233,209,0.7); margin-top: 4px; }
@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: unset; padding-top: 20px; }
}

/* Page header (non-home hero) */
.page-header {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(120px, 18vw, 180px) clamp(56px, 8vw, 88px);
  overflow: hidden;
}
.page-header img.hero-bg { opacity: 0.38; }
.page-header::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,29,23,0.5), rgba(36,29,23,0.92));
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--cream); max-width: 18ch; }
.page-header p { color: rgba(242,233,209,0.85); max-width: 60ch; margin-top: 18px; font-size: 1.1rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(242,233,209,0.6); margin-bottom: 18px; display: flex; gap: 8px; }
.breadcrumb a:hover { color: var(--peach); }

/* ---------- Cards & Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 4/5; overflow: hidden; background: var(--cream); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { font-size: 0.94rem; flex: 1; }
.card-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(210,82,69,0.1);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.value-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.value-card p { font-size: 0.94rem; }

/* Feature split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split-media.landscape img { aspect-ratio: 16/11; }

.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--ink); }
.check-list .tick {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-strip .stat-num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--terracotta); }
.stats-strip .stat-label { font-size: 0.88rem; color: var(--text-soft); margin-top: 6px; font-weight: 600;}
@media (max-width: 760px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--brown);
  padding-block: 16px;
  border-block: 1px solid rgba(242,233,209,0.15);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.2rem;
  white-space: nowrap;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 14px;
}
.marquee-track span::after { content: "•"; color: var(--peach); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Tabs (Products) ---------- */
.tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.tab-btn {
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  background: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: all 0.25s ease;
}
.tab-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.tab-btn.active { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.product-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.product-item .thumb {
  width: 84px; height: 84px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
}
.product-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-item .info { flex: 1; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.product-item h4 { margin-bottom: 4px; }
.product-item .variants { font-size: 0.86rem; color: var(--text-soft); }
.product-item .weight { font-size: 0.8rem; font-weight: 700; color: var(--terracotta); white-space: nowrap; }

.category-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.category-intro .media { aspect-ratio: 16/10; overflow: hidden; }
.category-intro .media img { width: 100%; height: 100%; object-fit: cover; }
.category-intro .copy { padding: 8px 36px 8px 0; }
@media (max-width: 860px) {
  .category-intro { grid-template-columns: 1fr; }
  .category-intro .copy { padding: 0 28px 28px; }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid .g-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; }
.gallery-grid .g-item.tall { grid-row: span 2; aspect-ratio: 3/8; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.08); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid .g-item.tall { grid-row: span 1; aspect-ratio: 3/4; } }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--peach);
  margin-bottom: 12px;
  -webkit-text-stroke: 1.5px var(--terracotta);
  color: transparent;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* ---------- Testimonial / Quote ---------- */
.quote-block {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.quote-block .quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--peach); line-height: 1; }
.quote-block p.quote-text { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--ink); line-height: 1.4; }
.quote-attrib { margin-top: 20px; font-weight: 700; color: var(--terracotta); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding-block: 6px;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 18px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q .plus { font-size: 1.4rem; color: var(--terracotta); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding-bottom: 20px; font-size: 0.98rem; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.86rem; color: var(--ink); }
.field label .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.98rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(210,82,69,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.field-radio {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.field-radio input { display: none; }
.field-radio.checked, .field-radio:has(input:checked) {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}
.form-note { font-size: 0.82rem; color: var(--text-soft); }
.form-status { display: none; padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.94rem; margin-bottom: 18px; }
.form-status.show { display: block; }
.form-status.success { background: rgba(120,150,90,0.15); color: #3f6b2f; }
.form-status.error { background: rgba(210,82,69,0.12); color: var(--terracotta-dark); }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--cream); max-width: 20ch; margin: 0; }
.cta-band p { color: rgba(242,233,209,0.9); margin-top: 10px; max-width: 46ch; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Sticky WhatsApp / mobile CTA ---------- */
.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 1.5rem;
  background: #25D366;
  color: #fff;
  transition: transform 0.25s ease;
}
.float-btn:hover { transform: scale(1.08); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(242,233,209,0.72);
  padding-block: 64px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(242,233,209,0.14);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 12px; font-size: 0.94rem; }
.footer-grid a:hover { color: var(--peach); }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { color: rgba(242,233,209,0.68); font-size: 0.94rem; max-width: 32ch; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(242,233,209,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--terracotta); border-color: var(--terracotta); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(242,233,209,0.5);
}
.footer-bottom a:hover { color: var(--peach); }

/* ---------- Scroll reveal ---------- */
/* Visible by default (progressive enhancement) so content never depends on JS
   running to be seen — crawlers, slow connections and JS-disabled browsers
   always get full content. JS opts elements into the pre-hidden state via
   .reveal-init, then removes it (adding .in-view) once intersecting. */
.reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.reveal-init { opacity: 0; transform: translateY(24px); }
.reveal.reveal-init.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--border); width: 100%; }
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); color: var(--brown);
  border-radius: var(--radius-pill); padding: 8px 16px;
  font-size: 0.82rem; font-weight: 700;
}
.two-col-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; }

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
}

::selection { background: var(--terracotta); color: var(--cream); }

/* Skip link for accessibility */
.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--ink); color: var(--cream);
  padding: 12px 18px; border-radius: var(--radius-sm);
  z-index: 999; transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }
