/* ─── Sammy's Brezels — Design System ──────────────────────────────────────── */

@import "shared.css";

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul,
ol {
  list-style: none;
}
button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Typography ───────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.05;
  color: var(--brown);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
h4 {
  font-size: 1.1rem;
}

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

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 5rem 0;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--beige);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(97, 38, 38, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
  flex: 1;
}

.nav-links li a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  background: var(--brown-light);
  color: var(--brown-dark);
}

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(61, 47, 176, 0.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61, 47, 176, 0.45);
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.btn-brown {
  background: var(--brown);
  color: #fff;
}
.btn-brown:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.btn-beige {
  background: var(--beige);
  color: var(--brown-dark);
  box-shadow: 0 4px 14px rgba(247, 238, 221, 0.25);
}
.btn-beige:hover {
  background: var(--beige-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(247, 238, 221, 0.35);
  text-decoration: none;
  color: var(--brown-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding: 0.5rem 0.75rem;
}
.btn-ghost:hover {
  background: var(--blue-light);
  text-decoration: none;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-icon {
  height: 1.2em;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.btn-primary .btn-icon,
.btn-outline .btn-icon {
  filter: brightness(0) invert(1);
}

/* ── Badges ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-vegan {
  background: #d4edda;
  color: #155724;
}
.badge-veg {
  background: #d1ecf1;
  color: #0c5460;
}
.badge-new {
  background: var(--blue-light);
  color: var(--blue-dark);
}
.badge-popular {
  background: #fff3cd;
  color: #856404;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #000000 0%, #0d0603 45%, #1a0a06 100%);
  overflow: hidden;
  padding: 4rem;
}

/* When a hero image exists, index.php sets --hero-image and adds .has-hero-image.
   The dark gradient stays on top so the headline text remains legible. */
.hero.has-hero-image {
  background-image:
    linear-gradient(
      160deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(13, 6, 3, 0.82) 45%,
      rgba(26, 10, 6, 0.75) 100%
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse at 70% 50%,
      rgba(247, 238, 221, 0.04) 0%,
      transparent 70%
    ),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section-beige {
  background: var(--beige);
}
.section-cream {
  background: var(--cream);
}
.section-brown {
  background: var(--brown);
  color: #fff;
}
.section-brown h2,
.section-brown h3 {
  color: #fff;
}
.section-brown .section-cta-lead {
  color: rgba(255,255,255,.8);
  max-width: 46ch;
  margin: 0 auto 2rem;
}
.section-blue {
  background: var(--blue);
  color: #fff;
}
.section-blue h2,
.section-blue h3 {
  color: #fff;
}
.section-beige-dark {
  background: var(--beige-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Product strip (homepage teaser) ─────────────────────────────────────── */
.product-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--beige-dark) transparent;
}
.product-strip::-webkit-scrollbar {
  height: 4px;
}
.product-strip::-webkit-scrollbar-track {
  background: transparent;
}
.product-strip::-webkit-scrollbar-thumb {
  background: var(--beige-dark);
  border-radius: 4px;
}

.product-strip-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  min-width: 200px;
  text-align: center;
  cursor: pointer;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  text-decoration: none;
  color: var(--text);
}
.product-strip-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--text);
}
.product-strip-card .product-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  overflow: hidden;
}
.product-strip-card .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-strip-card .name {
  font-weight: 700;
  font-size: 0.95rem;
}
.product-strip-card .price {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.product-strip-card .badges {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

/* ── How it works ─────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.step-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cutoff-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--beige-dark);
  border-left: 4px solid var(--brown);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.cutoff-note strong {
  color: var(--brown);
}

/* ── About / story ────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-content {
  max-width: 560px;
}
.about-content h2 {
  margin-bottom: 1.25rem;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.airfryer-tip {
  background: var(--blue-light);
  border: 1px solid rgba(61, 47, 176, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.airfryer-tip .tip-label {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.airfryer-tip p {
  color: var(--blue-dark);
  font-size: 0.9rem;
  margin: 0;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.info-card h4 {
  color: var(--brown);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.info-card p,
.info-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.info-card a {
  color: var(--blue);
}

/* ── Delivery & Collection cards ──────────────────────────────────────────── */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.delivery-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.delivery-card:hover {
  border-color: var(--brown-mid);
  box-shadow: var(--shadow);
}
.delivery-card .dc-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.delivery-card .dc-day {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}
.delivery-card .dc-type {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.delivery-card .dc-hours {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.delivery-card-custom {
  background: var(--blue-light);
  border-color: rgba(61, 47, 176, 0.25);
}
.delivery-card-custom .dc-day {
  color: var(--blue);
}
.delivery-card-custom .dc-hours {
  color: var(--blue-dark);
}

.delivery-bottom-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
  align-items: stretch;
}
.delivery-bottom-row .delivery-card {
  flex: 0 0 calc(25% - 0.94rem);
}
.delivery-bottom-row .delivery-zones-panel {
  flex: 1;
  margin-top: 0;
}

.delivery-zones-panel {
  margin-top: 1.75rem;
  background: var(--beige-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}
.delivery-zones-panel h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.delivery-zones-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
}
.dz-min {
  color: var(--text-muted);
  font-weight: 400;
}
.dz-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Events & Catering ────────────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.event-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.event-card .ec-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.event-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.event-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* wrapper: callout (2fr) + portrait photo (1fr) + stacked landscape (1fr) */
.open-home-wrap {
  display: grid;
  grid-template-columns: 1fr 272px 272px;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
  min-height: 320px;
}

.open-home-callout {
  background: var(--brown);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}

.open-home-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.open-home-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.open-home-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.open-home-stack-img {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.open-home-stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.open-home-callout h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.open-home-callout p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--brown-light);
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown);
}

.testimonial-source {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.testimonial-source:hover {
  color: var(--blue);
  text-decoration: none;
}
.testimonial-source::before {
  content: "↗";
  font-style: normal;
}

/* ── Find Us ──────────────────────────────────────────────────────────────── */
.findus-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.findus-details h2 {
  margin-bottom: 1.5rem;
}
.findus-location {
  margin-bottom: 1.5rem;
}
.findus-location h4 {
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.findus-location p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.findus-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.findus-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Contact form ─────────────────────────────────────────────────────────── */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--brown);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px var(--brown-light);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-group input[type="radio"],
.form-group input[type="checkbox"] {
  width: auto;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}


.form-group label.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}
.form-hint-inline {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.form-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.form-error {
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.3);
  color: #922b21;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* Turnstile widget */
.cf-turnstile {
  margin-bottom: 1rem;
  max-width: 0;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.85);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 1.25rem 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-col-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-col-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-logo-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.footer-brand-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  opacity: 0.95;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    background var(--transition),
    border-color var(--transition);
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  color: #fff;
}

.footer-social-brown a {
  color: var(--brown);
  border-color: rgba(97, 38, 38, 0.25);
}
.footer-social-brown a:hover {
  background: rgba(97, 38, 38, 0.08);
  border-color: rgba(97, 38, 38, 0.45);
  color: var(--brown-dark);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-area-list {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ── Component helpers ────────────────────────────────────────────────────── */
.section-sm {
  padding: 2.5rem 0;
}
.hero-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}
.about-logo-wrap {
  text-align: center;
  padding: 0 0 1.5rem 0;
}
.about-logo-img {
  width: 100%;
  max-width: 445px;
  margin: 0 auto;
}
.shop-banner-img {
  max-width: 480px;
  width: 100%;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.shop-tagline {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}
.nav-logo-mobile {
  display: none;
}
.nav-logo-sm {
  height: 38px;
  width: auto;
}
.success-wrap {
  max-width: 600px;
  padding: 5rem 1.25rem;
  text-align: center;
}
.success-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.emoji-lg {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.shop-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}
.emoji-xl {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Prose (Parsedown output) */
.prose h2,
.prose h3 {
  color: var(--brown);
  margin: 1.5rem 0 0.6rem;
}
.prose p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.prose ul {
  list-style: disc;
  padding-left: 1.4rem;
  color: var(--text-muted);
}
.prose li {
  margin-bottom: 0.3rem;
}
.prose a {
  color: var(--blue);
}

/* ── Wave dividers ────────────────────────────────────────────────────────── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .findus-grid {
    grid-template-columns: 1fr;
  }
  .open-home-wrap {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .open-home-photo,
  .open-home-stack {
    display: none;
  }
  .open-home-callout {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--beige);
    border-top: 1px solid var(--border);
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(97, 38, 38, 0.1);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li a {
    border-radius: 0;
    padding: 0.75rem 1.5rem;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .site-nav {
    position: relative;
  }

  .hero {
    min-height: 80vh;
    padding: 4rem 0 5rem;
  }

  .delivery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .delivery-bottom-row {
    flex-direction: column;
  }
  .delivery-bottom-row .delivery-card {
    flex: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }
  .delivery-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* ── /delivery page ─────────────────────────────────────────────────────────── */
.section-title  { text-align: center; margin-bottom: 2.5rem; }
.section-sand   { background: var(--beige); }
.section-lead   { color: var(--text-muted); margin-bottom: 2.5rem; }
.link-brown     { color: var(--brown); font-weight: 600; }
.link-brown:hover { color: var(--brown-dark); }

.btn-white {
  background: #fff;
  color: var(--brown);
  border: 2px solid #fff;
  font-weight: 700;
}
.btn-white:hover { background: rgba(255,255,255,.9); }

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.zone-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.zone-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .35rem;
}
.zone-label {
  font-weight: 900;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.zone-fee {
  font-weight: 800;
  color: var(--brown);
  font-size: 1rem;
}
.zone-min {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .85rem;
}
.zone-suburbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}
.zone-suburbs li {
  font-size: .8rem;
  background: var(--beige);
  border-radius: 100px;
  padding: .15rem .65rem;
  color: var(--text);
}

.pickup-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pickup-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
}
.pickup-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.pickup-card h3 { color: var(--brown); margin-bottom: .5rem; font-size: 1.05rem; }
.pickup-card p  { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.25rem; }

.cta-box {
  background: var(--beige);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
}
.cta-box h2 { margin-bottom: .6rem; }
.cta-box p  { color: var(--text-muted); max-width: 46ch; margin: 0 auto 1.75rem; }

@media (max-width: 768px) {
  .zones-grid    { grid-template-columns: 1fr; }
  .pickup-options { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .zone-header { flex-direction: column; gap: .15rem; }
}
