/* ═══════════════════════════════════════════════════════════
   JOWENJO CATERERS — STYLESHEET
   Design System: Terracotta Luxury × Organic Warmth
   Fonts: Cormorant Garamond (display) + Plus Jakarta Sans (body)
═══════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Brand Colors */
  --clr-primary:       #E07B39;   /* Terracotta orange — logo match */
  --clr-primary-dark:  #C4622A;
  --clr-primary-light: #F0A06A;
  --clr-accent:        #4A7C59;   /* Leaf green — logo match */
  --clr-accent-light:  #6BA07A;

  /* Neutrals */
  --clr-dark:          #1E1208;   /* Deep espresso */
  --clr-dark-2:        #2E1E0F;
  --clr-mid:           #5C3D1E;   /* Warm brown */
  --clr-text:          #3D2B1A;
  --clr-text-muted:    #7A5C42;
  --clr-border:        #E8D5C0;
  --clr-bg:            #FDF8F3;   /* Warm cream */
  --clr-bg-2:          #F5EDE0;
  --clr-white:         #FFFFFF;

  /* Typography */
  --font-display:      'Cormorant Garamond', Georgia, serif;
  --font-body:         'Plus Jakarta Sans', system-ui, sans-serif;

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

  /* Layout */
  --container:  1200px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(30,18,8,0.08);
  --shadow-md:  0 8px 32px rgba(30,18,8,0.12);
  --shadow-lg:  0 20px 60px rgba(30,18,8,0.18);
  --shadow-xl:  0 32px 80px rgba(30,18,8,0.24);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   0.2s;
  --dur-mid:    0.4s;
  --dur-slow:   0.7s;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--space-sm);
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--clr-dark);
  margin-bottom: var(--space-md);
}

.section-title em {
  font-style: italic;
  color: var(--clr-primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.section-header.centered .section-desc {
  text-align: center;
}

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

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(224,123,57,0.35);
}

.btn-primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224,123,57,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}

.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--dur-mid) var(--ease),
              padding var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}

.site-header.scrolled {
  background: rgba(253,248,243,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(30,18,8,0.1);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* Logo */
.nav-logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 2px 8px rgba(224,123,57,0.3));
  transition: transform var(--dur-mid) var(--ease-spring);
}

.nav-logo:hover .logo-mark svg,
.footer-logo:hover .logo-mark svg {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-dark);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-primary);
}

/* When header is transparent (over hero) */
.site-header:not(.scrolled) .logo-name { color: var(--clr-white); }
.site-header:not(.scrolled) .logo-sub  { color: rgba(255,255,255,0.8); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 50px;
  color: var(--clr-white);
  transition: all var(--dur-fast);
  position: relative;
}

.site-header.scrolled .nav-link { color: var(--clr-text); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
  transition: width var(--dur-mid) var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after { width: 20px; }

.nav-link:hover { color: var(--clr-primary-light); }
.site-header.scrolled .nav-link:hover { color: var(--clr-primary); }

/* CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--dur-mid) var(--ease);
  box-shadow: 0 4px 16px rgba(224,123,57,0.3);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(224,123,57,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--dur-mid) var(--ease);
  transform-origin: center;
}

.site-header.scrolled .hamburger span { background: var(--clr-dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--clr-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--clr-white);
  transition: color var(--dur-fast);
}

.mobile-nav-link:hover { color: var(--clr-primary-light); }

.mobile-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2.5rem;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: var(--space-sm);
  transition: all var(--dur-mid) var(--ease);
}

.mobile-cta:hover { background: var(--clr-primary-dark); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,18,8,0.72) 0%,
    rgba(30,18,8,0.55) 50%,
    rgba(30,18,8,0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-lg);
  max-width: 800px;
  margin-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--clr-primary-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--clr-primary-light);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.br-desktop { display: block; }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding: var(--space-md) var(--space-xl);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
}

.stat-number sup {
  font-size: 1rem;
  vertical-align: super;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast);
}

.hero-scroll:hover { color: var(--clr-white); }

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--clr-primary);
  padding: 0.875rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.marquee-dot {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.6rem !important;
}

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

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}

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

/* Images */
.about-images {
  position: relative;
  height: 580px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--clr-bg);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-img-accent:hover img { transform: scale(1.04); }

.about-badge-float {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--clr-bg);
  z-index: 2;
}

.float-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
}

.float-text {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.3;
}

/* Content */
.about-text {
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
  padding: var(--space-md);
  background: var(--clr-bg-2);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--clr-primary);
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  background: var(--clr-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-white);
}

.pillar h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 0.15rem;
}

.pillar p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(224,123,57,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(74,124,89,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}

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

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,18,8,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease);
}

.service-card:hover .service-overlay { opacity: 1; }

.service-cta-link {
  padding: 0.625rem 1.5rem;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--dur-fast);
}

.service-cta-link:hover { background: var(--clr-primary-dark); }

.service-body {
  padding: var(--space-md);
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 0.5rem;
}

.service-body p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-sm);
}

