:root {
  --bg: #100f0d;
  --bg-deep: #171410;
  --bg-soft: #201c17;
  --surface: rgba(27, 23, 18, 0.76);
  --surface-strong: rgba(31, 26, 20, 0.92);
  --surface-light: rgba(255, 247, 236, 0.06);
  --ink: #f7f0e4;
  --muted: #ccbda8;
  --line: rgba(218, 190, 147, 0.18);
  --line-strong: rgba(243, 220, 183, 0.34);
  --accent: #d2a66c;
  --accent-soft: #f2dcc0;
  --accent-deep: #8e6032;
  --stone: #b99a73;
  --radius-large: 38px;
  --radius-medium: 28px;
  --radius-small: 18px;
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.24);
  --shadow-deep: 0 48px 120px rgba(0, 0, 0, 0.42);
  --max-width: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(210, 166, 108, 0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, #11100d 0%, #16130f 38%, #100f0d 100%);
}

body::selection {
  background: rgba(210, 166, 108, 0.3);
}

.site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 20% 22%, rgba(210, 166, 108, 0.06), transparent 22%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 62px,
      rgba(232, 210, 174, 0.025) 63px,
      rgba(232, 210, 174, 0.025) 64px
    );
  mix-blend-mode: screen;
  opacity: 0.72;
  z-index: 0;
}

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

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 44px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 12, 10, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(180px, 20vw, 260px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-color: rgba(242, 220, 192, 0.42);
}

.site-nav a.button,
.site-nav a.button:hover,
.site-nav a.button:focus-visible {
  color: #16120e;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #1a140f;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
}

.button:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.eyebrow,
.mini-label,
.team-role {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-soft);
}

h1,
h2,
h3,
.hero-brand,
.hero-caption strong,
.plaster-caption strong {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

.hero {
  position: relative;
  width: 100vw;
  margin-top: 18px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: calc(100svh - 122px);
  display: flex;
  align-items: stretch;
  overflow: clip;
  background: #120f0d;
  border-radius: 0 0 44px 44px;
}

.hero-media,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 6, 5, 0.88) 0%, rgba(6, 6, 5, 0.58) 38%, rgba(6, 6, 5, 0.18) 72%, rgba(6, 6, 5, 0.4) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(0.96) contrast(1.02);
}

