/* ==========================================
   PetroLab — style.css
   Theme: Light Stone · Navy · Terracotta
   Fonts: Playfair Display / DM Sans / IBM Plex Mono
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;700&display=swap');

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --cream:        #FAF8F3;
  --cream-2:      #F2EEE5;
  --cream-3:      #E8E2D6;
  --stone:        #D6CEBD;
  --white:        #FFFFFF;

  --navy:         #1C2B45;
  --navy-2:       #253550;
  --navy-3:       #2E4060;
  --navy-light:   rgba(28,43,69,0.08);

  --terra:        #C84B2F;
  --terra-light:  #E05A3A;
  --terra-pale:   #F9EDE9;
  --terra-border: rgba(200,75,47,0.22);

  --tx-dark:      #1C2B45;
  --tx-body:      #3D4A5C;
  --tx-muted:     #7B8699;
  --tx-light:     #A8B2C2;

  --bdr:          #DDD8CE;
  --bdr-dark:     #C8C0B0;
  --shadow-sm:    0 2px 12px rgba(28,43,69,0.08);
  --shadow-md:    0 8px 32px rgba(28,43,69,0.12);
  --shadow-lg:    0 20px 60px rgba(28,43,69,0.16);

  --r-sm:   4px;
  --r-md:   10px;
  --r-lg:   18px;
  --r-pill: 999px;
  --ease:   0.26s cubic-bezier(0.4,0,0.2,1);
}

/* ─────────────────────────────────────────
   BASE
───────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--cream);
  color: var(--tx-body);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1.02rem; line-height: 1.8; color: var(--tx-body); }

a { color: var(--terra); transition: color var(--ease); }
a:hover { color: var(--navy); }

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

/* ─────────────────────────────────────────
   TYPOGRAPHY HELPERS
───────────────────────────────────────── */
.tag-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.tag-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--terra);
  flex-shrink: 0;
}

.section-title { margin-bottom: 14px; }
.section-title em {
  font-style: italic;
  color: var(--terra);
}

.section-lead {
  font-size: 1.08rem;
  color: var(--tx-muted);
  max-width: 580px;
  margin-bottom: 52px;
}

.divider {
  width: 52px;
  height: 3px;
  background: var(--terra);
  border-radius: var(--r-pill);
  margin: 16px 0 28px;
}

/* ─────────────────────────────────────────
   LOGO
───────────────────────────────────────── */
.logo-mark {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terra);
}

.logo-letters {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-drop {
  width: 6px;
  height: 8px;
  background: var(--terra);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.logo-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 1px;
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  background: rgba(250,248,243,0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bdr);
  padding: 0;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--terra-border);
}

.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 0;
}

.navbar-brand:hover .logo-name { color: var(--terra); }

.navbar-nav .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--tx-body) !important;
  padding: 8px 14px !important;
  border-radius: var(--r-sm);
  transition: all var(--ease);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--terra);
  transform: scaleX(0);
  border-radius: var(--r-pill);
  transition: transform var(--ease);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--navy) !important;
  background: var(--navy-light);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #fff !important;
  background: var(--terra);
  border: none;
  padding: 10px 24px !important;
  border-radius: var(--r-pill);
  transition: all var(--ease);
  box-shadow: 0 4px 16px rgba(200,75,47,0.28);
}

.nav-cta-btn:hover {
  background: var(--terra-light) !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(200,75,47,0.38);
  transform: translateY(-1px);
}

.nav-cta-btn::after { display: none !important; }

/* Bootstrap toggler override */
.navbar-toggler {
  border: 1.5px solid var(--navy-light);
  border-radius: var(--r-sm);
  padding: 6px 10px;
}

.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(200,75,47,0.18); }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231C2B45' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
    padding: 16px 0;
    margin: 0 -16px;
  }

  .navbar-nav .nav-link {
    padding: 12px 20px !important;
    border-radius: 0;
  }

  .navbar-nav .nav-link::after { display: none; }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: var(--cream-2);
    color: var(--terra) !important;
  }

  .nav-cta-btn {
    margin: 12px 20px 4px;
    display: block;
    text-align: center;
    border-radius: var(--r-pill);
    padding: 12px 24px !important;
  }
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-terra {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--terra);
  border: none;
  padding: 14px 36px;
  border-radius: var(--r-pill);
  transition: all var(--ease);
  box-shadow: 0 4px 20px rgba(200,75,47,0.28);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-terra:hover {
  background: var(--terra-light);
  color: #fff;
  box-shadow: 0 8px 28px rgba(200,75,47,0.38);
  transform: translateY(-2px);
}

