/* ============================================================
   Chimera Invest — landing page
   Built from Figma "V01 Hulty LandingPage" (node 3:147).

   Scaling model: 1rem = 10 design px. The root font-size scales
   linearly with the viewport so the desktop layout is an exact
   proportional reproduction of the 1920px Figma frame, then the
   layout reflows below 1200px.
   ============================================================ */

:root {
  font-size: clamp(6.25px, calc(100vw / 194), 11px);

  --ink:        #050f27;   /* primary navy */
  --ink-soft:   #191623;   /* intro heading */
  --panel:      #f7f8f8;   /* light section fill */
  --panel-dark: #111b31;   /* dark section fill */
  --dot:        #141313;
  --page:       #ffffff;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0 auto;
  max-width: 194rem;
  background: var(--page);
  color: var(--ink);
  font-family: 'Satoshi', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, p, figure { margin: 0; }

img, picture, svg { display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--ink); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff;
  padding: 1.2rem 2rem; border-radius: 0 0 1.2rem 0;
  font-size: 1.6rem;
}
.skip-link:focus { left: 0; }

:where(a, button, input, textarea):focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.cta :where(a, button, input, textarea):focus-visible { outline-color: #fff; }

/* ── section rhythm (gaps measured from the Figma frame) ───── */
.hero        { margin: 4.3rem 6rem 0; }
.about       { margin: 8rem 6rem 0; }
.properties  { margin: 11rem 6rem 0; }
.services    { margin: 10.3rem 6rem 0; }
.cta         { margin: 6.4rem 6rem 6.5rem; }

[id] { scroll-margin-top: 13rem; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22.6rem;
  height: 7.4rem;
  border-radius: 2.6rem;
  background: var(--ink);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.4rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform .4s var(--ease), background-color .3s ease, box-shadow .4s var(--ease);
}
.btn:hover {
  background: #0d1c42;
  transform: translateY(-0.3rem);
  box-shadow: 0 1.4rem 3rem rgba(5, 15, 39, .22);
}
.btn:active { transform: translateY(0); }

.btn-light { background: #fff; color: var(--ink); width: auto; padding: 0 3.6rem; }
.btn-light:hover { background: #fff; box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, .35); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 1.6rem;
  z-index: 90;
  margin: 4.2rem 6rem 0;
}

.header-pill {
  position: relative;
  display: flex;
  align-items: center;
  height: 9.1rem;
  border-radius: 12.8rem;
  background: var(--panel);
  padding-left: 3.8rem;
  overflow: hidden;
  transition: box-shadow .4s ease;
}
.site-header.is-stuck .header-pill { box-shadow: 0 1.2rem 3.6rem rgba(5, 15, 39, .12); }

.brand {
  font-size: 2.9242rem;
  font-weight: 400;
  letter-spacing: .01em;
  color: #000;
  white-space: nowrap;
  transition: opacity .3s ease;
}
.brand:hover { opacity: .6; }
.brand-mark { font-size: .34em; vertical-align: super; color: var(--ink); }

/* nav sits centred in the pill */
.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% - 1.75rem), -50%);
  display: flex;
  gap: 5rem;
  white-space: nowrap;
}
.nav-link {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: -0.036rem;
  color: var(--ink);
  opacity: .78;
  transition: opacity .3s ease;
}
.nav-link:hover,
.nav-link.is-active { opacity: 1; }

/* the small active dot from the design, animated between items */
.nav-dot {
  position: absolute;
  top: 3.2rem;
  left: 0;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--dot);
  opacity: 0;
  transition: transform .55s var(--ease), opacity .35s ease;
}
.nav-dot.is-on { opacity: 1; }

