:root {
  --ink: #202221;
  --muted: #626a69;
  --paper: #f6f3e8;
  --panel: #ffffff;
  --line: #dfdac6;
  --charcoal: #242524;
  --cream: #f2edba;
  --cream-strong: #e5d968;
  --steel: #c6d4d6;
  --pitch: #315542;
  --pitch-dark: #17281f;
  --shadow: 0 18px 50px rgba(32, 34, 33, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 76px;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  background: rgba(246, 243, 232, 0.94);
  border-bottom: 1px solid rgba(223, 218, 198, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: inset 0 0 0 1px rgba(242, 237, 186, 0.38);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--pitch);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(24, 24, 23, 0.9) 0%, rgba(24, 24, 23, 0.62) 48%, rgba(24, 24, 23, 0.22) 100%),
    linear-gradient(0deg, rgba(24, 24, 23, 0.36), rgba(24, 24, 23, 0.08));
}

.hero-media {
  z-index: -2;
}

.hero-content {
  width: min(720px, calc(100% - 2rem));
  align-self: center;
  margin-left: clamp(1rem, 7vw, 5.5rem);
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--cream-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--cream);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(242, 237, 186, 0.62);
  color: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: -2.4rem auto 0;
  position: relative;
  z-index: 2;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.trust-strip span,
.section-copy,
.section-heading p,
.contact-section p,
.service-card p {
  color: var(--muted);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.section-copy {
  max-width: 670px;
  font-size: 1.05rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 14ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-card {
  min-height: 280px;
  padding: 1.3rem;
}

.service-number {
  display: inline-block;
  margin-bottom: 2.4rem;
  color: var(--pitch);
  font-weight: 800;
}

.pillar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.pillar-list li {
  padding: 0.36rem 0.5rem;
  border-radius: 8px;
  background: #eef3f3;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
}

.progression-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: stretch;
}

.progression-panel {
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
}

.progression-panel p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.gallery-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  background: #ebe8dc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 1rem;
}

.gallery-grid figure {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pitch-dark);
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figure:not(:first-child) img {
  object-position: center;
}

.gallery-grid figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.instagram-link {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--pitch-dark);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem;
  font-style: normal;
}

.contact-card a {
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.75rem;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    margin-inline: auto;
    align-self: end;
  }

  h1 {
    max-width: 10ch;
  }

  .trust-strip,
  .split,
  .service-grid,
  .progression-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    width: min(var(--max), calc(100% - 2rem));
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure,
  .gallery-grid figure:first-child {
    min-height: 280px;
    grid-row: auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 68px;
  }

  .brand span:last-child {
    max-width: 180px;
  }

  .hero-content {
    width: min(100% - 1.5rem, 720px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 1.5rem, var(--max));
  }

  .gallery-section {
    padding-inline: 0.75rem;
  }
}
