/* ============================================
   Design Renovation — Luxury Home Remodeling
   ============================================ */

/* Fonts loaded via <link rel="preconnect"> + <link rel="stylesheet"> in seo.php */

:root {
  /* Colors — warm, light, premium */
  --ink: #14110D;
  --ink-soft: #2A241D;
  --ink-muted: #6B6259;
  --ink-subtle: #9C9388;
  --line: #E5DED3;
  --line-soft: #F0EAE0;

  --paper: #FBF8F2;        /* warm off-white — dominant bg */
  --cream: #F4EEE2;        /* section contrast */
  --stone: #EAE3D5;        /* deeper contrast */
  --white: #FFFFFF;

  --brass: #B8956A;        /* primary accent */
  --brass-deep: #9A7A52;
  --brass-soft: #D4B887;
  --brass-tint: rgba(184, 149, 106, 0.08);

  --dark: #1A1612;         /* for contrast dark sections (contact) */
  --dark-soft: #221D17;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;

  /* Scale */
  --container: 1280px;
  --container-wide: 1440px;
  --radius: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ============================================
   Typography
   ============================================ */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.display-xl { font-size: clamp(56px, 8vw, 128px); }
.display-lg { font-size: clamp(44px, 6vw, 88px); }
.display-md { font-size: clamp(34px, 4.2vw, 64px); }
.display-sm { font-size: clamp(28px, 3vw, 44px); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.italic { font-style: italic; font-family: var(--font-display); font-weight: 300; }

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

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

section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }

/* ============================================
   Header — sticky, refined
   ============================================ */
.trust-bar {
  background: var(--ink);
  color: var(--paper);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 32px;
  text-align: center;
}
.trust-bar span { margin: 0 14px; opacity: 0.78; }
.trust-bar .dot { opacity: 0.35; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), padding 0.3s var(--ease);
}
.header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 248, 242, 0.96);
}

.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  transition: padding 0.3s var(--ease);
}
.header.scrolled .header-inner { padding: 14px 32px; }

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}
.logo-mark .amp { color: var(--brass); font-style: italic; }
.logo-sub {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav .nav-cta { display: none; }
.nav a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.phone-link svg { color: var(--brass); }
.phone-link:hover { color: var(--brass-deep); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass);
}
.btn-primary:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

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

