/* =============================================================================
   S.T.A.K Installations & Servicing Ltd
   v2 — Editorial / Warm / Confident
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Surfaces — warm light palette */
  --bg:            #FAF8F4;
  --bg-warm:       #F2EDE4;
  --surface:       #FFFFFF;
  --surface-warm:  #F7F3EC;

  /* Text */
  --ink:           #0E0D0B;
  --ink-soft:      #2B2925;
  --ink-mute:      #6E6960;
  --ink-faint:     #A39D92;

  /* Borders */
  --line:          #E5DFD2;
  --line-strong:   #C8C0AE;

  /* Brand */
  --orange:        #F58220;
  --orange-deep:   #C7641A;
  --orange-warm:   #FFF1E2;
  --orange-tint:   #FFE5C9;

  /* Status / hints */
  --green:         #4F7A4F;

  /* Type */
  --f-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --f-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --max:           1240px;
  --gutter:        clamp(20px, 5vw, 56px);
  --section-pad:   clamp(64px, 10vw, 140px);

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

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--orange); color: #fff; }

/* ============== Typography ============== */

.display, h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}

h1 {
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

p {
  color: var(--ink-soft);
  max-width: 62ch;
}

.lead {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 60ch;
}

em, .italic {
  font-style: italic;
  font-family: var(--f-display);
  font-weight: 600;
}

.label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--orange);
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange-deep);
}

/* ============== Layout primitives ============== */

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: var(--section-pad) 0; position: relative; }

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}
.divider-thick {
  height: 1px;
  background: var(--line-strong);
}

/* ============== Header / Nav ============== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo .mark { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo .text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .text strong {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-logo .text span {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 880px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-links a:hover { background: var(--orange-warm); color: var(--ink); }
.nav-links a.active { background: var(--ink); color: var(--bg); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
  transition: background 0.25s var(--ease);
}
.nav-cta:hover { background: var(--orange-deep); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (min-width: 880px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--gutter) 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
}
.mobile-menu a:last-of-type { border-bottom: none; padding-bottom: 0; }
.mobile-menu .mobile-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  border-bottom: none;
}

/* ============== Buttons ============== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
  background: var(--orange-warm);
  border-color: var(--orange-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding-left: 0;
}
.btn-ghost:hover { color: var(--orange-deep); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: var(--orange-deep); border-color: var(--orange-deep); }
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.25s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============== Hero (home) ============== */

