:root {
  --ink: #171b18;
  --muted: #667067;
  --forest: #0b5b3a;
  --forest-dark: #073f2a;
  --sage: #bfd0b8;
  --mint: #e9f7e3;
  --cream: #f7f5f0;
  --paper: #ffffff;
  --line: rgba(23, 27, 24, .14);
  --shadow: 0 24px 60px rgba(16, 32, 23, .12);
  --serif: "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.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; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 999; padding: .8rem 1rem; background: var(--ink); color: white; text-decoration: none; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(250, 250, 247, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.08); background: rgba(255,255,255,.96); }
.nav-wrap { max-width: 1240px; height: 82px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--forest); color: var(--forest); font-family: var(--serif); font-size: 1.05rem; }
.brand-copy { display: grid; line-height: 1.05; letter-spacing: .08em; }
.brand-copy strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.brand-copy small { margin-top: .25rem; color: var(--muted); font-size: .63rem; text-transform: uppercase; letter-spacing: .18em; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { position: relative; text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: .73rem; font-weight: 700; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -.5rem; width: 100%; height: 1px; background: var(--forest); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav a:not(.nav-cta):hover::after, .site-nav a:not(.nav-cta):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .7rem 1.1rem; border: 1px solid var(--forest); color: var(--forest); border-radius: 999px; transition: .25s ease; }
.nav-cta:hover { background: var(--forest); color: white; }
.menu-toggle { display: none; border: 0; background: transparent; padding: .45rem; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s ease; }

.hero { position: relative; min-height: 100vh; display: grid; align-items: center; overflow: hidden; background: url('../img/hero-closet.png') center 43% / cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,18,16,.72) 0%, rgba(15,18,16,.45) 44%, rgba(15,18,16,.12) 68%, rgba(15,18,16,.02) 100%); }
.hero-overlay { position: absolute; inset: auto 0 0 0; height: 18%; background: linear-gradient(0deg, rgba(0,0,0,.25), transparent); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: min(680px, calc(100% - 48px)); margin-left: max(5vw, calc((100vw - 1240px)/2 + 28px)); padding-top: 80px; color: white; }
.eyebrow { margin: 0 0 1rem; color: var(--forest); font-size: .73rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero .eyebrow { color: #d7efd0; }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.1rem, 8.8vw, 8.4rem); font-weight: 400; line-height: .82; letter-spacing: -.045em; }
.hero h1 em { font-weight: 400; color: #e5f6de; }
.hero-lead { max-width: 560px; margin: 2rem 0 0; font-size: clamp(1.05rem, 1.55vw, 1.35rem); color: rgba(255,255,255,.88); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 49px; padding: .78rem 1.35rem; border: 1px solid transparent; border-radius: 999px; text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 800; cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: white; }
.button-primary:hover { background: var(--forest-dark); }
.button-light { background: white; color: var(--forest-dark); }
.text-link { display: inline-flex; gap: .7rem; align-items: center; color: white; text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateY(4px); }
.text-link.dark { color: var(--forest); }
.text-link.dark:hover span { transform: translateX(4px); }
.hero-note { position: absolute; z-index: 2; left: max(5vw, calc((100vw - 1240px)/2 + 28px)); right: max(5vw, calc((100vw - 1240px)/2 + 28px)); bottom: 3rem; display: flex; gap: 1rem; align-items: center; color: rgba(255,255,255,.72); font-size: .66rem; font-weight: 700; letter-spacing: .18em; }
.hero-note .line { height: 1px; flex: 1; background: rgba(255,255,255,.4); }

.section { max-width: 1240px; margin: 0 auto; padding: 110px 28px; }
.section-tight { max-width: 1440px; margin: 0 auto; padding: 34px 28px 110px; }
.section-heading { max-width: 790px; margin: 0 auto 4.5rem; text-align: center; }
.section-heading h2, .story-copy h2, .about-copy h2, .spaces-heading h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .98; letter-spacing: -.035em; }
.section-heading > p:last-child { max-width: 680px; margin: 1.5rem auto 0; color: var(--muted); font-size: 1.08rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { min-height: 360px; padding: 2.3rem; background: white; display: flex; flex-direction: column; transition: background .3s ease, transform .3s ease; }
.service-card:hover { background: var(--cream); }
.service-number { color: var(--sage); font-family: var(--serif); font-size: 2rem; }
.service-card h3 { margin: auto 0 1rem; font-family: var(--serif); font-size: 2.05rem; font-weight: 400; }
.service-card p { margin: 0 0 1.5rem; color: var(--muted); }
.service-card a { color: var(--forest); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; text-underline-offset: 5px; }

.story-split { display: grid; grid-template-columns: 1.07fr .93fr; gap: 0; align-items: stretch; }
.story-image { min-height: 720px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { padding: clamp(3rem, 6vw, 7rem); background: var(--cream); display: flex; flex-direction: column; justify-content: center; }
.story-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.steps { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; gap: 1.5rem; }
.steps li { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.steps li > span { color: var(--forest); font-family: var(--serif); font-size: 1.35rem; }
.steps strong { font-size: 1rem; letter-spacing: .02em; }
.steps p { margin: .35rem 0 0; color: var(--muted); font-size: .94rem; }

.statement-band { min-height: 560px; display: grid; place-items: center; padding: 110px 28px; background: var(--sage); text-align: center; }
.statement-inner { max-width: 960px; }
.statement-inner .eyebrow { color: var(--forest-dark); }
.statement-inner h2 { margin: 0 0 2.4rem; font-family: var(--serif); font-weight: 400; font-size: clamp(3.3rem, 7vw, 7rem); line-height: .9; letter-spacing: -.045em; color: white; }
.statement-inner h2 em { color: var(--forest-dark); font-weight: 400; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.about-copy .lead { margin: 1.8rem 0 1rem; font-family: var(--serif); font-size: 1.45rem; line-height: 1.4; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.about-copy .text-link { margin-top: 1rem; }
.about-photo { position: relative; box-shadow: var(--shadow); }
.about-photo img { aspect-ratio: 1.26/1; object-fit: cover; }
.photo-tag { position: absolute; right: -1px; bottom: -1px; padding: .8rem 1.2rem; background: var(--forest); color: white; font-size: .66rem; font-weight: 800; letter-spacing: .17em; }
.team-cards { margin-top: 5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.team-card { background: var(--cream); }
.team-card img { aspect-ratio: 1/1; object-fit: cover; object-position: center 24%; }
.team-card > div { padding: 1.5rem; }
.team-card h3 { margin: .25rem 0 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.team-card .eyebrow { margin: 0; }
.team-card-copy { display: grid; place-items: center; background: var(--mint); min-height: 100%; }
.team-card-copy h3 { font-size: 2.15rem; line-height: 1.12; }
.team-card-copy p:last-child { color: var(--muted); }

.spaces { max-width: 1360px; }
.spaces-heading { display: flex; justify-content: space-between; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.spaces-heading > p { max-width: 420px; margin: 0; color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .12em; line-height: 2; text-transform: uppercase; text-align: right; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 12px; }
.gallery-item { position: relative; margin: 0; overflow: hidden; background: var(--cream); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: .52rem .75rem; background: rgba(255,255,255,.88); backdrop-filter: blur(8px); color: var(--ink); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

.service-area { padding: 2rem 28px; background: var(--forest); color: white; overflow: hidden; }
.service-area-inner { max-width: 1240px; margin: 0 auto; text-align: center; }
.service-area p { margin: 0; font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.service-area span { margin: 0 .55rem; color: #a6d99a; }

.contact { position: relative; min-height: 780px; overflow: hidden; color: white; background: #131816; }
.contact-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,14,11,.86), rgba(9,14,11,.68)), url('../img/space-5.png') center / cover no-repeat; opacity: .95; }
.contact-wrap { position: relative; z-index: 2; max-width: 1240px; min-height: 780px; margin: 0 auto; padding: 110px 28px; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.contact-copy .eyebrow { color: #b9deb0; }
.contact-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(4.5rem, 8vw, 8rem); line-height: .82; font-weight: 400; letter-spacing: -.05em; }
.contact-copy > p:not(.eyebrow) { max-width: 430px; color: rgba(255,255,255,.78); font-size: 1.1rem; }
.contact-direct { display: grid; gap: .25rem; margin-top: 2rem; }
.contact-direct a { width: fit-content; color: white; text-decoration: none; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.35); }
.contact-form { padding: 2.4rem; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: .4rem; margin-bottom: 1rem; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #c9cdc9; background: transparent; border-radius: 0; padding: .65rem .1rem; color: var(--ink); outline: none; text-transform: none; }
.contact-form textarea { border: 1px solid #c9cdc9; padding: .75rem; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--forest); box-shadow: 0 1px 0 var(--forest); }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: .78rem; }
.hp-field { position: absolute !important; left: -9999px !important; }

.site-footer { padding: 2.5rem 28px; background: #f1f2ee; text-align: center; color: var(--muted); }
.footer-brand { color: var(--ink); font-family: var(--serif); font-size: 1.45rem; letter-spacing: .14em; }
.site-footer p { margin: .25rem 0; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transition: opacity .85s ease, transform .85s cubic-bezier(.22,.75,.2,1); will-change: opacity, transform; }
.reveal-left { transform: translateX(-38px); }
.reveal-right { transform: translateX(38px); }
.reveal-up { transform: translateY(32px); }
.reveal.is-visible { opacity: 1; transform: translate(0,0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 960px) {
  .nav-wrap { height: 72px; }
  .menu-toggle { display: block; z-index: 102; }
  .site-nav { position: fixed; inset: 72px 0 auto 0; max-height: 0; overflow: hidden; flex-direction: column; align-items: stretch; gap: 0; background: rgba(255,255,255,.98); box-shadow: 0 20px 30px rgba(0,0,0,.08); transition: max-height .35s ease; }
  .site-nav.open { max-height: 420px; }
  .site-nav a { padding: 1rem 28px; border-top: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .nav-cta { border: 0; border-radius: 0; color: var(--forest); }
  .hero-content { margin-left: 28px; }
  .hero-note { left: 28px; right: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .story-split, .about-grid, .contact-wrap { grid-template-columns: 1fr; }
  .story-image { min-height: 520px; }
  .story-copy { padding: 4rem 2rem; }
  .about-grid { gap: 3rem; }
  .team-cards { grid-template-columns: 1fr 1fr; }
  .team-card-copy { grid-column: span 2; min-height: 280px; }
  .spaces-heading { align-items: start; flex-direction: column; }
  .spaces-heading > p { text-align: left; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .contact-wrap { padding-top: 90px; padding-bottom: 90px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 72px; }
  .nav-wrap { padding: 0 18px; }
  .brand-copy small { display: none; }
  .hero { min-height: 780px; background-position: 58% center; }
  .hero::after { background: linear-gradient(90deg, rgba(15,18,16,.78), rgba(15,18,16,.38)); }
  .hero-content { width: calc(100% - 36px); margin-left: 18px; padding-top: 72px; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 5.8rem); }
  .hero-note { left: 18px; right: 18px; bottom: 1.5rem; }
  .hero-note span:last-child { display: none; }
  .section { padding: 82px 18px; }
  .section-tight { padding: 20px 18px 82px; }
  .section-heading { margin-bottom: 3rem; text-align: left; }
  .section-heading > p:last-child { margin-left: 0; }
  .service-card { padding: 1.8rem; }
  .story-image { min-height: 440px; }
  .story-copy { padding: 3rem 1.6rem; }
  .statement-band { min-height: 460px; padding: 80px 18px; }
  .about-grid { gap: 2.4rem; }
  .team-cards { grid-template-columns: 1fr; margin-top: 3rem; }
  .team-card-copy { grid-column: auto; min-height: 280px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 290px; }
  .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
  .service-area { padding: 1.5rem 18px; }
  .service-area p { line-height: 2.3; }
  .contact-wrap { padding: 80px 18px; }
  .contact-copy h2 { font-size: 4.3rem; }
  .contact-form { padding: 1.4rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Deliberate mobile experience
   Desktop styling above 960px remains unchanged. These rules progressively
   reshape the same page for smaller touch screens rather than serving a
   separate mobile site.
   -------------------------------------------------------------------------- */
.mobile-action-bar { display: none; }

@media (max-width: 760px) {
  :root { --mobile-header: 68px; }

  html { scroll-padding-top: var(--mobile-header); }
  body { padding-bottom: 68px; }

  .site-header { background: rgba(250,250,247,.97); }
  .nav-wrap { height: var(--mobile-header); padding: 0 16px; }
  .brand { gap: .62rem; }
  .brand-mark { width: 39px; height: 39px; font-size: .95rem; }
  .brand-copy strong { font-size: .94rem; letter-spacing: .065em; }
  .brand-copy small { display: none; }

  .menu-toggle {
    display: grid;
    place-content: center;
    width: 46px;
    height: 46px;
    margin-right: -7px;
    border-radius: 50%;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) {
    width: 24px;
    height: 2px;
    margin: 3px 0;
    transform-origin: center;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .site-nav {
    inset: var(--mobile-header) 0 0 0;
    max-height: none;
    height: calc(100dvh - var(--mobile-header));
    padding: 7vh 22px 110px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: rgba(247,245,240,.985);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    overflow-y: auto;
    transition: opacity .26s ease, transform .26s ease, visibility 0s linear .26s;
  }
  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .site-nav a {
    padding: 1.05rem .25rem;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    font-weight: 400;
    letter-spacing: -.015em;
    text-transform: none;
    line-height: 1.1;
  }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta {
    margin-top: 1.4rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--forest);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-align: center;
    text-transform: uppercase;
  }

  .hero {
    min-height: max(720px, 100svh);
    align-items: end;
    background-position: 62% center;
  }
  .hero::after {
    background:
      linear-gradient(0deg, rgba(12,16,13,.84) 0%, rgba(12,16,13,.62) 43%, rgba(12,16,13,.22) 72%, rgba(12,16,13,.08) 100%);
  }
  .hero-overlay { height: 38%; background: linear-gradient(0deg, rgba(0,0,0,.24), transparent); }
  .hero-content {
    width: auto;
    margin: 0;
    padding: 0 18px 105px;
  }
  .hero .eyebrow { margin-bottom: .7rem; }
  .hero h1 {
    max-width: 520px;
    font-size: clamp(3.7rem, 17vw, 5.6rem);
    line-height: .86;
  }
  .hero-lead {
    max-width: 460px;
    margin-top: 1.2rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .9rem;
    margin-top: 1.5rem;
  }
  .hero-actions .button { width: 100%; min-height: 54px; }
  .hero-actions .text-link { justify-self: start; padding: .4rem 0; }
  .hero-note {
    left: 18px;
    right: 18px;
    bottom: 76px;
    font-size: .61rem;
    letter-spacing: .14em;
  }
  .hero-note .line { display: none; }
  .hero-note span:last-child { display: none; }

  .section { padding: 72px 18px; }
  .section-tight { padding: 0 18px 72px; }
  .section-heading { margin: 0 0 2.6rem; text-align: left; }
  .section-heading h2,
  .story-copy h2,
  .about-copy h2,
  .spaces-heading h2 { font-size: clamp(2.7rem, 12vw, 4.25rem); }
  .section-heading > p:last-child { margin: 1.15rem 0 0; font-size: 1rem; }

  .service-grid { display: grid; grid-template-columns: 1fr; gap: 12px; border: 0; background: transparent; }
  .service-card {
    min-height: 0;
    padding: 1.65rem;
    border: 1px solid var(--line);
  }
  .service-card h3 { margin: 2.25rem 0 .75rem; font-size: 2rem; }
  .service-card p { margin-bottom: 1.25rem; }
  .service-card a { padding: .55rem 0; }

  .story-split { display: flex; flex-direction: column; }
  .story-image { min-height: 0; height: 58svh; max-height: 560px; }
  .story-copy { padding: 3rem 1.4rem; }
  .story-copy > p:not(.eyebrow) { font-size: 1rem; }
  .steps { margin-top: 2rem; gap: 1rem; }
  .steps li { grid-template-columns: 38px 1fr; gap: .75rem; }

  .statement-band { min-height: 0; padding: 78px 18px; }
  .statement-inner h2 {
    margin-bottom: 1.8rem;
    font-size: clamp(3.1rem, 15vw, 5rem);
    line-height: .92;
  }
  .statement-inner .button { width: 100%; min-height: 54px; }

  .about-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .about-copy .lead { font-size: 1.3rem; }
  .about-photo { box-shadow: 0 14px 36px rgba(16,32,23,.13); }
  .about-photo img { aspect-ratio: 4/3; }
  .photo-tag { padding: .66rem .9rem; }

  .team-cards { grid-template-columns: 1fr; gap: 14px; margin-top: 2.4rem; }
  .team-card { display: grid; grid-template-columns: 42% 1fr; align-items: center; }
  .team-card img { aspect-ratio: 1/1.12; height: 100%; }
  .team-card > div { padding: 1.25rem; }
  .team-card-copy { grid-column: auto; display: block; min-height: 0; padding: .75rem 0; }
  .team-card-copy > div { padding: 1.6rem; }
  .team-card-copy h3 { font-size: 1.9rem; }

  .spaces-heading { gap: 1.1rem; margin-bottom: 2rem; }
  .spaces-heading > p { max-width: none; font-size: .68rem; line-height: 1.8; }
  .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 8px;
  }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
  .gallery-item figcaption { left: .65rem; bottom: .65rem; padding: .42rem .58rem; font-size: .58rem; }

  .service-area { padding: 1.2rem 18px; }
  .service-area p { line-height: 2; font-size: .64rem; }
  .service-area span { margin: 0 .25rem; }

  .contact { min-height: 0; }
  .contact-bg {
    background:
      linear-gradient(0deg, rgba(9,14,11,.90), rgba(9,14,11,.66)),
      url('../img/space-5.png') 58% center / cover no-repeat;
  }
  .contact-wrap {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 74px 18px 78px;
  }
  .contact-copy h2 { font-size: clamp(4rem, 18vw, 5.6rem); }
  .contact-copy > p:not(.eyebrow) { font-size: 1rem; }
  .contact-direct a { padding: .35rem 0; font-size: .8rem; }
  .contact-form { padding: 1.35rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form input,
  .contact-form select { min-height: 46px; }
  .contact-form textarea { min-height: 130px; }
  .contact-form .button { width: 100%; min-height: 54px; }

  .site-footer { padding: 2.2rem 18px 2.6rem; }

  .mobile-action-bar {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    height: 68px;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97);
    border-top: 1px solid rgba(0,0,0,.10);
    box-shadow: 0 -8px 30px rgba(0,0,0,.09);
    backdrop-filter: blur(12px);
  }
  .mobile-action-bar a {
    display: grid;
    place-items: center;
    min-height: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .11em;
    font-size: .68rem;
    font-weight: 800;
  }
  .mobile-action-call { color: var(--forest); }
  .mobile-action-start { border-radius: 999px; background: var(--forest); color: white; }

  .reveal-left { transform: translateX(-22px); }
  .reveal-right { transform: translateX(22px); }
  .reveal-up { transform: translateY(22px); }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(3.35rem, 16.4vw, 4.45rem); }
  .team-card { grid-template-columns: 38% 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 285px; }
  .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
}

/* --------------------------------------------------------------------------
   Navigation highlight + homepage service expansion
   -------------------------------------------------------------------------- */
.nav-feature {
  padding: .72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #9acf26, #5f9f00);
  color: #0d2342 !important;
  box-shadow: 0 10px 26px rgba(95,159,0,.22);
}
.nav-feature:hover,
.nav-feature:focus-visible {
  background: linear-gradient(135deg, #a8db35, #5c970d);
}
.site-nav a.nav-feature::after { display: none; }
.nav-current {
  box-shadow: inset 0 0 0 2px rgba(13,35,66,.12), 0 10px 26px rgba(95,159,0,.22);
}

.service-grid-four {
  grid-template-columns: repeat(4, 1fr);
}
.service-card-accent {
  background: linear-gradient(180deg, #f4faef 0%, #ffffff 100%);
}

/* --------------------------------------------------------------------------
   Moving services page
   -------------------------------------------------------------------------- */
.moving-page {
  background: #f7f8fb;
}
.moving-page .site-header {
  background: rgba(255,255,255,.92);
}
.moving-page .site-header.scrolled {
  background: rgba(255,255,255,.98);
}
.moving-page .eyebrow { color: #77b40b; }
.moving-page .text-link { color: white; }
.moving-page .text-link.dark { color: #173567; }
.button-lime {
  background: #88c913;
  color: #0e2240;
}
.button-lime:hover {
  background: #96d61d;
}

.moving-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(255,255,255,.18), transparent 22%),
    linear-gradient(118deg, #081b39 0%, #102d5b 53%, #0d2342 100%);
  color: white;
}
.moving-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(140,208,14,.18) 0, rgba(140,208,14,.18) 12px, transparent 12px, transparent 24px);
  opacity: .06;
  mix-blend-mode: screen;
  pointer-events: none;
}
.moving-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-top: 130px;
  padding-bottom: 100px;
}
.moving-hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.25rem, 8.6vw, 8rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.045em;
}
.moving-hero-copy h1 em {
  color: #a6db2c;
  font-weight: 400;
}
.moving-hero-copy .hero-lead {
  max-width: 620px;
  color: rgba(255,255,255,.88);
}
.moving-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.8rem;
}
.moving-pill-row span {
  padding: .72rem 1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  font-size: .82rem;
  font-weight: 700;
}
.moving-pill-row strong { color: #b9eb51; }
.moving-offer-card {
  justify-self: end;
  width: min(430px, 100%);
  padding: 1.3rem;
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  color: #102447;
  box-shadow: 0 32px 80px rgba(0,0,0,.22);
}
.moving-offer-top {
  display: grid;
  gap: .35rem;
  padding: 1.3rem;
  border-radius: 20px;
  background: linear-gradient(160deg, #0c2343, #153669 66%, #87c913 210%);
  color: white;
}
.offer-kicker {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.moving-offer-top strong {
  font-size: clamp(4rem, 8vw, 5rem);
  line-height: .9;
  color: #a6db2c;
}
.offer-sub {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.offer-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: .72rem;
}
.offer-list li {
  padding-left: 1.55rem;
  position: relative;
  font-weight: 700;
}
.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6aa70d;
}
.offer-badge {
  padding: 1rem 1.1rem;
  border: 2px solid #88c913;
  border-radius: 999px;
  text-align: center;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.4;
}
.offer-badge strong { color: #2b7a00; }

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mini-stat {
  padding: 2rem;
  background: white;
  border: 1px solid rgba(16,36,71,.09);
  box-shadow: 0 18px 44px rgba(11,31,61,.06);
}
.mini-stat .eyebrow { margin-bottom: .8rem; }
.mini-stat h2 {
  margin: 0;
  color: #11284d;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.mini-stat p:last-child { margin-bottom: 0; color: #5e6873; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.price-card {
  padding: 1.2rem;
  background: white;
  border: 1px solid rgba(16,36,71,.09);
  box-shadow: 0 18px 44px rgba(11,31,61,.06);
}
.price-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: .45rem;
  padding: 1.25rem;
  border-radius: 18px;
  color: white;
}
.price-label {
  grid-column: 1 / -1;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.price-head strong {
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: .9;
}
.price-head small {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.no-stairs { background: linear-gradient(135deg, #5b9c0b, #8ccd18); }
.one-flight { background: linear-gradient(135deg, #173766, #28518d); }
.two-flights { background: linear-gradient(135deg, #2f7a07, #64ad11); }
.price-card p {
  margin: 1rem .3rem .3rem;
  color: #5e6873;
}

.moving-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
}
.details-panel {
  padding: clamp(2rem, 3vw, 3rem);
  background: white;
  border: 1px solid rgba(16,36,71,.09);
}
.details-panel-accent {
  background: linear-gradient(180deg, #ffffff 0%, #f4faef 100%);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
}
.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: #24303b;
}
.check-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #75b609;
  font-size: .9rem;
}
.lead-copy {
  color: #41505d;
  font-size: 1.08rem;
}
.help-with h3 {
  margin: 2rem 0 1rem;
  font-size: 1.05rem;
  color: #173567;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.help-with ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .75rem;
}
.help-with li {
  padding-left: 1.5rem;
  position: relative;
  font-weight: 700;
}
.help-with li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #75b609;
}

.moving-flyer-grid {
  align-items: start;
}
.moving-flyer-image {
  box-shadow: 0 30px 60px rgba(11,31,61,.12);
  background: white;
  padding: 1rem;
}
.announcement-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}
.announcement-card {
  padding: 1.2rem 1.25rem;
  border-left: 4px solid #88c913;
  background: #f2f7ec;
}
.announcement-card strong {
  display: block;
  margin-bottom: .35rem;
  color: #11284d;
}
.announcement-card p {
  margin: 0;
  color: #51606d;
}

.moving-area-band {
  background: #102447;
}
.moving-contact-bg {
  background:
    linear-gradient(90deg, rgba(8,18,38,.90), rgba(8,18,38,.72)),
    url('../img/moving-flyer.png') center top / cover no-repeat;
  opacity: 1;
}
.moving-footer {
  background: #eef1f5;
}

@media (max-width: 1200px) {
  .service-grid-four { grid-template-columns: repeat(2, 1fr); }
  .moving-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .moving-offer-card { justify-self: start; }
}

@media (max-width: 960px) {
  .service-grid-four { grid-template-columns: 1fr; }
  .nav-feature { text-align: center; }
  .mini-stat-grid,
  .price-grid,
  .moving-details-grid {
    grid-template-columns: 1fr;
  }
  .check-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-nav .nav-feature {
    margin-bottom: 1rem;
    text-align: left;
    font-family: var(--sans);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-bottom: 0;
  }
  .moving-hero-grid {
    padding-top: 92px;
    padding-bottom: 76px;
  }
  .moving-hero-copy h1 {
    font-size: clamp(3.6rem, 16vw, 5.4rem);
  }
  .moving-pill-row {
    display: grid;
    gap: .6rem;
  }
  .moving-pill-row span {
    border-radius: 16px;
  }
  .moving-offer-card {
    width: 100%;
    padding: 1rem;
    border-radius: 22px;
  }
  .moving-offer-top { padding: 1.1rem; }
  .mini-stat,
  .price-card,
  .details-panel,
  .announcement-card {
    padding: 1.35rem;
  }
  .moving-details-grid {
    padding: 0 18px;
  }
  .price-head { padding: 1rem; }
  .price-label { font-size: 1rem; }
  .moving-flyer-image { padding: .55rem; }
  .moving-contact .contact-wrap { padding-top: 78px; }
}

@media (max-width: 420px) {
  .moving-hero-copy h1 { font-size: clamp(3.05rem, 15vw, 4.2rem); }
  .price-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .price-head small { margin-top: -.25rem; }
}

/* --------------------------------------------------------------------------
   Mobile hero spotlight for the primary Moving Services offering.
   Hidden on desktop so the existing large-screen hero stays unchanged.
   -------------------------------------------------------------------------- */
.mobile-moving-spotlight {
  display: none;
}

@media (max-width: 760px) {
  .mobile-moving-spotlight {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin: 0 0 .9rem;
    padding: .72rem 1rem;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: linear-gradient(135deg, #a6db2c, #75b609);
    color: #0d2342;
    box-shadow: 0 12px 30px rgba(0,0,0,.20);
    text-decoration: none;
    text-transform: uppercase;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
  }

  .mobile-moving-spotlight span {
    font-size: 1rem;
    line-height: .7;
    transition: transform .2s ease;
  }

  .mobile-moving-spotlight:hover span,
  .mobile-moving-spotlight:focus-visible span {
    transform: translateX(4px);
  }
}