.btn-ghost {
  padding: 14px 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.btn-ghost .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn-ghost::after {
  content: '';
  position: absolute;
  left: 0; right: 20px; bottom: 8px;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.btn-ghost:hover .arrow { transform: translateX(6px); }

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ============================================
   Light ambient animations
   ============================================ */
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes slow-zoom {
  0%, 100% { transform: scale(1.0); }
  50% { transform: scale(1.04); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}
@keyframes draw-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Hero mosaic — slow ken burns on main image, gentle float on badge */
.hero-img-main img { animation: slow-zoom 18s ease-in-out infinite; }
.hero-badge { animation: gentle-float 5s ease-in-out infinite; }
.hero-eyebrow .line { transform-origin: left; animation: draw-line 1.2s cubic-bezier(0.22,1,0.36,1) 0.3s both; }

/* Brass dividers — subtle shimmer */
.calculator::before { animation: shimmer 3.5s ease-in-out infinite; }

/* Service cards — gentle icon float on hover */
.service:hover .service-icon { animation: gentle-float 2.4s ease-in-out infinite; }

/* ============================================
   Hero — asymmetric editorial with image mosaic
   ============================================ */
.hero {
  padding: 80px 0 120px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 72vh;
}

.hero-copy {
  position: relative;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow .line {
  width: 48px;
  height: 1px;
  background: var(--brass);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-deep);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 460px;
  margin-bottom: 44px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 640px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-num .plus { color: var(--brass); font-size: 0.55em; font-style: italic; font-weight: 300; margin-left: 2px; }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Hero image mosaic */
.hero-mosaic {
  position: relative;
  height: 640px;
}
.hero-img {
  position: absolute;
  overflow: hidden;
  background: var(--stone);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-main {
  top: 0;
  right: 0;
  width: 72%;
  height: 82%;
  z-index: 2;
}
.hero-img-accent {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 48%;
  z-index: 3;
  border: 8px solid var(--paper);
}
.hero-badge {
  position: absolute;
  top: 24px;
  left: 0;
  background: var(--paper);
  padding: 18px 24px;
  z-index: 4;
  border: 1px solid var(--line);
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(20,17,13,0.06);
}
.hero-badge .stars { color: var(--brass); font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; line-height: 1; }
.hero-badge .rating { font-family: var(--font-display); font-size: 26px; font-weight: 500; line-height: 1.1; margin-bottom: 6px; white-space: nowrap; letter-spacing: -0.01em; }
.hero-badge .source { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); line-height: 1.2; }

/* ============================================
   Section header
   ============================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head-single {
  text-align: left;
  margin-bottom: 72px;
  max-width: 720px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.section-title em { font-style: italic; color: var(--brass-deep); font-weight: 300; }
.section-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 480px;
}

/* ============================================
   Services
   ============================================ */
.services {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.services-grid > .service:nth-child(-n+3) { grid-column: span 2; }
.services-grid > .service:nth-child(4)    { grid-column: 2 / span 2; }
.services-grid > .service:nth-child(5)    { grid-column: 4 / span 2; }
.service {
  background: var(--paper);
  padding: 52px 32px 36px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
  cursor: pointer;
}
.service:hover { background: var(--cream); }

/* Huge faded numeral sits behind the icon as an editorial backdrop */
.service-num {
  position: absolute;
  top: -18px;
  left: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 210px;
  line-height: 0.9;
  color: var(--brass);
  opacity: 0.14;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  margin: 0;
  z-index: 0;
  transform-origin: top left;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.service:hover .service-num {
  opacity: 0.22;
  transform: scale(1.04);
  color: var(--brass-deep);
}
@media (max-width: 1100px) {
  .service-num { font-size: 180px; }
}
@media (max-width: 900px) {
  .service-num { font-size: 200px; top: -14px; }
}
@media (max-width: 600px) {
  .service-num { font-size: 170px; top: -10px; left: 14px; }
}

/* Icon sits on top of the numeral, larger and more substantial */
.service-icon {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  margin-bottom: 30px;
  color: var(--ink);
  transition: transform 0.4s var(--ease), color 0.3s;
}
.service-icon svg {
  width: 64px;
  height: 64px;
  display: block;
}
.service:hover .service-icon {
  transform: translateY(-4px);
  color: var(--brass-deep);
}
@media (max-width: 600px) {
  .service-icon { margin-top: 36px; margin-bottom: 24px; }
  .service-icon svg { width: 56px; height: 56px; }
}

/* Keep text content above the numeral */
.service-name,
.service-desc,
.service-link {
  position: relative;
  z-index: 1;
}
.service-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: auto;
  padding-bottom: 24px;
}
.service-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.service-link .arrow { transition: transform 0.3s var(--ease); }
.service:hover .service-link .arrow { transform: translateX(6px); }

/* ============================================
   Portfolio
   ============================================ */
.portfolio {
  background: var(--cream);
  position: relative;
}

.portfolio-tweak-toggle {
  display: inline-flex;
  gap: 2px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 4px;
  margin-bottom: 40px;
}
.portfolio-tweak-toggle button {
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: all 0.2s;
}
.portfolio-tweak-toggle button.active {
  background: var(--ink);
  color: var(--paper);
}

/* Uniform grid */
.portfolio-grid.uniform {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.portfolio-grid.uniform .project {
  aspect-ratio: 4/5;
}

/* Masonry grid */
.portfolio-grid.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 20px;
}
.portfolio-grid.masonry .project:nth-child(1) { grid-row: span 3; grid-column: span 2; }
.portfolio-grid.masonry .project:nth-child(2) { grid-row: span 2; }
.portfolio-grid.masonry .project:nth-child(3) { grid-row: span 2; }
.portfolio-grid.masonry .project:nth-child(4) { grid-row: span 2; }
.portfolio-grid.masonry .project:nth-child(5) { grid-row: span 2; grid-column: span 2; }
.portfolio-grid.masonry .project:nth-child(6) { grid-row: span 3; }
.portfolio-grid.masonry .project:nth-child(7) { grid-row: span 3; }
.portfolio-grid.masonry .project:nth-child(8) { grid-row: span 2; }

/* Editorial — asymmetric like a magazine spread */
.portfolio-grid.editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  grid-auto-rows: 110px;
}
.portfolio-grid.editorial .project:nth-child(1) { grid-column: 1 / 8; grid-row: span 5; }
.portfolio-grid.editorial .project:nth-child(2) { grid-column: 8 / 13; grid-row: span 3; }
.portfolio-grid.editorial .project:nth-child(3) { grid-column: 8 / 13; grid-row: span 2; }
.portfolio-grid.editorial .project:nth-child(4) { grid-column: 1 / 5; grid-row: span 3; }
.portfolio-grid.editorial .project:nth-child(5) { grid-column: 5 / 9; grid-row: span 3; }
.portfolio-grid.editorial .project:nth-child(6) { grid-column: 9 / 13; grid-row: span 3; }
.portfolio-grid.editorial .project:nth-child(7) { grid-column: 1 / 8; grid-row: span 4; }
.portfolio-grid.editorial .project:nth-child(8) { grid-column: 8 / 13; grid-row: span 4; }

.project {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--stone);
  transition: transform 0.6s var(--ease);
}
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.project:hover img { transform: scale(1.06); }

.project-meta {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  color: var(--white);
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}
.project:hover .project-meta {
  transform: translateY(0);
  opacity: 1;
}
.project::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,17,13,0.7) 0%, rgba(20,17,13,0) 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 1;
}
.project:hover::after { opacity: 1; }

.project-type {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 6px;
}
.project-name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 500;
}

