/* ==========================================================================
   alanward.tech — shared design system
   Every page on the site links this one file.
   Tokens, then reset, then components, in the order they appear on the page.
   ========================================================================== */

/* ── TOKENS ────────────────────────────────────────────────────────────── */

:root {
  --sand: #f5f0e8;
  --ink: #1a1a18;
  --brass: #b8976a;
  --mist: #e8e4dc;
  --deep: #0f0f0d;
  --text-secondary: #6b6560;

  --rule: rgba(26, 26, 24, 0.12);
  --rule-light: rgba(245, 240, 232, 0.14);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-y: 8rem;
  --measure: 1100px;
}

/* ── RESET ─────────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--sand);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, ul, ol, dl {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, blockquote { font-family: var(--font-display); }

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

img { height: auto; }

a { color: inherit; }

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

/* Keyboard focus — visible, in the site's own voice, never for mouse users. */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 200;
  background: var(--ink);
  color: var(--sand);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  transition: top 0.2s;
}

.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ── SHARED TYPE ───────────────────────────────────────────────────────── */

.section-label,
.philosophy-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}

.philosophy-label { margin-bottom: 2rem; }

.section-inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAV ───────────────────────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo svg { width: 44px; height: 44px; fill: currentColor; }

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sand);
  background: var(--ink);
  padding: 0.65rem 1.4rem;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--brass);
  color: var(--sand);
}

/* Mobile menu — hidden on desktop, replaces the link row below 900px. */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  position: relative;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: background 0.2s;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 6rem 2rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.nav-drawer.open { opacity: 1; visibility: visible; }

.nav-drawer a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  text-decoration: none;
  color: var(--ink);
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}

.nav-drawer a:last-of-type { border-bottom: 0; }

.nav-drawer a.nav-drawer-cta { color: var(--brass); }

.nav-drawer .nav-drawer-meta {
  margin-top: 2.5rem;
  font-size: 0.78rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

/* ── HERO ──────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5rem 6rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--brass);
}

/* The line that says why the work matters — display type, so it reads as
   part of the statement rather than as supporting copy. */
.hero-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 1.9vw, 1.8rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--brass);
  max-width: 30ch;
  text-wrap: balance;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-status {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  max-width: 400px;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero-status::before {
  content: '';
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  transform: translateY(-2px);
}

.btn-primary-dark {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sand);
  background: var(--ink);
  padding: 1rem 2rem;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary-dark:hover { background: var(--brass); color: var(--sand); }

.hero-secondary-link {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
}

.hero-secondary-link:hover { color: var(--ink); }

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--sand) 0%, transparent 20%);
  z-index: 1;
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── PROOF STRIP ───────────────────────────────────────────────────────── */
/* The credentials, moved up out of About so they land above the fold. */

.proof {
  background: var(--sand);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.proof-inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.proof-item {
  border-left: 1px solid var(--brass);
  padding-left: 1.25rem;
}

.proof-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.proof-item span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-secondary);
  text-wrap: pretty;
}

/* ── SERVICES ──────────────────────────────────────────────────────────── */

.services {
  padding: var(--section-y) 0;
  background: var(--sand);
}

.services-inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 2rem;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}

.services-header h2 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.services-header p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* DM Sans ships no true italic, so emphasis in body copy is carried by
   weight and colour rather than a synthesised slant. */
.services-header p em,
.process-note em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: stretch;
}

.service-card {
  background: var(--mist);
  padding: 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.3s;
}

.service-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid var(--brass);
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.75rem;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.service-scope {
  margin: 0 0 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  transition: border-color 0.3s;
}

.service-scope li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.service-scope li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 8px;
  height: 1px;
  background: var(--brass);
}

.service-cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
  margin-top: auto;
  transition: color 0.3s, border-color 0.3s;
}

.service-card:hover { background: var(--ink); }
.service-card:hover .service-name { color: var(--sand); }
.service-card:hover .service-desc,
.service-card:hover .service-scope li { color: rgba(245, 240, 232, 0.6); }
.service-card:hover .service-scope { border-color: var(--rule-light); }
.service-card:hover .service-cta { color: var(--brass); border-color: var(--brass); }

/* ── PROCESS ───────────────────────────────────────────────────────────── */

.process {
  padding: var(--section-y) 0;
  background: var(--mist);
}

.process-inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 2rem;
}

.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}

.process-header h2 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.process-header p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

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

.process-step { border-top: 1px solid var(--brass); padding-top: 1.5rem; }