.hero-wash {
  background:
    radial-gradient(circle at 72% 32%, rgba(255, 232, 197, 0.22), transparent 18%),
    linear-gradient(180deg, transparent 38%, rgba(8, 8, 7, 0.24) 72%, rgba(8, 8, 7, 0.72) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  min-height: calc(100svh - 122px);
  margin: 0 auto;
  padding: 120px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.5fr);
  gap: 36px;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.team-preview-copy,
.team-hero-copy {
  max-width: 720px;
}

.hero-brand {
  margin: 14px 0 0;
  font-size: 1rem;
  color: var(--ink);
}

.hero h1 {
  margin: 18px 0 18px;
  max-width: 8.6ch;
  font-size: clamp(4.2rem, 9vw, 7.8rem);
  line-height: 0.94;
}

.hero-text,
.section-heading p,
.team-preview-copy p,
.process-step p,
.service-main p,
.work-copy p,
.qualification-card p,
.qualification-copy p,
.contact-copy p,
.contact-panel p,
.hero-caption p,
.team-hero-copy p,
.team-hero-panel p,
.team-copy p,
.team-note p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.hero-text {
  max-width: 40ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 34px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  max-width: 780px;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(13, 11, 9, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 0 0 8px rgba(210, 166, 108, 0.08);
  flex: 0 0 auto;
}

.hero-caption {
  align-self: end;
  justify-self: end;
  max-width: 340px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(11, 10, 8, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.hero-caption strong,
.plaster-caption strong,
.team-hero-panel strong {
  font-size: 1.5rem;
  line-height: 1.04;
}

.hero-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 1;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 245, 232, 0.82);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-scrollcue::before {
  content: "";
  width: 48px;
  height: 1px;
  background: rgba(255, 245, 232, 0.52);
}

.ticker-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 15, 12, 0.88);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  padding: 18px 0;
  color: var(--accent-soft);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 36px;
}

.ticker-track span::after {
  content: "•";
  color: rgba(242, 220, 192, 0.38);
}

.content-section {
  padding-top: 108px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.team-preview-copy h2,
.contact-copy h2,
.team-note h2,
.qualification-copy h3 {
  margin: 12px 0 14px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.team-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-top: 52px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 0 18px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.56;
  transition: opacity 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.process-step.is-active {
  opacity: 1;
  border-color: var(--line-strong);
  transform: translateX(6px);
}

.process-index,
.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(210, 166, 108, 0.1);
  color: var(--accent-soft);
  font-weight: 700;
}

.process-step h3,
.service-main h3,
.work-copy h3,
.qualification-card h3,
.contact-panel h3,
.team-copy h3 {
  margin: 0 0 10px;
  font-size: 1.54rem;
  line-height: 1.04;
}

.plaster-story {
  height: 220vh;
}

.plaster-sticky {
  position: sticky;
  top: 112px;
  height: calc(100svh - 140px);
  display: grid;
  align-items: center;
}

.plaster-stage {
  --plaster-progress: 14%;
  position: relative;
  min-height: min(76vh, 860px);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(46, 35, 24, 0.9), rgba(21, 18, 15, 0.96)),
    #17130f;
  box-shadow: var(--shadow-deep);
}

.plaster-base,
.plaster-finish,
.plaster-sheen {
  position: absolute;
  inset: 0;
}

.plaster-base {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 233, 204, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(183, 146, 101, 0.12), rgba(40, 30, 22, 0.16)),
    linear-gradient(135deg, #2a2119, #1a1612);
}

.plaster-base::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 10px,
      transparent 10px,
      transparent 28px
    );
  mix-blend-mode: screen;
  opacity: 0.5;
}

.plaster-base strong {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.plaster-finish {
  clip-path: inset(0 calc(100% - var(--plaster-progress)) 0 0 round 34px);
  transition: clip-path 120ms linear;
}

.plaster-finish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plaster-sheen {
  width: 24%;
  left: calc(var(--plaster-progress) - 12%);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 248, 230, 0.38), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  opacity: 0.55;
  filter: blur(10px);
  transition: left 120ms linear;
}