.btn-terra-lg {
  padding: 17px 48px;
  font-size: 1rem;
}

.btn-navy {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: transparent;
  border: 2px solid var(--navy);
  padding: 13px 34px;
  border-radius: var(--r-pill);
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background-color: var(--cream);
  padding: 132px 0 90px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Decorative background elements */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(200,75,47,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(28,43,69,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Large decorative number */
.hero-deco-num {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 28rem;
  color: rgba(28,43,69,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-eyebrow span {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--terra);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-title em {
  font-style: italic;
  color: var(--terra);
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--tx-muted);
  line-height: 1.85;
  max-width: 560px;
  margin: 24px 0 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-img-wrap {
  position: relative;
  z-index: 1;
}

.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* Floating badge on hero image */
.hero-float-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon {
  width: 44px; height: 44px;
  background: var(--terra-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.badge-icon i { color: var(--terra); font-size: 1.2rem; }

.badge-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}

.badge-label {
  font-size: 0.78rem;
  color: var(--tx-muted);
  margin-top: 2px;
}

/* Scroll indicator */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-light);
  margin-top: 60px;
}

.hero-scroll i { color: var(--terra); animation: scrollBounce 2s ease-in-out infinite; }

@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  position: relative;
  transition: background var(--ease);
}

.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(255,255,255,0.04); }

.stat-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transition: transform var(--ease);
}

.stat-cell:hover::before { transform: scaleX(1); }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num span {
  color: var(--terra);
}

.stat-desc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.section-bg-cream { background: var(--cream); }
.section-bg-white { background: var(--white); }
.section-bg-cream-2 { background: var(--cream-2); }

.section-pad { padding: 96px 0; }

.service-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  height: 100%;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
}

.service-card:hover {
  border-color: var(--terra-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: var(--terra-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}

.service-icon i { font-size: 1.5rem; color: var(--terra); }

.service-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.service-card p  { color: var(--tx-muted); font-size: 0.97rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--terra);
  transition: gap var(--ease);
}

.service-card:hover .service-link { gap: 14px; }

/* ─────────────────────────────────────────
   WHY / BENEFITS
───────────────────────────────────────── */
.why-wrap {
  background: var(--cream-2);
  border-radius: var(--r-lg);
  padding: 60px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--bdr);
}

.benefit-item:last-child { border-bottom: none; padding-bottom: 0; }
.benefit-item:first-child { padding-top: 0; }

.benefit-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--terra);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.benefit-body h4 { margin-bottom: 4px; font-size: 1.05rem; color: var(--navy); }
.benefit-body p  { margin: 0; font-size: 0.95rem; color: var(--tx-muted); }

.why-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* Small inset card */
.inset-card {
  position: absolute;
  top: 32px; right: -24px;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  min-width: 180px;
}

.inset-card .inset-val {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--terra);
  line-height: 1;
}

.inset-card .inset-label {
  font-size: 0.78rem;
  color: var(--tx-muted);
  margin-top: 4px;
}

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  height: 100%;
  text-align: center;
  transition: all var(--ease);
  position: relative;
}

.process-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--terra-border);
  transform: translateY(-4px);
}

.process-num {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(28,43,69,0.2);
}

.process-card h4 { margin-bottom: 10px; }
.process-card p  { color: var(--tx-muted); font-size: 0.92rem; }

/* connector line between cards */
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
}

.process-connector i { color: var(--stone); font-size: 1.2rem; }

/* ─────────────────────────────────────────
   ADVANTAGES
───────────────────────────────────────── */
.adv-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-md);
  transition: all var(--ease);
  height: 100%;
}

.adv-item:hover {
  border-color: var(--terra-border);
  box-shadow: var(--shadow-sm);
  background: var(--cream);
}

.adv-icon {
  width: 48px; height: 48px;
  background: var(--terra-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--ease);
}

.adv-item:hover .adv-icon { background: var(--terra); }
.adv-item:hover .adv-icon i { color: #fff; }

.adv-icon i { color: var(--terra); font-size: 1.1rem; transition: color var(--ease); }

.adv-body h4 { margin-bottom: 6px; font-size: 1rem; }
.adv-body p  { margin: 0; font-size: 0.9rem; color: var(--tx-muted); }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-img-wrap { position: relative; }

.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-lg);
  filter: saturate(0.9) brightness(0.95);
  box-shadow: var(--shadow-lg);
}

.about-frame {
  position: absolute;
  top: -16px; left: -16px;
  width: 55%; height: 55%;
  border-top: 4px solid var(--terra);
  border-left: 4px solid var(--terra);
  border-radius: var(--r-md) 0 0 0;
  pointer-events: none;
}

.about-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bdr);
}

