/* ==========================================================================
   The Hill's Cafe — Design System
   Premium minimal luxury · Apple × Blue Bottle
   ========================================================================== */

:root {
  --primary: #111111;
  --secondary: #F7F5F2;
  --accent: #C8A97E;
  --accent-dark: #A88B5E;
  --dark-coffee: #4A3526;
  --cream: #FFFDF9;
  --white: #FFFFFF;
  --muted: #6B6560;
  --border: rgba(17, 17, 17, 0.08);
  --border-strong: rgba(17, 17, 17, 0.14);
  --shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.04);
  --shadow: 0 8px 30px rgba(17, 17, 17, 0.06);
  --shadow-lg: 0 20px 60px rgba(17, 17, 17, 0.1);
  --radius: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --nav-h: 80px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
  --transition: 0.35s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--primary);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2.5rem, 1400px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 36rem;
}

.section-header {
  margin-bottom: 3rem;
  max-width: 40rem;
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.section-header.center .section-lead {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-2xl);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--primary);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--dark-coffee);
  box-shadow: var(--shadow);
}

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

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 253, 249, 0.55);
  color: var(--cream);
}

.btn-outline:hover {
  background: rgba(255, 253, 249, 0.12);
  border-color: var(--cream);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--primary);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding-inline: 1rem;
}

.btn-sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header.scrolled .nav-link,
.site-header.solid .nav-link,
.site-header.scrolled .logo-text,
.site-header.solid .logo-text {
  color: var(--primary);
}

.site-header.scrolled .logo-mark,
.site-header.solid .logo-mark {
  border-color: var(--primary);
  color: var(--primary);
}

.site-header.scrolled .nav-toggle span,
.site-header.solid .nav-toggle span {
  background: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  position: relative;
  transition: border-color var(--transition), color var(--transition);
}

.logo-mark::before {
  content: "";
  position: absolute;
  top: 5px;
  width: 12px;
  height: 6px;
  border-radius: 50% 50% 0 0;
  background: currentColor;
  opacity: 0.7;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--cream);
  transition: color var(--transition);
}

.logo-text .brand-the {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
}

.logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.logo-text .brand-name em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  margin-left: 0.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 450;
  color: rgba(255, 253, 249, 0.88);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 253, 249, 0.35);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--transition);
}

.site-header.scrolled .cart-btn,
.site-header.solid .cart-btn {
  border-color: var(--border-strong);
  color: var(--primary);
}

.cart-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.cart-count[hidden] {
  display: none !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

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

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 680px;
  height: 72vh;
  max-height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
  text-align: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(17, 17, 17, 0.45) 0%, rgba(17, 17, 17, 0.72) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.35) 40%, rgba(17, 17, 17, 0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, 720px);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 1.5rem) 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content .eyebrow {
  color: var(--accent);
  letter-spacing: 0.22em;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 12px rgba(17, 17, 17, 0.45);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 1.35rem;
  text-shadow: 0 2px 28px rgba(17, 17, 17, 0.55);
}

.hero-title span {
  display: block;
}

.hero-title .line-accent {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 253, 249, 0.92);
  max-width: 34rem;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
  text-shadow: 0 1px 16px rgba(17, 17, 17, 0.5);
}

.hero-content .btn-group {
  justify-content: center;
}

.hero-content .btn-outline {
  border-color: rgba(255, 253, 249, 0.75);
  background: rgba(17, 17, 17, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-content .btn-outline:hover {
  background: rgba(255, 253, 249, 0.14);
  border-color: var(--cream);
}

.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  color: var(--cream);
  overflow: hidden;
}

.page-hero .hero-media img {
  transform: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 253, 249, 0.82);
  max-width: 32rem;
  font-size: 1.0625rem;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: 6.5rem 0;
}

.section-alt {
  background: var(--secondary);
}

.section-dark {
  background: var(--primary);
  color: var(--cream);
}

.section-dark .section-lead {
  color: rgba(255, 253, 249, 0.65);
}

.section-dark .eyebrow {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Feature Cards
   -------------------------------------------------------------------------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--secondary);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--dark-coffee);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.975rem;
}

/* --------------------------------------------------------------------------
   Product Cards
   -------------------------------------------------------------------------- */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--secondary);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-popular {
  background: var(--primary);
  color: var(--cream);
}

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

.badge-new {
  background: var(--dark-coffee);
  color: var(--cream);
}

.product-badges {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  z-index: 2;
}