.project-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--paper);
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}

.portfolio-footer {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

/* ============================================
   Process
   ============================================ */
.process { background: var(--paper); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 20px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--paper);
  border: 1px solid var(--brass);
  color: var(--brass-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 32px;
  transition: all 0.4s var(--ease);
}
/* hover styles consolidated further down the stylesheet */
.step-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-duration {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 14px;
}
.step-desc {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.55;
}

.process-cta {
  margin-top: 80px;
  text-align: center;
}

/* ============================================
   Calculator
   ============================================ */
.calculator {
  background: var(--stone);
  position: relative;
  overflow: hidden;
}
.calculator::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px;
  height: 60px;
  background: var(--brass);
}

.calculator-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.calc-copy .section-title { margin-bottom: 20px; }
.calc-copy .section-sub { margin-bottom: 32px; }

.calc-examples {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.calc-examples-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.calc-example {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.calc-example span:last-child {
  font-family: var(--font-display);
  color: var(--brass-deep);
}

.calc-panel {
  background: var(--paper);
  padding: 48px;
  border: 1px solid var(--line);
}

.calc-question {
  margin-bottom: 32px;
}
.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.calc-label .step-indicator {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
  letter-spacing: 0.05em;
  font-size: 13px;
  text-transform: none;
}
.calc-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.calc-options.three { grid-template-columns: repeat(3, 1fr); }
.calc-option {
  padding: 14px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-align: center;
  color: var(--ink-soft);
}
.calc-option:hover { border-color: var(--brass); color: var(--ink); }
.calc-option.selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.calc-result {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.calc-result-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.calc-result-value {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  letter-spacing: -0.02em;
  flex-wrap: wrap;
}
.calc-result-value .dash {
  color: var(--brass);
  font-style: italic;
  font-weight: 300;
}
.calc-result-value .num {
  transition: opacity 0.3s;
}
.calc-result-note {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}
.calc-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: var(--paper);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  padding: 44px 36px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.testimonial:hover {
  background: var(--cream);
  transform: translateY(-4px);
  border-color: var(--brass);
}
.testimonial-stars {
  color: var(--brass);
  letter-spacing: 3px;
  margin-bottom: 24px;
  font-size: 14px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 32px;
  flex: 1;
}
.testimonial-text::before {
  content: '“';
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--brass);
  line-height: 0;
  margin-right: 4px;
  vertical-align: -22px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.testimonial-name { font-weight: 500; font-size: 14.5px; }
.testimonial-project {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
}

.testimonial-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.review-platforms {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.review-platform {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-platform-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}
.review-platform-score {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
}
.overall-rating {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.overall-rating .num {
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 500;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.overall-rating .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ============================================
   Trust / Awards
   ============================================ */
.trust {
  background: var(--cream);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner { text-align: center; }
.trust-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 36px;
  font-weight: 400;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-logo {
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.trust-logo:hover { color: var(--brass-deep); }
.trust-logo .sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  font-weight: 500;
}

/* ============================================
   Video section
   ============================================ */
.video-section-top {
  padding: 40px 0 80px !important;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.video-section-top .section-title { font-size: clamp(36px, 4vw, 56px); }
.video-section {
  background: var(--paper);
  padding: 100px 0;
}
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  isolation: isolate;
  max-width: 1200px;
  margin: 60px auto 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}
.video-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(20, 17, 13, 0.65) 0%, rgba(20, 17, 13, 0.25) 55%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s;
}
.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease), opacity 0.4s;
}
.video-wrap:hover img { transform: scale(1.04); opacity: 0.85; }

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(251,248,242,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 2;
}
.video-play::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(251,248,242,0.4);
  border-radius: 50%;
  animation: pulse-ring 2.4s var(--ease) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.video-wrap:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-play svg { color: var(--ink); margin-left: 4px; }

.video-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  color: var(--paper);
  z-index: 2;
}
.video-caption .type {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 6px;
}
.video-caption .name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

/* ============================================
   Contact — dark section
   ============================================ */
.contact {
  background: var(--dark);
  color: var(--paper);
  padding: 120px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}
.contact-head { margin-bottom: 48px; }
.contact-head .eyebrow { color: var(--brass-soft); margin-bottom: 18px; }
.contact-head .section-title { color: var(--paper); margin-bottom: 20px; }
.contact-head .section-title em { color: var(--brass-soft); }
.contact-head .section-sub { color: rgba(251,248,242,0.7); }

.contact-info {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}
.contact-info-row {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-row .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 10px;
}
.contact-info-row .value {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--paper);
}
.contact-info-row a:hover { color: var(--brass-soft); }

.contact-form {
  background: var(--dark-soft);
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.08);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--brass-soft);
}
.form-group textarea {
  min-height: 80px;
  resize: vertical;
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4B887' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; cursor: pointer; }
.form-group select option { background: #221D17; color: var(--paper); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.form-submit {
  width: 100%;
  margin-top: 16px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(251,248,242,0.6);
  padding: 80px 0 32px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-mark {
  color: var(--paper);
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  color: rgba(251,248,242,0.6);
}
.footer-socials a:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--paper);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }

/* ============================================
   Floating mobile CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
  display: none;
  gap: 8px;
}
.floating-cta .btn { flex: 1; padding: 16px; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-mosaic { height: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid > .service { grid-column: auto !important; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-grid::before { display: none; }
  .calculator-wrap { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .portfolio-grid.editorial { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .portfolio-grid.editorial .project { grid-column: span 1 !important; grid-row: span 1 !important; margin: 0 !important; }
  .portfolio-grid.masonry { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .trust-bar { font-size: 10px; padding: 8px 16px; }
  .trust-bar span { margin: 0 6px; }
  .nav { display: none; }
  .header-actions .phone-link { display: none; }
  .header-inner { padding: 16px; }
  .container, .container-wide { padding: 0 20px; }
  .hero { padding: 40px 0 80px; }
  .hero-mosaic { height: 420px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid.uniform { grid-template-columns: 1fr; }
  .portfolio-grid.editorial { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .portfolio-grid.masonry { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .portfolio-grid.masonry .project { grid-row: span 1 !important; grid-column: span 1 !important; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .calc-panel { padding: 28px 20px; }
  .calc-options { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 20px; }
  .floating-cta { display: flex; }
  body { padding-bottom: 72px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 42px; }
  .overall-rating { flex-direction: column; align-items: flex-start; gap: 4px; }
  .testimonial-footer { flex-direction: column; align-items: flex-start; }
  .review-platforms { gap: 24px; }
}


/* ============================================
   SQ FT SLIDER (calculator)
   ============================================ */
.calc-sqft-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}
.calc-sqft-display {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
}
.calc-sqft-display .num {
  font-size: 42px;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s;
}
.calc-sqft-unit {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-family: var(--font-body);
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin: 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brass);
  cursor: grab;
  border: 3px solid var(--paper);
  box-shadow: 0 2px 8px rgba(180, 146, 88, 0.35), 0 0 0 1px var(--brass);
  transition: transform 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }
.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brass);
  cursor: grab;
  border: 3px solid var(--paper);
  box-shadow: 0 2px 8px rgba(180, 146, 88, 0.35), 0 0 0 1px var(--brass);
}
.calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-family: var(--font-body);
}

/* ============================================
   TESTIMONIAL SLIDER
   ============================================ */
.testimonial-slider {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.15, 1);
  will-change: transform;
}
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
}
.testimonial-card {
  position: relative;
  padding: 72px 72px 64px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
  transition: border-color 0.4s var(--ease);
}
.testimonial-card:hover { border-color: var(--brass); }
.testimonial-quote-mark {
  position: absolute;
  top: 8px;
  left: 36px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 180px;
  line-height: 1;
  color: var(--brass);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}
.testimonial-card .testimonial-stars {
  color: var(--brass);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.testimonial-card .testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 680px;
  position: relative;
  z-index: 1;
  text-wrap: pretty;
}
.testimonial-card .testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.testimonial-card .testimonial-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.testimonial-card .testimonial-project {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}
.testimonial-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.testimonial-arrow:hover {
  background: var(--brass);
  color: var(--paper);
  border-color: var(--brass);
  transform: translateY(-2px);
}
.testimonial-arrow:active { transform: translateY(0); }
.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.testimonial-dot.active {
  background: var(--brass);
  width: 28px;
  border-radius: 4px;
}
.testimonial-dot:hover:not(.active) { background: var(--ink-muted); }

