/* ============================================
   The Golden Hearth Bakery — Multi-Page Site
   Shared Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --terracotta: #c67b5c;
  --terracotta-dark: #a85d3e;
  --terracotta-light: #e8a88a;
  --cream: #fdf8f0;
  --cream-dark: #f5eadb;
  --espresso: #2c1810;
  --espresso-light: #4a2d1e;
  --sage: #7a9b7e;
  --sage-light: #a3c4a7;
  --sage-dark: #5a7b5e;
  --gold: #d4a843;
  --gold-light: #e8c96a;
  --gold-dark: #b8922f;
  --white: #ffffff;
  --gray-100: #f7f3ee;
  --gray-200: #e8e0d4;
  --gray-300: #c4b9a8;
  --gray-500: #8a7e6f;
  --gray-700: #5c5247;
  --shadow: rgba(44, 24, 16, 0.12);
  --shadow-lg: rgba(44, 24, 16, 0.2);

  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Sizing */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* --- 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-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--espresso);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--terracotta-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--espresso);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: var(--space-md);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header .subtitle {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--terracotta);
  font-style: italic;
}

.section-header p {
  max-width: 600px;
  margin: var(--space-md) auto 0;
  color: var(--gray-700);
}

.gold-accent {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: var(--radius-full);
  margin: var(--space-md) auto;
}

.text-center { text-align: center; }
.text-terracotta { color: var(--terracotta); }
.text-sage { color: var(--sage); }
.text-gold { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

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

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

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

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--espresso);
}

.btn-sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cream);
  transition: all var(--transition-base);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(253, 248, 240, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 20px var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  text-decoration: none;
}

.nav-logo:hover {
  color: var(--terracotta);
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  text-decoration: none;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-links a.active {
  color: var(--espresso);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
}

.nav-cta {
  margin-left: var(--space-md);
}

.nav-cta .btn {
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  margin: 5px 0;
  transition: all var(--transition-base);
  border-radius: var(--radius-full);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Sections --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-home {
  background: linear-gradient(135deg, #2c1810 0%, #4a2d1e 40%, #5c3d2e 70%, #7a4a35 100%);
  color: var(--white);
}

.hero-menu {
  background: linear-gradient(135deg, #3d2b1f 0%, #5c3d2e 50%, #7a5240 100%);
  color: var(--white);
  min-height: 50vh;
}

.hero-order {
  background: linear-gradient(135deg, #2c1810 0%, #4a2d1e 60%, #6b3e2a 100%);
  color: var(--white);
  min-height: 50vh;
}

.hero-about {
  background: linear-gradient(135deg, #3d2b1f 0%, #5a4030 50%, #7a9b7e 100%);
  color: var(--white);
  min-height: 55vh;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-content .subtitle {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.hero-decoration {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 500px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  z-index: 1;
}

.hero-home .hero-decoration {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-decoration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.8;
}

/* --- Page Hero (non-home pages) --- */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-4xl));
  padding-bottom: var(--space-3xl);
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-hero .subtitle {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

.breadcrumb .separator {
  color: var(--gold-light);
  opacity: 0.5;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.card-body {
  padding: var(--space-xl);
}

.card-body h3 {
  margin-bottom: var(--space-sm);
}

.card-body p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-top: var(--space-sm);
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Featured Highlights (Home) --- */
.highlights {
  background: var(--white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--cream);
  transition: all var(--transition-base);
}

.highlight-card:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.highlight-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlight-card h3 {
  margin-bottom: var(--space-sm);
}

.highlight-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* --- Reviews Section --- */
.reviews {
  background: var(--espresso);
  color: var(--white);
}

.reviews h2 {
  color: var(--white);
}

.review-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .review-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(255,255,255,0.1);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.review-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  opacity: 0.7;
}

.review-author strong {
  color: var(--gold-light);
  opacity: 1;
}

/* --- Menu Page --- */
.menu-tabs {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-3xl);
}

.menu-tab {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--gray-700);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

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

.menu-tab.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.menu-category {
  margin-bottom: var(--space-3xl);
}

.menu-category h3 {
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
}

.menu-category h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
}

.menu-category .cat-desc {
  color: var(--gray-500);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: all var(--transition-fast);
  border: 1px solid var(--gray-200);
}

.menu-item:hover {
  border-color: var(--terracotta-light);
  box-shadow: 0 2px 8px var(--shadow);
}

.menu-item-info {
  flex: 1;
}

.menu-item-info h4 {
  margin-bottom: 2px;
  font-size: 1.1rem;
}

.menu-item-info .item-desc {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-item-info .item-tags {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}

.item-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-vegetarian {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.tag-vegan {
  background: #c8e6c9;
  color: #2e7d32;
}

.tag-gluten-free {
  background: #fff3e0;
  color: #e65100;
}

.tag-popular {
  background: var(--gold-light);
  color: var(--espresso);
}

.tag-new {
  background: var(--terracotta-light);
  color: var(--espresso);
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--terracotta);
  white-space: nowrap;
  margin-left: var(--space-lg);
}

/* Catering section */
.catering-section {
  background: linear-gradient(135deg, var(--espresso) 0%, var(--espresso-light) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  margin-top: var(--space-3xl);
}

.catering-section h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.catering-section p {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.catering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
  .catering-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.catering-option {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid rgba(255,255,255,0.12);
}

.catering-option h4 {
  color: var(--gold-light);
  margin-bottom: var(--space-xs);
}

.catering-option .price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--terracotta-light);
  margin-bottom: var(--space-sm);
}

.catering-option p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --- Order Page --- */
.order-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 960px) {
  .order-layout {
    grid-template-columns: 1fr 380px;
  }
}

.order-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: 0 2px 12px var(--shadow);
}

.order-step {
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--gray-200);
}

.order-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  margin-right: var(--space-sm);
}

.step-title {
  display: inline;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
  color: var(--espresso);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--espresso);
  background: var(--cream);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

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

/* Cart sidebar */
.cart-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 2px 12px var(--shadow);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
}

.cart-sidebar h3 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--gray-200);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-item:last-of-type {
  border-bottom: none;
}