.product-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.product-body h3 {
  font-size: 1.15rem;
}

.product-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-coffee);
  white-space: nowrap;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
}

.product-calories {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.8;
}

.product-body .btn {
  margin-top: 0.75rem;
}

/* Seasonal large cards */
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.seasonal-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 380px;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.seasonal-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.seasonal-card:hover img {
  transform: scale(1.08);
}

.seasonal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(17, 17, 17, 0.85) 100%);
}

.seasonal-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.75rem;
}

.seasonal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.seasonal-content p {
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.75);
  margin-bottom: 0.85rem;
}

.seasonal-content .price {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* Bakery strip */
.bakery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.bakery-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-2xl);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.bakery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.bakery-item .bakery-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--secondary);
}

.bakery-item .bakery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bakery-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.bakery-item p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Menu Page
   -------------------------------------------------------------------------- */

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding: 0.4rem;
  background: var(--secondary);
  border-radius: var(--radius-2xl);
  width: fit-content;
  max-width: 100%;
}

.menu-tab {
  padding: 0.75rem 1.35rem;
  border: none;
  background: transparent;
  border-radius: calc(var(--radius-2xl) - 4px);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}

.menu-tab:hover {
  color: var(--primary);
}

.menu-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
}

.menu-category-title {
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   Pre-Order / Cart
   -------------------------------------------------------------------------- */

.preorder-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Compact product configurator */
.config-card {
  padding: 1.15rem 1.25rem 1.25rem !important;
  margin-bottom: 2rem;
}

.config-header {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.config-thumb {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--secondary);
}

.config-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.config-meta {
  min-width: 0;
  text-align: left;
}

.config-meta h3 {
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.config-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.config-meta .product-price {
  font-size: 0.9rem;
}

.config-empty {
  text-align: center;
  padding: 1.75rem 1rem 1.5rem;
}

.config-empty-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.config-empty .text-muted {
  font-size: 0.9rem;
  max-width: 22rem;
  margin-inline: auto;
}

.config-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.config-field {
  margin: 0;
  min-width: 0;
}

.config-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.config-row {
  display: flex !important;
  flex-direction: row;
  gap: 0.65rem;
  align-items: flex-end;
}

.config-row > .config-field {
  flex: 1;
  min-width: 0;
}

.config-select {
  display: block;
  width: 100%;
  height: 42px;
  padding: 0 0.85rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 0.75rem;
  background: var(--cream);
  color: var(--primary);
  font-size: 0.9rem;
  font-family: inherit;
  line-height: 1.2;
  appearance: auto;
  -webkit-appearance: menulist;
  cursor: pointer;
}

.config-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.2);
}

input.config-select {
  cursor: text;
  appearance: none;
  -webkit-appearance: none;
}

.option-chips-compact {
  gap: 0.35rem;
}

.option-chips-compact .chip {
  padding: 0.38rem 0.8rem;
  font-size: 0.8rem;
}

.qty-control-sm {
  width: 100%;
  justify-content: space-between;
}

.qty-control-sm button {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

.qty-control-sm span {
  min-width: 2rem;
  font-size: 0.9rem;
}

.config-note-toggle {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  border: none;
  background: transparent;
  padding: 0.15rem 0;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-coffee);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  box-shadow: none;
}

.config-note-toggle:hover,
.config-note-toggle:focus {
  color: var(--accent-dark);
  outline: none;
  border: none;
  box-shadow: none;
}

.config-body #btn-add-configured {
  margin-top: 0.15rem;
}

.order-panel {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.order-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.2);
}

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

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

.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 999px;
  background: transparent;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.chip:hover {
  border-color: var(--accent);
}

.chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--cream);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-control button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--secondary);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.qty-control button:hover {
  background: var(--accent);
}

.qty-control span {
  min-width: 44px;
  text-align: center;
  font-weight: 500;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  max-height: 280px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 550;
  margin-bottom: 0.2rem;
}

.cart-item p {
  font-size: 0.8rem;
  color: var(--muted);
}

.cart-item-price {
  font-weight: 600;
  white-space: nowrap;
}

.cart-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.order-summary {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.pickup-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1rem;
  background: var(--secondary);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1.25rem 0;
}

/* Square Web Payments mockup */
.sq-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 0.4rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(200, 169, 126, 0.2);
  color: var(--dark-coffee);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.sq-pay-amount {
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--cream);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
}