@media (max-width: 768px) {
  .testimonial-card { padding: 56px 32px 48px; min-height: 280px; }
  .testimonial-quote-mark { font-size: 120px; top: 4px; left: 20px; }
  .testimonial-card .testimonial-text { font-size: 19px; }
}


/* ============================================
   LOGO — remove the & visual
   ============================================ */
.logo-mark .logo-space {
  display: inline-block;
  width: 10px;
}

/* ============================================
   QUIZ FLOW — Step 2 inside calculator
   ============================================ */
.quiz-step-2 {
  flex-direction: column;
  gap: 0;
}
.quiz-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px 10px 6px 6px;
  cursor: pointer;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.quiz-back:hover { color: var(--brass); transform: translateX(-2px); }
.quiz-step-2 .step-indicator {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}

.quiz-summary {
  background: var(--cream);
  padding: 24px 26px;
  border-left: 3px solid var(--brass);
  margin-bottom: 32px;
  animation: slideInFromRight 0.5s cubic-bezier(0.4,0,0.15,1) both;
}
.quiz-summary-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.quiz-summary-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.quiz-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}
.quiz-summary-meta span + span { }

.quiz-intro { margin-bottom: 24px; }
.quiz-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.quiz-title em {
  font-style: italic;
  color: var(--brass);
  font-weight: 300;
}
.quiz-sub {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
}

.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quiz-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.quiz-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quiz-form label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.quiz-form input,
.quiz-form textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.quiz-form textarea { resize: vertical; min-height: 80px; font-family: var(--font-body); }
.quiz-form input:focus,
.quiz-form textarea:focus { border-color: var(--brass); }

.quiz-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 6px;
}
.quiz-trust-icon {
  color: var(--brass);
  flex-shrink: 0;
  stroke-width: 1.5;
}

.quiz-success {
  text-align: center;
  padding: 20px 0;
  animation: fadeInUp 0.6s both;
}
.quiz-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: popIn 0.55s cubic-bezier(0.4, 1.4, 0.6, 1) both;
}

@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.4); }
  70% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .quiz-form .form-row { grid-template-columns: 1fr; }
  .quiz-summary-value { font-size: 26px; }
}

/* ============================================
   ADDITIONAL ANIMATIONS — punch up the whole site
   ============================================ */
/* Project cards: scale image on hover, subtle gold lift */
.project {
  position: relative;
  overflow: hidden;
}
.project img {
  transition: transform 0.9s cubic-bezier(0.2, 0, 0.1, 1), filter 0.6s;
}
.project:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) brightness(1.02);
}
.project-meta {
  transition: transform 0.5s var(--ease);
}
.project:hover .project-meta {
  transform: translateY(-4px);
}

/* Service cards: animated gold underline */
.service { position: relative; }
.service::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: width 0.5s cubic-bezier(0.2, 0, 0, 1);
}
.service:hover::after { width: 100%; }

