/* ============================================
   ANNA TABLES88 — Complete Redesign 2026
   Modern Luxury Craft Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
  /* NEW COLOR PALETTE — warm cream + charcoal + copper */
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --charcoal-mid: #3A3A3A;
  --copper: #B87333;
  --copper-light: #D4956A;
  --copper-dark: #8B5A2B;
  --copper-glow: rgba(184, 115, 51, 0.12);
  --teal: #1B7A6E;
  --teal-light: #2AA89A;
  --teal-glow: rgba(27, 122, 110, 0.08);
  --white: #FFFFFF;
  --off-white: #F5F2ED;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-light: #7A7A7A;
  --text-on-dark: #F0EBE3;
  --text-on-dark-muted: #A0A0A0;
  --border-light: rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.1);

  /* Typography */
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Sora', sans-serif;

  /* Spacing & Radius */
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-full: 100px;

  --section-pad: 120px;
  --container: 1240px;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 3px; }

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

/* ===== NAVIGATION — Light, minimal, floating ===== */
.navbar {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1300px;
  z-index: 1000;
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.nav-logo img { height: 44px; width: auto; }

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}

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

.nav-cta {
  padding: 10px 26px !important;
  background: var(--charcoal) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  transition: all 0.35s !important;
  border: none !important;
}

.nav-cta:hover {
  background: var(--copper) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(184, 115, 51, 0.3) !important;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO — Split layout, editorial style ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 80px;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--copper-glow);
  border: 1px solid rgba(184, 115, 51, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 32px;
  width: fit-content;
  animation: fadeSlideUp 0.7s ease forwards;
  opacity: 0;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.7s ease forwards 0.15s;
  opacity: 0;
}

.hero h1 em {
  font-style: italic;
  color: var(--copper);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.7s ease forwards 0.3s;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s ease forwards 0.45s;
  opacity: 0;
}

.hero-metrics {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  animation: fadeSlideUp 0.7s ease forwards 0.6s;
  opacity: 0;
}

.metric h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
}

.metric p {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 70%, var(--cream));
  pointer-events: none;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 115, 51, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s;
}

.btn-secondary:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: var(--copper-glow);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-dark:hover {
  background: var(--copper-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SECTION COMMONS ===== */
section { padding: var(--section-pad) 0; position: relative; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--copper);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.85;
}

.dark-section { background: var(--charcoal); color: var(--text-on-dark); }
.dark-section .section-heading { color: var(--text-on-dark); }
.dark-section .section-subtext { color: var(--text-on-dark-muted); }

.alt-bg { background: var(--off-white); }

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--charcoal);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-track span .sep {
  color: var(--copper);
  margin: 0 8px;
}

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

/* ===== INTRO — Full-width image + overlapping text card ===== */
.intro-block {
  position: relative;
}

.intro-image-full {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.intro-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  max-width: 680px;
  margin: -100px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid var(--border-light);
}

.intro-card p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 16px;
}

.intro-card p:first-of-type {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ===== SERVICES — Horizontal scroll cards ===== */
.services-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 20px;
}

.services-scroll-wrapper::-webkit-scrollbar { display: none; }

.services-row {
  display: flex;
  gap: 24px;
  padding: 0 24px;
  min-width: min-content;
}

.service-card-v2 {
  flex: 0 0 340px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all 0.45s ease;
  cursor: default;
}

.service-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: var(--copper);
}

.service-card-v2 .card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-card-v2 .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-v2 .card-body {
  padding: 28px;
}

.service-card-v2 .card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card-v2 .card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

.service-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.service-badge.popular { background: #E8F5F3; color: var(--teal); }
.service-badge.signature { background: var(--copper-glow); color: var(--copper); }
.service-badge.creative { background: #F0ECFF; color: #6C5CE7; }
.service-badge.business { background: #E8F0FE; color: #3B82F6; }

/* Also support grid layout for services */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ===== PROCESS — Horizontal timeline ===== */
.process-timeline {
  display: flex;
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--teal), var(--copper));
  opacity: 0.2;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-num {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--copper);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--copper);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.process-step:hover .process-num {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 0 40px rgba(184, 115, 51, 0.25);
  transform: scale(1.1);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== WHY US — Icon cards in grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--copper-glow);
  border-radius: var(--radius-md);
}

