/* Goodwood Bakeshop — Premium Demo Site */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─── */
:root {
  --cream:      #F7F2EA;
  --cream-dark: #EDE6D6;
  --charcoal:   #1C1A17;
  --brown:      #3D2B1F;
  --amber:      #C8822A;
  --amber-light:#E09A3A;
  --terracotta: #B85C38;
  --warm-grey:  #8C7B6E;
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(28,26,23,0.08);
  --shadow-lg:  0 12px 48px rgba(28,26,23,0.14);
  --radius:     4px;
  --radius-lg:  12px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Utility ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--warm { background: var(--cream-dark); }
.text-center { text-align: center; }
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn--primary {
  background: var(--amber);
  color: var(--white);
}
.btn--primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247,242,234,0.6);
}
.btn--outline:hover { background: rgba(247,242,234,0.1); border-color: var(--cream); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-label--light { color: var(--cream-dark); opacity: 0.7; }

/* ─── Password Gate ─── */
#password-gate {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.gate-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 440px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.gate-logo {
  width: 80px;
  height: 80px;
  background: var(--charcoal);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.gate-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.gate-card p {
  color: var(--warm-grey);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.gate-input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 1rem;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition);
}
.gate-input:focus { outline: none; border-color: var(--amber); }
.gate-error { color: var(--terracotta); font-size: 0.85rem; margin-top: 0.5rem; display: none; }
.gate-badge {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--warm-grey);
  letter-spacing: 0.05em;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(28,26,23,0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 600;
  line-height: 1.1;
}
.nav-logo span { display: block; font-size: 0.65rem; font-family: var(--font-sans); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-top: 2px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(247,242,234,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--amber-light) !important; }
.nav-cta::after { display: none !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  transform-origin: left;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(40deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-40deg); }
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1C1A17 0%, #2D2419 35%, #1A1208 100%);
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: 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='%23C8822A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--amber);
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 660px;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  color: rgba(247,242,234,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(247,242,234,0.6);
  font-size: 0.85rem;
}
.hero-meta-item strong { color: var(--cream); }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200,130,42,0.15);
  border: 1px solid rgba(200,130,42,0.3);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}
.hero-badge-stars { color: var(--amber); font-size: 0.8rem; letter-spacing: -1px; }
.hero-badge-text { font-size: 0.8rem; color: rgba(247,242,234,0.8); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(247,242,234,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll-arrow { width: 20px; height: 20px; border-right: 1.5px solid; border-bottom: 1.5px solid; transform: rotate(45deg); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--amber);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-bar-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.trust-item::before { content: '✦'; font-size: 0.6rem; opacity: 0.7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Section Headers ─── */
.section-header { margin-bottom: 3.5rem; }
.section-header.text-center .section-divider { margin: 0.8rem auto 0; }
.section-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--terracotta));
  margin-top: 0.8rem;
}

/* ─── About Preview (Home) ─── */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 768px) { .about-preview { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-preview-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #3D2B1F, #C8822A);
}
.about-preview-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2D1F10 0%, #4A3020 40%, #C8822A 100%);
  position: relative;
  overflow: hidden;
}
.about-preview-img-decor {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
}
.about-preview-img-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(247,242,234,0.5);
  font-style: italic;
  text-align: center;
  padding: 2rem;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow);
}
.about-badge small { font-size: 0.65rem; font-family: var(--font-sans); opacity: 0.85; text-transform: uppercase; letter-spacing: 0.06em; }
.about-content { }
.about-content h2 { margin-bottom: 1.2rem; }
.about-content p { color: var(--warm-grey); line-height: 1.85; }
.about-content p + p { margin-top: 0.8rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 2rem 0; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,130,42,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.about-feature-text small { font-size: 0.8rem; color: var(--warm-grey); }
.media-badges { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.media-badge {
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--warm-grey);
  letter-spacing: 0.04em;
}

/* ─── Menu Preview ─── */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8rem; }
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.menu-card-img-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.menu-card:hover .menu-card-img-inner { transform: scale(1.08); }
.menu-card-body { padding: 1.4rem; }
.menu-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}
.menu-card-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--charcoal); }
.menu-card-body p { font-size: 0.85rem; color: var(--warm-grey); line-height: 1.6; margin: 0; }