.hero {
  padding: clamp(64px, 10vw, 140px) 0 clamp(48px, 8vw, 100px);
  position: relative;
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding: 7px 14px 7px 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.hero-mark .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(79, 122, 79, 0.15);
}
.hero-mark span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero h1 {
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 2%; right: 2%;
  bottom: -2px;
  height: 6px;
  background: var(--orange);
  z-index: -1;
  border-radius: 2px;
  transform-origin: left;
  animation: underlineIn 1.1s var(--ease) 0.4s both;
}
@keyframes underlineIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero .lead {
  margin-bottom: 40px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
}
@media (min-width: 700px) {
  .hero-meta { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}
.hero-meta .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta .item .v {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.hero-meta .item .l {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============== Section heads ============== */

.s-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 800px) {
  .s-head { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.s-head .label { margin-bottom: 18px; }
.s-head p { color: var(--ink-mute); font-size: 17px; }

/* ============== Service preview cards (home) ============== */

.svc-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .svc-cards { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.svc-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.svc-card .n {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--orange-deep);
  margin-bottom: 4px;
}
.svc-card h3 { letter-spacing: -0.02em; }
.svc-card p { font-size: 15px; color: var(--ink-mute); }
.svc-card .arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding-top: 6px;
}
.svc-card .arrow svg { width: 14px; height: 14px; transition: transform 0.25s; }
.svc-card:hover .arrow svg { transform: translateX(4px); color: var(--orange-deep); }

/* ============== "Who we work for" — three editorial cards ============== */

.audience {
  background: var(--bg-warm);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 48px);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 900px) { .audience-grid { grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-strong); border: 1px solid var(--line-strong); border-radius: 16px; overflow: hidden; } }

.audience-item {
  background: var(--bg-warm);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 900px) { .audience-item { background: var(--surface); } }
.audience-item .num {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  line-height: 0.9;
  margin-bottom: 6px;
}
.audience-item h3 { letter-spacing: -0.015em; }
.audience-item p { font-size: 15.5px; color: var(--ink-soft); }
.audience-item .tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* ============== Principles / How we work ============== */

.principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.principle {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 800px) {
  .principle { grid-template-columns: 96px 1fr 1.4fr; gap: 48px; align-items: baseline; }
}
.principle:first-child { padding-top: 0; }
.principle:last-child { border-bottom: none; }
.principle .num {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.principle h3 { font-size: clamp(20px, 2.2vw, 26px); }
.principle p { font-size: 16px; color: var(--ink-mute); }

/* ============== Pull quote ============== */

.pullquote {
  background: var(--ink);
  color: var(--bg);
  border-radius: 24px;
  padding: clamp(48px, 7vw, 80px) clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.pullquote .mark {
  font-family: var(--f-display);
  font-size: 120px;
  font-weight: 700;
  color: var(--orange);
  line-height: 0.7;
  position: absolute;
  top: 24px; left: 32px;
  opacity: 0.7;
}
.pullquote blockquote {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 32px 0 28px;
  max-width: 24ch;
  position: relative;
  z-index: 1;
}
.pullquote cite {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-style: normal;
}

/* ============== Coverage block ============== */

.coverage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .coverage { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.coverage-text h2 { margin-bottom: 24px; }
.coverage-text p { margin-bottom: 16px; }

.coverage-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  padding: 24px;
}
.coverage-visual svg { width: 100%; height: 100%; }
.coverage-visual .legend {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex;
  gap: 18px;
}
.coverage-visual .legend .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.coverage-visual .legend .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
}

/* ============== CTA strip ============== */

.cta-strip {
  background: var(--orange);
  border-radius: 24px;
  padding: clamp(48px, 7vw, 80px) clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
  color: var(--ink);
}
@media (min-width: 800px) {
  .cta-strip { grid-template-columns: 1.5fr 1fr; }
}
.cta-strip h2 { color: var(--ink); max-width: 18ch; }
.cta-strip p { color: var(--ink); font-size: 17px; margin-top: 14px; }
.cta-strip .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (min-width: 800px) { .cta-strip .cta-actions { justify-content: flex-end; } }
.cta-strip .btn-primary { background: var(--ink); color: var(--bg); }
.cta-strip .btn-primary:hover { background: #2A2925; }
.cta-strip .btn-secondary { background: rgba(255,255,255,0.9); border-color: rgba(0,0,0,0.1); }
.cta-strip .btn-secondary:hover { background: #fff; }

/* ============== Page head (sub-pages) ============== */

.page-head {
  padding: clamp(56px, 8vw, 120px) 0 clamp(32px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-head .crumb {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-head .crumb a:hover { color: var(--orange-deep); }
.page-head .crumb .sep { color: var(--line-strong); }
.page-head h1 { max-width: 16ch; margin-bottom: 24px; }
.page-head .lead { max-width: 60ch; }

/* ============== Service blocks (services page) ============== */

.svc-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: clamp(48px, 7vw, 80px) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .svc-block { grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
}
.svc-block:last-of-type { border-bottom: none; }
.svc-block .svc-num {
  font-family: var(--f-display);
  font-size: clamp(60px, 8vw, 96px);
  font-weight: 700;
  color: var(--orange);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.svc-block h2 { font-size: clamp(28px, 3.8vw, 44px); margin-bottom: 16px; }
.svc-block .svc-summary {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.4;
  max-width: 40ch;
}
.svc-block .svc-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-block .svc-body p { font-size: 16px; max-width: 60ch; }

.svc-included {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  margin-top: 16px;
}
.svc-included h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 18px;
}
.svc-included ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .svc-included ul { grid-template-columns: 1fr 1fr; gap: 10px 28px; } }
.svc-included li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.svc-included li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--orange);
  margin-top: 8px;
}

.svc-note {
  background: var(--orange-warm);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--ink);
  margin-top: 12px;
  border-left: 3px solid var(--orange);
}
.svc-note strong { font-weight: 700; }

/* ============== Lift types block ============== */

.lift-types {
  background: var(--bg-warm);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px);
}
.lift-types .lt-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 800px) { .lift-types .lt-head { grid-template-columns: 1fr 1fr; gap: 64px; } }
.lift-types ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
@media (min-width: 700px) { .lift-types ul { grid-template-columns: 1fr 1fr; gap: 0 64px; } }
.lift-types li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-strong);
  align-items: baseline;
}
.lift-types li .n {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}
.lift-types li strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.lift-types li span { font-size: 14.5px; color: var(--ink-mute); line-height: 1.4; }

