:root {
  --forest-green: #223322;
  --warm-tan: #d2b48c;
  --soft-white: #f8f5ef;
  --soft-sage: #dde5d8;
  --ink: #203022;
  --muted: #586257;
  --line: rgba(34, 51, 34, 0.12);
  --shadow: 0 18px 50px rgba(23, 35, 23, 0.12);
  --radius-xl: 32px;
  --radius-pill: 50px;
  --max-width: 1180px;
  --header-height: 104px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(210, 180, 140, 0.18), transparent 32%),
    linear-gradient(180deg, #fcfaf6 0%, var(--soft-white) 46%, #f3efe7 100%);
  line-height: 1.65;
}

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

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

button,
input,
textarea {
  font: inherit;
}

main {
  overflow: clip;
}

.page-grid {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 1rem 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  transition: padding 220ms ease;
}

.site-header.scrolled {
  padding: 0.7rem 0;
}

.nav-shell {
  width: min(calc(100% - 1.5rem), 1240px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  position: relative;
  background: transparent;
  border: 1px solid transparent;
  overflow: hidden;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.site-header.scrolled .nav-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 18px 40px rgba(18, 26, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.nav-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
  background:
    radial-gradient(130% 95% at 50% -18%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.05) 62%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(102deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 42%, rgba(210, 180, 140, 0.08) 100%);
}

.nav-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 32%),
    radial-gradient(85% 120% at 12% 50%, rgba(255, 255, 255, 0.08), transparent 52%),
    radial-gradient(85% 120% at 88% 50%, rgba(255, 255, 255, 0.08), transparent 52%);
}

.site-header.scrolled .nav-shell::before {
  opacity: 1;
}

.site-header.scrolled .nav-shell::after {
  opacity: 1;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  color: var(--forest-green);
}

.brand-logo,
.footer-logo {
  display: block;
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.brand-kicker,
.section-label,
.eyebrow,
.testimonial-card span,
.story-metrics span,
.timeline-item span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--forest-green);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.social-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(34, 51, 34, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: var(--forest-green);
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(210, 180, 140, 0.2);
  border-color: rgba(210, 180, 140, 0.55);
}

.social-link svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: currentColor;
}

.site-nav a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: rgba(32, 48, 34, 0.88);
  font-size: 0.96rem;
  font-weight: 300;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(34, 51, 34, 0.08);
  color: var(--forest-green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--forest-green);
  color: #fefcf8;
  font-weight: 400;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease, border-color 200ms ease;
  box-shadow: 0 14px 28px rgba(34, 51, 34, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #2a412a;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.button-nav {
  margin-left: 0.4rem;
  background: linear-gradient(135deg, var(--warm-tan), #e0c19d);
  color: var(--forest-green);
  font-weight: 300;
  box-shadow: 0 14px 28px rgba(210, 180, 140, 0.26);
}

.button-nav:hover,
.button-nav:focus-visible {
  background: linear-gradient(135deg, #d8bb95, #e7ccb0);
  color: var(--forest-green);
}

.home-page .site-header:not(.scrolled) .brand-mark,
.home-page .site-header:not(.scrolled) .site-nav a:not(.button),
.home-page .site-header:not(.scrolled) .social-link,
.home-page .site-header:not(.scrolled) .nav-toggle span {
  color: rgba(255, 255, 255, 0.95);
}

.hero .eyebrow {
  color: var(--warm-tan);
}

.home-page .site-header:not(.scrolled) .social-link {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.home-page .site-header:not(.scrolled) .social-link:hover,
.home-page .site-header:not(.scrolled) .social-link:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.36);
}

.home-page .site-header:not(.scrolled) .site-nav a:hover,
.home-page .site-header:not(.scrolled) .site-nav a.active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.home-page .site-header:not(.scrolled) .nav-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 51, 34, 0.15);
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1rem;
  height: 2px;
  background: var(--forest-green);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: #fefcf8;
}

.hero-home {
  isolation: isolate;
}

.hero-video-shell,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-shell {
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.hero-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 39, 26, 0.84) 0%, rgba(24, 39, 26, 0.62) 34%, rgba(24, 39, 26, 0.18) 68%, rgba(24, 39, 26, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 17, 11, 0.18), rgba(10, 17, 11, 0.45));
  z-index: 0;
}

.hero-inner,
.page-hero,
.intro-band,
.image-narrative,
.portrait-feature,
.specialties,
.home-story,
.testimonials,
.cta-band,
.content-split,
.values-section,
.timeline-section,
.service-list,
.service-visuals,
.approach-grid,
.contact-section {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: min(calc(100% - 2rem), 1240px);
  min-height: 100svh;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
}

.hero-copy {
  max-width: 40rem;
  padding-left: clamp(1rem, 4vw, 4rem);
}

