/* ── Design tokens ──────────────────────────────────────────────────── */
:root {
  --c-dark:   rgb(30, 30, 30);
  --c-bronze: rgb(180, 106, 44);
  --c-light:  rgb(245, 245, 245);
  --c-cream:  rgb(250, 232, 219);
  --c-white:  #ffffff;
  --c-muted:  rgb(143, 143, 143);
  --c-border: rgb(219, 219, 219);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-head:  'Raleway', Arial, sans-serif;
  --ff-body:  'Lato', Arial, sans-serif;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h:    108px;
  --section-pad: 120px;
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Form controls don't inherit font-family by default — keep them on-brand */
button, input, textarea, select, ::placeholder { font-family: var(--ff-body); }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--ff-body);
  color: var(--c-dark);
  background: var(--c-white);
  overflow-x: clip;
}

/* Base typography — single source of truth shared by every page (incl. inline
   <style> blocks, which cascade these defaults). Component classes still win,
   so this only sets the on-brand fallback and never overrides existing styles:
   display headings → serif, supporting headings → sans, body/controls → Lato. */
h1, h2, h3 { font-family: var(--ff-display); }
h4, h5, h6 { font-family: var(--ff-head); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Scroll reveal — slides up from bottom ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Why-section only: slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Why-section only: slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1, .reveal-left.reveal-delay-1, .reveal-right.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2, .reveal-left.reveal-delay-2, .reveal-right.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3, .reveal-left.reveal-delay-3, .reveal-right.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4, .reveal-left.reveal-delay-4, .reveal-right.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Section entrance — fades up ────────────────────────────────────── */
.sect-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s ease, transform 1s ease;
}
.sect-anim.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav ────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { margin-left: -18px; }
.nav-logo img { height: 84px; width: auto; transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.8; }
.nav-links { display: flex; align-items: center; gap: 44px; }
.nav-links a {
  font-family: var(--ff-body);
  font-size: 13.5px; font-weight: 400;
  letter-spacing: 0.04em; color: var(--c-dark);
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-bronze);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--c-bronze); }
.nav-links a:hover::after { width: 100%; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-dark);
  transition: transform 0.3s var(--ease), opacity 0.3s, background 0.2s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ────────────────────────────────────────────────────── */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
#mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-panel {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--c-white);
  padding: calc(var(--nav-h) + 16px) 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.38s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
#mobile-menu.open .mobile-menu-panel { transform: translateY(0); }
.mobile-menu-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-border);
}
.mobile-menu-panel ul li { border-bottom: 1px solid var(--c-border); }
.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-family: var(--ff-head);
  font-size: 16px; font-weight: 700;
  color: var(--c-dark); letter-spacing: 0.04em;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover { color: var(--c-bronze); padding-left: 8px; }
.mobile-cta {
  margin-top: 28px;
  padding: 16px 32px;
  background: var(--c-dark); color: var(--c-white);
  text-align: center; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--c-dark);
  transition: background 0.25s, color 0.25s;
}
.mobile-cta:hover { background: transparent; color: var(--c-dark); }

/* ── Hero ───────────────────────────────────────────────────────────── */
/* ── Hero: luxury painting & decorating ─────────────────────────────── */
#hero {
  position: relative;
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  padding: 64px 0;
  background: var(--c-dark);
  overflow: hidden;
}