.sq-wallets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.sq-wallet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 48px;
  border-radius: 0.75rem;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.sq-wallet:hover {
  transform: translateY(-1px);
}

.sq-wallet:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.sq-apple {
  background: #000;
  color: #fff;
}

.sq-google {
  background: #fff;
  color: #1f1f1f;
  border: 1.5px solid var(--border-strong);
}

.sq-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.25rem 0 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sq-divider::before,
.sq-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}

.sq-card-mock {
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.sq-card-mock .form-group {
  margin-bottom: 0.85rem;
}

.sq-card-mock .form-group:last-child {
  margin-bottom: 0;
}

.sq-secure-note {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
}

.sq-secure-note svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

@media (max-width: 480px) {
  .sq-wallets {
    grid-template-columns: 1fr;
  }
}

.checkout-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.step-dot {
  flex: 1;
  height: 3px;
  background: var(--border-strong);
  border-radius: 999px;
  transition: background 0.3s;
}

.step-dot.active {
  background: var(--accent);
}

.checkout-panel {
  display: none;
}

.checkout-panel.active {
  display: block;
  animation: fadeUp 0.45s var(--ease);
}

.success-state {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(200, 169, 126, 0.2);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
}

.success-state h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.success-state p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.order-id {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border-radius: var(--radius);
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   About / Content
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-media {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.split-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.split-content p:last-of-type {
  margin-bottom: 1.75rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--dark-coffee);
  margin-bottom: 0.35rem;
}

.stat span {
  font-size: 0.875rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Gallery Masonry
   -------------------------------------------------------------------------- */

.masonry {
  columns: 3;
  column-gap: 1.25rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(17, 17, 17, 0.7));
  color: var(--cream);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--ease);
}

.masonry-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.info-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.info-block p,
.info-block a {
  color: var(--muted);
  font-size: 0.975rem;
}

.info-block a:hover {
  color: var(--accent-dark);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
}

.hours-list li span:first-child {
  color: var(--primary);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: grid;
  place-items: center;
  transition: all 0.25s var(--ease);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--cream);
}

.contact-form,
.form-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-embed {
  margin-top: 4rem;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 21 / 9;
  min-height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.form-message {
  display: none;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.form-message.success {
  display: block;
  background: rgba(200, 169, 126, 0.18);
  color: var(--dark-coffee);
  border: 1px solid rgba(200, 169, 126, 0.4);
}

.form-message.error {
  display: block;
  background: rgba(180, 60, 60, 0.08);
  color: #8b2e2e;
  border: 1px solid rgba(180, 60, 60, 0.2);
}

/* --------------------------------------------------------------------------
   Rewards
   -------------------------------------------------------------------------- */

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.reward-card {
  text-align: center;
  padding: 2.75rem 2rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.reward-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.reward-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.reward-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.reward-card p {
  color: var(--muted);
  font-size: 0.925rem;
}

/* --------------------------------------------------------------------------
   Legal
   -------------------------------------------------------------------------- */

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(200, 169, 126, 0.18), transparent 50%),
    var(--cream);
}

.error-page h1 {
  font-size: clamp(5rem, 15vw, 9rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-page h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--primary);
  color: rgba(255, 253, 249, 0.75);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo-text {
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand .logo-mark {
  border-color: var(--cream);
  color: var(--cream);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 260px;
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

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

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255, 253, 249, 0.15);
  background: rgba(255, 253, 249, 0.06);
  color: var(--cream);
}

.newsletter-form input::placeholder {
  color: rgba(255, 253, 249, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-form .btn {
  padding: 0.8rem 1.15rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 253, 249, 0.1);
  font-size: 0.85rem;
}

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

/* --------------------------------------------------------------------------
   Animations (Framer-like)
   -------------------------------------------------------------------------- */

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-animate="fade"] {
  transform: none;
}

[data-animate="slide-left"] {
  transform: translateX(-32px);
}

[data-animate="slide-right"] {
  transform: translateX(32px);
}

[data-animate].in-view {
  opacity: 1;
  transform: none;
}

[data-animate].delay-1 { transition-delay: 0.1s; }
[data-animate].delay-2 { transition-delay: 0.2s; }
[data-animate].delay-3 { transition-delay: 0.3s; }
[data-animate].delay-4 { transition-delay: 0.4s; }
[data-animate].delay-5 { transition-delay: 0.5s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-content > * {
  animation: fadeUp 0.9s var(--ease) both;
}

.hero-content .eyebrow { animation-delay: 0.1s; }
.hero-content .hero-title { animation-delay: 0.25s; }
.hero-content .hero-sub { animation-delay: 0.4s; }
.hero-content .btn-group { animation-delay: 0.55s; }

/* --------------------------------------------------------------------------
   Toast
   -------------------------------------------------------------------------- */

.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2000;
  padding: 1rem 1.35rem;
  background: var(--primary);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s var(--ease);
  max-width: 320px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Admin (minimal)
   -------------------------------------------------------------------------- */

.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--primary);
  color: var(--cream);
  padding: 2rem 1.25rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar .logo {
  margin-bottom: 2.5rem;
  padding-inline: 0.5rem;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.65);
  margin-bottom: 0.25rem;
  transition: all 0.2s;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 253, 249, 0.08);
  color: var(--cream);
}

