/* Integris Builds — demo design system (black / white / cream, no red) */
:root {
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --ink-muted: #4a4a4a;
  --line: #e6e4df;
  --line-strong: #d0cdc6;
  --cream: #f7f5f0;
  --cream-deep: #efece5;
  --white: #ffffff;
  --bone: #faf9f6;
  --shadow: 0 12px 40px rgba(10, 10, 10, 0.08);
  --radius: 2px;
  --nav-h: 72px;
  --max: 1160px;
  --font-serif: "Fraunces", "Instrument Serif", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  opacity: 0.85;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0 0 0.6em;
  font-variation-settings: "opsz" 96;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.028em;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
}

p {
  margin: 0 0 1em;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.lead {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 40rem;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 36;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink);
  vertical-align: middle;
  margin-right: 10px;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
}

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

.section-tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

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

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark p,
.section-dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.section-dark .eyebrow::before {
  background: rgba(255, 255, 255, 0.55);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s;
  white-space: nowrap;
}

.btn:hover {
  opacity: 1;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: #222;
}

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

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost-light:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--cream);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-link .chev {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.55;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-phone:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Dropdowns */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.55rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  z-index: 50;
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown,
.nav-item.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-radius: var(--radius);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}

.dropdown a:hover {
  background: var(--cream);
  opacity: 1;
}

.dropdown a.em {
  font-weight: 650;
  color: var(--ink);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: #111;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0 4.5rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.hero .eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 0.75rem;
  color: #fff;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
}

.hero-trust {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--white);
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.page-hero.has-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, url("/img/hero-1-pergola-twilight.jpg"));
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero.has-media::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.72));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0 3.25rem;
}

.page-hero h1,
.page-hero h2 {
  color: #fff;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero .eyebrow::before {
  background: rgba(255, 255, 255, 0.75);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.82);
}

/* —— Stats —— */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.stats-caption {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.95rem;
}

.stats-caption a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  color: var(--ink);
}

/* —— Cards —— */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.card-media {
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(145deg, #d9d5cc 0%, #b8b3a8 45%, #8f8a80 100%);
  margin: -1.5rem -1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.card-media.has-photo {
  background-color: #1a1a1a;
}

.card-media.tone-2 {
  background-color: #1a1a1a;
}

.card-media.tone-3 {
  background-color: #1a1a1a;
}

.card-media.tone-4 {
  background-color: #1a1a1a;
}

.card-media.tone-5 {
  background-color: #1a1a1a;
}

.card-media::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.includes {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  margin: 0;
}

.check-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--ink) 0 35%, transparent 36%);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  border-top: 1px solid var(--line-strong);
  padding-top: 1.25rem;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.steps-vert {
  display: grid;
  gap: 1.25rem;
  max-width: 42rem;
}

.steps-vert .step-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--ink);
}

/* Project cards */
.project-card {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(160deg, #2a2926 0%, #4a4741 40%, #1c1b19 100%);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.project-card.alt {
  background: linear-gradient(145deg, #3a3833, #6a655c 45%, #22201c);
}

.project-card .tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.project-card h3 {
  margin-bottom: 0.35rem;
}

.project-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Why / feature tiles */
.feature-tile {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.feature-tile h3 {
  margin-bottom: 0.45rem;
}

/* Reviews */
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  font-weight: 600;
}

.stars {
  letter-spacing: 0.08em;
  color: var(--ink);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
  height: 100%;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.review-card cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.review-card .meta {
  display: block;
  font-weight: 400;
  color: var(--ink-muted);
  margin-top: 0.2rem;
}

/* Values numbered */
.value-list {
  display: grid;
  gap: 1.5rem;
}

.value-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.value-item:last-child {
  border-bottom: 0;
}

.value-num {
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

/* FAQ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}

.faq-item h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0;
  margin-bottom: 0.55rem;
}

.faq-item p {
  margin: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.team-card {
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.team-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #d8d4cb, #9a958c 50%, #4a4742);
}

.team-photo.t2 { background: linear-gradient(150deg, #cfcabf, #7d786f 55%, #2e2c29); }
.team-photo.t3 { background: linear-gradient(135deg, #e2ddd3, #8f897f, #3a3834); }
.team-photo.t4 { background: linear-gradient(160deg, #d2cec4, #6f6a62, #1f1e1c); }
.team-photo.t5 { background: linear-gradient(140deg, #ebe6dc, #a09b91, #45423d); }

.team-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.65rem;
}

.team-bio {
  display: none;
  margin-top: 0.85rem;
}

.team-card.is-open .team-bio {
  display: block;
}

.bio-toggle {
  margin-top: 0.75rem;
  background: none;
  border: 0;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* City grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.city-grid a {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
}

.city-grid a:hover {
  background: var(--cream);
  border-color: var(--line-strong);
  opacity: 1;
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0;
}

.form-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.office-block {
  font-size: 1rem;
  line-height: 1.7;
}

.office-block strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

/* CTA band */
.cta-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin-inline: auto;
}

.cta-band .btn-row {
  justify-content: center;
}

/* Split media */
.media-block {
  aspect-ratio: 4 / 5;
  min-height: 360px;
  background:
    linear-gradient(165deg, #cfc9bc 0%, #8a857a 40%, #2f2d2a 100%);
  background-size: cover;
  background-position: center;
}

.media-block.has-photo {
  background-color: #222;
}

.media-block.wide {
  aspect-ratio: 16 / 10;
  min-height: 280px;
}

/* Prose */
.prose {
  max-width: 42rem;
}

.prose h3 {
  margin-top: 2rem;
}

.prose ul {
  padding-left: 1.2rem;
  color: var(--ink-muted);
}

.prose li {
  margin-bottom: 0.45rem;
}

/* Guide sections */
.guide-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.guide-block:last-child {
  border-bottom: 0;
}

/* Trust pills */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.trust-item {
  border-top: 1px solid var(--line-strong);
  padding-top: 1rem;
}

.trust-item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.trust-item span {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* Studio embed frame */
.studio-frame {
  border: 1px solid var(--line);
  background: var(--cream-deep);
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.studio-frame p {
  max-width: 28rem;
  margin-inline: auto;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-col a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-areas {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-areas a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.demo-note {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
}

/* Utility */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.link-arrow {
  font-weight: 650;
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions .nav-phone {
    display: none;
  }

  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.25rem;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0.25rem;
  }

  .site-header.is-open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-top: 1px solid var(--line);
    display: none;
    padding: 0.25rem 0 0.75rem;
    min-width: 0;
  }

  .site-header.is-open .nav-item.is-open .dropdown {
    display: block;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .steps,
  .stats,
  .footer-grid,
  .contact-split,
  .team-grid,
  .trust-row,
  .city-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .steps,
  .stats,
  .footer-grid,
  .contact-split,
  .team-grid,
  .trust-row,
  .city-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding-bottom: 4rem;
  }

  .nav-actions .btn {
    padding: 0.7rem 0.9rem;
    font-size: 0.72rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
