/* === SHARMA ENTERPRISES — Custom Styles === */

:root {
  --bg: #F5F3F0;
  --bg-alt: #E8E4DF;
  --text: #1A1A1A;
  --text-muted: #6B6560;
  --accent: #D4421E;
  --accent-hover: #B8371A;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'JetBrains Mono', monospace;
  --nav-height: 72px;
  --section-pad: clamp(80px, 12vh, 160px);
  --grid-gap: clamp(16px, 2vw, 40px);
  --max-width: 1400px;
  --radius: 0px;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* === SCROLL PROGRESS === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 10000;
  transition: none;
}

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 2px;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(245, 243, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9000;
  border-bottom: 1px solid var(--bg-alt);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo-text {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--text);
}

.nav-logo-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.nav-link-number {
  font-family: var(--font-accent);
  font-size: 11px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.nav-link-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

.nav-link:hover .nav-link-number,
.nav-link--active .nav-link-number {
  color: var(--accent);
}

.nav-link--active .nav-link-label {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.nav-cta {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  padding: 10px 24px;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: var(--accent);
}

.nav-menu-toggle {
  display: none;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* === HERO === */
.hero {
  height: 100vh;
  display: flex;
  position: relative;
  padding-top: var(--nav-height);
}

.hero-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg);
  padding: 40px;
  position: relative;
}

.hero-build-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-letter {
  font-family: var(--font-display);
  font-size: 18vw;
  line-height: 0.85;
  color: var(--text);
  display: block;
}

.hero-est {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 24px;
}

.hero-divider {
  width: 1px;
  background: var(--accent);
  align-self: stretch;
  flex-shrink: 0;
}

.hero-right {
  width: 60%;
  overflow: hidden;
  position: relative;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--text-muted);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 1; }
}

/* === INTRO STATEMENT === */
.intro-statement {
  background: var(--bg-alt);
  padding: var(--section-pad) 0;
}

.intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  text-align: center;
}

.intro-quote-wrapper {
  position: relative;
  width: 70%;
  margin: 0 auto;
}

.intro-quote-mark {
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

.intro-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.2;
  color: var(--text);
}

.intro-rule {
  width: 120px;
  height: 1px;
  background: var(--text-muted);
  margin: 40px auto;
}

.intro-tagline {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === SECTION LABEL (shared) === */
.section-label {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* === SERVICES PREVIEW === */
.services-preview {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 35% 65%;
  gap: var(--grid-gap);
}

.services-sticky {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
  align-self: start;
}

.services-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.services-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.services-cards {
  display: flex;
  flex-direction: column;
  gap: calc(var(--grid-gap) * 2);
}

.service-card {
  border-bottom: 1px solid var(--bg-alt);
  padding-bottom: calc(var(--grid-gap) * 2);
}

.service-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-number {
  font-family: var(--font-accent);
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.service-image-wrapper {
  overflow: hidden;
  margin-bottom: 20px;
}

.service-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s ease;
}

.service-card:hover .service-image {
  filter: grayscale(0%);
}

.service-title {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === INNOVATION WINDOW === */
.innovation-window {
  background: var(--bg-alt);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}

.innovation-label {
  text-align: center;
  margin-bottom: 40px;
}

.innovation-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  position: relative;
}

.innovation-text-left,
.innovation-text-right {
  font-family: var(--font-display);
  font-size: 20px;
  writing-mode: vertical-rl;
  white-space: nowrap;
  color: var(--text);
  opacity: 0;
}

.window-frame {
  width: 60vw;
  height: 50vh;
  border: 8px solid var(--text);
  overflow: hidden;
  transform: scale(0.3);
  flex-shrink: 0;
}

.window-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === CTA BAND === */
.cta-band {
  background: var(--accent);
  padding: 60px clamp(20px, 4vw, 60px);
  text-align: center;
}

.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 56px);
  color: #F5F3F0;
  margin-bottom: 12px;
}

.cta-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(245, 243, 240, 0.7);
  margin-bottom: 32px;
}

.cta-button {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F5F3F0;
  border: 2px solid #F5F3F0;
  padding: 16px 48px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #F5F3F0;
  transition: width 0.4s ease;
  z-index: -1;
}

