@font-face {
  font-family: 'Parisian';
  src: url('../fonts/PARISIAN.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --base:      #F0E8DC;
  --type:      #2C2118;
  --accent:    #B05A38;
  --secondary: #8C7B6A;
  --rule:      #D4C9BC;
  --base-dark: #e6dcd0;
  --radius:    2px;
  --font-display: 'Parisian', 'Playfair Display', serif;
  --font-body:    'Jost', sans-serif;
  --tap: 48px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--base);
  color: var(--type);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────
   NAV
───────────────────────────────────── */
nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 64px;
  animation: fadeDown 1s ease both;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--base);
}
.nav-logo span { color: rgba(240,232,220,0.4); margin: 0 7px; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,232,220,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--base); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--base);
  border: 1px solid rgba(240,232,220,0.45);
  padding: 11px 24px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: rgba(240,232,220,0.1);
  border-color: var(--base);
}

/* ── Hide reCAPTCHA badge (permitted per Google ToS when attribution is in form) ── */
.grecaptcha-badge { visibility: hidden !important; }
.recaptcha-notice {
  font-size: 10px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--secondary);
  text-align: center;
  margin-top: 12px;
  opacity: 0.7;
}
.recaptcha-notice a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.2s;
}
.recaptcha-notice a:hover { color: var(--type); }

/* ── Utility ── */
.mb-0 { margin-bottom: 0 !important; }
.req { color: var(--accent); margin-left: 2px; }

/* ── Hamburger toggle (hidden on desktop) ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  z-index: 110;
}
.nav-toggle-bar {
  display: block;
  width: 1.375rem;
  height: 2px;
  background: var(--base);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-links-cta { display: none; }
.nav-cta-desktop { display: inline-block; }

/* ── Focus Visible ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-primary:focus-visible,
.nav-cta:focus-visible,
.btn-ghost:focus-visible {
  outline-color: var(--base);
  outline-offset: 3px;
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-restaurant.webp');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  animation: heroReveal 1.8s ease both;
}

@keyframes heroReveal {
  from { transform: scale(1.08); opacity: 0.7; }
  to   { transform: scale(1.04); opacity: 1; }
}

/* Overlay: warm dark vignette, heavy at bottom for type legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(28, 18, 10, 0.28) 0%,
      rgba(28, 18, 10, 0.08) 30%,
      rgba(28, 18, 10, 0.50) 65%,
      rgba(28, 18, 10, 0.88) 100%
    );
}

/* Thin left accent rule */
.hero-rule {
  position: absolute;
  left: 64px;
  top: 130px;
  bottom: 200px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(176, 90, 56, 0.55) 20%,
    rgba(176, 90, 56, 0.55) 80%,
    transparent
  );
  animation: fadeIn 1.4s 0.8s ease both;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 64px 80px 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 56px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.8vw, 80px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: var(--base);
  margin-bottom: 30px;
  animation: fadeUp 1s 0.6s ease both;
}
.hero-headline em {
  font-style: italic;
  color: rgba(240, 232, 220, 0.65);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 232, 220, 0.62);
  max-width: 440px;
  margin-bottom: 44px;
  animation: fadeUp 1s 0.75s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  animation: fadeUp 1s 0.9s ease both;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--base);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 17px 36px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
  display: inline-block;
  border-radius: var(--radius);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}

.btn-ghost {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,232,220,0.55);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
  cursor: pointer;
}
.btn-ghost::after {
  content: '\2192';
  font-size: 15px;
  transition: transform 0.2s;
}
.btn-ghost:hover { color: var(--base); }
.btn-ghost:hover::after { transform: translateX(5px); }

/* Hero right — proof stats */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(240,232,220,0.14);
  padding-left: 44px;
  animation: fadeUp 1s 1s ease both;
}

.stat-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(240,232,220,0.1);
}
.stat-item:first-child { padding-top: 0; }
.stat-item:last-child { border-bottom: none; padding-bottom: 0; }

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--base);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,232,220,0.4);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s 1.4s ease both;
  z-index: 3;
}
.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240,232,220,0.3);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(240,232,220,0.35), transparent);
  animation: scrollPulse 2.2s 1.8s ease-in-out infinite;
}

/* ─────────────────────────────────────
   VALUE STRIP (below hero)
───────────────────────────────────── */
.value-strip {
  background: var(--type);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-item {
  padding: 0 48px;
  border-right: 1px solid rgba(240,232,220,0.1);
}
.value-item:first-child { padding-left: 0; }
.value-item:last-child { border-right: none; }

.value-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.value-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--base);
  margin-bottom: 14px;
}

.value-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--secondary);
}

/* ─────────────────────────────────────
   INTRO / POSITIONING SECTION
───────────────────────────────────── */
.section-intro {
  padding: 120px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--type);
  margin-bottom: 32px;
}
.section-headline em {
  font-style: italic;
  color: var(--secondary);
}