.about-check:last-child { border-bottom: none; }

.about-check i { color: var(--terra); font-size: 0.82rem; margin-top: 4px; flex-shrink: 0; }
.about-check span { font-size: 0.97rem; color: var(--tx-body); }

/* ─────────────────────────────────────────
   QUOTE BLOCK
───────────────────────────────────────── */
.quote-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: -40px; left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 22rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 28px;
}

.quote-cite {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
}

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--bdr);
  transition: all var(--ease);
  height: 100%;
}

.gallery-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--terra-border);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter var(--ease);
}

.gallery-card:hover img { filter: saturate(1); }

.gallery-card-body {
  padding: 18px 20px;
  background: var(--white);
}

.gallery-card-body h4 { font-size: 1rem; margin-bottom: 6px; }
.gallery-card-body p  { font-size: 0.88rem; color: var(--tx-muted); margin: 0; }

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.cta-section {
  background: var(--cream-2);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200,75,47,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p  { color: var(--tx-muted); max-width: 500px; margin: 0 auto 40px; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bdr);
}

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

.contact-info-icon {
  width: 42px; height: 42px;
  background: var(--terra-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i { color: var(--terra); font-size: 0.95rem; }

.contact-info-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tx-muted);
  margin-bottom: 4px;
}

.contact-info-val { font-size: 0.97rem; color: var(--tx-body); }
.contact-info-val a { color: var(--terra); }
.contact-info-val a:hover { color: var(--navy); }

/* Schedule table */
.schedule-tbl { width: 100%; border-collapse: collapse; }
.schedule-tbl tr { border-bottom: 1px solid var(--bdr); }
.schedule-tbl tr:last-child { border-bottom: none; }
.schedule-tbl td { padding: 8px 0; font-size: 0.9rem; color: var(--tx-body); }
.schedule-tbl td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.closed-day { color: var(--tx-light) !important; font-style: italic; }

/* ─────────────────────────────────────────
   FORM
───────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tx-muted);
  margin-bottom: 8px;
}

.form-control,
.form-select {
  background: var(--cream) !important;
  border: 1.5px solid var(--bdr-dark);
  border-radius: var(--r-sm) !important;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  color: var(--tx-dark);
  transition: all var(--ease);
}

.form-control::placeholder { color: var(--tx-light); }

.form-control:focus,
.form-select:focus {
  background: var(--white) !important;
  border-color: var(--terra) !important;
  box-shadow: 0 0 0 3px rgba(200,75,47,0.12) !important;
  outline: none;
}

.form-check-input:checked {
  background-color: var(--terra);
  border-color: var(--terra);
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(200,75,47,0.18);
}

/* ─────────────────────────────────────────
   MAP
───────────────────────────────────────── */
.map-section { padding: 60px 0; }

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--bdr);
  height: 380px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--terra);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-address-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tx-muted);
  margin-top: 14px;
}

.map-address-tag i { color: var(--terra); }

/* ─────────────────────────────────────────
   COOKIE BANNER
───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--navy);
  border-top: 3px solid var(--terra);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-icon { font-size: 1.5rem; color: var(--terra); flex-shrink: 0; }

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.cookie-text a { color: var(--terra); }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie-accept {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  background: var(--terra);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background var(--ease);
}

.btn-cookie-accept:hover { background: var(--terra-light); }

.btn-cookie-decline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--ease);
}

.btn-cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* ─────────────────────────────────────────
   SUCCESS MODAL
───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,43,69,0.65);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 52px 44px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: scale(0.9) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--terra);
}

.modal-overlay.active .modal-card { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--tx-muted);
  cursor: pointer;
  transition: color var(--ease);
}

.modal-close:hover { color: var(--terra); }

.modal-success-icon {
  width: 72px; height: 72px;
  background: #E8F8F0;
  border: 2px solid #3aab6a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}

.modal-success-icon i { font-size: 1.7rem; color: #3aab6a; }
.modal-card h3 { margin-bottom: 12px; }
.modal-card p  { color: var(--tx-muted); font-size: 0.97rem; margin-bottom: 30px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 64px 0 28px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra) 0%, transparent 60%);
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  transition: all var(--ease);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--terra);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}

.footer-policy a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-left: 20px;
  text-decoration: none;
  transition: color var(--ease);
}

.footer-policy a:hover { color: var(--terra); }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  background: var(--cream-2);
  padding: 120px 0 60px;
  border-bottom: 1px solid var(--bdr);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra) 0%, transparent 50%);
}

.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-light);
}

.breadcrumb-wrap a { color: var(--terra); text-decoration: none; }
.breadcrumb-wrap i { font-size: 0.5rem; }

/* ─────────────────────────────────────────
   POLICY PAGES
───────────────────────────────────────── */
.policy-wrap { padding: 64px 0 88px; }

