/* =====================================================
   903 BAKERY — Demo Website Stylesheet
   Demo build by Foley Web Systems · foleywebsystems.com
   Not a live site — see README.md
   ===================================================== */

/* ──────────────────────────────────────────────────── */
/* Custom Properties                                     */
/* ──────────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --rose:           #B85C6E;
  --rose-dark:      #9B3D52;
  --rose-pale:      #F8E8EC;
  --gold:           #C49A3C;
  --gold-pale:      #FBF0D0;

  /* Neutrals */
  --choc:           #2C1506;
  --brown:          #6B3E26;
  --cream:          #FAF5EC;
  --warm-white:     #FFFDF9;
  --white:          #FFFFFF;

  /* Text */
  --text:           #1E0F07;
  --text-mid:       #6B4226;
  --text-light:     #A07050;

  /* UI */
  --border:         #E5CDB9;
  --shadow:         rgba(44, 21, 6, 0.10);
  --shadow-lg:      rgba(44, 21, 6, 0.18);

  /* Typography */
  --font-display:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:      'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Sizing */
  --radius:         10px;
  --radius-lg:      18px;
  --radius-xl:      28px;
  --transition:     0.22s ease;
  --max-w:          1180px;
  --header-h:       68px;
}

/* ──────────────────────────────────────────────────── */
/* Reset & Base                                          */
/* ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

ul, ol {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -120px;
  left: 1.2rem;
  background: var(--rose);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  z-index: 300;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ──────────────────────────────────────────────────── */
/* Typography                                            */
/* ──────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.22;
  color: var(--choc);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw,  1.5rem);  font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; }

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.55rem;
  display: block;
}

/* ──────────────────────────────────────────────────── */
/* Layout                                                */
/* ──────────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(60px, 8vw, 100px);
}

.section--cream     { background: var(--cream); }
.section--rose-pale { background: var(--rose-pale); }

.section-intro {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-intro h2 {
  margin-bottom: 0.6rem;
}
.section-intro p {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ──────────────────────────────────────────────────── */
/* Buttons                                               */
/* ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.65rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background      var(--transition),
    color           var(--transition),
    border-color    var(--transition),
    box-shadow      var(--transition),
    transform       var(--transition);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  box-shadow: 0 6px 22px rgba(184, 92, 110, 0.38);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-secondary:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #a97e2a;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(196, 154, 60, 0.38);
}

.btn-lg { padding: 0.95rem 2.1rem;  font-size: 1rem; }
.btn-sm { padding: 0.5rem  1.1rem;  font-size: 0.84rem; }

/* ──────────────────────────────────────────────────── */
/* Header & Navigation                                   */
/* ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(44, 21, 6, 0.07);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: -0.01em;
}
.brand-word {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--choc);
  margin-top: -3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.03em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--rose);
  border-bottom-color: var(--rose);
}
.main-nav .nav-cta {
  margin-left: 0.4rem;
  border-bottom: none;
  padding-bottom: 0.78rem; /* restore .btn value; .main-nav a overrides it to 2px which breaks centering */
}
.main-nav .nav-cta:hover {
  border-bottom: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px 6px;
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}
.nav-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--choc);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle[aria-expanded="true"] .bar-top {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar-mid {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .bar-bot {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: sticky;
  top: var(--header-h);
  z-index: 99;
  flex-direction: column;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0 1rem;
  box-shadow: 0 8px 24px rgba(44, 21, 6, 0.08);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  display: block;
  padding: 0.8rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
  border-left: 3px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--rose);
  border-left-color: var(--rose);
  background: var(--rose-pale);
}
.mobile-nav .mob-cta {
  margin: 0.6rem 1.4rem 0;
  display: inline-flex;
  border-left: none;
  width: calc(100% - 2.8rem);
}
.mobile-nav .mob-cta:hover {
  border-left: none;
  background: var(--rose-dark);
}

/* ──────────────────────────────────────────────────── */
/* Hero Section (Home)                                   */
/* ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--choc);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(44, 21, 6, 0.82) 0%,
    rgba(44, 21, 6, 0.56) 50%,
    rgba(44, 21, 6, 0.22) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-block: clamp(60px, 10vw, 110px);
  max-width: 600px;
}
.hero-content .eyebrow {
  color: var(--gold-pale);
  opacity: 0.9;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  margin-bottom: 1.1rem;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
  line-height: 1.1;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 500px;
  margin-bottom: 2.2rem;
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ──────────────────────────────────────────────────── */
/* Two-Column About Layout                               */
/* ──────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.two-col-img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 14px 52px var(--shadow-lg);
}

.two-col-text h2 {
  margin-bottom: 1rem;
}
.two-col-text p {
  color: var(--text-mid);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-pale);
  color: var(--brown);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 1.3rem;
}

/* ──────────────────────────────────────────────────── */
/* Offering Cards (icon-based)                           */
/* ──────────────────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.offer-card:hover {
  border-color: var(--rose);
  box-shadow: 0 6px 28px rgba(184, 92, 110, 0.12);
}
.offer-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.offer-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}
.offer-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* ──────────────────────────────────────────────────── */
/* Photo Cards (image + text)                            */
/* ──────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.photo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 22px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px var(--shadow-lg);
}
.photo-card-img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}
.photo-card-body {
  padding: 1.4rem 1.6rem 1.8rem;
}
.photo-card-body h3 {
  margin-bottom: 0.45rem;
}
.photo-card-body p {
  color: var(--text-mid);
  font-size: 0.93rem;
}
.photo-card-body .btn {
  margin-top: 1rem;
}

/* ──────────────────────────────────────────────────── */
/* Social Proof Strip                                    */
/* ──────────────────────────────────────────────────── */
.reviews-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  box-shadow: 0 6px 30px var(--shadow);
}
.star-row {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 1.2rem;
}
.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rose);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fb-link:hover {
  color: var(--rose-dark);
}