.intro-body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: #4a4035;
  margin-bottom: 28px;
}

.intro-body + .intro-body { margin-top: -12px; }

.text-link {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  transition: gap 0.2s;
}
.text-link::after { content: '\2192'; font-size: 14px; }
.text-link:hover { gap: 16px; }

/* ─────────────────────────────────────
   PROCESS SECTION
───────────────────────────────────── */
.section-process {
  padding: 120px 64px;
  background: var(--base-dark);
  border-bottom: 1px solid var(--rule);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.process-step {
  background: var(--base-dark);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}
.process-step:hover { background: var(--base); }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(176, 90, 56, 0.18);
  line-height: 1;
  margin-bottom: 24px;
  position: absolute;
  top: 28px;
  right: 32px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--type);
  margin-bottom: 14px;
}

.step-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--secondary);
}

/* ─────────────────────────────────────
   PORTFOLIO SECTION — SLIDER
───────────────────────────────────── */
.section-portfolio {
  padding: 120px 0 120px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.portfolio-header {
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 18px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
  border-radius: var(--radius);
}
.slider-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(176,90,56,0.04);
}
.slider-btn:disabled { opacity: 0.3; cursor: default; }
.slider-btn:disabled:hover { border-color: var(--rule); color: var(--secondary); background: transparent; }

.slider-counter {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--secondary);
  min-width: 48px;
  text-align: center;
}

.slider-viewport {
  overflow: hidden;
  cursor: grab;
}
.slider-viewport:active { cursor: grabbing; }

.slider-track {
  display: flex;
  gap: 2px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 0 64px;
}

.slide {
  flex: 0 0 calc(50% - 33px);
  position: relative;
  overflow: hidden;
}

.slide-img {
  height: 520px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 28px 32px;
  background-size: cover;
  background-position: center;
  background-color: #4a3828;
  transition: transform 0.55s ease;
}
.slide-img {
  background-image: none;
}
.slide-img.loaded {
  background-image: var(--bg);
}

.slide-01 { --bg: linear-gradient(to bottom, rgba(28,18,10,0.05) 0%, rgba(28,18,10,0.72) 100%), url('/img/work-01.webp'); }
.slide-02 { --bg: linear-gradient(to bottom, rgba(28,18,10,0.05) 0%, rgba(28,18,10,0.72) 100%), url('/img/work-02.webp'); }
.slide-03 { --bg: linear-gradient(to bottom, rgba(28,18,10,0.05) 0%, rgba(28,18,10,0.72) 100%), url('/img/work-03.webp'); }
.slide-04 { --bg: linear-gradient(to bottom, rgba(28,18,10,0.05) 0%, rgba(28,18,10,0.72) 100%), url('/img/work-04.webp'); }
.slide-05 { --bg: linear-gradient(to bottom, rgba(28,18,10,0.05) 0%, rgba(28,18,10,0.72) 100%), url('/img/work-05.webp'); }
.slide-06 { --bg: linear-gradient(to bottom, rgba(28,18,10,0.05) 0%, rgba(28,18,10,0.72) 100%), url('/img/work-06.webp'); }

.slide:hover .slide-img { transform: scale(1.02); }

.slide-caption { position: relative; z-index: 2; width: 100%; }
.slide-caption .cap-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,232,220,0.5);
  margin-bottom: 6px;
}
.slide-caption .cap-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--base);
  line-height: 1.2;
}

.slider-dots {
  display: flex;
  gap: 6px;
  padding: 32px 64px 0;
}
.slider-dot {
  width: 24px;
  height: 2px;
  background: var(--rule);
  transition: background 0.25s, width 0.25s;
  cursor: pointer;
}
.slider-dot.active { background: var(--accent); width: 40px; }

/* ─────────────────────────────────────
   DIFFERENTIATORS / PROOF SECTION
───────────────────────────────────── */
.section-proof {
  background: var(--type);
  padding: 120px 64px;
  border-bottom: 1px solid rgba(240,232,220,0.08);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.proof-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--base);
  margin-bottom: 28px;
}
.proof-headline em { font-style: italic; color: rgba(240,232,220,0.55); }

.proof-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240,232,220,0.55);
  margin-bottom: 40px;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(240,232,220,0.1);
  padding-top: 40px;
}

.proof-stat {
  padding-right: 32px;
  border-right: 1px solid rgba(240,232,220,0.1);
}
.proof-stat:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.proof-stat:nth-child(2) { padding: 0 32px; }

.proof-stat .big-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--base);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.proof-stat .stat-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,232,220,0.35);
}