/* ============== Standards / credentials band ============== */

.standards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
}
@media (min-width: 800px) {
  .standards { grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
}
.standards .std-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.standards .std-item:last-child { border-bottom: none; padding-bottom: 0; }
.standards .std-item .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.standards .std-item .v {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.standards .std-item .d { font-size: 14.5px; color: var(--ink-mute); margin-top: 2px; }

/* ============== About page bits ============== */

.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .about-story { grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
}
.about-story h2 { font-size: clamp(28px, 3.4vw, 40px); }
.about-story p { font-size: 17px; color: var(--ink-soft); margin-bottom: 18px; }
.about-story p:last-child { margin-bottom: 0; }

.about-company-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .about-company-card { grid-template-columns: 1fr 1fr; gap: 32px; } }
.about-company-card .ac-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-company-card .ac-item .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.about-company-card .ac-item .v {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.35;
}

.honesty {
  background: var(--ink);
  color: var(--bg);
  border-radius: 24px;
  padding: clamp(48px, 7vw, 80px) clamp(32px, 5vw, 64px);
}
.honesty .label { color: rgba(255, 232, 200, 0.7); }
.honesty .label::before { background: var(--orange); }
.honesty h2 { color: var(--bg); margin-bottom: 32px; max-width: 18ch; }
.honesty ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.honesty li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 232, 200, 0.12);
}
@media (min-width: 700px) {
  .honesty li { grid-template-columns: 240px 1fr; gap: 48px; align-items: baseline; }
}
.honesty li:last-child { border-bottom: none; padding-bottom: 0; }
.honesty li strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--bg);
  letter-spacing: -0.01em;
}
.honesty li p { color: rgba(250, 248, 244, 0.78); font-size: 15.5px; margin: 0; }

/* ============== Contact page ============== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; } }

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-channel {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.contact-channel:first-child { padding-top: 0; }
.contact-channel:last-child { border-bottom: none; }
.contact-channel .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 10px;
}
.contact-channel .v {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  word-break: break-word;
}
.contact-channel a.v:hover { color: var(--orange-deep); }
.contact-channel .d { font-size: 14.5px; color: var(--ink-mute); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { font-size: 14.5px; color: var(--ink-mute); margin-bottom: 28px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 15px;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--orange-warm);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.5; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (min-width: 600px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.form-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-mute);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.hours-table {
  width: 100%;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}
.hours-table .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.hours-table .row .d { font-weight: 600; color: var(--ink); }
.hours-table .row .t { color: var(--ink-mute); }

/* ============== Footer ============== */

.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(64px, 9vw, 120px) 0 32px;
  margin-top: clamp(48px, 7vw, 80px);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
}
.footer-brand .nav-logo .text strong { color: var(--bg); }
.footer-brand .nav-logo .text span { color: rgba(255, 232, 200, 0.6); }
.footer-brand p { color: rgba(250, 248, 244, 0.7); font-size: 15px; margin-top: 20px; max-width: 36ch; }

.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14.5px;
  color: rgba(250, 248, 244, 0.8);
  padding: 5px 0;
  font-family: var(--f-body);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.footer-col a:hover { color: var(--orange); }

.footer-base {
  border-top: 1px solid rgba(255, 232, 200, 0.12);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
}
.footer-base a:hover { color: var(--orange); }

/* ============== Reveal animations ============== */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero h1 em::after { animation: none; transform: scaleX(1); }
}

/* ============== Utility ============== */

.center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mt-8 { margin-top: 48px; }
.mt-12 { margin-top: 72px; }
.tag-line {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

/* --- Logo images (added) --- */
.nav-logo .logo-img { height: 46px; width: auto; display: block; }
.footer-brand .mark-img { width: 40px; height: auto; flex-shrink: 0; }
@media (max-width: 640px) {
  .nav-logo .logo-img { height: 36px; }
}

/* --- Photography (added) --- */
.photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.photo img { display: block; width: 100%; height: auto; }

.hero-photo { margin-top: 48px; }
.hero-photo img { aspect-ratio: 16 / 9; object-fit: cover; }

.svc-card .card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.audience-item .aud-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 18px;
}

.svc-photo { margin-bottom: 28px; }
.svc-photo img { aspect-ratio: 16 / 7; object-fit: cover; }

.about-photo { margin-top: 40px; }
.about-photo img { aspect-ratio: 16 / 7; object-fit: cover; }
