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

/* ---- Tokens ---- */
:root {
  --bg:        #F7F3EE;
  --surface:   #FFFFFF;
  --text:      #1C1A17;
  --muted:     #6B6355;
  --accent:    #9C433E;
  --accent-dk: #4F2A28;
  --border:    #E2D9CE;
  --walnut:    #4A3728;
  --hero-ov:   rgba(28, 26, 23, 0.52);
  --radius:    6px;
  --ff-head:   'Playfair Display', Georgia, serif;
  --ff-body:   'DM Sans', system-ui, sans-serif;
  --max-w:     1200px;
  --nav-h:     72px;
  --trans:     0.28s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--ff-body); }
ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--trans), color var(--trans), transform 0.15s ease, box-shadow var(--trans);
  border: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dk); box-shadow: 0 4px 18px rgba(181,136,58,0.35); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.72);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-dark {
  background: var(--accent);
  color: #fff;
}
.btn-dark:hover { background: #4F2A28
  ; box-shadow: 0 4px 18px rgba(74,55,40,0.3); }

/* ============================================================
   NAV
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
}
#navbar.scrolled {
  background: rgba(247,243,238,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  cursor: pointer;
}
.nav-logo-main {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--surface);
  transition: color var(--trans);
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}
#navbar.scrolled .nav-logo-main { color: var(--text); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--trans);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: #fff; }
#navbar.scrolled .nav-links a { color: var(--muted); }
#navbar.scrolled .nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 12px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background var(--trans);
}
#navbar.scrolled .nav-hamburger span { background: var(--text); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ============================================================
   PAGE SECTIONS
============================================================ */
.page-section { display: none; }
.page-section.active { display: block; }

/* ============================================================
   HOME HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/6510984/pexels-photo-6510984.jpeg?auto=compress&cs=tinysrgb&h=650&w=940');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-ov);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: heroFadeUp 1s 0.2s both;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--accent); font-style: italic; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.4s infinite;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

/* ============================================================
   WHY US STRIP
============================================================ */
.why-strip {
  background: var(--walnut);
  padding: 48px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--trans);
}
.why-item:last-child { border-right: none; }
.why-item:hover { background: rgba(255,255,255,0.08); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-label {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}
.why-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
}

/* ============================================================
   ABOUT PREVIEW (Home)
============================================================ */
.about-preview { padding: 110px 0; }
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-imgs {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 82%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 52%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--bg);
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}
.about-badge {
  position: absolute;
  bottom: 140px; left: -20px;
  background: var(--accent);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(181,136,58,0.4);
  z-index: 2;
}
.about-badge-num {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-txt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 4px;
  opacity: 0.9;
}
.about-text .section-sub { margin-bottom: 28px; }
.about-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.about-check-icon {
  width: 24px; height: 24px;
  background: rgba(181,136,58,0.15);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES PAGE
============================================================ */
.services-hero {
  background: var(--walnut);
  padding: 160px 0 80px;
  text-align: center;
}
.services-hero .section-title { color: #fff; }
.services-hero .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto; }

.services-grid-section { padding: 90px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.service-card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.service-card-body { padding: 28px; }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card-title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans);
  cursor: pointer;
}
.service-card-link:hover { gap: 10px; }

.process-section { padding: 90px 0; background: var(--surface); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 56px; height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process-step-title { font-family: var(--ff-head); font-size: 1.05rem; margin-bottom: 8px; }
.process-step-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

/* ============================================================
   GALLERY PAGE
============================================================ */
.gallery-hero {
  background: linear-gradient(135deg, #1C1A17 60%, #4A3728 100%);
  padding: 160px 0 80px;
  text-align: center;
}
.gallery-hero .section-title { color: #fff; }
.gallery-hero .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }

.gallery-section { padding: 90px 0; }
.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--walnut);
  border-color: var(--walnut);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item.span-2 img { height: 300px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: #fff; }
.gallery-caption-title { font-family: var(--ff-head); font-size: 1.1rem; margin-bottom: 2px; }
.gallery-caption-sub { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,9,8,0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  animation: fadeIn 0.22s ease;
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-page-hero {
  background: var(--walnut);
  padding: 160px 0 80px;
}
.about-page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-page-hero .section-title { color: #fff; }
.about-page-hero .section-sub { color: rgba(255,255,255,0.65); }
.about-hero-img { border-radius: var(--radius); overflow: hidden; height: 380px; }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.about-values { padding: 90px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.value-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.value-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(181,136,58,0.12); }
.value-icon { font-size: 2.2rem; margin-bottom: 18px; }
.value-title { font-family: var(--ff-head); font-size: 1.2rem; margin-bottom: 10px; }
.value-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

.team-section { padding: 90px 0; background: var(--surface); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.team-card { text-align: center; }
.team-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--border);
  transition: border-color var(--trans);
}
.team-card:hover .team-img { border-color: var(--accent); }
.team-name { font-family: var(--ff-head); font-size: 1.15rem; margin-bottom: 4px; }
.team-role {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-bio { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { padding: 90px 0; background: #F0EBE3; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.testi-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.testi-quote {
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--accent);
  font-family: var(--ff-head);
  opacity: 0.4;
  margin-bottom: 18px;
}
.testi-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 16px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-location { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--walnut) 0%, #1C1A17 100%);
  padding: 160px 0 80px;
  text-align: center;
}
.contact-hero .section-title { color: #fff; }
.contact-hero .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }

.contact-section { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-title { font-family: var(--ff-head); font-size: 1.6rem; margin-bottom: 16px; }
.contact-info-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(181,136,58,0.12);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-detail-val { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--trans), border-color var(--trans);
}
.social-link:hover { background: var(--walnut); border-color: var(--walnut); color: #fff; }

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 48px 44px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
.form-title { font-family: var(--ff-head); font-size: 1.5rem; margin-bottom: 6px; }
.form-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181,136,58,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 15px; font-size: 0.95rem; justify-content: center; }
.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 14px; }
.form-success-title { font-family: var(--ff-head); font-size: 1.5rem; margin-bottom: 8px; }
.form-success-desc { font-size: 0.92rem; color: var(--muted); }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner { background: var(--walnut); padding: 80px 0; text-align: center; }
.cta-banner-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner-sub { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; }

/* ============================================================
   FOOTER
============================================================ */
footer { background: #12100E; padding: 72px 0 36px; color: rgba(255,255,255,0.55); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-name { font-family: var(--ff-head); font-size: 1.4rem; color: #fff; margin-bottom: 6px; }
.footer-brand-tag { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-brand-desc { font-size: 0.88rem; line-height: 1.65; margin-bottom: 24px; max-width: 280px; }
.footer-col-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.52); transition: color var(--trans); cursor: pointer; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { height: 360px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.span-2 { grid-column: span 1; }
  .about-page-hero-inner { grid-template-columns: 1fr; }
  .about-hero-img { height: 260px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.span-2 { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .about-badge { left: 0; }
}