.admin-nav a.active {
  color: var(--accent);
}

.admin-main {
  padding: 2rem 2.5rem;
  background: var(--secondary);
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.admin-top h1 {
  font-size: 1.75rem;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.admin-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.admin-card span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.admin-table-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.admin-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--cream);
}

.status {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-received { background: #e8f0fe; color: #1a56db; }
.status-preparing { background: #fef3c7; color: #92400e; }
.status-ready { background: #d1fae5; color: #065f46; }
.status-completed { background: var(--secondary); color: var(--muted); }
.status-cancelled { background: #fee2e2; color: #991b1b; }

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 169, 126, 0.2), transparent 55%),
    var(--cream);
  padding: 2rem;
}

.admin-login-card {
  width: min(100%, 400px);
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.admin-login-card h1 {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.admin-login-card > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-banner {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  padding: 4rem 3rem;
  color: var(--cream);
  text-align: center;
}

.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.65);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 253, 249, 0.8);
  margin-bottom: 1.75rem;
  max-width: 28rem;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Expanded site sections
   -------------------------------------------------------------------------- */

.info-strip {
  background: var(--primary);
  color: var(--cream);
  padding: 1.25rem 0;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.info-strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.info-strip-item span,
.info-strip-item a {
  font-size: 0.875rem;
  color: rgba(255, 253, 249, 0.75);
}

.info-strip-item a:hover {
  color: var(--accent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 1.75rem 1.35rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonial-stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.gallery-preview {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1rem;
}

.gallery-preview-item {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-preview-item:first-child {
  grid-row: span 2;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-preview-item:hover img {
  transform: scale(1.05);
}

.location-section {
  background: var(--secondary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.location-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.location-card p,
.location-card li {
  color: var(--muted);
  font-size: 0.925rem;
}

.location-card .hours-list li {
  color: var(--muted);
}

.location-map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 420px;
  background: var(--white);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

.page-intro {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.page-intro .section-lead {
  margin-bottom: 0;
}

.page-intro.center {
  text-align: center;
  margin-inline: auto;
}

.menu-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.menu-note-card {
  padding: 1.35rem;
  background: var(--secondary);
  border-radius: var(--radius-xl);
}

.menu-note-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.menu-note-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--secondary);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.team-card .role {
  font-size: 0.8rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.team-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

.rewards-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.rewards-step {
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  text-align: center;
}

.rewards-step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--cream);
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.rewards-step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.rewards-step p {
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-extra-card {
  padding: 1.5rem;
  background: var(--secondary);
  border-radius: var(--radius-xl);
}

.contact-extra-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.contact-extra-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .bakery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .admin-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .products-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links .nav-link {
    color: var(--primary);
    font-size: 1.35rem;
    font-family: var(--font-display);
  }

  .nav-actions .btn { display: none; }

  .features-grid,
  .seasonal-grid,
  .rewards-grid,
  .values-grid,
  .testimonials-grid,
  .team-grid,
  .rewards-steps,
  .menu-notes,
  .contact-extra,
  .location-grid,
  .info-strip-grid,
  .split,
  .contact-grid,
  .preorder-layout {
    grid-template-columns: 1fr;
  }

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-preview-item:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .order-panel { position: static; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .products-grid,
  .bakery-grid,
  .admin-cards,
  .stats-row,
  .form-row,
  .values-grid,
  .gallery-preview {
    grid-template-columns: 1fr;
  }

  .gallery-preview-item:first-child {
    grid-column: span 1;
  }

  .masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero {
    min-height: 680px;
    height: auto;
  }
  .hero-content { padding-bottom: 3rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  .menu-tabs { width: 100%; }
  .newsletter-form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