/* Right: vertical differentiator list */
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diff-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(240,232,220,0.08);
  align-items: flex-start;
}
.diff-item:first-child { padding-top: 0; }
.diff-item:last-child { border-bottom: none; }

.diff-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(176, 90, 56, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 16px;
  border-radius: var(--radius);
}

.diff-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--base);
  margin-bottom: 8px;
  line-height: 1.2;
}
.diff-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,232,220,0.45);
}

/* ─────────────────────────────────────
   CONTACT / QUICK COLLECT SECTION
───────────────────────────────────── */
.section-contact {
  padding: 120px 64px;
  background: var(--base);
  border-bottom: 1px solid var(--rule);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  max-width: 1100px;
}

.contact-left .section-headline { color: var(--type); margin-bottom: 20px; }
.contact-left .section-headline em { color: var(--secondary); }
.contact-left .section-eyebrow::before { background: var(--accent); }
.contact-left .section-eyebrow { color: var(--secondary); }

.contact-note {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--secondary);
  max-width: 400px;
  margin-bottom: 32px;
}

.contact-full-link {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.2s;
}
.contact-full-link::after { content: '\2192'; font-size: 14px; }
.contact-full-link:hover { gap: 16px; }

/* Quick-collect form */
.quick-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--base-dark);
  padding: 40px;
  border-radius: var(--radius);
}

.quick-form-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.quick-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.quick-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.quick-field:last-child { margin-bottom: 0; }

.quick-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
}

.quick-input {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--type);
  background: var(--base);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.quick-input:focus {
  border-color: var(--accent);
  background: rgba(176,90,56,0.04);
}
.quick-input::placeholder { color: var(--secondary); opacity: 0.5; }

.quick-submit {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--base);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 18px 36px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  margin-top: 28px;
  width: 100%;
  border-radius: var(--radius);
  -webkit-appearance: none;
  appearance: none;
}
.quick-submit:hover {
  background: transparent;
  color: var(--accent);
}

/* Quick-form error and honeypot */
.quick-form-error {
  display: none;
  font-size: 12px;
  font-weight: 400;
  color: #c0392b;
  padding: 12px 16px;
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: var(--radius);
  margin-top: 12px;
  line-height: 1.6;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Confirmation */
.quick-confirmation {
  display: none;
  padding: 40px 0;
}
.quick-confirmation.visible { display: block; }
.confirm-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 24px;
  border-radius: var(--radius);
}
.confirm-headline {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--type);
  margin-bottom: 12px;
  line-height: 1.2;
}
.confirm-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--secondary);
  max-width: 360px;
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: var(--type);
  padding: 64px 64px 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(240,232,220,0.1);
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--base);
  margin-bottom: 14px;
}
.footer-brand span { color: rgba(240,232,220,0.35); margin: 0 6px; }

.footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240,232,220,0.4);
  max-width: 260px;
}

.footer-col-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(240,232,220,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--base); }

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

.footer-copy {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(240,232,220,0.25);
}
.footer-credit {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(240,232,220,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit:hover { color: rgba(240,232,220,0.5); }

/* ─────────────────────────────────────
   ANIMATIONS
───────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.65; transform: scaleY(1.12); }
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 28px 32px; }
  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(44, 33, 24, 0.97);
    z-index: 105;
    padding: 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    font-size: 12px;
    letter-spacing: 0.26em;
    color: rgba(240,232,220,0.7);
    text-align: center;
    min-height: 48px;
    line-height: 48px;
  }
  .nav-links a:hover { color: var(--base); }
  .nav-links-cta { display: block; margin-top: 1.5rem; }
  .nav-links .nav-cta {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid rgba(240,232,220,0.45);
    color: var(--base);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
  }
  .hero-rule { left: 32px; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 0 32px 56px;
  }
  .hero-right { display: none; }
  .value-strip {
    grid-template-columns: 1fr;
    padding: 56px 32px;
    gap: 40px;
  }
  .value-item {
    border-right: none;
    border-bottom: 1px solid rgba(240,232,220,0.1);
    padding: 0 0 40px;
  }
  .value-item:last-child { border-bottom: none; }
  .section-intro, .proof-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 32px;
  }
  .section-contact { padding: 72px 32px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .section-process { padding: 72px 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .section-portfolio { padding: 72px 0; }
  .portfolio-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .slider-track { padding: 0 24px; }
  .slide { flex: 0 0 calc(85% - 12px); }
  .slide-img { height: 360px; }
  .slider-dots { padding: 24px 24px 0; }
  .proof-stats { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proof-stat:last-child { padding-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 0 32px 40px; }
  footer { padding: 48px 32px 36px; }
  .footer-bottom { padding: 0 0; flex-direction: column; gap: 12px; text-align: center; }
}

/* ─────────────────────────────────────
   ACCESSIBILITY
───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .hero-img { animation: none; transform: scale(1); }
}