/* Background image + atmospheric treatment */
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; display: block;
  transform: scale(1.08);
  animation: heroKenburns 18s ease-out forwards;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(20,18,16,0.94) 0%, rgba(20,18,16,0.78) 34%, rgba(20,18,16,0.32) 64%, rgba(20,18,16,0.55) 100%),
    radial-gradient(130% 120% at -10% 50%, rgba(0,0,0,0.55), transparent 58%),
    linear-gradient(0deg, rgba(20,18,16,0.85) 0%, transparent 32%);
}
/* Subtle film grain for depth */
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* Thin bronze frame inset */
.hero-frame {
  position: absolute; inset: 28px;
  border: 1px solid rgba(180,106,44,0.32);
  pointer-events: none; z-index: 2;
}
.hero-frame::before,
.hero-frame::after {
  content: ""; position: absolute; width: 26px; height: 26px;
  border-color: var(--c-bronze); border-style: solid; border-width: 0;
}
.hero-frame::before { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.hero-frame::after  { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }

/* Content */
.hero-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.hero-content {
  max-width: 820px;
  border-left: 2px solid var(--c-bronze);
  padding-left: 42px;
}
.hero-content > * {
  opacity: 0; transform: translateY(26px);
  animation: heroRise 0.95s var(--ease) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.30s; }
.hero-content > *:nth-child(3) { animation-delay: 0.42s; }
.hero-content > *:nth-child(4) { animation-delay: 0.54s; }
.hero-content > *:nth-child(5) { animation-delay: 0.68s; }

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 600; color: var(--c-cream);
  line-height: 1.04; letter-spacing: -0.015em;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero-sub {
  font-family: var(--ff-body);
  font-size: 15px; font-weight: 400;
  color: rgba(245,245,245,0.9); line-height: 1.75;
  margin-bottom: 14px; max-width: 560px;
}
.hero-body {
  font-family: var(--ff-body);
  font-size: 15px; font-weight: 300;
  color: rgba(245,245,245,0.62); line-height: 1.75;
  margin-bottom: 32px; max-width: 540px;
}
.hero-checklist {
  list-style: none; display: flex; flex-direction: column; gap: 13px;
  margin-bottom: 40px;
}
.hero-checklist li {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-head); font-size: 14px; font-weight: 700;
  letter-spacing: 0.02em; color: var(--c-light);
}
.hero-check {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 26px; height: 26px;
  border: 1px solid rgba(180,106,44,0.55); border-radius: 50%;
  color: var(--c-bronze); font-size: 11px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s;
}
.hero-checklist li:hover .hero-check {
  background: var(--c-bronze); color: #fff; border-color: var(--c-bronze);
}
.hero-cta {
  display: inline-block;
  padding: 16px 42px;
  background: var(--c-bronze); color: var(--c-white);
  font-family: var(--ff-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--c-bronze);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.hero-cta:hover {
  background: transparent; color: var(--c-cream); border-color: var(--c-cream);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(180,106,44,0.3);
}
.hero-cta:focus-visible { outline: 2px solid var(--c-cream); outline-offset: 3px; }

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 46px;
  display: flex; justify-content: center; align-items: flex-start;
  border: 1px solid rgba(245,245,245,0.35); border-radius: 14px;
  padding-top: 8px;
}
.hero-scroll-line {
  width: 2px; height: 8px; border-radius: 2px; background: var(--c-bronze);
  animation: heroScroll 1.8s var(--ease) infinite;
}
.hero-scroll:hover { border-color: var(--c-bronze); }

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroKenburns {
  to { transform: scale(1); }
}
@keyframes heroScroll {
  0% { transform: translateY(0); opacity: 0; }
  35% { opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; transform: scale(1); }
  .hero-content > * { animation: none; opacity: 1; transform: none; }
  .hero-scroll-line { animation: none; }
}

/* ── Section divider ────────────────────────────────────────────────── */
.section-sep { width: 100%; height: 1px; background: var(--c-border); }

