﻿/* ============================================================
   THE CAPPUCCINO EXPRESS — styles.css
   Shared stylesheet for all pages
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700;900&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --color-espresso:  #2C1A0E;
  --color-brown:     #B07828;
  --color-caramel:   #D4972A;
  --color-cream:     #FAF3E0;
  --color-white:     #FFFFFF;
  --color-text:      #111111;
  --color-muted:     #4A3728;
  --color-border:    #E8DCC8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  --shadow-sm:  0 2px 8px rgba(44,26,14,0.08);
  --shadow-md:  0 4px 20px rgba(44,26,14,0.12);
  --shadow-lg:  0 8px 40px rgba(44,26,14,0.18);

  --radius:     8px;
  --radius-lg:  16px;

  --max-width:  1200px;
  --section-pad: 80px 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
}

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

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

ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-espresso);
}

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

p { color: var(--color-text); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-muted { color: var(--color-muted); }
.text-center { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}

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

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

.btn-light {
  background-color: var(--color-white);
  color: var(--color-brown);
  border-color: var(--color-white);
}
.btn-light:hover {
  background-color: var(--color-cream);
}

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

.section { padding: var(--section-pad); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-caramel);
  margin-bottom: 12px;
}

.section-header {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-top: 12px;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-caramel);
  margin: 20px 0 0;
  border-radius: 2px;
}
.divider.centered { margin-left: auto; margin-right: auto; }

/* ── Grid Utilities ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

/* ── Card ─────────────────────────────────────────────────── */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-body { padding: 28px; }
.card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--color-caramel);
}

/* ── ───────────────────────────────────────────────────────── */
/*    HEADER / NAVIGATION
/* ── ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #E8C87A;
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 50px;
  background: rgba(255,255,255,0.55);
  padding: 6px 16px;
  box-shadow:
    0 0 10px 6px rgba(255,255,255,0.55),
    0 0 22px 12px rgba(255,255,255,0.22),
    0 0 36px 16px rgba(255,255,255,0.07);
}
.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-espresso);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-espresso);
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: color 0.2s, background-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-brown);
  background-color: rgba(44,26,14,0.1);
}

.nav-cta {
  margin-left: 12px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-espresso);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── ───────────────────────────────────────────────────────── */
/*    REVIEW TICKER BAR
/* ── ───────────────────────────────────────────────────────── */
.review-bar {
  background-color: var(--color-brown);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--color-caramel);
  border-bottom: 3px solid var(--color-caramel);
}

.review-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 45s linear infinite;
}
.review-track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.review-stars { color: var(--color-espresso); font-size: 0.9rem; }

.review-quote {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(44,26,14,0.88);
  font-style: italic;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-author {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-espresso);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.review-source {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.review-source.google { background: #4285F4; color: white; }
.review-source.yelp   { background: #D32323; color: white; }

.review-sep {
  color: var(--color-espresso);
  font-size: 1.2rem;
  opacity: 0.35;
}

/* ── ───────────────────────────────────────────────────────── */
/*    HERO SECTION
/* ── ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-espresso);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/Capp Bar Photo 2.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-caramel);
  border: 1px solid var(--color-caramel);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--color-white);
  max-width: 700px;
  margin-bottom: 8px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--color-caramel);
  margin-bottom: 24px;
  font-style: italic;
}

.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-badge-item { text-align: left; }
.hero-badge-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-caramel);
  line-height: 1;
}
.hero-badge-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* ── ───────────────────────────────────────────────────────── */
/*    SERVICES OVERVIEW (HOME)
/* ── ───────────────────────────────────────────────────────── */
.services-overview { background-color: var(--color-white); }

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--color-caramel);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Photo layer — behind content, fades in on hover */
.service-card .card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.service-card .card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 15, 5, 0.62);
}
.service-card:hover .card-photo { opacity: 1; }

/* Text content above the photo */
.service-card .card-content { position: relative; z-index: 1; }
.service-card .card-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}
.service-card:hover .card-icon { transform: scale(1.1); }
.service-card h3 {
  margin-bottom: 12px;
  color: var(--color-espresso);
  transition: color 0.3s ease;
}
.service-card:hover h3 { color: #ffffff; }
.service-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  transition: color 0.3s ease;
}
.service-card:hover p { color: rgba(255,255,255,0.85); }