.policy-content { max-width: 800px; }

.policy-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra-pale);
  border: 1px solid var(--terra-border);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 36px;
}

.policy-content h2 {
  font-size: 1.45rem;
  margin: 48px 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bdr);
}

.policy-content h3 {
  font-size: 1.1rem;
  color: var(--terra);
  margin: 28px 0 10px;
}

.policy-content p { color: var(--tx-body); margin-bottom: 16px; }

.policy-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 24px;
}

.policy-content ul li {
  padding: 10px 14px;
  border: 1px solid var(--bdr);
  border-radius: var(--r-sm);
  margin-bottom: 6px;
  font-size: 0.97rem;
  color: var(--tx-body);
  position: relative;
  padding-left: 36px;
  transition: background var(--ease);
}

.policy-content ul li:hover { background: var(--cream); }

.policy-content ul li::before {
  content: '▸';
  position: absolute;
  left: 14px;
  color: var(--terra);
  font-size: 0.78rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ─────────────────────────────────────────
   THANK YOU
───────────────────────────────────────── */
.thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  background: var(--cream);
}

.thankyou-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  border-top: 4px solid var(--terra);
  padding: 60px 52px;
  max-width: 580px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.thankyou-icon {
  width: 86px; height: 86px;
  border: 2px solid #3aab6a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  background: #E8F8F0;
}

.thankyou-icon i { font-size: 2.2rem; color: #3aab6a; }
.thankyou-card h1 { font-size: 2rem; margin-bottom: 14px; }
.thankyou-card p  { color: var(--tx-muted); font-size: 1rem; }

/* ─────────────────────────────────────────
   CONTACTS PAGE
───────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-md);
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 14px;
  transition: all var(--ease);
  border-left: 4px solid transparent;
}

.contact-card:hover {
  border-left-color: var(--terra);
  box-shadow: var(--shadow-sm);
  background: var(--cream);
}

/* ─────────────────────────────────────────
   DATA ANIM
───────────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-anim].anim-in {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 991px) {
  .hero { padding: 100px 0 70px; min-height: auto; }
  .hero-img-wrap { margin-top: 48px; }
  .hero-img-wrap img { height: 360px; }
  .hero-float-badge { left: 0; bottom: -16px; }
  .hero-deco-num { display: none; }
  .hero-scroll { display: none; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-cell:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-cell:nth-child(even) { border-right: none; }

  .why-wrap { padding: 36px; }
  .inset-card { display: none; }

  .about-frame { display: none; }
  .about-img-wrap img { height: 340px; }

  .footer .row > div { margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-policy { margin-top: 8px; }
  .footer-policy a { margin-left: 0; margin-right: 16px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }

  .hero { padding: 88px 0 60px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-terra,
  .hero-actions .btn-navy { width: 100%; justify-content: center; }
  .hero-img-wrap img { height: 280px; }
  .hero-float-badge { position: static; margin-top: 20px; width: 100%; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-cell   { padding: 28px 16px; }
  .stat-num    { font-size: 2.2rem; }

  .why-wrap { padding: 24px; border-radius: var(--r-md); }

  .gallery-card img { height: 190px; }

  .form-card { padding: 28px 20px; }

  .map-wrap { height: 280px; }
  .map-section { padding: 40px 0; }

  .cookie-wrap { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept,
  .btn-cookie-decline { flex: 1; text-align: center; }

  .modal-card { padding: 36px 24px; }

  .page-hero { padding: 94px 0 44px; }

  .policy-wrap { padding: 40px 0 60px; }
  .policy-content h2 { font-size: 1.2rem; }

  .thankyou-card { padding: 40px 24px; }
  .thankyou-card h1 { font-size: 1.7rem; }

  .footer-bottom { flex-direction: column; text-align: left; }
  .footer-policy { display: flex; flex-wrap: wrap; gap: 8px; }
  .footer-policy a { margin: 0; }

  .contact-card { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .hero-title { font-size: 1.75rem; }
  .hero-eyebrow { font-size: 0.62rem; }

  .btn-terra, .btn-navy { padding: 13px 26px; font-size: 0.88rem; }
  .btn-terra-lg { padding: 14px 28px; font-size: 0.9rem; }

  .stats-inner { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; }

  .modal-card { padding: 28px 18px; margin: 0 12px; width: calc(100% - 24px); }

  .thankyou-card { padding: 32px 18px; }

  .footer-copy { font-size: 0.6rem; }
}
