:root {
  --dark: #0C0D0E;
  --dark-2: #16181A;
  --accent: #D49A3A;
  --accent-dim: #B8842E;
  --accent-tint: rgba(212, 154, 58, 0.12);
  --light: #FAF8F4;
  --light-2: #F2EEE6;
  --white: #FFFFFF;
  --text-dark: #1A1C1E;
  --text-mid: #555A61;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-light-dim: rgba(255, 255, 255, 0.6);
  --border: rgba(12, 13, 14, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --max-width: 1200px;
  --nav-height: 68px;
  --banner: 42px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.brand-mark {
  width: 30px;
  height: 30px;
  color: var(--accent);
  flex-shrink: 0;
}

.brand-accent { color: var(--accent); }

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

.main-nav > a:not(.nav-cta) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.main-nav > a:not(.nav-cta):hover { color: var(--dark); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 44px;
  letter-spacing: 0.01em;
}

.btn-filled {
  background: var(--accent);
  color: var(--dark);
}

.btn-filled:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 154, 58, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--dark);
}

.btn-outline:hover {
  border-color: var(--dark);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-large {
  padding: 16px 34px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-dim);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: var(--accent);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--dark);
}

.section-title-left {
  text-align: left;
  margin-left: 0;
}

.section-sub {
  text-align: center;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

section {
  padding: 100px 0;
}

.section-light {
  background: var(--light);
}

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(212, 154, 58, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(212, 154, 58, 0.08), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  min-height: calc(100vh - var(--nav-height) - var(--banner) - 80px);
}

.hero-content { max-width: 560px; }

.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

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

/* ===== MARQUEE ===== */
.hero-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
}

.marquee-track span:nth-child(even) {
  color: var(--accent);
}

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

/* ===== TRUST PILLARS ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.pillar {
  text-align: left;
}

.pillar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.pillar p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ===== ICON CHIPS ===== */
.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-chip svg {
  width: 26px;
  height: 26px;
  color: var(--accent-dim);
}

/* ===== SERVICES ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(12, 13, 14, 0.08);
  transform: translateY(-3px);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  color: var(--dark);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12, 13, 14, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 540px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.review-card {
  background: var(--light-2);
  border-radius: var(--radius);
  padding: 32px 30px;
  border: 1px solid var(--border);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.review-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-style: italic;
}

.review-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  display: block;
}

.review-card cite span {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 2px;
}

/* ===== PROJECTS ===== */
.projects-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 50px;
}

.project-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(12, 13, 14, 0.08);
}

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

.project-image-tall img {
  aspect-ratio: 884/958;
  object-fit: cover;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 10% 50%, rgba(212, 154, 58, 0.1), transparent);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content .section-title {
  color: var(--white);
  text-align: left;
  margin-left: 0;
}

.cta-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 460px;
  line-height: 1.65;
}

/* ===== QUOTE FORM ===== */
.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  color: var(--text-dark);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-row textarea { resize: vertical; }

.form-note {
  font-size: 0.82rem;
  color: var(--accent-dim);
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
  min-height: 1.2em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: var(--text-light-dim);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.brand-footer { margin-bottom: 16px; }

.brand-footer .brand-text { color: var(--white); }

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-light-dim);
  margin-bottom: 20px;
  max-width: 280px;
}

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

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

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-light-dim);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-info {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--text-light-dim);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-links a:hover {
  border-color: var(--accent);
  background: var(--accent-tint);
}

.social-links svg {
  width: 18px;
  height: 18px;
  color: var(--text-light);
}

.footer-social-mobile { display: none; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-light-dim);
  text-align: center;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].reveal-hidden {
  opacity: 0;
  transform: translateY(24px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-content .section-title { text-align: left; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 700px) {
  section { padding: 70px 0; }

  .container { padding: 0 20px; }

  .main-nav {
    position: fixed;
    top: calc(var(--banner) + var(--nav-height));
    left: 0;
    right: 0;
    background: var(--light);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-150%);
    transition: transform 0.35s ease;
    z-index: 99;
  }

  .main-nav.open { transform: translateY(0); }

  .main-nav > a:not(.nav-cta) {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    min-height: 48px;
  }

  .main-nav > a:not(.nav-cta):last-of-type {
    border-bottom: none;
    margin-bottom: 12px;
  }

  .nav-cta { width: 100%; }

  .hamburger { display: flex; }

  .hero {
    padding: 50px 0 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-content { max-width: 100%; }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-sub { font-size: 1.05rem; }

  .hero-ctas { flex-direction: column; }

  .hero-ctas .btn { width: 100%; }

  .pillars {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .projects-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .quote-form {
    padding: 28px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-tagline { max-width: 100%; }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .marquee-track { font-size: 0.8rem; }
}

@media (max-width: 400px) {
  .brand-text { font-size: 0.95rem; }
  .hero-headline { font-size: 1.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  [data-reveal] { transition: none; }
  [data-reveal].reveal-hidden { opacity: 1; transform: none; }
}