.cta-button:hover {
  color: var(--accent);
}

.cta-button:hover::before {
  width: 100%;
}

/* === PAGE HEADER (craft.html, connect.html) === */
.page-header {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 0 60px 8vw;
  padding-top: var(--nav-height);
  background: var(--bg);
  overflow: hidden;
}

.page-header-watermark {
  position: absolute;
  top: calc(var(--nav-height) + 20px);
  right: 5vw;
  font-family: var(--font-display);
  font-size: 25vw;
  color: var(--text);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 140px);
  line-height: 1;
  margin-bottom: 16px;
}

.page-header-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
}

/* === SERVICE DEEP DIVE (craft.html) === */
.service-deep-dive {
  overflow: hidden;
}

.service-block {
  display: grid;
  min-height: 500px;
}

.service-block--img-left {
  grid-template-columns: 55% 45%;
  background: var(--bg);
}

.service-block--img-right {
  grid-template-columns: 45% 55%;
  background: var(--bg-alt);
}

.service-block--alt {
  background: var(--bg-alt);
}

.service-block-image {
  overflow: hidden;
}

.service-block-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s ease;
}

.service-block:hover .service-block-img {
  filter: grayscale(0%);
}

.service-block-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 6vw;
}

.service-block-title {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-block-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-block-list {
  font-family: var(--font-accent);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* === PROCESS STRIP (craft.html) === */
.process-strip {
  background: var(--bg-alt);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
}

.process-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  position: relative;
}

.process-line {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text-muted);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}

.process-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  background: var(--bg-alt);
  display: inline-block;
  padding: 0 12px;
}

.process-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === PULL QUOTE BREAK (craft.html) === */
.pull-quote-break {
  background: var(--bg);
  padding: calc(var(--section-pad) * 1.5) clamp(20px, 4vw, 60px);
}

.pull-quote-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.pull-quote-bar {
  width: 4px;
  height: 60px;
  background: var(--accent);
  margin: 0 auto 40px;
}

.pull-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 64px);
  line-height: 1.2;
  width: 75%;
  margin: 0 auto 24px;
}

.pull-quote-attr {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === CONTACT GRID (connect.html) === */
.contact-grid {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 55% 45%;
  gap: calc(var(--grid-gap) * 2);
}

.contact-form-heading {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 28px;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: font-size 0.3s ease, transform 0.3s ease;
}

.form-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--text-muted);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus {
  border-bottom-color: var(--accent);
}

.form-input:focus + .form-label,
.form-group:focus-within .form-label {
  font-size: 11px;
  transform: translateY(-4px);
  color: var(--accent);
}

.form-select {
  cursor: pointer;
}

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

.form-submit {
  width: 100%;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F5F3F0;
  background: var(--accent);
  border: none;
  padding: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--accent-hover);
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

.contact-info-col {
  padding-left: 40px;
}

.contact-block {
  margin-bottom: 32px;
}

.contact-block-label {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-block-value {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text);
  transition: color 0.3s ease;
}

.contact-block-value:hover {
  color: var(--accent);
}

.contact-block-address {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.contact-map {
  margin-top: 24px;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: 1px solid var(--bg-alt);
  filter: grayscale(100%);
}

/* === DIRECT LINE (connect.html) === */
.direct-line {
  background: var(--bg-alt);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
}

.direct-line-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.direct-card {
  text-align: center;
  padding: 40px 20px;
}

.direct-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--text);
  transition: color 0.3s ease;
}

.direct-card:hover .direct-icon {
  color: var(--accent);
}

.direct-icon svg {
  width: 100%;
  height: 100%;
}

.direct-label {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.direct-value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  transition: color 0.3s ease;
}

.direct-value:hover {
  color: var(--accent);
}

.direct-address {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
}

/* === CLOSING STATEMENT (connect.html) === */
.closing-statement {
  background: var(--bg);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
}

.closing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 80px;
  height: 1px;
  background: var(--text-muted);
  margin: 0 auto;
}

.closing-rule--top {
  margin-bottom: 32px;
}

