@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Manrope:wght@400;500;600;700;800&family=Syne:wght@500;700;800&display=swap');

/* ━━━━━━━━━━━━━━━━ DESIGN TOKENS ━━━━━━━━━━━━━━━━ */
:root {
  --bg: #fafaf8;
  --bg-alt: #f2f1ed;
  --ink: #101010;
  --ink-soft: #2b2b2b;
  --muted: #6b6b6b;
  --line: #e4e3df;
  --line-light: rgba(0,0,0,0.06);
  --orange: #ff6400;
  --orange-deep: #e85a00;
  --orange-soft: rgba(255,100,0,0.08);
  --orange-glow: rgba(255,100,0,0.15);
  --surface: #ffffff;
  --success: #1a9a4a;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.07);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.04);
  --max: 1320px;
  --header-h: 80px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ━━━━━━━━━━━━━━━━ RESET ━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━ HEADER ━━━━━━━━━━━━━━━━ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--line-light);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.compact {
  background: rgba(250,250,248,0.96);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-shell {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.brand:hover { opacity: 0.8; }

.brand-main {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-main .haul { color: var(--orange); }

.brand-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2.5px;
  border-radius: 99px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width 0.25s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 1.7rem);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/* ━━━━━━━━━━━━━━━━ BUTTONS ━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.6rem 1.4rem;
  border: 1.5px solid transparent;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring),
              box-shadow 0.25s ease,
              background-color 0.2s ease,
              border-color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,100,0,0.25), 0 1px 3px rgba(255,100,0,0.15);
}

.btn-primary:hover {
  background: var(--orange-deep);
  box-shadow: 0 8px 24px rgba(255,100,0,0.3), 0 2px 6px rgba(255,100,0,0.2);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface);
}

.btn-ghost:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ━━━━━━━━━━━━━━━━ MOBILE MENU ━━━━━━━━━━━━━━━━ */
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.menu-button:hover { border-color: var(--orange); }

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  display: block;
  content: '';
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.menu-button span::before { position: absolute; top: -6px; }
.menu-button span::after { position: absolute; top: 6px; }

.menu-button[aria-expanded='true'] span { background: transparent; }
.menu-button[aria-expanded='true'] span::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded='true'] span::after { top: 0; transform: rotate(-45deg); }


/* ━━━━━━━━━━━━━━━━ HERO ━━━━━━━━━━━━━━━━ */
main { overflow: clip; }

.hero {
  min-height: calc(100svh - var(--header-h));
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  display: grid;
  align-items: flex-start;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

/* subtle radial accent behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,100,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2.5rem, 5vw, 4rem);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-copy {
  position: relative;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* remove the old decorative pseudo-elements that were overlapping */
.hero-copy::before,
.hero-copy::after { display: none !important; content: none !important; }

.kicker {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
}

h1, h2, h3 {
  margin: 0;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  text-transform: uppercase;
  max-width: 24ch;
  line-height: 1.06;
  margin-inline: auto;
}

.haul-word { color: var(--orange); }

h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); }

.hero-lead {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 40ch;
  margin-inline: auto;
  font-weight: 600;
  line-height: 1.5;
}

.wordplay {
  margin-top: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.wordplay .haul { color: var(--orange); }

.wordplay small {
  margin-left: 0.5rem;
  font-family: 'Manrope', sans-serif;
  text-transform: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

/* hide the unstyled geometric shapes */
.hero-symbols { display: none; }

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ━━━━━━━━━━━━━━━━ HERO QUOTE PANEL ━━━━━━━━━━━━━━━━ */
.hero-panel {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.05) inset;
  isolation: isolate;
  overflow: hidden;
}

.hero-quote {
  width: 100%;
  max-width: 880px;
  justify-self: center;
  text-align: left;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--orange) 0%, #ff8533 100%);
  border-radius: 0 3px 3px 0;
}

.hero-panel::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,100,0,0.08);
  filter: blur(40px);
  pointer-events: none;
}

.panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-title {
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.panel-tag {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
}

.quote-box {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .quote-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.quote-box p { margin: 0; color: rgba(255,255,255,0.88); font-size: 0.95rem; }
.quote-box p:first-child { flex-shrink: 0; }
.quote-box p:last-child { flex: 1; }
.quote-box strong { font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: #fff; }

.quick-steps {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 641px) {
  .quick-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.75rem;
  }
}

.quick-steps li {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .quick-steps li {
    flex-direction: row;
    align-items: flex-start;
  }
}

.quick-steps span {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
  background: #fff;
}

/* ━━━━━━━━━━━━━━━━ TICKER ━━━━━━━━━━━━━━━━ */
.ticker {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 0.8rem 0;
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.12em;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
}

.ticker-item::before {
  content: '◆';
  font-size: 0.5em;
  color: var(--orange);
}

.ticker-item b { color: var(--orange); }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ━━━━━━━━━━━━━━━━ SECTIONS ━━━━━━━━━━━━━━━━ */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-head {
  max-width: 48ch;
  margin-bottom: 0.5rem;
}

.section-head p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.6;
}

.grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

/* ━━━━━━━━━━━━━━━━ SERVICE CARDS ━━━━━━━━━━━━━━━━ */
.services-preview {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #ff8533);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-soft);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card h3 { margin-top: 0.75rem; }

.service-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.85rem;
  color: var(--orange);
  background: var(--orange-soft);
  letter-spacing: 0.03em;
}

/* ━━━━━━━━━━━━━━━━ WHY CARDS ━━━━━━━━━━━━━━━━ */
.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 1.15rem;
  background: var(--surface);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.why-card h3 { font-size: 1.1rem; }

.why-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ━━━━━━━━━━━━━━━━ PROCESS STEPS ━━━━━━━━━━━━━━━━ */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.process-step {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.25rem;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.process-step::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  z-index: 2;
}

.process-step:last-child::after { display: none; }

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: var(--orange);
}

.process-step h3 { margin-top: 0.8rem; }

.process-step p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ━━━━━━━━━━━━━━━━ CTA BAND ━━━━━━━━━━━━━━━━ */
.cta-band {
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,100,0,0.1);
  filter: blur(50px);
  pointer-events: none;
}

.cta-band h3 { position: relative; z-index: 1; }
.cta-band p {
  margin: 0.35rem 0 0;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
}

.cta-band .btn { position: relative; z-index: 1; }

.cta-band .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  background: transparent;
}

.cta-band .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ━━━━━━━━━━━━━━━━ FOOTER ━━━━━━━━━━━━━━━━ */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  background: var(--surface);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--orange); }

/* ━━━━━━━━━━━━━━━━ INNER PAGE HERO ━━━━━━━━━━━━━━━━ */
.page-hero {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2rem, 3vw, 2.5rem);
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ━━━━━━━━━━━━━━━━ SERVICES LIST (inner page) ━━━━━━━━━━━━━━━━ */
.services-list {
  grid-template-columns: repeat(2, 1fr);
}

.service-large {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.3rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.service-large:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.service-large ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-large ul li + li { margin-top: 0.2rem; }

.note-box {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255,100,0,0.45);
  background: var(--orange-soft);
}

.note-box p { margin: 0.3rem 0 0; color: var(--muted); font-size: 0.92rem; }

/* ━━━━━━━━━━━━━━━━ GALLERY ━━━━━━━━━━━━━━━━ */
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.photo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.photo-frame {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #ede9e2 100%);
  border-bottom: 2px solid var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.photo-frame span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-size: 0.82rem;
}

.photo-meta { padding: 0.95rem; }
.photo-meta h3 { font-size: 1.05rem; }

.photo-meta p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ━━━━━━━━━━━━━━━━ BEFORE / AFTER ━━━━━━━━━━━━━━━━ */
.before-after {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.5rem;
}