/* ─── Menu gradient backgrounds ─── */
.mg-bread { background: linear-gradient(135deg, #8B6914, #C8822A); }
.mg-pastry { background: linear-gradient(135deg, #B8450A, #E08A3C); }
.mg-savoury { background: linear-gradient(135deg, #4A6741, #7A9E6E); }
.mg-tart { background: linear-gradient(135deg, #8B1A3C, #C8425A); }
.mg-coffee { background: linear-gradient(135deg, #3D2B1F, #6B4A30); }
.mg-special { background: linear-gradient(135deg, #1A3A4F, #2A6080); }
.menu-card-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.9;
}
/* Menu category tabs */
.menu-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.menu-tab {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid var(--cream-dark);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  color: var(--warm-grey);
}
.menu-tab.active, .menu-tab:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

/* ─── Reviews ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: rgba(247,242,234,0.06);
  border: 1px solid rgba(247,242,234,0.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: rgba(200,130,42,0.3); }
.review-stars { color: var(--amber); letter-spacing: -1px; margin-bottom: 1rem; }
.review-text { font-size: 0.9rem; color: rgba(247,242,234,0.75); line-height: 1.75; margin-bottom: 1.2rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-name { font-size: 0.85rem; font-weight: 600; color: var(--cream); }
.review-date { font-size: 0.75rem; color: rgba(247,242,234,0.4); }
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  padding: 2rem;
  border: 1px solid rgba(247,242,234,0.1);
  border-radius: var(--radius-lg);
  background: rgba(200,130,42,0.06);
}
.reviews-score { font-family: var(--font-serif); font-size: 4rem; color: var(--cream); line-height: 1; }
.reviews-detail { }
.reviews-detail-stars { color: var(--amber); font-size: 1.1rem; }
.reviews-detail p { color: rgba(247,242,234,0.6); font-size: 0.85rem; margin: 0; }
.reviews-source { display: flex; align-items: center; gap: 0.5rem; color: rgba(247,242,234,0.5); font-size: 0.8rem; }

/* ─── CTA Section ─── */
.cta-section {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, #1C1A17, #2D1F10);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,130,42,0.12) 0%, transparent 70%);
}
.cta-section h2 { color: var(--cream); position: relative; margin-bottom: 1rem; }
.cta-section p { color: rgba(247,242,234,0.65); max-width: 460px; margin: 0 auto 2.5rem; position: relative; }
.cta-hours {
  display: inline-flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247,242,234,0.1);
  width: 100%;
}
.cta-hour-item { color: rgba(247,242,234,0.6); font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem; }
.cta-hour-item strong { color: var(--cream); }

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,130,42,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 0.3rem; }
.contact-info-value { font-size: 0.95rem; color: var(--charcoal); font-weight: 500; }
.contact-info-value a { color: var(--amber); }
.contact-form { }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.4rem; }
.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--amber); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table td { padding: 0.6rem 0; font-size: 0.9rem; }
.hours-table td:last-child { text-align: right; color: var(--amber); font-weight: 500; }
.hours-table tr.open-day td { color: var(--charcoal); }
.hours-table tr.closed-day td { color: var(--warm-grey); font-style: italic; }
.hours-table tr.closed-day td:last-child { color: var(--warm-grey); }
.sold-out-notice {
  background: rgba(200,130,42,0.1);
  border: 1px solid rgba(200,130,42,0.25);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--brown);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--charcoal);
  color: rgba(247,242,234,0.65);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {}
.footer-logo { font-family: var(--font-serif); font-size: 1.3rem; color: var(--cream); margin-bottom: 0.8rem; }
.footer-desc { font-size: 0.85rem; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(247,242,234,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--amber); }
.footer-heading { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; border-top: 1px solid rgba(247,242,234,0.08); font-size: 0.78rem; }
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--amber); }

/* ─── About Page Specific ─── */
.page-hero {
  padding: 8rem 0 5rem;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero p { color: rgba(247,242,234,0.7); max-width: 540px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.team-card p { font-size: 0.9rem; color: var(--warm-grey); margin: 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.value-card:hover { border-color: var(--amber); box-shadow: var(--shadow); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--warm-grey); margin: 0; }
.timeline { position: relative; max-width: 600px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--amber), transparent); }
.timeline-item { display: flex; gap: 1.5rem; padding-left: 0.5rem; margin-bottom: 2.5rem; }
.timeline-dot { width: 42px; height: 42px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: 0.75rem; flex-shrink: 0; }
.timeline-content h4 { margin-bottom: 0.3rem; }
.timeline-content p { font-size: 0.9rem; color: var(--warm-grey); margin: 0; }

/* ─── Scroll animations ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-meta { flex-direction: column; gap: 0.8rem; }
  .cta-hours { flex-direction: column; gap: 0.8rem; }
}
