/* ============================================
   LUSO PAINTING — CSS DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --ink: #1a1a18;
  --off-white: #f5f3ee;
  --warm-white: #faf9f6;
  --orange: #e81a1a;
  --orange-dark: #c41a1a;
  --slate: #3d3d38;
  --muted: #7a7a72;
  --border: rgba(26,26,24,0.10);
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }

p { font-size: 1.05rem; line-height: 1.75; color: var(--slate); }

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

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

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 5vw, 3rem); }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: var(--transition); border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange); color: #fff; border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232, 26, 26, 0.3); }

.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: #fff; color: var(--ink); }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(26,26,24,0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo {
  display: flex; flex-direction: column; line-height: 1;
  color: #fff;
}
.nav__logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  letter-spacing: -0.02em;
}
.nav__logo-sub {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.6; margin-top: 2px;
}
.nav__logo span { color: var(--orange); }

.nav__links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--transition); position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px;
  background: var(--orange); transition: var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta { margin-left: 1rem; }

/* ── HAMBURGER BUTTON ─────────────────────────────────────────
   Pill-style "MENU" button with animated icon lines               */
.nav__hamburger {
  display: none;
  align-items: center; gap: 10px;
  cursor: pointer; background: none; border: none;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.22);
  transition: border-color 0.25s, background 0.25s;
}
.nav__hamburger:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
}
/* The animated icon part */
.nav__hamburger-icon {
  display: flex; flex-direction: column; gap: 4px;
  width: 18px;
}
.nav__hamburger-icon span {
  display: block; height: 1.5px; background: #fff;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              opacity   0.25s ease,
              width     0.3s  cubic-bezier(0.16,1,0.3,1);
}
.nav__hamburger-icon span:nth-child(1) { width: 18px; }
.nav__hamburger-icon span:nth-child(2) { width: 12px; }
.nav__hamburger-icon span:nth-child(3) { width: 18px; }
/* "MENU" label */
.nav__hamburger-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  user-select: none;
}
/* Open state → X */
.nav__hamburger.open .nav__hamburger-icon span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg); width: 18px;
}
.nav__hamburger.open .nav__hamburger-icon span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav__hamburger.open .nav__hamburger-icon span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg); width: 18px;
}
.nav__hamburger.open .nav__hamburger-label { color: var(--orange); }
/* When nav is scrolled, adapt colours */
.nav.scrolled .nav__hamburger { border-color: rgba(0,0,0,0.18); }
.nav.scrolled .nav__hamburger:hover { border-color: var(--orange); background: rgba(232,98,26,0.06); }
.nav.scrolled .nav__hamburger-icon span { background: var(--ink); }
.nav.scrolled .nav__hamburger-label { color: var(--ink); }
.nav.scrolled .nav__hamburger.open .nav__hamburger-icon span { background: var(--orange); }
.nav.scrolled .nav__hamburger.open .nav__hamburger-label { color: var(--orange); }

/* ── MOBILE FULL-SCREEN DRAWER ────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--ink);
  flex-direction: column; justify-content: center;
  padding: 0 clamp(28px, 8vw, 60px);
  /* slide in from right */
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
/* We need display:flex to allow transform, so switch approach */
.nav__mobile { display: flex; pointer-events: none; }
.nav__mobile.open { transform: translateX(0); pointer-events: auto; }
.nav__mobile-close {
  position: absolute; top: 1.5rem; right: 1.8rem;
  background: none; border: none; color: rgba(255,255,255,0.45);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.nav__mobile-close:hover { color: #fff; }
/* Decorative rule above links */
.nav__mobile::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
/* Links stacked with generous spacing */
.nav__mobile a {
  color: rgba(255,255,255,0.7);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 8vw, 3.5rem); font-weight: 700;
  line-height: 1.15; padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile a:hover { color: #fff; padding-left: 8px; }
.nav__mobile a.active { color: var(--orange); }
/* Phone number row at bottom */
.nav__mobile-phone {
  position: absolute; bottom: 2.5rem; left: clamp(28px, 8vw, 60px);
  font-size: 0.78rem !important; font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35) !important;
  text-transform: uppercase;
}
/* CTA inside drawer */
.nav__mobile .btn { margin-top: 2rem; align-self: flex-start; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18,18,16,0.84) 0%, rgba(18,18,16,0.56) 42%, rgba(18,18,16,0.30) 100%),
    url('../images/front.webp') center/cover no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(232,98,26,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 20% 70%, rgba(232,98,26,0.08) 0%, transparent 60%);
}