/* "View Service →" label that appears on hover */
.card-hover-cta {
  display: block;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-caramel);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}
.service-card:hover .card-hover-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── ───────────────────────────────────────────────────────── */
/*    ABOUT STRIP (HOME)
/* ── ───────────────────────────────────────────────────────── */
.about-strip {
  background-color: var(--color-cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.about-strip-img {
  position: relative;
  min-height: 480px;
  background-image: url('images/Tyler_serving.jpg');
  background-size: cover;
  background-position: center top;
}
.about-strip-content { padding: 72px 56px; }
.about-strip-content .divider { margin-bottom: 28px; }
.about-strip-content p { color: var(--color-muted); margin-bottom: 16px; }
.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-espresso);
}
.credential::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: var(--color-caramel);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── ───────────────────────────────────────────────────────── */
/*    TESTIMONIALS (HOME)
/* ── ───────────────────────────────────────────────────────── */
.testimonials {
  background-color: var(--color-white);
  background-image: url('images/Red_tablecloth_dessert_table.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250,243,224,0.93);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-label { color: var(--color-brown); }
.testimonials h2 { color: var(--color-espresso); }
.testimonials .divider { background-color: var(--color-caramel); margin-bottom: 56px; }

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-caramel);
}
.testimonial-stars { color: var(--color-caramel); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-espresso);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { font-weight: 700; color: var(--color-brown); font-size: 0.85rem; letter-spacing: 0.04em; }
.testimonial-event { font-size: 0.8rem; color: var(--color-muted); margin-top: 4px; }

/* ── ───────────────────────────────────────────────────────── */
/*    SERVICE AREA BANNER
/* ── ───────────────────────────────────────────────────────── */
.area-banner {
  background-color: var(--color-cream);
  border-top: 4px solid var(--color-caramel);
  border-bottom: 4px solid var(--color-caramel);
  text-align: center;
  padding: 64px 24px;
}
.area-banner h2 { color: var(--color-espresso); margin-bottom: 12px; }
.area-banner p { color: var(--color-muted); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.area-banner .btn-light {
  background-color: var(--color-brown);
  color: var(--color-white);
  border-color: var(--color-brown);
}
.area-banner .btn-light:hover {
  background-color: var(--color-espresso);
  border-color: var(--color-espresso);
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.area-tag {
  background: var(--color-white);
  border: 1.5px solid var(--color-caramel);
  color: var(--color-brown);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── ───────────────────────────────────────────────────────── */
/*    CTA STRIP
/* ── ───────────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-espresso) 100%);
  text-align: center;
  padding: 72px 24px;
}
.cta-strip h2 { color: var(--color-white); margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.82); margin-bottom: 32px; font-size: 1.05rem; }
.cta-strip .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--color-white);
}
.cta-strip .btn-outline:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

/* ── ───────────────────────────────────────────────────────── */
/*    HOLIDAY PARTY FEATURE SECTION
/* ── ───────────────────────────────────────────────────────── */
.holiday-section {
  background-color: var(--color-espresso);
  background-image: url('images/Holiday_ dessert_spread.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: var(--section-pad);
}
.holiday-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,26,14,0.80);
}
.holiday-section .container { position: relative; z-index: 1; }
.holiday-section .section-label { color: var(--color-caramel); }
.holiday-section h2 { color: var(--color-white); margin-bottom: 16px; }
.holiday-section p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 0; }
.holiday-section .divider { background-color: var(--color-caramel); margin-bottom: 28px; }

.holiday-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.holiday-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.holiday-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
}
.holiday-photo img { width: 100%; height: 100%; object-fit: cover; }
.holiday-photo:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.holiday-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 36px;
}
.holiday-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.holiday-perk-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-caramel);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.holiday-perk-text strong {
  display: block;
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.holiday-perk-text span { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ── ───────────────────────────────────────────────────────── */
/*    PAGE HERO (inner pages)
/* ── ───────────────────────────────────────────────────────── */
.page-hero {
  background-color: var(--color-espresso);
  background-image: url('images/Capp Bar Photos 1.jpg');
  background-size: cover;
  background-position: center 30%;
  position: relative;
  padding: 100px 24px 80px;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,26,14,0.62);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--color-white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--color-caramel); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── ───────────────────────────────────────────────────────── */
/*    SERVICES PAGE
/* ── ───────────────────────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}
.service-detail:nth-child(even) .service-detail-img { order: 2; }
.service-detail:nth-child(even) .service-detail-content { order: 1; }

.service-detail-img {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.service-detail-content { padding: 64px 56px; }
.service-detail-content .section-label { margin-bottom: 8px; }
.service-detail-content h2 { margin-bottom: 20px; }
.service-detail-content p { color: var(--color-muted); margin-bottom: 16px; }

.service-brand {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-caramel);
  font-size: 1.15rem;
  margin-top: -12px;
  margin-bottom: 20px;
}

.service-photo-strip {
  grid-column: 1 / -1;
  order: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 220px;
  overflow: hidden;
}
.service-photo-strip .strip-img {
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.service-photo-strip .strip-img:hover { transform: scale(1.05); }

.menu-list {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.menu-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text);
}
.menu-list li::before {
  content: '☕';
  font-size: 0.8rem;
}

/* ── ───────────────────────────────────────────────────────── */
/*    TEAM PAGE
/* ── ───────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ── Under Construction ──────────────────────────────────── */
.under-construction {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  padding: 80px 24px;
}
.under-construction-inner {
  text-align: center;
  max-width: 580px;
}
.uc-logo {
  height: 72px;
  width: auto;
  margin-bottom: 32px;
  opacity: 0.85;
}
.under-construction-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-espresso);
  margin-bottom: 8px;
}
.under-construction-inner p {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin: 24px 0 36px;
  line-height: 1.7;
}
.uc-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.25s ease;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background-color: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-muted);
}
.team-card-img.placeholder {
  background: linear-gradient(135deg, var(--color-border) 0%, var(--color-cream) 100%);
  min-height: 280px;
}
.team-card-body { padding: 24px 20px; }
.team-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.team-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-caramel);
  margin-bottom: 12px;
}
.team-card p { font-size: 0.88rem; color: var(--color-muted); }