/* Stat numbers: subtle counter-pulse on reveal */
.stat-num {
  background-image: linear-gradient(180deg, var(--ink) 0%, var(--ink) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.reveal.visible .stat {
  animation: fadeInUp 0.7s cubic-bezier(0.2, 0.6, 0.3, 1) both;
}
.reveal.visible .stat:nth-child(2) { animation-delay: 0.08s; }
.reveal.visible .stat:nth-child(3) { animation-delay: 0.16s; }
.reveal.visible .stat:nth-child(4) { animation-delay: 0.24s; }

/* Brass button: animated shimmer on hover */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.btn-primary:hover::before { left: 130%; }

/* Floating gold orb on hero badge — already floats; intensify slightly */
.hero-badge { animation: heroBadgeFloat 6s ease-in-out infinite; }
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Process step numbers: light digit on brass disc on hover */
.process-step .step-num {
  transition: background 0.4s, color 0.4s, transform 0.4s, border-color 0.4s;
}
.process-step:hover .step-num {
  background: var(--brass);
  color: var(--paper);
  border-color: var(--brass);
  transform: scale(1.06);
}

/* Review platform rows: arrow nudge on hover */
.review-platform {
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.review-platform:hover {
  transform: translateX(4px);
  border-color: var(--brass);
}

/* Gentle page-load hero title reveal */
.hero-title em {
  display: inline-block;
  animation: italicBreathe 6s ease-in-out infinite;
}
@keyframes italicBreathe {
  0%, 100% { color: var(--brass); }
  50% { color: color-mix(in oklch, var(--brass), white 12%); }
}

/* Calc result price pulse when values change */
.calc-result-value .num {
  transition: color 0.3s;
}

/* Smooth scroll globally */
html { scroll-behavior: smooth; }


/* ============================================
   REVIEW PLATFORMS — featured advantage cards
   ============================================ */
.review-platforms-featured {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.45s cubic-bezier(0.2, 0, 0.1, 1);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: var(--brass);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.2, 0, 0.1, 1);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(20, 17, 13, 0.16);
  border-color: var(--brass);
}
.review-card:hover::before { transform: scaleY(1); }

.review-card-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.3, 1.1);
}
.review-card:hover .review-card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.review-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.review-card-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.review-card-score {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 4px 0 6px;
}
.review-card-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.review-card-stars {
  color: var(--brass);
  letter-spacing: 2px;
  font-size: 13px;
  white-space: nowrap;
}
.review-card-sub {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* ============================================
   REVIEW OVERALL — divider line under cards
   ============================================ */
.review-overall {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
.review-overall-divider {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.review-overall-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.review-overall-stars {
  color: var(--brass);
  letter-spacing: 3px;
  font-size: 15px;
}
.review-overall-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  font-weight: 400;
}
.review-overall-text strong {
  font-style: normal;
  font-weight: 500;
  color: var(--brass);
}

@media (max-width: 900px) {
  .review-platforms-featured { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 22px; }
  .review-card-num { font-size: 38px; }
  .review-overall-inner { white-space: normal; }
  .review-overall-text { font-size: 16px; text-align: center; }
  .review-overall { flex-direction: column; gap: 16px; }
}


/* ============================================
   HONEYPOT (anti-spam, hidden to humans)
   ============================================ */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  tab-index: -1 !important;
}


/* ============================================
   FORM ERROR MESSAGE
   ============================================ */
.form-error {
  padding: 12px 16px;
  margin: 14px 0 0;
  background: rgba(200, 60, 60, 0.08);
  border-left: 3px solid #c83c3c;
  color: #c83c3c;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--font-body);
}
.contact-form .form-error {
  background: rgba(255, 180, 180, 0.08);
  border-left-color: #e58a8a;
  color: #f4c8c8;
}

.btn:disabled,
.form-submit:disabled {
  opacity: 0.55;
  cursor: wait;
  pointer-events: none;
}


/* ============================================
   MOBILE NAV — hamburger + right-side drawer
   ============================================ */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  z-index: 120;
  flex-shrink: 0;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s, top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

body.nav-open { overflow: hidden; }

/* Backdrop — hidden on desktop, revealed with the drawer on mobile */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 13, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  z-index: 90;
}
.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .header-actions { display: none; }

  .nav {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 380px);
    height: 100vh;
    height: 100dvh;                /* dynamic viewport — avoids URL-bar cut-off */
    min-height: -webkit-fill-available;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 84px 28px 32px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 100;
    overflow-y: auto;
    box-shadow: -24px 0 60px rgba(20, 17, 13, 0.2);
    box-sizing: border-box;
  }
  .nav.open { transform: translateX(0); }

  /* Mobile CTA inside drawer, pinned under the last link */
  .nav .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
    padding-top: 24px;
  }
  .nav .nav-cta .btn {
    text-align: center;
    justify-content: center;
    display: inline-flex;
    gap: 10px;
    align-items: center;
  }
  .nav .nav-cta a.phone-link {
    color: var(--ink-muted);
    font-size: 14px;
    padding: 12px 0 0;
    border: 0;
    font-family: var(--font-body);
    font-style: normal;
    letter-spacing: 0.02em;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  .nav .nav-cta a.phone-link::after { display: none; }

  .nav .nav-location {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
    padding: 6px 8px 4px;
    color: var(--ink-muted);
    font-family: var(--font-body);
    font-style: normal;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-align: left;
    border: 0;
  }
  .nav .nav-location svg {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--brass);
  }
  .nav .nav-location span { display: block; }

  .nav a {
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    color: var(--ink);
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0;
    text-transform: none;
  }
  .nav a::after { display: none; }   /* drop desktop underline animation */
  .nav > a:last-of-type { border-bottom: none; }
}


/* ============================================
   CALCULATOR / QUIZ — MOBILE REFINEMENTS
   ============================================ */
@media (max-width: 768px) {
  .calculator-wrap { grid-template-columns: 1fr; gap: 32px; }
  .calc-copy { text-align: left; }
  .calc-examples { margin-top: 24px; }
  .calc-result-value { flex-wrap: wrap; }
  .quiz-head { flex-wrap: wrap; gap: 12px; }
  .quiz-summary-value { font-size: 28px; flex-wrap: wrap; justify-content: center; }
  .quiz-summary-meta { flex-wrap: wrap; justify-content: center; gap: 6px 10px; }
  .calc-sqft-display .num { font-size: 34px; }
}