/* Diagonal stripe texture */
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px,
    transparent 1px, transparent 8px
  );
}

.hero__content {
  position: relative; z-index: 2;
  padding: 12rem 0 6rem;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: ''; display: block; width: 40px; height: 2px; background: var(--orange);
}

.hero__title {
  color: #fff; max-width: 800px;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal; color: var(--orange);
}

.hero__desc {
  color: rgba(255,255,255,0.65); max-width: 520px;
  font-size: 1.1rem; line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats {
  display: flex; gap: 3rem; margin-top: 5rem;
  padding-top: 3rem; padding-bottom: 3rem; border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1;
}
.hero__stat-num span { color: var(--orange); }
.hero__stat-label {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 0.4rem;
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 30px; height: 2px; background: var(--orange);
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--orange);
  padding: 1.5rem 0;
  overflow: hidden;
}
.intro-strip__track {
  display: flex; gap: 3rem; align-items: center;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.intro-strip__item {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: #fff; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; flex-shrink: 0;
}
.intro-strip__dot { width: 6px; height: 6px; background: rgba(255,255,255,0.5); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2a2926 0%, #1a1a18 100%);
  border-radius: 2px; overflow: hidden;
  position: relative;
}
.about__img-placeholder {
  width: 100%; height: 100%;
  background: 
    linear-gradient(160deg, rgba(232,98,26,0.12) 0%, rgba(26,26,24,0.95) 60%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 12px);
  display: flex; align-items: center; justify-content: center;
}
.about__img-icon { font-size: 6rem; opacity: 0.12; filter: grayscale(1); }
.about__badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--orange); color: #fff; padding: 1.5rem;
  text-align: center; border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(232,98,26,0.4);
}
.about__badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900; line-height: 1;
}
.about__badge-text { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }

.about__list { list-style: none; margin: 2rem 0; }
.about__list li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; font-weight: 500; color: var(--slate);
}
.about__list li::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: rgba(232,98,26,0.1);
  color: var(--orange); border-radius: 50%; font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}

/* ---- SERVICES ---- */
.services { background: var(--ink); }
.services .section-label { }
.services h2 { color: #fff; }
.services .p-intro { color: rgba(255,255,255,0.55); max-width: 560px; margin-top: 1rem; }

.services__header { margin-bottom: 4rem; }

.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.07);
}

.service-card {
  background: rgba(255,255,255,0.02);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0);
  transition: var(--transition); transform-origin: left;
}
.service-card:hover { background: rgba(232,98,26,0.06); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900; color: rgba(255,255,255,0.05);
  line-height: 1; margin-bottom: 1.5rem;
}
.service-card__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; }

/* ---- WHY CHOOSE US ---- */
.why-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center;
}
.why__feature {
  display: flex; gap: 1.5rem; margin-bottom: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.why__feature:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.why__icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(232,98,26,0.08); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.why__feature h4 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.why__feature p { font-size: 0.9rem; }

.why__visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.why__circle {
  width: 380px; height: 380px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #c4511a 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.why__circle::before {
  content: ''; position: absolute; inset: -15px;
  border-radius: 50%; border: 1px dashed rgba(232,98,26,0.3);
}
.why__circle-inner { text-align: center; color: #fff; }
.why__circle-inner .big { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900; line-height: 1; }
.why__circle-inner .small { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; }

/* ---- PROCESS ---- */
.process { background: var(--off-white); }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem;
}
.process__step { text-align: center; position: relative; }
.process__step:not(:last-child)::after {
  content: '→';
  position: absolute; right: -1rem; top: 1.6rem;
  color: var(--orange); font-size: 1.5rem; font-weight: 300;
}
.process__step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  margin: 0 auto 1.25rem; color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.process__step h4 { margin-bottom: 0.5rem; }
.process__step p { font-size: 0.875rem; }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--ink); padding: 6rem 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(232,98,26,0.12) 0%, transparent 60%);
}
.cta-band__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; max-width: 550px; }
.cta-band__phone {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--orange);
  letter-spacing: -0.02em;
}
.cta-band__phone small {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 400; margin-bottom: 0.25rem;
}

/* ---- FOOTER ---- */
footer {
  background: #111110; color: rgba(255,255,255,0.6);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand-name {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900;
  color: #fff; letter-spacing: -0.02em; margin-bottom: 0.25rem;
}
.footer__brand-name span { color: var(--orange); }
.footer__brand-tag { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.4; }
.footer__brand-desc { margin-top: 1.25rem; font-size: 0.875rem; line-height: 1.75; }