/* ── ───────────────────────────────────────────────────────── */
/*    FAQ PAGE
/* ── ───────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-white);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-espresso);
  text-align: left;
  transition: background-color 0.2s;
  gap: 16px;
}
.faq-question:hover { background-color: var(--color-cream); }
.faq-question.open { background-color: var(--color-cream); color: var(--color-brown); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: var(--color-caramel);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 28px 24px;
}
.faq-answer p { color: var(--color-muted); font-size: 0.95rem; margin-top: 4px; }

/* ── ───────────────────────────────────────────────────────── */
/*    CONTACT PAGE
/* ── ───────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 8px; }
.contact-info p { color: var(--color-muted); margin-bottom: 36px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-caramel);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.contact-detail-text a,
.contact-detail-text span {
  font-weight: 700;
  color: var(--color-espresso);
  font-size: 0.95rem;
}
.contact-detail-text a:hover { color: var(--color-brown); }

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--color-muted); margin-bottom: 32px; font-size: 0.95rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: var(--color-cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-caramel);
  box-shadow: 0 0 0 3px rgba(200,134,60,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Service pill checkboxes */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 2px solid var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-muted);
  background: var(--color-white);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  user-select: none;
  line-height: 1;
}
.service-pill input[type="checkbox"] { display: none; }
.service-pill:has(input:checked) {
  background: var(--color-brown);
  border-color: var(--color-brown);
  color: var(--color-white);
}
.service-pill:hover {
  border-color: var(--color-caramel);
  color: var(--color-espresso);
}
.service-pill:has(input:checked):hover {
  background: var(--color-caramel);
  border-color: var(--color-caramel);
  color: var(--color-white);
}

.form-group select[multiple] {
  appearance: auto;
  padding: 0;
  height: auto;
}
.form-group select[multiple] option {
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
}
.form-group select[multiple] option:checked {
  background-color: var(--color-brown);
  color: var(--color-white);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--color-brown);
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }

/* ── ───────────────────────────────────────────────────────── */
/*    ABOUT PAGE
/* ── ───────────────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background-color: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.about-story img { width: 100%; height: 100%; object-fit: cover; }

.milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
}
.milestone {
  background: var(--color-white);
  padding: 36px 24px;
  text-align: center;
}
.milestone strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-caramel);
  line-height: 1;
  margin-bottom: 8px;
}
.milestone span { font-size: 0.85rem; color: var(--color-muted); font-weight: 700; letter-spacing: 0.04em; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.value-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
}
.value-card .icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--color-muted); }

/* ── ───────────────────────────────────────────────────────── */
/*    FOOTER
/* ── ───────────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-espresso);
  padding: 72px 24px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  font-size: 0.95rem;
  transition: background-color 0.2s;
}
.footer-social a:hover { background: var(--color-caramel); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-caramel);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--color-cream); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact-item span:first-child { color: var(--color-caramel); font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span:last-child { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-contact-item a { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--color-cream); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: underline; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── ───────────────────────────────────────────────────────── */
/*    RESPONSIVE — Tablet (≤1024px)
/* ── ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .milestones { grid-template-columns: repeat(2, 1fr); }
  .about-story { gap: 48px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-img { order: 0; }
  .service-detail:nth-child(even) .service-detail-content { order: 0; }
  .service-detail-img { min-height: 320px; }
  .service-photo-strip { grid-template-columns: repeat(2, 1fr); height: 280px; }
  .service-detail-content { padding: 48px 36px; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-img { min-height: 320px; }
  .about-strip-content { padding: 56px 36px; }
  .holiday-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── ───────────────────────────────────────────────────────── */
/*    RESPONSIVE — Mobile (≤768px)
/* ── ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }

  .nav-links { display: none; flex-direction: column; gap: 4px; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #E8C87A;
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(44,26,14,0.12);
    box-shadow: var(--shadow-md);
  }
  .nav-links a { padding: 12px 16px; font-size: 0.9rem; }
  .nav-cta { margin-left: 0; margin-top: 8px; width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }

  /* Scale down logo glow on mobile so it doesn't bleed into hamburger */
  .nav-logo img {
    height: 42px;
    padding: 5px 10px;
    box-shadow:
      0 0 12px 6px rgba(255,255,255,0.5),
      0 0 24px 12px rgba(255,255,255,0.2),
      0 0 40px 18px rgba(255,255,255,0.06);
  }

  .hero { min-height: 100svh; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .hero-badge { gap: 24px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .milestones { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .menu-list { grid-template-columns: 1fr; }
  .service-detail-content { padding: 40px 24px; }
}

/* ── ───────────────────────────────────────────────────────── */
/*    RESPONSIVE — Small Mobile (≤480px)
/* ── ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .milestones { grid-template-columns: 1fr 1fr; }
  .hero-badge { flex-direction: column; gap: 20px; }
  .faq-question { padding: 18px 20px; font-size: 0.92rem; }
  .faq-answer { padding: 0 20px; }
  .faq-answer.open { padding: 0 20px 20px; }
  .checkbox-group { grid-template-columns: 1fr; }
}

/* ── ───────────────────────────────────────────────────────── */
/*    GALLERY PAGE
/* ── ───────────────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.gallery-filter-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  border: 2px solid var(--color-caramel);
  background: transparent;
  color: var(--color-brown);
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--color-brown);
  color: var(--color-white);
  border-color: var(--color-brown);
}

.gallery-grid {
  columns: 4;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.82);
}
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.3rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 1024px) { .gallery-grid { columns: 3; } }
@media (max-width: 768px)  { .gallery-grid { columns: 2; } }
@media (max-width: 480px)  { .gallery-grid { columns: 1; } }

/* ── ───────────────────────────────────────────────────────── */
/*    CONTACT FORM — CHECKBOXES
/* ── ───────────────────────────────────────────────────────── */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px;
  background: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 4px 0;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-brown);
  flex-shrink: 0;
  cursor: pointer;
}