.cart-item-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.cart-item-qty {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.cart-item-price {
  font-weight: 700;
  color: var(--terracotta);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--espresso);
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-total .amount {
  font-family: var(--font-heading);
  color: var(--terracotta);
  font-size: 1.4rem;
}

.cart-empty {
  text-align: center;
  padding: var(--space-xl);
  color: var(--gray-500);
}

.cart-empty .empty-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

/* --- About Page --- */
.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.story-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-text h2 {
  margin-bottom: var(--space-lg);
}

.story-text p {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: var(--space-xl);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-card h4 {
  margin-bottom: var(--space-xs);
}

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

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: 0 2px 12px var(--shadow);
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h4 {
  margin-bottom: 4px;
}

.team-role {
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.team-bio {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 2px 12px var(--shadow);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.contact-info-item h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-info-item p {
  color: var(--gray-700);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: 0 2px 12px var(--shadow);
}

.contact-form-card h3 {
  margin-bottom: var(--space-lg);
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-top: var(--space-lg);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--espresso) 0%, var(--espresso-light) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--espresso);
  color: rgba(255,255,255,0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  font-size: 0.85rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* --- Package Teaser --- */
.package-teaser {
  background: var(--espresso);
  border-top: 2px solid var(--gold);
  padding: var(--space-2xl) 0;
  color: rgba(255,255,255,0.85);
}

.package-teaser-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .package-teaser-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.package-teaser h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xs);
}

.package-teaser p {
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.package-teaser ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  list-style: none;
}

.package-teaser li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.package-teaser li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .hero-decoration {
    display: none;
  }

  .hero {
    min-height: 70vh;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up-delay-1 { animation-delay: 0.1s; }
.fade-in-up-delay-2 { animation-delay: 0.2s; }
.fade-in-up-delay-3 { animation-delay: 0.3s; }

/* Scroll reveal */
.reveal {
  transition: all 0.6s ease;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1; transform: none; }
  .reveal { transition: none; }
}

/* --- Skip link for accessibility --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--terracotta);
  color: var(--white);
  padding: 8px 16px;
  z-index: 100;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* --- Focus styles --- */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* --- Print --- */
@media print {
  .navbar,
  .nav-toggle,
  .package-teaser,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}