/* ── About ──────────────────────────────────────────────────────────── */
#about { margin-top: 80px; padding: 0 48px; background: var(--c-white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1200px; margin: 0 auto; overflow: hidden;
}
.about-img-wrap { overflow: hidden; }
.about-img {
  width: 100%; height: 100%; min-height: 560px;
  object-fit: cover; display: block;
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}
.about-img.revealed { clip-path: inset(0 0 0% 0); transition: clip-path 2.4s cubic-bezier(0.4, 0, 0.2, 1); }
.about-img-wrap:hover .about-img { filter: brightness(1.03); }
.about-content {
  background: var(--c-light);
  display: flex; flex-direction: column;
  justify-content: center; padding: 80px 72px;
}
.about-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--c-dark); margin-bottom: 28px;
}
.about-body { font-size: 15px; line-height: 1.85; color: var(--c-bronze); font-weight: 300; margin-bottom: 44px; }
.about-body strong { color: var(--c-dark); font-weight: 700; }
.btn-dark {
  display: inline-block;
  padding: 16px 42px;
  background: var(--c-dark); color: var(--c-white);
  font-family: var(--ff-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid var(--c-dark);
  align-self: center;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn-dark:hover { background: transparent; color: var(--c-dark); transform: translateY(-2px); }
.btn-light {
  display: inline-block;
  padding: 16px 42px;
  background: var(--c-white); color: var(--c-dark);
  font-family: var(--ff-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid var(--c-white);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn-light:hover { background: transparent; color: var(--c-white); transform: translateY(-2px); }

/* ── Services ───────────────────────────────────────────────────────── */
#services { background: var(--c-white); padding: var(--section-pad) 48px; }
.services-header { text-align: center; margin-bottom: 72px; }
.services-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-bronze); margin-bottom: 14px;
}
.services-title { font-family: var(--ff-display); font-size: clamp(34px, 3.9vw, 52px); font-weight: 600; letter-spacing: -0.01em; line-height: 1.08; color: var(--c-dark); margin-bottom: 16px; }
.services-subtitle { font-size: 15px; font-weight: 300; color: var(--c-muted); max-width: 520px; margin: 0 auto; line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto 64px; }
.service-card {
  background: var(--c-white); padding: 44px 36px 40px;
  position: relative; text-align: center;
  border-radius: 12px; border: 1px solid var(--c-border);
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease), border-color 0.38s;
  overflow: hidden;
}
.service-card:nth-child(1):hover { transform: translateY(-12px); box-shadow: 0 24px 56px rgba(0,0,0,0.1); border-color: var(--c-bronze); }
.service-card:nth-child(2):hover { transform: scale(1.05); box-shadow: 0 10px 36px rgba(180,106,44,0.18); border-color: var(--c-bronze); }
.service-card:nth-child(3):hover { transform: translateY(-8px) rotate(1.5deg); box-shadow: 0 20px 48px rgba(0,0,0,0.09); border-color: var(--c-bronze); }
.service-card:nth-child(4):hover { transform: translateX(10px); box-shadow: -10px 10px 36px rgba(180,106,44,0.13); border-color: var(--c-bronze); }
.service-card:nth-child(5):hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 28px 60px rgba(0,0,0,0.1); border-color: var(--c-bronze); }
.service-card:nth-child(6):hover { transform: rotate(-2deg) scale(1.04); box-shadow: 0 14px 44px rgba(180,106,44,0.16); border-color: var(--c-bronze); }
.service-card-icon {
  width: 72px; height: 72px; background: var(--c-cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.35s, transform 0.35s var(--ease);
}
.service-card:hover .service-card-icon { background: var(--c-bronze); transform: scale(1.1); }
.service-card-icon svg {
  width: 32px; height: 32px; stroke: var(--c-bronze); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.35s;
}
.service-card:hover .service-card-icon svg { stroke: var(--c-white); }
.service-card:hover .service-card-icon img { filter: brightness(0) invert(1) !important; }
.service-card-title { font-family: var(--ff-display); font-size: 24px; font-weight: 600; color: var(--c-dark); margin-bottom: 14px; line-height: 1.15; letter-spacing: -0.005em; }
.service-card-divider { width: 32px; height: 2px; background: var(--c-bronze); margin: 0 auto 16px; transition: width 0.4s var(--ease); }
.service-card:hover .service-card-divider { width: 52px; }
.service-card-desc { font-size: 13.5px; font-weight: 300; color: rgb(100,100,100); line-height: 1.8; }

/* ── Why choose ─────────────────────────────────────────────────────── */
#why { background: var(--c-white); padding: var(--section-pad) 48px; }
.why-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-eyebrow {
  font-family: var(--ff-head);
  font-size: 11px; font-weight: 700;
  color: var(--c-bronze);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.why-arrow { font-size: 13px; }
.why-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 3.9vw, 52px);
  font-weight: 600; color: var(--c-dark);
  line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 20px;
}
.why-desc {
  font-size: 14.5px; line-height: 1.85;
  color: rgb(101,101,101); font-weight: 300;
  margin-bottom: 36px;
}
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feature { display: flex; gap: 20px; align-items: flex-start; }
.why-feature-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--c-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-bronze);
  transition: background 0.25s;
}
.why-feature:hover .why-feature-icon { background: var(--c-bronze); color: var(--c-white); }
.why-feature-icon svg { width: 26px; height: 26px; }
.why-feature-title {
  font-family: var(--ff-head);
  font-size: 16px; font-weight: 700;
  color: var(--c-dark); margin-bottom: 6px;
}
.why-feature-text { font-size: 13.5px; line-height: 1.75; color: rgb(101,101,101); font-weight: 300; }