/* ============================================
   HERO / SECTIONS — EXTRA SMALL
   ============================================ */
@media (max-width: 560px) {
  .hero-title { font-size: clamp(40px, 11vw, 56px) !important; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
  .section-title { font-size: clamp(32px, 9vw, 42px) !important; }
  .trust-logos { gap: 20px 32px; }
  .trust-logo { font-size: 18px; }
  .calc-options { grid-template-columns: 1fr 1fr; }
  .calc-options.three { grid-template-columns: 1fr; }
  .hero-mosaic { height: 320px; }
  .contact-form { padding: 24px 18px; }
  .footer-main { padding: 40px 0 30px; }
  .floating-cta { padding: 10px 14px; gap: 10px; }
  .floating-cta .btn { padding: 12px 14px; font-size: 12px; }
}


/* ============================================
   QUIZ SUCCESS STATE
   ============================================ */
.quiz-success {
  text-align: center;
  padding: 30px 10px;
}
.quiz-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(180, 146, 88, 0.14);
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ============================================================ */
.legal-page {
  padding: 120px 0 100px;
  background: var(--paper);
}
.legal-article {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}
.legal-article h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
}
.legal-article .legal-effective {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin: 0 0 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-article h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
  color: var(--ink);
  margin: 48px 0 16px;
  letter-spacing: -0.005em;
}
.legal-article h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 32px 0 12px;
}
.legal-article p {
  margin: 0 0 18px;
}
.legal-article ul {
  margin: 0 0 18px;
  padding: 0 0 0 22px;
}
.legal-article ul li {
  margin: 0 0 8px;
  padding-left: 6px;
}
.legal-article ul li::marker {
  color: var(--brass);
}
.legal-article a {
  color: var(--brass-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s var(--ease);
}
.legal-article a:hover {
  color: var(--ink);
}
.legal-article strong {
  color: var(--ink);
  font-weight: 600;
}
.legal-article code {
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--cream);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--ink);
}
.legal-article .legal-contact {
  margin-top: 8px;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 2px solid var(--brass);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 90px 0 72px;
  }
  .legal-article {
    font-size: 15px;
  }
  .legal-article h2 {
    font-size: 24px;
    margin-top: 40px;
  }
  .legal-article .legal-effective {
    margin-bottom: 36px;
  }
}

/* ============================================================ */
/* Design page (/design)                                        */
/* ============================================================ */

/* ---------- Hero with video ---------- */
.dn-hero {
  position: relative;
  min-height: 640px;
  height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}
.dn-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.dn-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,0.78) 0%, rgba(20,17,13,0.55) 45%, rgba(20,17,13,0.75) 100%);
  z-index: 1;
}
.dn-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.dn-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.dn-hero-eyebrow .line {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--brass);
}
.dn-hero-eyebrow .eyebrow {
  color: var(--brass);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}
.dn-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0 0 28px;
  max-width: 880px;
}
.dn-hero-title em {
  font-style: italic;
  color: var(--brass);
  font-weight: 300;
}
.dn-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(251,248,242,0.82);
  max-width: 560px;
  margin: 0 0 36px;
  font-family: var(--font-body);
}
.dn-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .dn-hero { height: auto; min-height: 560px; padding: 120px 0 80px; }
  .dn-hero-inner { padding: 0 24px; }
  .dn-hero-sub { font-size: 16px; }
}

/* ---------- Intro (split) ---------- */
.dn-intro {
  padding: 120px 0 100px;
  background: var(--paper);
}
.dn-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.dn-intro-copy .eyebrow {
  color: var(--brass);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}
.dn-intro-copy .section-title {
  margin-bottom: 28px;
}
.dn-intro-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 520px;
}
.dn-intro-tiles {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.dn-intro-tile {
  background: var(--cream);
  padding: 28px 30px;
  border-left: 2px solid var(--brass);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.dn-intro-tile:hover {
  transform: translateX(6px);
  background: #f3efe6;
}
.dn-intro-tile-icon {
  color: var(--brass);
  margin-bottom: 14px;
}
.dn-intro-tile-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}
.dn-intro-tile-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .dn-intro { padding: 80px 0 60px; }
  .dn-intro-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Audiences ---------- */
.dn-audiences {
  padding: 120px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dn-audiences-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}
.dn-audience-divider {
  width: 1px;
  background: var(--brass);
  opacity: 0.4;
  height: 100%;
  min-height: 260px;
  align-self: stretch;
  margin: 0 10px;
}
.dn-audience-icon {
  color: var(--brass);
  margin-bottom: 28px;
}
.dn-audience-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.dn-audience-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 440px;
}
.dn-audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dn-audience-list li {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  font-weight: 500;
}
.dn-audience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1px;
  background: var(--brass);
}