/* ──────────────────────────────────────────────────── */
/* CTA Band                                              */
/* ──────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(130deg, var(--rose-dark) 0%, var(--rose) 100%);
  color: #fff;
  text-align: center;
  padding-block: clamp(52px, 8vw, 88px);
}
.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.cta-band-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ──────────────────────────────────────────────────── */
/* Page Hero (inner pages)                               */
/* ──────────────────────────────────────────────────── */
.page-hero {
  background: var(--choc);
  color: #fff;
  padding-block: clamp(56px, 9vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.page-hero .eyebrow {
  color: var(--gold-pale);
  opacity: 0.85;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 0.8rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
}

/* ──────────────────────────────────────────────────── */
/* Menu Page Styles                                      */
/* ──────────────────────────────────────────────────── */
.menu-category {
  margin-bottom: clamp(48px, 7vw, 70px);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--border);
}
.category-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.category-header h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  margin: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.3rem;
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.menu-item:hover {
  box-shadow: 0 8px 32px var(--shadow-lg);
  transform: translateY(-3px);
}
.menu-item-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  background: var(--cream); /* fallback colour if image fails to load */
}
.menu-item-body {
  padding: 1rem 1.2rem 1.3rem;
}
.menu-item-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.menu-item-body p {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin: 0;
}

.avail-note {
  background: var(--gold-pale);
  border: 1px solid #DDB84D;
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--brown);
  margin-top: 2.5rem;
  line-height: 1.6;
}
.avail-note strong {
  color: var(--choc);
  display: block;
  margin-bottom: 0.2rem;
}

/* ──────────────────────────────────────────────────── */
/* Custom Orders Page                                    */
/* ──────────────────────────────────────────────────── */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1.1rem;
  margin-bottom: 3rem;
}
.occasion-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.occasion-card:hover {
  border-color: var(--rose);
  box-shadow: 0 6px 26px rgba(184, 92, 110, 0.12);
  transform: translateY(-2px);
}
.occasion-icon {
  font-size: 2.2rem;
  margin-bottom: 0.65rem;
  display: block;
}
.occasion-card h4 {
  font-size: 0.9rem;
  color: var(--choc);
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.3;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
  margin-bottom: 2.5rem;
}
.process-step {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
.process-step h4 {
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
}
.process-step p {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin: 0;
}

/* Order form */
.order-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: 0 6px 32px var(--shadow);
  max-width: 660px;
  margin-inline: auto;
}

.demo-notice {
  background: #FFF9E0;
  border: 1.5px solid #E8C840;
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7A5E00;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--choc);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: auto;
  -webkit-appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184, 92, 110, 0.15);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.4rem;
}

.order-confirm {
  display: none;
  background: #EBF5EB;
  border: 1.5px solid #5C9E5C;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-top: 1.1rem;
  color: #2B5E2B;
  font-weight: 700;
  text-align: center;
}
.order-confirm.show {
  display: block;
}
.order-confirm p {
  font-size: 0.87rem;
  font-weight: 400;
  margin-top: 0.3rem;
  color: #3A7A3A;
}

/* ──────────────────────────────────────────────────── */
/* Visit / Contact Page                                  */
/* ──────────────────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  display: block;
}
.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.contact-card a {
  color: var(--rose);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}
.contact-card a:hover {
  color: var(--rose-dark);
}
.contact-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin: 0.15rem 0 0;
}

.hours-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  margin-bottom: 1.8rem;
}
.hours-box h3 {
  margin-bottom: 0.8rem;
}
.hours-box p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.map-callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.map-callout-text h3 {
  margin-bottom: 0.3rem;
}
.map-callout-text p {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin: 0;
}

/* ──────────────────────────────────────────────────── */
/* Facebook Badge Icon                                   */
/* ──────────────────────────────────────────────────── */
.fb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #1877F2;
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────── */
/* Footer                                                */
/* ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--choc);
  color: rgba(255, 255, 255, 0.75);
  padding-block: clamp(44px, 6vw, 70px) clamp(24px, 3vw, 36px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand-link {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.footer-brand-link .brand-num {
  color: var(--rose);
}
.footer-brand-link .brand-word {
  color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
  line-height: 1.65;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1rem;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-link-list a,
.footer-link-list span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.footer-link-list a:hover {
  color: var(--rose);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}
.footer-demo-credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-demo-credit a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ──────────────────────────────────────────────────── */
/* Responsive Breakpoints                                */
/* ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .two-col-img {
    max-height: 320px;
    aspect-ratio: unset;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .main-nav    { display: none; }
  .nav-toggle  { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row-2  { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .cta-band-btns { flex-direction: column; align-items: center; }
}