.header-cta {
  position: relative;
  margin-left: auto;
  display: block;
  width: 17.4rem;
  height: 9.1rem;
  flex: none;
}
.header-cta-sliver {
  position: absolute;
  left: 0; top: 0;
  width: 1.3rem;
  height: 100%;
  border-radius: 10rem 0 0 10rem;
  background: rgba(5, 15, 39, .9);
  transition: transform .45s var(--ease);
}
.header-cta-body {
  position: absolute;
  right: 0; top: 0;
  width: 16.1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem 0 0 0;
  border-top-left-radius: 0;
  border-radius: 0 10rem 10rem 0;
  background: var(--ink);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.4rem;
  white-space: nowrap;
  transition: background-color .3s ease;
}
.header-cta:hover .header-cta-body { background: #0d1c42; }
.header-cta:hover .header-cta-sliver { transform: translateX(-0.6rem); }

/* hamburger — desktop hidden */
.nav-toggle {
  display: none;
  margin-left: auto;
  margin-right: 2.4rem;
  width: 5.6rem; height: 5.6rem;
  border: 0; background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.nav-toggle-bar {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child  { transform: translateY(-4.5px) rotate(-45deg); }

/* ── mobile menu ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  padding: 96px 32px 48px;
  opacity: 0;
  transition: opacity .35s ease;
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-nav a {
  font-size: clamp(34px, 10vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-menu.is-open .mobile-menu-nav a { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(1) { transition-delay: .06s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(2) { transition-delay: .12s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(3) { transition-delay: .18s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(4) { transition-delay: .24s; }
.mobile-menu-foot {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 16px; color: rgba(255, 255, 255, .7);
}
.mobile-menu-foot a:hover { color: #fff; }
body.menu-open { overflow: hidden; }

/* ============================================================
   Shared photo frame — reproduces the exact Figma image crops
   ============================================================ */
.photo {
  position: relative;
  overflow: hidden;
  background: var(--panel);
}
.photo picture { display: contents; }
/* sources are pre-cropped to the exact region the design shows, so a plain
   cover fill reproduces the Figma framing at every size */
.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
  will-change: transform;
}
.photo:hover img { transform: scale(1.045); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: 120.3rem;
}
.hero-shape {
  position: absolute;
  inset: 0;
  width: 180rem;
  height: 120.3rem;
}
.hero-title {
  position: absolute;
  left: 65.7rem;
  top: 7.6rem;
  font-size: 15.3rem;
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.612rem;
  color: var(--ink);
  white-space: nowrap;
}
.hero-lead {
  position: absolute;
  left: 8.6rem;
  top: 24rem;
  width: 37.8rem;
  font-size: 2.2rem;
  line-height: 3.6rem;
  letter-spacing: -0.066rem;
  color: var(--ink);
}
.hero-photo {
  position: absolute;
  left: 64.9rem;
  top: 44.5rem;
  width: 108.4rem;
  height: 71.2rem;
  border-radius: 5.6rem;
}

.hero-card {
  position: absolute;
  left: .1rem;
  top: 48.7rem;
  width: 54.5rem;
  height: 71.5rem;
}
.hero-card-shape { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-card-body {
  position: absolute;
  left: 8.6rem;
  top: 20rem;
  width: 42.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.9rem;
}
.eyebrow {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #000;
}
.hero-card-title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.1rem;
  color: var(--ink-soft);
}

/* ============================================================
   About
   ============================================================ */
.about {
  display: flex;
  gap: 4.6rem;
  height: 120.3rem;
}
.about-photo {
  flex: none;
  width: 44.7rem;
  border-radius: 8rem;
}

.about-panel {
  position: relative;
  flex: 1;
  border-radius: 8rem;
  background: var(--panel);
  overflow: hidden;
}
.about-deco {
  position: absolute;
  left: 64.4rem; top: 36.5rem;
  width: 33rem; height: 33rem;
}
.about-deco-2 {
  position: absolute;
  left: 97.55rem; top: 123.476rem;
  width: 27.5rem; height: 4.9107rem;
  border-radius: 15.7143rem;
  background: var(--ink);
  opacity: .02;
}
.about-body {
  position: absolute;
  left: 23.4rem;
  top: 33.5rem;
  width: 87.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4.9rem;
}
.about-title {
  font-size: 7.6rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.228rem;
  color: var(--ink);
}
.about-text {
  font-size: 2.2rem;
  line-height: 3.6rem;
  color: var(--ink);
}

/* ============================================================
   Properties
   ============================================================ */
.properties {
  position: relative;
  border-radius: 8rem;
  background: var(--panel);
  padding: 6.1rem 9.9rem 12.76rem 8.4rem;
}
/* the notch cut out of the panel so the dark tag reads as inset */
.properties-notch {
  position: absolute;
  left: 0; top: 6.4rem;
  width: 81.9rem; height: 25.2rem;
  background: var(--page);
  border-radius: 0 6.2rem 2.9rem 0;
}
.properties-tag {
  position: absolute;
  left: 0; top: 6.9rem;
  width: 79.1rem; height: 21.7rem;
  border-radius: 2.5rem;
  background: var(--panel-dark);
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 10.6rem;
  font-size: 10.8165rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.32449rem;
}

.properties-row { display: flex; }
.properties-row-1 { gap: 4.65rem; align-items: flex-start; }
.properties-row-2 { gap: 4.6rem; margin-top: 3.6rem; }

.properties-pair { flex: 831.237; display: flex; gap: 4.62rem; padding-top: 29.5rem; }
.properties-stack { flex: 739; display: flex; flex-direction: column; gap: 3.6rem; }

.pr-a    { flex: 386.776; aspect-ratio: 386.776 / 595.939; border-radius: 2.3047rem; }
.pr-b    { flex: 398.461; aspect-ratio: 398.461 / 595.939; border-radius: 4.9077rem; }
.pr-c1   { aspect-ratio: 739 / 510; border-radius: 4.2rem; }
.pr-c2   { aspect-ratio: 739 / 332; border-radius: 4.2rem; }
.pr-wide { flex: 1015; aspect-ratio: 1015 / 617.408; border-radius: 5.045rem; }
.pr-tall { flex: 556;  aspect-ratio: 556 / 617;     border-radius: 4.2rem; }


/* ============================================================
   Services
   ============================================================ */
.services {
  border-radius: 8rem;
  background: var(--panel);
  height: 117.6rem;
  overflow: hidden;
}
.services-inner {
  width: 159.7rem;
  margin-left: 10.2rem;
  padding-top: 14rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.services-title {
  width: 83.5rem;
  font-size: 13.2236rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.39671rem;
  color: var(--ink);
}
.services-cards { display: flex; gap: 2.6rem; }

.service-card {
  position: relative;
  flex: 1;
  aspect-ratio: 515 / 680;
  border-radius: 4rem;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 2.4rem 5rem rgba(5, 15, 39, .13);
}
.service-card-dark { background: var(--ink); color: #fff; }
.service-card-dark:hover { box-shadow: 0 2.4rem 5rem rgba(5, 15, 39, .35); }

.service-num {
  position: absolute;
  right: 4rem; top: 4rem;
  font-size: 7.2rem;
  font-weight: 500;
  line-height: 7.6rem;
}
.service-body {
  position: absolute;
  left: 4rem; top: 21.6rem;
  width: 43.6rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
.service-name {
  font-size: 7.2rem;
  font-weight: 500;
  line-height: 7.2rem;
}
.service-text {
  font-size: 2.4rem;
  line-height: 1.5;
}

/* ============================================================
   CTA / Contact / Footer
   ============================================================ */
.cta {
  border-radius: 8rem;
  background: var(--panel-dark);
  color: #fff;
  padding: 12.5rem 10rem 10rem;
}
.cta-inner { display: flex; flex-direction: column; }

.cta-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8rem;
}
.cta-copy { display: flex; flex-direction: column; gap: 7.5rem; }
.cta-title {
  font-size: 17.5209rem;
  font-weight: 500;
  line-height: 17.5209rem;
  letter-spacing: -0.35042rem;
}
.cta-text {
  font-size: 4.3889rem;
  font-weight: 300;
  line-height: 5.2667rem;
}

.contact-card {
  flex: none;
  width: 32rem;
  min-height: 34.4rem;
  border-radius: 7.681rem;
  background: rgba(255, 255, 255, .05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 4.6726rem 3.3982rem;
  text-align: center;
  transition: background-color .4s ease;
}
.contact-card:hover { background: rgba(255, 255, 255, .09); }
.contact-card-title {
  font-size: 2.7487rem;
  font-weight: 700;
  line-height: 3.3982rem;
}
.contact-card-link {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, .85);
  transition: color .25s ease;
  word-break: break-word;
}
.contact-card-link:hover { color: #fff; text-decoration: underline; text-underline-offset: .4rem; }

/* ── contact form (sits in the open space of the CTA panel) ── */
.contact-form {
  margin-top: 11rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem 2.6rem;
}
.field { display: flex; flex-direction: column; gap: 1.2rem; }
.field-wide { grid-column: 1 / -1; }

.field label {
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .72);
  letter-spacing: .01em;
}
.field .opt { color: rgba(255, 255, 255, .4); font-weight: 400; }

.field input,
.field textarea {
  font-family: inherit;
  font-size: 1.8rem;
  color: #fff;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 2rem;
  padding: 1.9rem 2.4rem;
  width: 100%;
  transition: border-color .3s ease, background-color .3s ease;
  resize: vertical;
}
.field textarea { min-height: 12rem; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, .32); }
.field input:hover,
.field textarea:hover { border-color: rgba(255, 255, 255, .24); }
.field input:focus,
.field textarea:focus {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .5);
}
.field.has-error input,
.field.has-error textarea { border-color: #ff8f8f; }

.field-error {
  min-height: 1.8rem;
  font-size: 1.4rem;
  color: #ff9d9d;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.form-status {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, .7);
  max-width: 90rem;
}
.form-status.is-ok { color: #9ff0c4; }
.form-status.is-error { color: #ff9d9d; }

/* ── footer bar ─────────────────────────────────────────── */
.footer-bar {
  margin-top: 11rem;
  height: 13.4rem;
  border-radius: 8rem;
  background: rgba(255, 255, 255, .03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9.1rem;
}
.footer-brand { font-size: 2.2rem; font-weight: 700; transition: opacity .3s ease; }
.footer-brand:hover { opacity: .7; }
.footer-nav { display: flex; gap: 5rem; }
.footer-nav a {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: -0.04rem;
  opacity: .82;
  transition: opacity .3s ease;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -0.7rem;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.footer-nav a:hover { opacity: 1; }
.footer-nav a:hover::after { transform: scaleX(1); }

/* ============================================================
   Page-entry choreography (one deliberate moment, on load)
   ============================================================ */
.mask { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.mask-in {
  display: block;
  transform: translateY(0);
  transition: transform 1.15s var(--ease) var(--d, 0s);
}
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .95s var(--ease) var(--d, 0s), transform .95s var(--ease) var(--d, 0s);
}
.photo-reveal {
  clip-path: inset(0 0 0 0 round 5.6rem);
  transition: clip-path 1.25s var(--ease) var(--d, 0s);
}
.photo-reveal img { transition: transform 1.5s var(--ease) var(--d, 0s); }

body.is-loading .site-header { opacity: 0; transform: translateY(-2.4rem); }
body.is-loading .mask-in     { transform: translateY(110%); }
body.is-loading .reveal      { opacity: 0; transform: translateY(3.6rem); }
body.is-loading .photo-reveal      { clip-path: inset(0 0 100% 0 round 5.6rem); }
body.is-loading .photo-reveal img  { transform: scale(1.12); }

.site-header {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease) .05s, transform .8s var(--ease) .05s, box-shadow .4s ease;
}

/* ============================================================
   Responsive — below 1200px the layout reflows
   ============================================================ */
@media (max-width: 1200px) {
  :root { font-size: 10px; }

  body { max-width: none; }

  .hero, .about, .properties, .services, .cta { margin-left: 20px; margin-right: 20px; }
  .site-header { margin: 20px 20px 0; top: 12px; }

  [id] { scroll-margin-top: 110px; }

  /* header */
  .header-pill { height: 72px; border-radius: 60px; padding-left: 26px; }
  .brand { font-size: 22px; }
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  /* hero → flow */
  .hero { height: auto; margin-top: 40px; }
  .hero-shape, .hero-card-shape { display: none; }
  .hero-title {
    position: static;
    font-size: clamp(42px, 11.2vw, 104px);
    letter-spacing: -0.04em;
    line-height: 1.04;
    white-space: normal;
  }
  .hero-lead {
    position: static;
    width: 100%;
    max-width: 560px;
    margin-top: 24px;
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.6;
    letter-spacing: normal;
  }
  .hero-photo {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1084 / 712;
    margin-top: 32px;
    border-radius: 28px;
  }
  .photo-reveal { clip-path: inset(0 0 0 0 round 28px); }
  body.is-loading .photo-reveal { clip-path: inset(0 0 100% 0 round 28px); }

  .hero-card {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 20px;
    background: var(--panel);
    border-radius: 28px;
  }
  .hero-card-body {
    position: static;
    width: 100%;
    padding: 36px 28px 40px;
    gap: 18px;
  }
  .eyebrow { font-size: 16px; line-height: 1.2; }
  .hero-card-title { font-size: clamp(26px, 5.4vw, 44px); line-height: 1.14; letter-spacing: -0.02em; }

  .btn { width: 190px; height: 60px; border-radius: 20px; font-size: 16px; }

  /* about → stack */
  .about { flex-direction: column; height: auto; gap: 20px; margin-top: 72px; }
  .about-photo { width: 100%; aspect-ratio: 447 / 620; border-radius: 28px; }
  .about-panel { border-radius: 28px; min-height: 0; }
  .about-deco { left: auto; right: -40px; top: auto; bottom: -40px; width: 220px; height: 220px; }
  .about-deco-2 { display: none; }
  .about-body {
    position: static;
    width: 100%;
    padding: 44px 28px 48px;
    gap: 24px;
  }
  .about-title { font-size: clamp(30px, 6.4vw, 56px); line-height: 1.08; letter-spacing: -0.025em; }
  .about-text { font-size: clamp(15px, 2vw, 18px); line-height: 1.65; }

  /* properties */
  .properties {
    border-radius: 28px;
    padding: 24px 20px 28px;
    margin-top: 72px;
  }
  .properties-notch { display: none; }
  .properties-tag {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 22px 24px;
    margin-bottom: 24px;
    font-size: clamp(34px, 9.6vw, 84px);
    letter-spacing: -0.03em;
  }
  .properties-row-1 { flex-direction: column; gap: 16px; }
  .properties-row-2 { gap: 16px; margin-top: 16px; }
  .properties-pair { padding-top: 0; gap: 16px; }
  .properties-stack { gap: 16px; }
  .pr-a, .pr-b, .pr-c1, .pr-c2, .pr-wide, .pr-tall { border-radius: 18px; }

  /* services */
  .services { height: auto; border-radius: 28px; margin-top: 72px; }
  .services-inner { width: auto; margin: 0; padding: 44px 20px 48px; gap: 32px; }
  .services-title { width: auto; font-size: clamp(40px, 11vw, 96px); letter-spacing: -0.035em; }
  .services-cards { flex-direction: column; gap: 16px; }
  .service-card { aspect-ratio: auto; border-radius: 24px; padding: 28px; }
  .service-card:hover { transform: none; }
  .service-num { position: static; font-size: 40px; line-height: 1.1; opacity: .5; }
  .service-body { position: static; width: 100%; margin-top: 16px; gap: 16px; }
  .service-name { font-size: clamp(28px, 6.6vw, 46px); line-height: 1.06; }
  .service-name br { display: none; }
  .service-text { font-size: clamp(15px, 2vw, 18px); line-height: 1.6; }

  /* cta */
  .cta { border-radius: 28px; padding: 48px 20px 28px; margin-top: 72px; margin-bottom: 28px; }
  .cta-top { flex-direction: column; gap: 32px; }
  .cta-copy { gap: 24px; }
  .cta-title { font-size: clamp(44px, 12vw, 110px); line-height: 1.02; letter-spacing: -0.03em; }
  .cta-title br { display: none; }
  .cta-text { font-size: clamp(18px, 3.4vw, 30px); line-height: 1.35; font-weight: 400; }
  .cta-text br { display: none; }
  .contact-card { width: 100%; min-height: 0; border-radius: 28px; padding: 32px 24px; gap: 10px; align-items: flex-start; text-align: left; }
  .contact-card-title { font-size: 22px; line-height: 1.2; }
  .contact-card-link { font-size: 16px; }

  .contact-form { margin-top: 48px; grid-template-columns: 1fr; gap: 18px; }
  .field label { font-size: 14px; }
  .field input, .field textarea { font-size: 16px; border-radius: 16px; padding: 14px 18px; }
  .field textarea { min-height: 120px; }
  .field-error { font-size: 13px; min-height: 0; }
  .form-actions { flex-direction: column-reverse; align-items: stretch; gap: 16px; }
  .btn-light { width: 100%; }
  .form-status { font-size: 15px; text-align: center; }

  .footer-bar {
    margin-top: 48px;
    height: auto;
    border-radius: 24px;
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-brand { font-size: 18px; }
  .footer-nav { gap: 24px; flex-wrap: wrap; }
  .footer-nav a { font-size: 16px; letter-spacing: normal; }
}

@media (max-width: 640px) {
  .properties-pair { flex-direction: column; }
  .pr-a, .pr-b { aspect-ratio: 4 / 3; }
  .pr-tall { aspect-ratio: 4 / 5; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  body.is-loading .site-header,
  body.is-loading .mask-in,
  body.is-loading .reveal,
  body.is-loading .photo-reveal,
  body.is-loading .photo-reveal img {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