@media (max-width: 900px) {
  .dn-audiences { padding: 80px 0; }
  .dn-audiences-grid { grid-template-columns: 1fr; gap: 48px; }
  .dn-audience-divider { width: 60px; height: 1px; min-height: 0; margin: 0; justify-self: center; }
  .dn-audience-title { font-size: 30px; }
}

/* ---------- Process (adapts existing .process-step look) ---------- */
.dn-process {
  padding: 120px 0;
  background: var(--paper);
}

/* ---------- Gallery (editorial masonry) ---------- */
.dn-gallery {
  padding: 120px 0;
  background: var(--cream);
}
.dn-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
  margin-top: 56px;
}
.dn-gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--ink);
  margin: 0;
}
.dn-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), opacity 0.3s;
  opacity: 0.95;
}
.dn-gallery-item:hover img {
  transform: scale(1.06);
  opacity: 1;
}
.dn-gallery-item.dn-span-tall { grid-row: span 2; }
.dn-gallery-item.dn-span-wide { grid-column: span 2; }
.dn-gallery-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(180deg, rgba(20,17,13,0) 0%, rgba(20,17,13,0.85) 100%);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.dn-gallery-item:hover .dn-gallery-meta {
  opacity: 1;
  transform: translateY(0);
}
.dn-gallery-tag {
  color: var(--brass);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 900px) {
  .dn-gallery { padding: 80px 0; }
  .dn-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .dn-gallery-item.dn-span-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .dn-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .dn-gallery-item.dn-span-tall,
  .dn-gallery-item.dn-span-wide {
    grid-row: auto;
    grid-column: auto;
  }
  .dn-gallery-meta { opacity: 1; transform: translateY(0); }
}

/* ---------- Packages ---------- */
.dn-packages {
  padding: 120px 0;
  background: var(--paper);
}
.dn-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  align-items: stretch;
}
.dn-package {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.dn-package:hover {
  transform: translateY(-6px);
  border-color: var(--brass);
  box-shadow: 0 24px 60px rgba(20,17,13,0.12);
}
.dn-package-featured {
  transform: translateY(-14px);
  border-color: var(--brass);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(20,17,13,0.10);
}
.dn-package-featured:hover {
  transform: translateY(-20px);
}
.dn-package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 18px;
  z-index: 2;
  white-space: nowrap;
}
.dn-package-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}
.dn-package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dn-package:hover .dn-package-media img { transform: scale(1.06); }
.dn-package-body {
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dn-package-eyebrow {
  color: var(--brass);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.dn-package-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.dn-package-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.dn-package-divider {
  height: 1px;
  background: var(--line);
  margin: 0 0 20px;
}
.dn-package-meta {
  margin-bottom: 28px;
}
.dn-package-meta-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.dn-package-meta-value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.dn-package-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}
.dn-package-price {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 38px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.dn-package-cta {
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .dn-packages-grid { grid-template-columns: 1fr; gap: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .dn-package-featured { transform: none; }
  .dn-package-featured:hover { transform: translateY(-6px); }
}
@media (max-width: 900px) {
  .dn-packages { padding: 80px 0; }
}

/* ---------- Final CTA ---------- */
.dn-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.dn-cta::before {
  content: '3D';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 420px;
  line-height: 1;
  color: var(--brass);
  opacity: 0.06;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.dn-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.dn-cta-inner .eyebrow.light {
  color: var(--brass);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
  display: inline-block;
}
.dn-cta-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0 0 22px;
}
.dn-cta-title em {
  font-style: italic;
  color: var(--brass);
  font-weight: 300;
}
.dn-cta-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(251,248,242,0.75);
  margin: 0 0 34px;
  max-width: 500px;
}

@media (max-width: 900px) {
  .dn-cta { padding: 80px 0; }
  .dn-cta::before { font-size: 240px; right: -20px; }
}

/* ---------- Embedded form on Design page ---------- */
.dn-cta-form { padding: 100px 0; }
.dn-cta-form::before { display: none; }
.dn-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.dn-form-package-banner {
  background: var(--brass);
  color: var(--ink);
  padding: 14px 18px;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.dn-form-package-banner-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}
.dn-form-package-banner-value {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 900px) {
  .dn-cta-form { padding: 70px 0; }
  .dn-form-grid { grid-template-columns: 1fr; gap: 48px; }
}