.footer__col h5 {
  color: #fff; font-family: 'Outfit', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul a {
  font-size: 0.875rem; transition: var(--transition);
}
.footer__col ul a:hover { color: #fff; }

.footer__contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; margin-bottom: 0.75rem;
}

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem; flex-wrap: wrap; gap: 1rem;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--ink); padding: 10rem 0 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 60% at 70% 50%, rgba(232,98,26,0.1) 0%, transparent 60%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero .section-label { }
.page-hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4.5rem); margin-top: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 520px; margin-top: 1rem; font-size: 1.1rem; }

/* ---- ABOUT PAGE ---- */
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem;
}
.value-card {
  padding: 2.5rem; border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,98,26,0.08); }
.value-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: 0.5rem; }

.team-section { background: var(--off-white); }

/* ---- SERVICES PAGE ---- */
.service-list { margin-top: 4rem; }
.service-item {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 2rem; align-items: start;
  padding: 2.5rem 0; border-bottom: 1px solid var(--border);
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-item__num {
  font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900;
  color: var(--border); line-height: 1;
}
.service-item h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.service-item p { font-size: 0.95rem; color: var(--muted); max-width: 520px; }
.service-item__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tag {
  padding: 0.3rem 0.8rem; background: rgba(232,98,26,0.08);
  color: var(--orange); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; border-radius: 99px; text-transform: uppercase;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start;
}
.contact-info__item {
  display: flex; gap: 1.25rem; margin-bottom: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(232,98,26,0.08); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.contact-info__label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.25rem;
}
.contact-info__value { font-weight: 500; color: var(--ink); }

/* FORM */
.contact-form { background: #fff; padding: 3rem; border-radius: var(--radius); box-shadow: 0 4px 40px rgba(0,0,0,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--ink);
  background: var(--warm-white); outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,98,26,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ---- GALLERY GRID ---- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2926 0%, #1a1a18 100%);
  border-radius: var(--radius); overflow: hidden; position: relative;
  transition: var(--transition); cursor: pointer;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: 
    linear-gradient(160deg, rgba(232,98,26,0.08) 0%, rgba(26,26,24,0.9) 100%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 14px);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem;
}
.gallery-label {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(0,0,0,0.7); color: #fff;
  padding: 0.35rem 0.75rem; border-radius: 2px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .why-grid { gap: 3rem; }
  .why__circle { width: 300px; height: 300px; }
  .why__circle-inner .big { font-size: 3rem; }
}

@media (max-width: 768px) {
  /* ── MOBILE PADDING FIXES ─────────────────────────────────── */
  .container { padding: 0 20px; }
  .section { padding: clamp(3rem, 8vw, 5rem) 0; }

  /* ── NAV ──────────────────────────────────────────────────── */
  .nav { padding: 0.8rem 0; }
  .nav__inner {
    align-items: flex-start;
    gap: 0.9rem;
  }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger {
    display: flex;
    flex-shrink: 0;
    margin-top: 0.15rem;
  }
  .nav__logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 130px);
  }
  .nav__logo-name {
    font-size: 2rem;
    line-height: 0.9;
    letter-spacing: -0.04em;
  }
  .nav__logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    margin-top: 0.35rem;
  }

  .hero__content {
    padding-top: 10.5rem;
    padding-bottom: 4rem;
  }
  .hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
  }
  .hero__title {
    max-width: 12ch;
  }

  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .about__badge { right: 0; bottom: -1rem; }
  .why__visual { display: none; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__step::after { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .service-item { grid-template-columns: 50px 1fr; gap: 1.25rem; }
  .service-item__cta { grid-column: 2; }
  .hero__stats { gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav { padding: 0.7rem 0; }
  .nav__inner { gap: 0.75rem; }
  .nav__logo { max-width: calc(100% - 118px); }
  .nav__logo-name { font-size: 1.58rem; }
  .nav__logo-sub { font-size: 0.54rem; letter-spacing: 0.14em; }
  .nav__hamburger { padding: 8px 12px 8px 10px; }
  .nav__hamburger-label { font-size: 0.58rem; letter-spacing: 0.14em; }
  .hero__content { padding-top: 9.5rem; }
  .hero__eyebrow::before { width: 24px; }
  .process__steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: fit-content; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ---- FADE-IN ANIMATION ---- */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Active page indicator */
.nav__links a[data-page].active::after { width: 100%; }


/* ---- IMAGE HELPERS ---- */
.media-photo,
.gallery-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about__img--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.16) 100%);
  pointer-events: none;
}