.process-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(26, 26, 24, 0.18);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.process-note {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 620px;
}

.process-note a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.process-note a:hover { color: var(--brass); }

/* ── WORKSHOP BAND ─────────────────────────────────────────────────────── */
/* The brass band the countdown used to occupy. */

.workshop {
  background: var(--brass);
  padding: 5rem 2rem;
  text-align: center;
}

.workshop-inner { max-width: 720px; margin: 0 auto; }

.workshop-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 15, 13, 0.55);
  margin-bottom: 1.5rem;
}

.workshop h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--deep);
  margin-bottom: 1.5rem;
}

.workshop p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(15, 15, 13, 0.65);
  max-width: 560px;
  margin: 0 auto;
}

/* ── PHILOSOPHY ────────────────────────────────────────────────────────── */

.philosophy {
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--sand);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brass);
}

.philosophy-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.philosophy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.philosophy h2 em {
  font-style: italic;
  color: var(--brass);
}

.philosophy p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
  text-wrap: pretty;
  margin-bottom: 1.5rem;
}

.philosophy-quote {
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid var(--rule-light);
  max-width: 560px;
}

.philosophy-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.4;
  color: var(--brass);
  text-wrap: balance;
  margin-bottom: 0;
}

/* ── ABOUT ─────────────────────────────────────────────────────────────── */

.about {
  padding: var(--section-y) 0;
  background: var(--mist);
}

.about-inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: center;
}

.about-image { position: relative; }

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.about-image-caption {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--brass);
  color: var(--sand);
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.about-text h2 em {
  font-style: italic;
  color: var(--brass);
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.about-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.about-social a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.about-social a:hover { color: var(--brass); border-color: var(--brass); }

/* ── TESTIMONIALS ──────────────────────────────────────────────────────── */

.testimonials {
  padding: var(--section-y) 0;
  background: var(--sand);
}

.testimonials-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.testimonials .lead {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 3.5rem;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CONTACT ───────────────────────────────────────────────────────────── */

.contact {
  padding: var(--section-y) 0;
  background: var(--deep);
  color: var(--sand);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-photo {
  position: absolute;
  inset: 0;
  background-image: url('../img/webp/contact-clarinet.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 13, 0.5) 0%, rgba(15, 15, 13, 0.7) 100%);
  z-index: 1;
}

.contact::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brass);
  z-index: 3;
}

.contact-bg-text {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 18vw;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 2;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 4;
}

.contact h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contact h2 em {
  font-style: italic;
  color: var(--brass);
}

.contact p {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact .btn-primary-dark {
  background: var(--brass);
  color: var(--sand);
}

.contact .btn-primary-dark:hover {
  background: var(--sand);
  color: var(--ink);
}

.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.contact-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-links a:hover { color: var(--brass); }

/* ── FOOTER ────────────────────────────────────────────────────────────── */

footer {
  background: var(--deep);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  padding: 2.5rem 2rem;
  text-align: center;
}

footer p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.3);
}

footer a {
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--brass); }

/* ── SIMPLE PAGE (404 and future interior pages) ───────────────────────── */

.simple-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem;
  background: var(--sand);
}

.simple-page h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.simple-page h1 em { font-style: italic; color: var(--brass); }

.simple-page p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 2.5rem;
}

/* ── MOTION ────────────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reveal-on-scroll is opt-in: the hiding rule is scoped to .js, which is only
   added by script. With JavaScript off or broken, every section stays visible. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js [data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }

  .hero-eyebrow,
  .hero h1,
  .hero-lede,
  .hero-sub,
  .hero-actions,
  .hero-status,
  .hero-image { opacity: 1; animation: none; }

  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .proof-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 2.5rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem 2.5rem; }
}

@media (max-width: 900px) {
  :root { --section-y: 5.5rem; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 8rem 2rem 4rem; }
  .hero-image { height: 60vw; min-height: 260px; }
  .hero-image::after { background: linear-gradient(to bottom, var(--sand) 0%, transparent 30%); }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .site-nav .nav-cta { display: none; }

  .services-header,
  .process-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2.5rem 2rem; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-caption { right: 0; bottom: -1rem; }

  .workshop { padding: 4rem 2rem; }
  .contact-bg-text { font-size: 26vw; }
}

@media (max-width: 560px) {
  .proof-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-actions { gap: 1.5rem; }
  .section-inner,
  .services-inner,
  .process-inner,
  .about-inner,
  .testimonials-inner,
  .contact-inner { padding: 0 1.5rem; }
}