.service-features li {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 0.75rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-primary);
  transition: gap var(--dur-fast);
}

.service-link:hover { gap: 0.6rem; }

.service-link span {
  transition: transform var(--dur-fast);
}

.service-link:hover span { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL BANNER
═══════════════════════════════════════════════════════════ */
.testimonial-banner {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.tb-bg {
  position: absolute;
  inset: 0;
}

.tb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.tb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,18,8,0.88) 0%, rgba(92,61,30,0.82) 100%);
}

.tb-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-lg);
}

.tb-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--clr-primary);
  opacity: 0.6;
  margin-bottom: var(--space-sm);
}

.tb-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--clr-white);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.tb-author {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--clr-primary-light);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg);
}

/* Filter Buttons */
.gallery-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--clr-text-muted);
  background: var(--clr-bg-2);
  border: 1.5px solid transparent;
  transition: all var(--dur-mid) var(--ease);
}

.filter-btn:hover {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
  background: rgba(224,123,57,0.06);
}

.filter-btn.active {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
  box-shadow: 0 4px 16px rgba(224,123,57,0.3);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--clr-bg-2);
}

.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,18,8,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--space-sm);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0.04em;
}

.gallery-zoom {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
}

.gallery-zoom:hover { background: var(--clr-primary); }

.gallery-zoom svg {
  width: 16px;
  height: 16px;
  stroke: var(--clr-white);
}

.gallery-item.hidden {
  display: none;
}

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,6,2,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--clr-primary); }

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-white);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-2);
}

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

/* Contact Info */
.contact-intro {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(224,123,57,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast);
}

.contact-item:hover .contact-icon { background: var(--clr-primary); }

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-primary);
  transition: stroke var(--dur-fast);
}

.contact-item:hover .contact-icon svg { stroke: var(--clr-white); }

.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.15rem;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-dark);
  transition: color var(--dur-fast);
}

a.contact-value:hover { color: var(--clr-primary); }

/* Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-mid) var(--ease);
}

.social-link:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(224,123,57,0.3);
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-text-muted);
  transition: stroke var(--dur-fast);
}

.social-link:hover svg { stroke: var(--clr-white); }

/* Contact Form */
.contact-form-wrap {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--clr-border);
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 0.25rem;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: 0.02em;
}

.required { color: var(--clr-primary); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: 0.9rem;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(224,123,57,0.12);
  background: var(--clr-white);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0a090; }

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

.select-wrap {
  position: relative;
}

.select-wrap select { padding-right: 2.5rem; cursor: pointer; }

.select-arrow {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--clr-text-muted);
  pointer-events: none;
}

.field-error {
  font-size: 0.75rem;
  color: #e53e3e;
  font-weight: 500;
  min-height: 1rem;
}

/* Submit Button */
#submit-btn {
  position: relative;
  overflow: hidden;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn-loading svg {
  width: 18px;
  height: 18px;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#submit-btn.loading .btn-text { display: none; }
#submit-btn.loading .btn-loading { display: flex; }

/* Success Message */
.form-success {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(74,124,89,0.1);
  border: 1.5px solid var(--clr-accent);
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
}

.form-success.visible { display: flex; }

.form-success svg {
  width: 28px;
  height: 28px;
  stroke: var(--clr-accent);
  flex-shrink: 0;
}

.form-success strong {
  display: block;
  font-size: 0.95rem;
  color: var(--clr-accent);
  margin-bottom: 0.2rem;
}

.form-success p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--clr-dark);
}

.footer-top {
  padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-brand .footer-logo {
  margin-bottom: var(--space-sm);
}

.footer-brand .logo-name { color: var(--clr-white); }
.footer-brand .logo-sub  { color: var(--clr-primary-light); }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--clr-primary-light);
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-sm);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--dur-fast);
}

.footer-nav a:hover { color: var(--clr-primary-light); }

.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-sm);
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: color var(--dur-fast);
}

.footer-contact a:hover { color: var(--clr-primary-light); }

.footer-social {
  display: flex;
  gap: 0.625rem;
  margin-top: var(--space-sm);
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-mid) var(--ease);
}

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

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.7);
}

.footer-social a:hover svg { stroke: var(--clr-white); }

.footer-bottom {
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.heart { color: var(--clr-primary); }

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 48px;
  height: 48px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(224,123,57,0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--dur-mid) var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(224,123,57,0.5);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-white);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta { display: none; }

  .hamburger { display: flex; }

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

  .about-images {
    height: 420px;
    max-width: 560px;
    margin: 0 auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .container { padding: 0 var(--space-sm); }

  .br-desktop { display: none; }

  /* Hero */
  .hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    margin-top: var(--space-xl);
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn { text-align: center; justify-content: center; }

  /* About */
  .about-images { height: 320px; }

  .about-img-main { width: 80%; height: 80%; }
  .about-img-accent { width: 60%; height: 50%; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.wide { grid-column: span 1; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: var(--space-md); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  /* Lightbox nav */
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.tall { grid-row: span 1; }
}