.plaster-trowel {
  position: absolute;
  top: 9%;
  bottom: 15%;
  left: calc(var(--plaster-progress) - 8%);
  width: clamp(74px, 9vw, 118px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(210, 190, 166, 0.34)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 22px 40px rgba(0, 0, 0, 0.2);
  transform: skewX(-10deg);
  transition: left 120ms linear;
}

.plaster-trowel::before {
  content: "";
  position: absolute;
  inset: 10% 16% auto auto;
  width: 36px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(180deg, #433124, #2a1f18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.plaster-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 520px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(11, 10, 8, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.services-section {
  border-top: 1px solid var(--line);
}

.service-lines {
  display: grid;
}

.service-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.service-note {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-align: right;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(18, 16, 13, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0) 38%, rgba(10, 9, 8, 0.86) 100%);
}

.work-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.work-card-wide {
  grid-column: span 8;
}

.work-card-tall {
  min-height: 640px;
}

.work-card-tall img {
  min-height: 640px;
}

.work-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.work-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 220, 192, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.qualification-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.qualification-copy {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.qualification-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.qualification-card,
.contact-panel,
.team-card,
.team-hero-panel,
.team-note {
  padding: 26px;
  border-radius: var(--radius-medium);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.qualification-card {
  min-height: 220px;
}

.contact-section {
  margin: 108px 0 36px;
  padding: 38px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 18% 18%, rgba(210, 166, 108, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(32, 27, 21, 0.96), rgba(15, 13, 11, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 24px;
  align-items: center;
}

.contact-panel {
  background: rgba(13, 12, 10, 0.72);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 78%, white 22%);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(242, 220, 192, 0.38);
  box-shadow: 0 0 0 4px rgba(210, 166, 108, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-actions .button {
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-note a {
  color: var(--accent-soft);
  font-weight: 700;
}

.form-status {
  min-height: 1.7em;
  font-size: 0.94rem;
}

.form-status[data-state="loading"] {
  color: var(--accent-soft);
}

.form-status[data-state="success"] {
  color: #d8c594;
}

.form-status[data-state="error"] {
  color: #f0b3a9;
}

.team-hero {
  position: relative;
  width: 100vw;
  margin-top: 18px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 142px clamp(20px, calc((100vw - var(--max-width)) / 2 + 16px), 48px) 88px;
  background:
    radial-gradient(circle at 78% 22%, rgba(242, 220, 192, 0.14), transparent 18%),
    linear-gradient(135deg, rgba(24, 20, 16, 0.96), rgba(13, 11, 9, 0.94));
  border-radius: 0 0 44px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: end;
}

.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 76px,
      rgba(255, 255, 255, 0.03) 77px,
      rgba(255, 255, 255, 0.03) 78px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
  opacity: 0.7;
  pointer-events: none;
}

.team-hero-copy,
.team-hero-panel {
  position: relative;
  z-index: 1;
}

.team-hero-copy h1 {
  margin: 14px 0 16px;
  max-width: 10ch;
  font-size: clamp(3.8rem, 8vw, 6.8rem);
  line-height: 0.94;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  grid-column: span 4;
  display: grid;
  gap: 18px;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(32, 27, 21, 0.92), rgba(16, 14, 11, 0.92));
}

.team-photo {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 240, 218, 0.14), transparent 20%),
    linear-gradient(160deg, rgba(205, 180, 150, 0.18), rgba(39, 31, 24, 0.82));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.team-photo::before {
  content: attr(data-initial);
  position: absolute;
  inset: auto 18px 18px auto;
  font-family: "Cormorant Garamond", serif;
  font-size: 9rem;
  line-height: 0.8;
  color: rgba(255, 249, 239, 0.16);
}

.team-photo span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(12, 10, 8, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  color: var(--muted);
}

.team-copy {
  display: grid;
  gap: 8px;
}

.team-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 6px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-branding,
.footer-meta {
  display: grid;
  gap: 8px;
}

.footer-logo {
  width: min(260px, 100%);
  height: auto;
}

.footer-meta a {
  color: var(--ink);
}

.site-credit {
  color: var(--accent-soft);
  font-weight: 700;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .hero-shell,
  .team-hero,
  .process-layout,
  .qualification-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-caption,
  .team-hero-panel {
    justify-self: start;
    max-width: 540px;
  }

  .process-copy {
    position: static;
  }

  .service-line {
    grid-template-columns: auto 1fr;
  }

  .service-note {
    grid-column: 2;
    text-align: left;
  }

  .work-card,
  .work-card-wide {
    grid-column: span 6;
  }

  .work-card-tall {
    grid-column: span 12;
  }

  .team-card {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  .content-section {
    padding-top: 80px;
  }

  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 14px;
  }

  .site-header {
    top: 12px;
    border-radius: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px;
  }

  .site-nav {
    width: 100%;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
  }

  .site-nav a[aria-current="page"] {
    text-decoration: none;
    background: rgba(242, 220, 192, 0.14);
    border-color: rgba(242, 220, 192, 0.24);
  }

  .hero,
  .team-hero {
    min-height: auto;
  }

  .hero-shell,
  .team-hero {
    gap: 20px;
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .hero-shell {
    width: min(calc(100% - 20px), var(--max-width));
    min-height: auto;
  }

  .hero h1,
  .section-heading h2,
  .team-preview-copy h2,
  .contact-copy h2,
  .team-note h2,
  .qualification-copy h3 {
    max-width: none;
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(3rem, 12vw, 4.7rem);
  }

  .team-hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 11vw, 4.6rem);
  }

  .hero-text,
  .section-heading p,
  .team-preview-copy p,
  .process-step p,
  .service-main p,
  .work-copy p,
  .qualification-card p,
  .qualification-copy p,
  .contact-copy p,
  .contact-panel p,
  .hero-caption p,
  .team-hero-copy p,
  .team-hero-panel p,
  .team-copy p,
  .team-note p,
  .site-footer p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-caption,
  .team-hero-panel {
    width: 100%;
    max-width: none;
    padding: 20px;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-points li {
    width: 100%;
  }

  .team-preview,
  .team-note,
  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

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

  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .plaster-story {
    height: auto;
  }

  .plaster-sticky {
    position: static;
    height: auto;
  }

  .process-copy {
    gap: 12px;
  }

  .process-step,
  .process-step.is-active {
    opacity: 1;
    transform: none;
  }

  .process-step {
    gap: 14px;
    padding: 16px 0 16px 14px;
  }

  .plaster-stage {
    min-height: 460px;
    --plaster-progress: 100%;
  }

  .plaster-sheen,
  .plaster-trowel {
    display: none;
  }

  .service-line,
  .qualification-list,
  .team-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card-wide,
  .work-card-tall,
  .team-card {
    grid-column: auto;
  }

  .service-line {
    gap: 12px;
    padding: 18px 0;
  }

  .service-number,
  .process-index {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .service-note {
    grid-column: auto;
    margin-top: 2px;
    font-size: 0.72rem;
    text-align: left;
  }

  .work-card {
    min-height: 280px;
    border-radius: 26px;
  }

  .work-card img {
    min-height: 280px;
  }

  .work-card-tall,
  .work-card-tall img {
    min-height: 420px;
  }

  .work-copy {
    padding: 18px;
  }

  .qualification-card,
  .contact-panel,
  .team-card,
  .team-hero-panel,
  .team-note {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-section {
    margin: 84px 0 28px;
    padding: 26px;
  }

  .team-photo {
    min-height: 260px;
  }

  .team-photo::before {
    font-size: 7rem;
  }

  .plaster-base {
    padding: 22px;
  }

  .plaster-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 18px;
  }
}

@media (max-width: 900px) and (min-width: 641px) and (orientation: portrait) {
  .content-section {
    padding-top: 88px;
  }

  .hero-shell,
  .team-hero {
    gap: 24px;
    padding-top: 104px;
    padding-bottom: 64px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.6rem, 8vw, 5rem);
  }

  .team-hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3.4rem, 7vw, 4.8rem);
  }

  .hero-text,
  .team-hero-copy p {
    max-width: 52ch;
  }

  .hero-actions {
    max-width: 520px;
  }

  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-line {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
  }

  .service-note {
    grid-column: auto;
    margin-top: 0;
    text-align: right;
  }

  .qualification-list,
  .team-grid,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card,
  .work-card-wide,
  .team-card {
    grid-column: auto;
  }

  .work-card-tall {
    grid-column: 1 / -1;
  }

  .work-card {
    min-height: 320px;
  }

  .work-card img {
    min-height: 320px;
  }

  .work-card-tall,
  .work-card-tall img {
    min-height: 520px;
  }

  .qualification-card,
  .team-card {
    min-height: 100%;
  }

  .team-photo {
    min-height: 300px;
  }

  .contact-section {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .site-header {
    top: 10px;
    padding: 14px;
    border-radius: 24px;
  }

  .brand-logo {
    width: min(188px, 100%);
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a {
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .hero {
    border-radius: 0 0 30px 30px;
  }

  .hero-shell,
  .team-hero {
    gap: 22px;
    padding-top: 84px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 3.9rem);
  }

  .team-hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 3.8rem);
  }

  .section-heading h2,
  .team-preview-copy h2,
  .contact-copy h2,
  .team-note h2,
  .qualification-copy h3 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-points li,
  .hero-actions .button,
  .contact-actions .button,
  .team-preview .button,
  .team-note .button {
    width: 100%;
    justify-content: center;
  }

  .hero-scrollcue {
    display: none;
  }

  .plaster-stage {
    min-height: 360px;
    border-radius: 26px;
  }

  .plaster-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
  }

  .contact-section {
    padding: 22px;
    border-radius: 30px;
  }

  .form-field input,
  .form-field textarea {
    padding: 14px 16px;
  }

  .ticker-track {
    gap: 24px;
    font-size: 0.82rem;
    padding: 14px 0;
  }

  .team-photo {
    min-height: 220px;
  }

  .team-photo::before {
    font-size: 6rem;
  }
}

@media (max-width: 460px) {
  .content-section {
    padding-top: 72px;
  }

  .site-header {
    gap: 12px;
    padding: 12px;
  }

  .brand-logo {
    width: min(172px, 100%);
  }

  .site-nav a {
    padding: 8px 11px;
    font-size: 0.8rem;
  }

  .hero-shell,
  .team-hero {
    padding-top: 78px;
    padding-bottom: 42px;
  }

  .hero h1 {
    max-width: 7.5ch;
    font-size: clamp(2.45rem, 14vw, 3.5rem);
  }

  .team-hero-copy h1 {
    max-width: 8.5ch;
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .hero-brand,
  .hero-text,
  .section-heading p,
  .team-preview-copy p,
  .process-step p,
  .service-main p,
  .work-copy p,
  .qualification-card p,
  .qualification-copy p,
  .contact-copy p,
  .contact-panel p,
  .hero-caption p,
  .team-hero-copy p,
  .team-hero-panel p,
  .team-copy p,
  .team-note p,
  .site-footer p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .hero-caption,
  .team-hero-panel,
  .qualification-card,
  .contact-panel,
  .team-card,
  .team-note {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-points li {
    padding: 12px 14px;
    border-radius: 20px;
  }

  .process-step {
    grid-template-columns: 1fr;
    padding-left: 12px;
  }

  .process-index,
  .service-number {
    width: 38px;
    height: 38px;
  }

  .service-line {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-note {
    font-size: 0.7rem;
  }

  .work-card {
    min-height: 250px;
  }

  .work-card img {
    min-height: 250px;
  }

  .work-card-tall,
  .work-card-tall img {
    min-height: 360px;
  }

  .work-copy {
    padding: 16px;
  }

  .team-photo {
    min-height: 200px;
  }

  .team-photo::before {
    font-size: 5.4rem;
    inset: auto 14px 12px auto;
  }

  .plaster-stage {
    min-height: 320px;
  }

  .plaster-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .contact-section {
    margin-top: 72px;
    padding: 18px;
  }

  .form-field input,
  .form-field textarea {
    border-radius: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

/* ─── Accessibility utility ──────────────────────────────────────────── */

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


/* ─── Form field hint ────────────────────────────────────────────────── */

.form-field-hint {
  display: block;
  font-size: 0.78rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* ─── Contact form – success state ──────────────────────────────────── */

.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 22px;
  padding: 36px 32px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 20%, rgba(210, 166, 108, 0.18), transparent 45%),
    linear-gradient(135deg, rgba(28, 24, 18, 0.95), rgba(14, 11, 8, 0.95));
  border: 1px solid var(--line-strong);
  animation: success-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes success-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft, #c8995a), var(--accent, #d2a66c));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-style: normal;
  color: #1a130a;
  font-weight: 700;
  box-shadow: 0 0 0 10px rgba(210, 166, 108, 0.12), 0 0 0 20px rgba(210, 166, 108, 0.06);
  flex-shrink: 0;
}

.form-success-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-success-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--ink);
  font-weight: 600;
}

.form-success-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 42ch;
}

.contact-form-disabled {
  display: none;
}

