/* ==========================================================================
   GRIHSPACE — Premium Interior & Home Improvement
   Design tokens: warm stone background, charcoal text, bronze/gold accent
   Signature motif: the "split" — echoing the two-tone mark in the logo,
   used as a recurring divider / reveal / layout device across the site.
   ========================================================================== */

:root {
  /* Colors */
  --bg: #F8F6F3;
  --bg-secondary: #EFE9E2;
  --text: #1E1E1E;
  --text-secondary: #666666;
  --accent: #C9A27E;
  --accent-dark: #8A6A4A;
  --white: #FFFFFF;
  --line: rgba(30, 30, 30, 0.08);
  --shadow-soft: 0 20px 60px rgba(30, 20, 10, 0.07);
  --shadow-lift: 0 30px 80px rgba(30, 20, 10, 0.14);

  /* Type */
  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Inter', 'Manrope', sans-serif;

  /* Layout */
  --container: 1320px;
  --section-pad: 7.5rem;   /* 120px @16px base */
  --section-gap: 6.25rem;  /* 100px @16px base */
  --card-pad: 2.5rem;      /* 40px @16px base */
  --radius-lg: 1.75rem;    /* 28px */
  --radius-md: 1.25rem;    /* 20px */
  --radius-sm: 0.75rem;    /* 12px */
  --container-pad: 2.5rem; /* 40px */

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.7s;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* This is the master dial for the whole site's scale. Tuned so a normal
     laptop/desktop screen at 100% browser zoom matches what previously
     required zooming out to ~80%. Only very large monitors size back up. */
  font-size: 13px;
}
@media (min-width: 1800px) { html { font-size: 14px; } }
@media (min-width: 2200px) { html { font-size: 15px; } }
@media (max-width: 860px)  { html { font-size: 14.5px; } } /* phones: readable but still compact */
@media (max-width: 480px)  { html { font-size: 14px; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--white); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section + .section { margin-top: 0; }
.section-tight { padding: 5rem 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent-dark);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); }
p { color: var(--text-secondary); }
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.75;
}

.section-head {
  max-width: 720px;
  margin-bottom: 4.4rem;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(138, 106, 74, 0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(138, 106, 74, 0.4); }
.btn-outline {
  border: 1px solid rgba(30,30,30,0.18);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--accent-dark); background: var(--accent-dark); color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
}
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(248, 246, 243, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 rgba(30,30,30,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 38px; width: auto; transition: height var(--dur) var(--ease); }
.navbar.scrolled .nav-logo img { height: 32px; }
.nav-logo-text { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: 0.01em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent-dark);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  position: relative;
  transition: all 0.35s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 34px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1c1712;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,0.35) 0%, rgba(20,15,10,0.25) 45%, rgba(15,11,7,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--container-pad) 6.9rem;
  max-width: var(--container);
  margin: 0 auto;
  color: var(--white);
}
.hero .eyebrow { color: var(--accent); }
.hero .eyebrow::before { background: var(--accent); }
.hero h1 {
  color: var(--white);
  max-width: 900px;
  margin-bottom: 26px;
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-bottom: 4.4rem; }
.hero-stats {
  display: flex;
  gap: 4rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 36px;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.scroll-indicator {
  position: absolute;
  right: var(--container-pad);
  bottom: var(--container-pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
}
.scroll-indicator .line {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.35);
  overflow: hidden;
  position: relative;
}
.scroll-indicator .line::after {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ---- Split motif (signature) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--section-gap);
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(248,246,243,0.9);
  backdrop-filter: blur(10px);
  padding: 20px 26px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.split-media .badge .num { font-family: var(--font-display); font-size: 30px; color: var(--accent-dark); }
.split-media .badge .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); }
.split-body .lede { margin-bottom: 30px; }

.timeline-list { display: flex; flex-direction: column; gap: 0; margin-top: 34px; }
.timeline-list li {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.timeline-list li:last-child { border-bottom: 1px solid var(--line); }
.timeline-list .t-mark { font-family: var(--font-display); color: var(--accent-dark); font-size: 18px; min-width: 30px; }
.timeline-list h4 { font-size: 17px; margin-bottom: 4px; }
.timeline-list p { font-size: 14.5px; }

/* ---- Cards: Why Choose ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--card-pad);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  border: 1px solid transparent;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: var(--accent); }
.feature-icon {
  width: 3.625rem; height: 3.625rem;
  border-radius: 16px;
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  color: var(--accent-dark);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h4 { margin-bottom: 10px; font-size: 19px; }
.feature-card p { font-size: 14.5px; }

/* ---- Services ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.service-card .thumb { aspect-ratio: 5/4; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.service-card:hover .thumb img { transform: scale(1.07); }
.service-card .body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.service-card h4 { margin-bottom: 10px; }
.service-card p { font-size: 14.5px; flex: 1; margin-bottom: 20px; }
.service-card .link { font-size: 13.5px; font-weight: 600; color: var(--accent-dark); display: inline-flex; align-items: center; gap: 8px; }
.service-card .link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.service-card:hover .link svg { transform: translateX(4px); }

/* ---- Portfolio ---- */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
.filter-btn {
  padding: 11px 24px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.35s var(--ease);
}
.filter-btn.active, .filter-btn:hover { background: var(--text); color: var(--white); border-color: var(--text); }

.masonry {
  columns: 3 220px;
  column-gap: 24px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.masonry-item img { width: 100%; display: block; transition: transform 1s var(--ease); }
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,15,10,0.75) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.masonry-item:hover .overlay { opacity: 1; }
.masonry-item .overlay span { color: var(--white); font-family: var(--font-display); font-size: 18px; }

/* Before/After slider */
.ba-slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-soft); user-select: none; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-slider .ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--white);
  transform: translateX(-1px);
  cursor: ew-resize;
}
.ba-slider .ba-handle::after {
  content: '⇔';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-soft);
}
.ba-slider .tag { position: absolute; top: 20px; padding: 8px 18px; border-radius: 100px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--white); background: rgba(20,15,10,0.55); backdrop-filter: blur(6px); }
.ba-slider .tag.before { left: 20px; }
.ba-slider .tag.after { right: 20px; }