/* Right: stat panel */
.why-right {
  background: var(--c-light);
  padding: 40px 44px;
  display: flex; flex-direction: column;
}
.why-stat {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
}
.why-stat-divider { height: 1px; background: var(--c-border); }
.why-circle-wrap {
  position: relative;
  width: 90px; height: 90px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.why-circle-svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.why-circle-bg {
  fill: none;
  stroke: var(--c-border);
  stroke-width: 6;
}
.why-arc {
  fill: none;
  stroke: var(--c-bronze);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 238.76;
  stroke-dashoffset: 238.76;
  transition: stroke-dashoffset 1.4s ease;
}
.why-pct-num {
  position: relative; z-index: 1;
  font-family: var(--ff-head);
  font-size: 18px; font-weight: 800;
  color: var(--c-dark);
}
.why-stat-title {
  font-family: var(--ff-head);
  font-size: 16px; font-weight: 700;
  color: var(--c-dark); margin-bottom: 6px;
}
.why-stat-desc { font-size: 13px; line-height: 1.7; color: rgb(101,101,101); font-weight: 300; }

/* ── Portfolio ──────────────────────────────────────────────────────── */
#portfolio { padding: var(--section-pad) 48px; background: var(--c-white); text-align: center; }
.portfolio-title { font-family: var(--ff-display); font-size: clamp(34px, 3.9vw, 52px); font-weight: 600; letter-spacing: -0.01em; color: var(--c-dark); margin-bottom: 72px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto 56px; }
.portfolio-card { position: relative; overflow: hidden; cursor: pointer; }
.portfolio-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform 0.65s var(--ease); }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(30,30,30,0); transition: background 0.4s;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.portfolio-card:hover .portfolio-overlay { background: rgba(30,30,30,0.55); }
.portfolio-label {
  color: var(--c-cream); font-family: var(--ff-display);
  font-size: 25px; font-weight: 600; letter-spacing: 0.005em;
  opacity: 0; transform: translateY(8px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.portfolio-card:hover .portfolio-label { opacity: 1; transform: translateY(0); }

@media (hover: none) and (pointer: coarse) {
  .portfolio-overlay { background: rgba(30,30,30,0.45); }
  .portfolio-label { opacity: 1; transform: translateY(0); }
  .portfolio-card.touch-active .portfolio-overlay { background: rgba(30,30,30,0.65); }
}

/* ── Testimonials ───────────────────────────────────────────────────── */
#testimonials { background: var(--c-light); padding: var(--section-pad) 48px; text-align: center; }
.testimonials-title { font-family: var(--ff-display); font-size: clamp(34px, 3.9vw, 52px); font-weight: 600; letter-spacing: -0.01em; color: var(--c-dark); margin-bottom: 72px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.testimonial-card { background: var(--c-white); padding: 44px 36px; text-align: left; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(0,0,0,0.09); }
.t-stars { color: var(--c-bronze); font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.t-text { font-size: 14.5px; line-height: 1.75; color: rgb(86,86,86); font-style: italic; margin-bottom: 28px; font-family: var(--ff-body); font-weight: 300; }
.t-divider { width: 28px; height: 2px; background: var(--c-bronze); margin-bottom: 16px; }
.t-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-dark); }
.t-loc { font-size: 12px; color: var(--c-muted); margin-top: 3px; }

/* ── Contact ────────────────────────────────────────────────────────── */
#contact { background: var(--c-white); padding: var(--section-pad) 48px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; max-width: 1100px; margin: 0 auto; }
.contact-title { font-family: var(--ff-display); font-size: clamp(32px, 3.6vw, 48px); font-weight: 600; letter-spacing: -0.01em; line-height: 1.08; color: var(--c-dark); margin-bottom: 20px; }
.contact-sub { font-size: 15px; line-height: 1.85; color: var(--c-bronze); font-weight: 300; margin-bottom: 48px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--c-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--c-bronze);
  transition: background 0.2s, color 0.2s;
}
.contact-detail:hover .contact-detail-icon { background: var(--c-bronze); color: var(--c-white); }
.contact-detail-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 4px; }
.contact-detail-value { font-size: 14px; color: var(--c-dark); }
.contact-detail-value a:hover { color: var(--c-bronze); }
.contact-areas { margin-top: 40px; padding: 22px 24px; background: var(--c-light); border-left: 3px solid var(--c-bronze); }
.contact-areas-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-bronze); margin-bottom: 8px; }
.contact-areas-text { font-size: 13.5px; color: rgb(86,86,86); line-height: 1.75; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-muted); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px;
  font-family: var(--ff-body); font-size: 14px; font-weight: 300;
  color: var(--c-dark); background: var(--c-light);
  border: 1.5px solid transparent; outline: none;
  transition: border-color 0.2s, background 0.2s; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--c-bronze); background: var(--c-white); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-submit {
  width: 100%; padding: 18px;
  background: var(--c-dark); color: var(--c-white);
  font-family: var(--ff-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid var(--c-dark);
  cursor: pointer; margin-top: 8px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.form-submit:hover { background: transparent; color: var(--c-dark); transform: translateY(-2px); }
.form-note { font-size: 12px; color: var(--c-muted); margin-top: 12px; text-align: center; }

/* ── Footer ─────────────────────────────────────────────────────────── */
#footer { background: var(--c-dark); padding: 80px 48px 44px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-img { height: 64px; width: auto; filter: invert(1) brightness(2); margin-bottom: 20px; }
.footer-desc { font-size: 13px; line-height: 1.82; color: rgba(255,255,255,0.38); font-weight: 300; margin-bottom: 26px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: all 0.25s;
}
.footer-social a:hover { border-color: var(--c-bronze); color: var(--c-bronze); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-white); margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.38); transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: var(--c-bronze); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 36px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-copy a { color: var(--c-bronze); }

/* ── Responsive: tablet ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: 72px; --nav-h: 80px; }

  .nav-inner { padding: 0 20px; }
  .nav-logo { margin-left: -8px; }
  .nav-logo img { height: 56px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #mobile-menu { display: block; }

  #hero { min-height: 560px; }
  .hero-inner { padding: 0 28px; }
  .hero-frame { inset: 16px; }
  .hero-content { padding-left: 26px; max-width: 100%; }
  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(20,18,16,0.92) 0%, rgba(20,18,16,0.55) 45%, rgba(20,18,16,0.42) 100%),
      linear-gradient(95deg, rgba(20,18,16,0.7), rgba(20,18,16,0.3));
  }

  #about { padding: 0 16px; margin-top: 48px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap { height: 300px; }
  .about-img { min-height: 300px; }
  .about-content { padding: 40px 24px; }

  #services { padding: 72px 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; }

  #why { padding: 72px 16px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-right { padding: 32px 24px; }

  #portfolio { padding: 72px 16px; }
  .portfolio-grid { grid-template-columns: 1fr; }

  #testimonials { padding: 72px 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  #contact { padding: 72px 16px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  #footer { padding: 56px 20px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Responsive: phone ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  :root { --nav-h: 72px; }
  .nav-logo img { height: 48px; }
  #hero { min-height: 520px; padding: 48px 0; }
  .hero-inner { padding: 0 20px; }
  .hero-content { padding-left: 20px; }
  .hero-title { font-size: clamp(32px, 9vw, 44px); margin-bottom: 18px; }
  .hero-sub { font-size: 13.5px; }
  .hero-body { font-size: 13px; margin-bottom: 26px; }
  .hero-checklist li { font-size: 13px; }
  .hero-scroll { display: none; }
  .why-title { font-size: 38px; }
  .footer-top { grid-template-columns: 1fr; }
  .about-content { padding: 32px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-title { font-size: 34px; }
}