.hero h1,
.page-hero h1,
.intro-band h2,
.section-heading h2,
.copy-block h2,
.cta-band h2,
.service-row h2,
.contact-panel h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.45vw, 4.55rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 13ch;
  margin-top: 0.8rem;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 34rem;
  color: rgba(255, 252, 248, 0.86);
  margin: 1.4rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-sticker {
  position: absolute;
  right: clamp(1rem, 5vw, 3.5rem);
  bottom: clamp(2rem, 6vw, 4.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(210, 180, 140, 0.92), rgba(236, 220, 198, 0.82));
  color: var(--forest-green);
  border: 1px solid rgba(255, 252, 248, 0.42);
  box-shadow:
    0 16px 38px rgba(13, 24, 15, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.hero-sticker-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(34, 51, 34, 0.88);
  box-shadow: 0 0 0 6px rgba(255, 252, 248, 0.2);
  flex: 0 0 auto;
}

.intro-band,
.home-story,
.cta-band,
.content-split,
.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.intro-band {
  margin-top: -3.5rem;
  padding: 2rem;
  background: rgba(255, 250, 243, 0.86);
  border: 1px solid rgba(34, 51, 34, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.intro-copy {
  display: grid;
  gap: 1rem;
  align-self: stretch;
}

.image-narrative,
.portrait-feature,
.service-visuals {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: center;
}

.intro-band h2,
.section-heading h2,
.copy-block h2,
.cta-band h2,
.service-row h2,
.contact-panel h2 {
  font-size: clamp(1.85rem, 3.6vw, 3.15rem);
  color: var(--forest-green);
}

.intro-band p:last-child,
.page-hero-copy p,
.page-hero-aside p,
.copy-block p,
.service-row p,
.contact-panel p,
.contact-card p {
  color: var(--muted);
}

.intro-photo {
  margin: 0;
  min-height: 11rem;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(34, 51, 34, 0.08);
  align-self: center;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.specialties,
.image-narrative,
.portrait-feature,
.testimonials,
.values-section,
.timeline-section,
.service-visuals,
.approach-grid {
  padding: 6rem 0 0;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 40rem;
  margin-bottom: 2rem;
}

.specialty-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.feature-photo {
  margin: 0;
  min-height: 26rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(34, 51, 34, 0.08);
  background: rgba(255, 252, 248, 0.82);
}

.feature-photo-wide {
  min-height: 0;
  aspect-ratio: 16 / 11;
}

.feature-photo img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.narrative-photo {
  object-position: center 20%;
}

.service-man-photo {
  object-position: center 20%;
}

.service-woman-photo {
  object-position: 38% 18%;
}

.feature-copy {
  max-width: 32rem;
}

.feature-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--forest-green);
  margin: 0 0 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.feature-copy p:last-child {
  color: var(--muted);
  margin: 0;
}

.visual-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.specialty-card,
.value-item,
.timeline-item,
.testimonial-card,
.story-panel,
.story-metrics,
.quote-block,
.contact-panel,
.contact-card {
  background: rgba(255, 252, 248, 0.82);
  border: 1px solid rgba(34, 51, 34, 0.08);
  box-shadow: var(--shadow);
}

.specialty-card,
.value-item,
.timeline-item,
.story-panel,
.story-metrics,
.quote-block,
.contact-panel,
.contact-card {
  border-radius: var(--radius-xl);
}

.specialty-card {
  padding: 1.8rem;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.specialty-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 180, 140, 0.7);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(210, 180, 140, 0.14));
}

.specialty-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(34, 51, 34, 0.1);
  color: var(--forest-green);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.specialty-card h3,
.value-item h3,
.timeline-item h3,
.contact-card h3 {
  color: var(--forest-green);
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  font-weight: 400;
}

.specialty-card p,
.value-item p,
.timeline-item p,
.story-panel p,
.story-metrics strong,
.testimonial-card p,
.quote-block p {
  margin: 0;
  color: var(--muted);
}

.home-story {
  padding: 6rem 0 0;
}

.story-panel {
  padding: 2rem;
}

.story-metrics {
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.story-metrics div {
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(210, 180, 140, 0.12);
}

.story-metrics strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--forest-green);
  font-size: 1.05rem;
  font-weight: 400;
}

.text-link {
  display: inline-flex;
  margin-top: 1.2rem;
  color: var(--forest-green);
  font-weight: 400;
}

.testimonial-row {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
}

.testimonial-row::-webkit-scrollbar {
  height: 8px;
}

.testimonial-row::-webkit-scrollbar-thumb {
  background: rgba(34, 51, 34, 0.22);
  border-radius: 999px;
}

.testimonial-card {
  min-width: min(21rem, 88vw);
  padding: 1.8rem;
  border-radius: 28px;
  scroll-snap-align: start;
}

.testimonial-card p {
  font-size: 1.05rem;
  color: var(--ink);
}

.testimonial-card span {
  display: inline-block;
  margin-top: 1rem;
}

.cta-band {
  padding: 6rem 0;
  align-items: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 0 3rem;
}