.ba-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.ba-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.ba-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-half {
  min-height: 160px;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ba-half.before { color: #fff; background: var(--ink); }
.ba-half.after { color: var(--ink); background: #ffd7bd; }

.ba-body { padding: 0.95rem; }
.ba-body p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* ━━━━━━━━━━━━━━━━ CONTACT ━━━━━━━━━━━━━━━━ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.contact-lines {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.contact-line {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s ease;
}

.contact-line:hover { border-color: var(--orange-soft); }

.contact-line span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-line a {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  transition: color 0.2s ease;
}

.contact-line a:hover { color: var(--orange); }

.details-compact {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.details-compact summary {
  cursor: pointer;
  list-style: none;
  padding: 0.75rem 0.9rem;
  font-weight: 800;
  font-size: 0.9rem;
}

.details-compact summary::-webkit-details-marker { display: none; }

.details-compact p {
  margin: 0;
  padding: 0 0.9rem 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ━━━━━━━━━━━━━━━━ PAGE THEMES ━━━━━━━━━━━━━━━━ */
.page-services {
  background:
    radial-gradient(40vw 40vw at 94% 4%, rgba(255, 100, 0, 0.09), transparent 65%),
    linear-gradient(180deg, #faf7f2 0%, #f7f4ee 100%);
}

.page-services .page-hero {
  position: relative;
  background: linear-gradient(160deg, #fffaf3 0%, #f6efe6 100%);
  border-bottom: 1px solid rgba(255, 100, 0, 0.15);
}

.page-services .page-hero .kicker {
  color: #cf4f00;
}

.page-services .service-large {
  border: 1px solid #eedfce;
  border-left: 6px solid var(--orange);
  background: linear-gradient(180deg, #fffdf9 0%, #fff7ee 100%);
  box-shadow: 0 6px 18px rgba(122, 72, 26, 0.07);
}

.page-services .service-large:hover {
  box-shadow: 0 10px 26px rgba(122, 72, 26, 0.12);
}

.page-services .service-large h3 {
  color: #1e1a16;
}

.page-services .note-box {
  background: rgba(255, 100, 0, 0.12);
  border-style: solid;
  border-color: rgba(255, 100, 0, 0.45);
}

.page-services .cta-band {
  background: linear-gradient(135deg, #17120f 0%, #2b1f17 100%);
}

.page-gallery {
  color: var(--ink);
  background:
    radial-gradient(40vw 40vw at 8% -8%, rgba(255, 100, 0, 0.09), transparent 70%),
    linear-gradient(180deg, #faf7f2 0%, #f7f4ee 100%);
}

.page-gallery .page-hero {
  background: linear-gradient(160deg, #fffaf3 0%, #f6efe6 100%);
  border-bottom: 1px solid rgba(255, 100, 0, 0.15);
  text-align: center;
}

.page-gallery .page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

.page-gallery .page-hero .kicker {
  color: #cf4f00;
}

.page-gallery .photo-card,
.page-gallery .ba-card {
  border-color: var(--line);
  box-shadow: var(--shadow-card);
  background: var(--surface);
}

.page-gallery .photo-frame {
  background: linear-gradient(145deg, #f2f2f2 0%, #e8e8e8 100%);
  border-bottom-color: var(--orange);
}

.page-gallery .photo-frame span {
  color: var(--muted);
}

.page-gallery .ba-half.before {
  background: var(--ink);
}

.page-gallery .ba-half.after {
  background: #ffd7bd;
  color: var(--ink);
}

.page-gallery .cta-band {
  background: var(--ink);
}

.page-contact {
  background:
    radial-gradient(35vw 35vw at 100% 0, rgba(26, 154, 74, 0.12), transparent 65%),
    linear-gradient(180deg, #f5fbf7 0%, #eef8f1 100%);
}

.page-contact .page-hero {
  background: linear-gradient(150deg, #f2fbf5 0%, #e6f5ea 100%);
  border-bottom: 1px solid rgba(26, 154, 74, 0.2);
}

.page-contact .page-hero .kicker {
  color: #17763a;
}

.page-contact .contact-card,
.page-contact .form-card {
  border-color: #c8e3d1;
  box-shadow: 0 10px 24px rgba(17, 80, 41, 0.08);
}

.page-contact .contact-card {
  background: linear-gradient(165deg, #ffffff 0%, #f4fcf7 100%);
}

.page-contact .form-card {
  background: #fff;
}

.page-contact .contact-line:hover {
  border-color: rgba(26, 154, 74, 0.35);
}

.page-contact .form-row input:focus,
.page-contact .form-row textarea:focus,
.page-contact .form-row select:focus {
  border-color: #1a9a4a;
  box-shadow: 0 0 0 3px rgba(26, 154, 74, 0.2);
}

.page-contact .cta-band {
  background: linear-gradient(135deg, #0f2a18 0%, #1c4a2c 100%);
}

.form-row {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.form-row label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 0.92rem;
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-row textarea {
  min-height: 110px;
  resize: vertical;
}

.small {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ━━━━━━━━━━━━━━━━ REVEAL ANIMATIONS ━━━━━━━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━ RESPONSIVE - TABLET ━━━━━━━━━━━━━━━━ */
@media (max-width: 980px) {
  :root { --header-h: 68px; }

  .hero-grid,
  .contact-wrap { grid-template-columns: 1fr; }

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

  .hero-quote {
    max-width: 100%;
    justify-self: stretch;
  }

  .process { grid-template-columns: 1fr; }
  .process-step::after { display: none; }

  .services-preview,
  .services-list,
  .gallery-grid,
  .before-after,
  .why-grid { grid-template-columns: 1fr 1fr; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(250,250,248,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.5rem 1.2rem;
    display: grid;
    gap: 0.2rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
    z-index: 200;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    justify-content: flex-start;
    border-radius: 12px;
    padding: 0 0.8rem;
    height: 46px;
  }

  .menu-button { display: inline-flex; }
  .header-cta .btn { display: none; }
}

/* ━━━━━━━━━━━━━━━━ RESPONSIVE - MOBILE ━━━━━━━━━━━━━━━━ */
@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 1.25rem)); }

  h1 { font-size: clamp(2rem, 10vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 7vw, 2.2rem); }

  .services-preview,
  .services-list,
  .gallery-grid,
  .before-after,
  .why-grid { grid-template-columns: 1fr; }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.3rem;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-links { flex-wrap: wrap; gap: 0.8rem; }
}

/* ━━━━━━━━━━━━━━━━ REDUCED MOTION ━━━━━━━━━━━━━━━━ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