.feature-icon svg { width: 24px; height: 24px; stroke: var(--copper); fill: none; stroke-width: 1.5; }

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== CRICKET — Dark cinematic section ===== */
.cricket-section {
  background: var(--charcoal);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.cricket-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cricket-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cricket-content .section-heading { color: var(--text-on-dark); }

.cricket-desc {
  font-size: 1.05rem;
  color: var(--text-on-dark-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.cricket-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 36px 0;
}

.cricket-pill {
  padding: 10px 24px;
  background: rgba(184, 115, 51, 0.08);
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  color: var(--copper-light);
  transition: all 0.3s;
}

.cricket-pill:hover {
  background: rgba(184, 115, 51, 0.15);
  border-color: var(--copper);
}

.cricket-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== ABOUT — Side by side with image ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  position: relative;
  border: 1px solid var(--border-light);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 16px;
}

.company-box {
  margin-top: 32px;
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.company-box h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  font-weight: 700;
}

.company-box p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 6px;
  line-height: 1.6;
}

.company-box p strong { color: var(--text-body); font-weight: 500; }

/* ===== CTA / LEAD FORM ===== */
.cta-block {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(184, 115, 51, 0.08) 0%, transparent 50%);
}

.cta-block .section-heading { color: var(--text-on-dark); }
.cta-block .section-subtext { color: var(--text-on-dark-muted); margin: 0 auto 40px; text-align: center; }

.lead-form {
  max-width: 560px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form .full { grid-column: 1 / -1; }

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(255,255,255,0.35); }

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: var(--copper);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.15);
}

.lead-form select option { background: var(--charcoal); color: var(--white); }
.lead-form textarea { resize: vertical; min-height: 100px; }

.lead-form .btn-primary {
  width: 100%;
  justify-content: center;
  background: var(--copper);
  color: var(--white);
}

.lead-form .btn-primary:hover {
  background: var(--copper-light);
}

.cta-contacts {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-item { text-align: center; }

.cta-contact-item span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.cta-contact-item a,
.cta-contact-item p {
  font-size: 1rem;
  color: var(--text-on-dark);
  transition: color 0.3s;
}

.cta-contact-item a:hover { color: var(--copper-light); }

/* ===== FOOTER — Clean, light ===== */
footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-light);
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 12px;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.76rem; color: var(--text-light); }

.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.76rem; color: var(--text-light); transition: color 0.3s; }
.footer-legal a:hover { color: var(--copper); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--off-white);
  position: relative;
}

.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a { color: var(--copper); font-weight: 500; }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.filter-btn {
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border-light);
}

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

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-item .overlay h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
}

.gallery-item .overlay span {
  font-size: 0.75rem;
  color: var(--copper-light);
  display: block;
  margin-top: 4px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: all 0.3s;
}

.faq-item:hover { border-color: rgba(184, 115, 51, 0.3); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question svg {
  width: 18px; height: 18px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.85;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-box {
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}

.contact-form { display: grid; gap: 14px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-light); }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--copper);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-cards { display: grid; gap: 16px; }

.contact-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.contact-card:hover { border-color: rgba(184, 115, 51, 0.3); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }

.contact-card h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-card p, .contact-card a {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.contact-card a:hover { color: var(--copper); }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 760px; margin: 0 auto; }

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--text-dark);
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content ul, .legal-content ol {
  margin: 10px 0 18px 24px;
  color: var(--text-body);
}

.legal-content li { font-size: 0.95rem; line-height: 1.8; margin-bottom: 6px; }
.legal-content a { color: var(--copper); }
.legal-content a:hover { text-decoration: underline; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 140px 40px 60px; }
  .hero-right { height: 400px; }
  .hero-right::after { background: linear-gradient(to top, var(--cream), transparent 40%); }
  .services-grid-v2 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .process-timeline::before { display: none; }
  .process-step { flex: 0 0 calc(33% - 20px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: 360px; }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; }

  .navbar {
    top: 10px;
    width: calc(100% - 24px);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: var(--text-dark); }
  .mobile-toggle { display: block; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 24px 40px; }
  .hero-right { height: 350px; order: -1; }
  .hero-right::after { background: linear-gradient(to top, var(--cream) 5%, transparent 40%); }
  .hero h1 { font-size: 2.2rem; }
  .hero-metrics { gap: 24px; flex-wrap: wrap; }

  .intro-image-full { height: 300px; }
  .intro-card { padding: 36px 28px; margin: -60px 16px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .process-step { flex: 0 0 calc(50% - 16px); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .gallery-masonry { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }

  .cta-block { padding: 60px 24px; border-radius: var(--radius-lg); }
  .page-hero { padding: 130px 24px 60px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-metrics { gap: 16px; }
  .metric h3 { font-size: 1.3rem; }
}