.footer-brand-mark {
  display: inline-flex;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

.footer-logo {
  height: 3.35rem;
}

.site-footer p {
  max-width: 30rem;
  color: var(--muted);
}

.footer-social {
  margin-top: 1.15rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
}

.page-hero {
  padding: calc(var(--header-height) + 5rem) 0 2rem;
  min-height: 60svh;
  align-items: end;
}

.page-hero-copy {
  max-width: 42rem;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: var(--forest-green);
  margin: 0.8rem 0 1rem;
}

.page-hero-aside {
  align-self: center;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.78), rgba(210, 180, 140, 0.12));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(34, 51, 34, 0.08);
  box-shadow: var(--shadow);
}

.copy-block,
.quote-block {
  padding: 2rem;
}

.quote-block {
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(34, 51, 34, 0.94), rgba(49, 77, 49, 0.84));
  margin-top: clamp(1.5rem, 4vw, 3.75rem);
}

.quote-block p {
  color: rgba(255, 252, 248, 0.88);
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.timeline-item,
.value-item {
  padding: 1.8rem;
}

.service-list {
  display: grid;
  gap: 1rem;
  padding: 2rem 0 0;
}

.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-panel {
  padding: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--forest-green);
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(34, 51, 34, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-pill);
  outline: none;
}

.contact-form textarea {
  min-height: 11rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(34, 51, 34, 0.4);
  box-shadow: 0 0 0 4px rgba(210, 180, 140, 0.18);
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-photo {
  margin: 0;
  min-height: 19rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(34, 51, 34, 0.08);
}

.contact-card {
  padding: 1.5rem;
}

.contact-card a {
  display: block;
  color: var(--forest-green);
  font-weight: 400;
  margin-top: 0.3rem;
}

.hero-actions .button,
.hero .button {
  font-weight: 600;
}

.hero-actions .button:not(.button-secondary),
.hero .button:not(.button-secondary) {
  background: linear-gradient(135deg, var(--warm-tan), #e0c19d);
  color: var(--forest-green);
  box-shadow: 0 14px 28px rgba(210, 180, 140, 0.26);
}

.hero-actions .button:not(.button-secondary):hover,
.hero-actions .button:not(.button-secondary):focus-visible,
.hero .button:not(.button-secondary):hover,
.hero .button:not(.button-secondary):focus-visible {
  background: linear-gradient(135deg, #d8bb95, #e7ccb0);
  color: var(--forest-green);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-shell {
    overflow: visible;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0.35rem;
    padding: 0.9rem;
    background: rgba(255, 250, 243, 0.95);
    border: 1px solid rgba(34, 51, 34, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease;
    z-index: 1001;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .home-page .site-header .site-nav.is-open a:not(.button),
  .home-page .site-header .site-nav.is-open .social-link {
    color: var(--forest-green);
  }

  .home-page .site-header .site-nav.is-open .social-link {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(34, 51, 34, 0.12);
  }

  .home-page .site-header .site-nav.is-open a:hover,
  .home-page .site-header .site-nav.is-open a.active {
    background: rgba(34, 51, 34, 0.08);
    color: var(--forest-green);
  }

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

  .site-nav .button-nav {
    margin: 0.4rem 0 0;
    width: 100%;
  }

  .social-nav {
    margin: 0.35rem 0 0;
  }

  .intro-band,
  .image-narrative,
  .portrait-feature,
  .home-story,
  .cta-band,
  .content-split,
  .contact-section,
  .page-hero,
  .service-row,
  .service-visuals {
    grid-template-columns: 1fr;
  }

  .specialty-grid,
  .value-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 3.5rem);
    padding-bottom: 3rem;
    grid-template-columns: 1fr;
    align-content: end;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-sticker {
    right: auto;
    left: 0;
    bottom: 1.75rem;
    transform: rotate(-2deg);
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 4rem);
  }

  .visual-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 92px;
  }

  .site-header {
    padding: 0.75rem 0;
  }

  .nav-shell {
    padding: 0.8rem 0.9rem;
  }

  .brand-logo,
  .footer-logo {
    height: 2.5rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 2.35rem);
    padding-bottom: 3.9rem;
    align-content: end;
  }

  .hero-copy {
    max-width: 22.5rem;
    padding-bottom: 1.55rem;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6vw, 2rem);
    max-width: 13.8ch;
    line-height: 1.05;
  }

  .hero-text {
    font-size: 0.8rem;
    max-width: 20.5rem;
    line-height: 1.55;
    margin-top: 1rem;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .hero-youtube {
    width: 220svh;
    height: 124svh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.16);
  }

  .hero-sticker {
    left: 0;
    bottom: calc(1.45rem + 10px);
    font-size: 0.66rem;
    letter-spacing: 0.045em;
    gap: 0.5rem;
    padding: 0.62rem 0.9rem;
  }

  .hero-sticker-dot {
    width: 0.5rem;
    height: 0.5rem;
    box-shadow: 0 0 0 4px rgba(255, 252, 248, 0.18);
  }

  .hero-actions,
  .footer-links,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-band {
    margin-top: -2rem;
    padding: 1.5rem;
  }

  .cta-band,
  .specialties,
  .testimonials,
  .values-section,
  .timeline-section,
  .approach-grid,
  .home-story {
    padding-top: 4.5rem;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