.closing-rule--bottom {
  margin-top: 32px;
}

.closing-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 40px);
  line-height: 1.3;
}

/* === FOOTER === */
.site-footer {
  background: var(--text);
  color: var(--bg);
  padding: 60px 0 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--grid-gap);
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(245, 243, 240, 0.5);
}

.footer-heading {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 243, 240, 0.4);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(245, 243, 240, 0.7);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #F5F3F0;
}

.footer-address {
  font-size: 14px;
  color: rgba(245, 243, 240, 0.7);
  line-height: 1.5;
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 243, 240, 0.1);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(245, 243, 240, 0.4);
}

.footer-credit {
  font-family: var(--font-accent);
  font-size: 12px;
  color: rgba(245, 243, 240, 0.3);
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  animation: waPulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

/* === WORD SPANS (for animation) === */
.word {
  display: inline-block;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
  }

  .scroll-line {
    animation: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .window-frame {
    transform: scale(1) !important;
    border-width: 8px !important;
  }

  .innovation-text-left,
  .innovation-text-right {
    opacity: 1 !important;
  }

  .service-image,
  .service-block-img {
    transition-duration: 0s;
  }

  .cta-button::before {
    transition-duration: 0s;
  }
}

/* === RESPONSIVE — MOBILE === */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(245, 243, 240, 0.98);
    flex-direction: column;
    padding: 20px clamp(20px, 4vw, 60px) 24px;
    gap: 16px;
    border-bottom: 1px solid var(--bg-alt);
  }

  .nav-links--open {
    display: flex;
  }

  .nav-menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  /* Hero mobile */
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .hero-left {
    width: 100%;
    padding: 40px 20px;
    min-height: 50vh;
  }

  .hero-letter {
    font-size: 14vw;
  }

  .hero-divider {
    display: none;
  }

  .hero-right {
    width: 100%;
    height: 50vh;
  }

  .scroll-indicator {
    display: none;
  }

  /* Intro mobile */
  .intro-quote-wrapper {
    width: 90%;
  }

  .intro-quote-mark {
    font-size: 80px;
    top: -25px;
    left: -10px;
  }

  /* Services mobile */
  .services-inner {
    grid-template-columns: 1fr;
  }

  .services-sticky {
    position: static;
    margin-bottom: 32px;
  }

  .services-heading {
    font-size: clamp(28px, 7vw, 48px);
  }

  .services-desc {
    max-width: 100%;
  }

  /* Innovation window mobile */
  .innovation-container {
    flex-direction: column;
    gap: 20px;
  }

  .innovation-text-left,
  .innovation-text-right {
    display: none;
  }

  .window-frame {
    width: 85vw;
    height: 40vh;
  }

  /* Page header mobile */
  .page-header {
    height: auto;
    min-height: 50vh;
    padding: calc(var(--nav-height) + 40px) 20px 40px;
  }

  .page-header-title {
    font-size: clamp(48px, 14vw, 100px);
  }

  .page-header-watermark {
    font-size: 40vw;
    top: calc(var(--nav-height) + 10px);
  }

  /* Service blocks mobile */
  .service-block,
  .service-block--img-left,
  .service-block--img-right {
    grid-template-columns: 1fr;
  }

  .service-block--img-right .service-block-text {
    order: 2;
  }

  .service-block--img-right .service-block-image {
    order: 1;
  }

  .service-block-image {
    height: 280px;
  }

  .service-block-img {
    height: 280px;
  }

  .service-block-text {
    padding: 32px 20px;
  }

  /* Process strip mobile */
  .process-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 40px;
  }

  .process-line {
    top: 0;
    bottom: 0;
    left: 12px;
    right: auto;
    width: 1px;
    height: 100%;
  }

  .process-step {
    text-align: left;
  }

  .process-number {
    padding: 0 8px 0 0;
    background: var(--bg-alt);
  }

  /* Pull quote mobile */
  .pull-quote-text {
    width: 95%;
  }

  /* Contact grid mobile */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
  }

  .contact-info-col {
    padding-left: 0;
  }

  /* Direct line mobile */
  .direct-line-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .direct-card {
    padding: 24px 20px;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}