/* ---- Process ---- */
.process-track { position: relative; margin-top: 2.5rem; }
.process-line { position: absolute; top: 26px; left: 0; right: 0; height: 1px; background: var(--line); }
.process-fill { position: absolute; top: 26px; left: 0; height: 1px; background: var(--accent-dark); width: 0%; transition: width 1.2s var(--ease); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative; }
.process-step .dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent-dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease);
}
.process-step.active .dot { background: var(--accent-dark); color: var(--white); border-color: var(--accent-dark); }
.process-step h4 { font-size: 16px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; }

/* ---- Testimonials ---- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-sizing: border-box;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.testi-quote { font-family: var(--font-display); font-size: 18px; line-height: 1.6; margin-bottom: 28px; color: var(--text); flex-grow: 1; }
.testi-stars { display: flex; gap: 4px; color: var(--accent); margin-bottom: 20px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); color: var(--accent-dark); }
.testi-name { font-weight: 600; font-size: 14.5px; }
.testi-role { font-size: 13px; color: var(--text-secondary); }

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 30px; }
}

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  gap: 20px;
}
.faq-q .plus { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0; position: relative; transition: all 0.4s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--text); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .plus::before { width: 10px; height: 1px; }
.faq-q .plus::after { width: 1px; height: 10px; transition: opacity 0.3s var(--ease); }
.faq-item.open .plus { background: var(--accent-dark); border-color: var(--accent-dark); }
.faq-item.open .plus::before, .faq-item.open .plus::after { background: var(--white); }
.faq-item.open .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding-bottom: 28px; max-width: 680px; font-size: 15px; }

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, #2a2117 0%, #1c1712 100%);
  border-radius: var(--radius-lg);
  padding: 6.25rem 3.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 var(--container-pad);
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,126,0.18), transparent 70%);
  top: -200px; right: -150px;
}
.cta-section h2 { color: var(--white); max-width: 700px; margin: 0 auto 20px; }
.cta-section p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 44px; }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.75rem; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { position: relative; }
.field label { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); margin-bottom: 10px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201,162,126,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  display: flex; gap: 20px; align-items: flex-start;
}
.info-card .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; color: var(--accent-dark); flex-shrink: 0; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h4 { font-size: 15px; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 14.5px; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); margin-top: 10px; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---- Footer ---- */
.site-footer { background: #17130F; color: rgba(255,255,255,0.7); padding-top: var(--section-pad); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3.75rem; padding-bottom: 4.4rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo-text { color: var(--white); }
.footer-brand p { margin-top: 22px; max-width: 300px; font-size: 14.5px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 12px; margin-top: 28px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 24px; }
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col a, .footer-col p { font-size: 14.5px; color: rgba(255,255,255,0.55); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 34px 0; font-size: 13.5px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 16px; }
.footer-bottom .links { display: flex; gap: 26px; }

/* ---- Floating buttons ---- */
.float-stack { position: fixed; right: 28px; bottom: 28px; z-index: 900; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(20,15,10,0.28);
  transition: transform 0.35s var(--ease);
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); }
.float-btn svg { width: 24px; height: 24px; }
.float-whatsapp { background: #25D366; color: var(--white); }
.float-call { background: var(--text); color: var(--white); }
.float-top {
  width: 44px; height: 44px;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.float-top.show { opacity: 1; pointer-events: auto; }
.float-top svg { width: 18px; height: 18px; }

/* ---- Cursor glow ---- */
.cursor-glow {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,126,0.10), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  display: none;
}
@media (hover: hover) and (pointer: fine) { .cursor-glow { display: block; } }

/* ---- Reveal animation base states ---- */
[data-reveal] { opacity: 0; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 13.5px; color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  padding: 13.1rem 0 6.25rem;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--accent-dark); }
.page-hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,15,10,0.35) 0%, rgba(20,15,10,0.25) 45%, rgba(15,11,7,0.82) 100%); }
.page-hero.dark { background: #1c1712; }
.page-hero.dark h1 { color: var(--white); }
.page-hero.dark p { color: rgba(255,255,255,0.7); }
.page-hero.dark .breadcrumb a { color: rgba(255,255,255,0.55); }

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --section-pad: 80px; --card-pad: 28px; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split-media { aspect-ratio: 16/10; }
  .grid-3, .grid-2, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-line, .process-fill { display: none; }
  .masonry { columns: 2 180px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .cta-section { margin: 0 20px; padding: 70px 30px; }
  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px 80px; }
  .hero-stats { gap: 36px; }
}
@media (max-width: 560px) {
  .hero { padding-top: 100px;}
  .masonry { columns: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
