:root {
  --ink: #08264a;
  --ink-deep: #061a32;
  --cyan: #06769f;
  --sky: #8ad9e9;
  --ice: #e8f8fb;
  --paper: #f8f7f3;
  --white: #fff;
  --muted: #5b6772;
  --line: rgba(8, 38, 74, .15);
  --shell: min(1180px, calc(100% - 40px));
  --radius: 22px;
  --shadow: 0 24px 70px rgba(3, 31, 60, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button, a[href] { cursor: pointer; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--cyan); color: var(--white); }

.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;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 12px 18px;
  background: var(--white);
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #f6c445; outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: var(--ink);
  transition: background-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(248, 247, 243, .94);
  box-shadow: 0 8px 30px rgba(8, 38, 74, .08);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 18px rgba(8, 38, 74, .12);
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong {
  font: 700 18px/1 "Outfit", sans-serif;
  letter-spacing: -.02em;
}
.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); }
.site-nav > a:not(.nav-call) {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.site-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--cyan);
  transition: right .2s ease;
}
.site-nav > a:not(.nav-call):hover::after { right: 0; }
.nav-call {
  min-height: 50px;
  display: grid;
  align-content: center;
  padding: 8px 22px;
  border-radius: 100px;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  line-height: 1.05;
  transition: transform .2s ease, background .2s ease;
}
.nav-call:hover { transform: translateY(-2px); background: var(--cyan); }
.nav-call span { font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.nav-call strong { margin-top: 5px; font: 600 14px/1 "Outfit", sans-serif; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 150px 0 0;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(115deg, rgba(255,255,255,.97) 0 38%, rgba(232,248,251,.78) 63%, rgba(138,217,233,.72) 100%),
    radial-gradient(circle at 75% 20%, #fff 0, transparent 36%);
}
.hero-aura {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -100px;
  top: -170px;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,.95), rgba(9,168,220,.42) 48%, rgba(8,38,74,.08) 72%);
  filter: blur(2px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}
.hero-copy { position: relative; z-index: 2; padding-bottom: 105px; }
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--sky); }
h1, h2, h3 { margin: 0; font-family: "Outfit", sans-serif; }
h1 {
  max-width: 760px;
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: .91;
  letter-spacing: -.065em;
  font-weight: 700;
}
h1 em, h2 em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 500;
}
.hero-intro {
  max-width: 590px;
  margin: 30px 0 0;
  color: #425366;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 22px 15px 26px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button:active, .nav-call:active, .contact-actions a:active { transform: translateY(1px) scale(.985); }
.button:hover svg { transform: translateX(4px); }
.button-primary {
  min-width: 250px;
  color: var(--white);
  background: linear-gradient(100deg, var(--ink) 0 62%, #0c426f);
  box-shadow: 0 16px 35px rgba(8, 38, 74, .2);
}
.button-primary:hover { box-shadow: 0 20px 45px rgba(8, 38, 74, .27); }
.text-link { font-weight: 600; text-underline-offset: 6px; }
.text-link span { color: var(--cyan); margin-left: 5px; }
.proof-strip {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-strip > a, .proof-strip > div {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.proof-strip span:not(.proof-icon) { display: grid; line-height: 1.2; }
.proof-strip strong { font: 600 14px/1.2 "Outfit", sans-serif; }
.proof-strip small { margin-top: 4px; color: var(--muted); font-size: 11px; }
.proof-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan);
  font-size: 14px;
  font-weight: 800;
}
.proof-pin {
  position: relative;
  background: var(--ink);
}
.proof-pin::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 2px solid white;
  border-radius: 50%;
}
.proof-pin::after {
  content: "";
  position: absolute;
  bottom: 6px;
  border: 4px solid transparent;
  border-top-color: white;
}
.proof-divider { width: 1px; height: 35px; background: var(--line); }

.hero-visual {
  position: relative;
  height: 585px;
  align-self: end;
}
.hero-frame {
  position: absolute;
  inset: 0 0 0 44px;
  overflow: hidden;
  border-radius: 240px 240px 26px 26px;
  box-shadow: var(--shadow);
  background: var(--ice);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(6,26,50,.24));
  pointer-events: none;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.finish-word {
  position: absolute;
  top: 48%;
  right: -240px;
  z-index: -1;
  transform: rotate(90deg);
  color: transparent;
  -webkit-text-stroke: 1px rgba(8,38,74,.18);
  font: 800 120px/.8 "Outfit", sans-serif;
  letter-spacing: .05em;
}
.project-label {
  position: absolute;
  left: 0;
  bottom: 47px;
  z-index: 2;
  width: 205px;
  padding: 22px 24px;
  border-radius: 0 18px 18px 0;
  color: var(--white);
  background: linear-gradient(130deg, var(--ink), #0c4d80);
  box-shadow: 0 18px 40px rgba(8,38,74,.24);
}
.project-label span {
  display: block;
  margin-bottom: 10px;
  color: var(--sky);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.project-label strong { font: 600 20px/1.15 "Outfit", sans-serif; }
.paint-chip {
  position: absolute;
  right: -17px;
  top: 92px;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 100px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 30px rgba(8,38,74,.12);
  backdrop-filter: blur(12px);
}
.paint-chip span {
  width: 28px;
  height: 28px;
  margin-left: -5px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--chip);
}
.paint-chip small { margin: 0 8px 0 9px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.service-ticker {
  height: 66px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.service-ticker > div {
  width: max-content;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  padding-inline: 32px;
}
.service-ticker span { white-space: nowrap; font: 500 13px/1 "Outfit", sans-serif; letter-spacing: .05em; text-transform: uppercase; }
.service-ticker i { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--cyan); }

.section { padding: clamp(90px, 10vw, 145px) 0; }
.section-heading {
  max-width: 790px;
  display: grid;
  grid-template-columns: 1fr minmax(250px, 300px);
  column-gap: 48px;
  align-items: end;
}
.section-heading .eyebrow { grid-column: 1 / -1; }
h2 {
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 650;
}
.section-heading > p:last-child { margin: 0; color: var(--muted); }
.service-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  min-height: 435px;
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.58);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-7px); background: var(--white); box-shadow: 0 22px 55px rgba(8,38,74,.1); }
.service-card.featured { color: var(--white); background: linear-gradient(150deg, var(--ink) 0 55%, #0a6091 100%); border-color: transparent; }
.service-number { color: var(--cyan); font: 700 11px/1 "Outfit", sans-serif; letter-spacing: .12em; }
.service-mark {
  position: relative;
  width: 120px;
  height: 112px;
  margin: 34px 0 20px;
}
.service-mark::before, .service-mark::after { content: ""; position: absolute; }
.service-mark-interior::before { inset: 11px 12px 4px; border: 2px solid var(--cyan); border-radius: 50% 50% 2px 2px; }
.service-mark-interior::after { width: 62px; height: 2px; left: 29px; bottom: 3px; background: var(--ink); box-shadow: 0 -44px 0 var(--ink); }
.service-mark-exterior::before { width: 78px; height: 78px; left: 21px; top: 22px; transform: rotate(45deg); border: 2px solid var(--sky); border-radius: 3px; }
.service-mark-exterior::after { width: 46px; height: 52px; left: 37px; bottom: 2px; border: 2px solid white; border-bottom: 0; background: var(--ink); }
.service-mark-reno::before { width: 76px; height: 76px; left: 22px; top: 20px; border: 2px solid var(--cyan); box-shadow: 12px 12px 0 rgba(9,168,220,.17); }
.service-mark-reno::after { width: 2px; height: 105px; left: 59px; top: 5px; background: var(--ink); transform: rotate(45deg); }
.service-card h3 { font-size: 27px; line-height: 1.05; letter-spacing: -.03em; }
.service-card p { margin: 15px 0 24px; color: var(--muted); line-height: 1.55; }
.service-card.featured p { color: rgba(255,255,255,.74); }
.service-card > a {
  margin-top: auto;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  text-underline-offset: 5px;
}
.service-card > a span { color: var(--cyan); margin-left: 4px; }

.work {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 7% 10%, rgba(9,168,220,.24), transparent 28%),
    linear-gradient(135deg, var(--ink-deep), var(--ink) 68%, #0a416c);
  overflow: hidden;
}
.work::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -200px;
  bottom: -280px;
  border: 1px solid rgba(138,217,233,.32);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(138,217,233,.04), 0 0 0 120px rgba(138,217,233,.03);
}
.work-shell { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 8vw, 110px); align-items: center; }
.work-intro p:not(.eyebrow) { max-width: 420px; margin: 28px 0 34px; color: rgba(255,255,255,.68); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--cyan); }
.project-gallery {
  position: relative;
  min-height: 640px;
}
.project-gallery figure { margin: 0; overflow: hidden; background: #102f4e; box-shadow: 0 22px 60px rgba(0,0,0,.22); }
.project-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.project-gallery figure:hover img { transform: scale(1.035); }
.gallery-main {
  width: 66%;
  height: 590px;
  margin-left: auto !important;
  border-radius: 190px 190px 18px 18px;
}
.gallery-main figcaption {
  position: absolute;
  left: 37%;
  bottom: 28px;
  display: grid;
  padding: 15px 18px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  font: 600 13px/1.2 "Outfit", sans-serif;
}
.gallery-main figcaption span { margin-top: 4px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.gallery-detail {
  position: absolute;
  width: 38%;
  height: 265px;
  left: 0;
  top: 64px;
  border: 8px solid var(--ink);
  border-radius: 18px;
}
.gallery-detail-two { top: 355px; height: 205px; }
.gallery-detail figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--white);
  font: 600 11px/1 "Outfit", sans-serif;
}

.about-grid { display: grid; grid-template-columns: minmax(360px,.85fr) minmax(0,1.15fr); gap: clamp(70px,10vw,140px); align-items: center; }
.about-mark { position: relative; }
.about-mark::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -1;
  border-radius: 48% 52% 54% 46%;
  background: linear-gradient(145deg, rgba(138,217,233,.72), rgba(232,248,251,.25));
  transform: rotate(-7deg);
}
.about-mark img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.orbit-text {
  position: absolute;
  right: -35px;
  bottom: 20px;
  padding: 10px 16px;
  border-radius: 100px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}
.about-copy .about-lead { max-width: 680px; margin: 30px 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 36px 0; }
.values div { padding-top: 16px; border-top: 2px solid var(--cyan); }
.values strong { display: block; font: 600 17px/1.2 "Outfit", sans-serif; }
.values span { color: var(--muted); font-size: 12px; }
blockquote { margin: 38px 0 0; padding: 22px 0 0 28px; border-left: 3px solid var(--cyan); }
blockquote p { margin: 0; font: 500 21px/1.4 "Outfit", sans-serif; letter-spacing: -.015em; }
blockquote cite { display: block; margin-top: 10px; color: var(--muted); font-size: 11px; font-style: normal; text-transform: uppercase; letter-spacing: .1em; }

.area-band { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.area-band .shell { display: flex; align-items: center; gap: 34px; }
.area-band p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.area-band ul { flex: 1; display: flex; justify-content: space-between; gap: 20px; margin: 0; padding: 0; list-style: none; font: 600 clamp(17px,2vw,25px)/1 "Outfit", sans-serif; }
.area-band li:not(:last-child)::after { content: "•"; margin-left: clamp(20px,4vw,60px); color: var(--cyan); }

.contact {
  position: relative;
  padding-bottom: clamp(100px,12vw,170px);
  color: var(--white);
  background: linear-gradient(125deg, #07345d 0 48%, var(--cyan) 100%);
  overflow: hidden;
}
.contact-sweep {
  position: absolute;
  width: 880px;
  height: 880px;
  right: -280px;
  top: -500px;
  border: 150px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.contact-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(60px,9vw,130px); align-items: end; }
.contact-copy p:last-child { max-width: 540px; margin: 27px 0 0; color: rgba(255,255,255,.86); font-size: 18px; }
.contact-copy h2 em { color: var(--sky); }
.contact-actions { display: grid; gap: 10px; }
.contact-actions a {
  position: relative;
  min-height: 96px;
  display: grid;
  align-content: center;
  padding: 18px 62px 18px 24px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  transition: background .2s ease, transform .2s ease;
}
.contact-actions a:hover { transform: translateX(6px); background: rgba(255,255,255,.16); }
.contact-actions small { color: var(--sky); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.contact-actions strong { margin-top: 6px; font: 600 clamp(18px,2vw,25px)/1.1 "Outfit", sans-serif; overflow-wrap: anywhere; }
.contact-actions a > span { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; }

.site-footer { padding: 52px 0 80px; color: rgba(255,255,255,.75); background: var(--ink-deep); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 40px; align-items: center; }
.footer-brand { color: var(--white); }
.footer-brand .brand-copy small { color: rgba(255,255,255,.55); }
.footer-grid > p { margin: 0; font-size: 13px; line-height: 1.5; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; font-weight: 600; text-underline-offset: 5px; }
.copyright { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.mobile-cta { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.service-card:nth-child(2) { transition-delay: .08s; }
.service-card:nth-child(3) { transition-delay: .16s; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .site-nav > a:not(.nav-call) { display: none; }
  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 15px; }
  .hero-visual { width: min(100%, 580px); height: 650px; margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { max-width: 560px; margin-top: 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .service-mark { margin-top: 18px; margin-bottom: 10px; transform: scale(.78); transform-origin: left center; }
  .work-shell { grid-template-columns: 1fr; }
  .work-intro { max-width: 620px; }
  .about-grid { grid-template-columns: .8fr 1.2fr; gap: 55px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-actions { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-self: end; }
  .footer-grid > p { display: none; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 28px); --radius: 17px; }
  body { padding-bottom: 66px; }
  .header-inner { min-height: 76px; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 8px; }
  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 14px 24px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(8,38,74,.12);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav > a:not(.nav-call) { min-height: 50px; display: flex; align-items: center; padding: 0 10px; border-bottom: 1px solid var(--line); }
  .nav-call { margin-top: 14px; text-align: center; }
  .hero { min-height: auto; padding-top: 115px; }
  h1 { font-size: clamp(48px,15vw,67px); }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .button-primary { width: 100%; min-width: 0; }
  .text-link { min-height: 44px; display: inline-flex; align-items: center; }
  .proof-strip { margin-top: 30px; gap: 13px; }
  .proof-strip strong { font-size: 11px; }
  .proof-strip small { font-size: 9px; }
  .proof-divider { height: 30px; }
  .hero-visual { height: 500px; margin-top: 18px; }
  .hero-frame { left: 24px; border-radius: 150px 150px 18px 18px; }
  .project-label { width: 170px; bottom: 25px; padding: 16px 18px; }
  .project-label strong { font-size: 17px; }
  .paint-chip { top: 55px; right: -6px; }
  .paint-chip small { display: none; }
  .finish-word { display: none; }
  .service-ticker { position: relative; margin-top: 0; }
  .service-ticker > div { justify-content: flex-start; overflow: hidden; }
  .service-ticker span:nth-of-type(n+5), .service-ticker span:nth-of-type(n+5) + i { display: none; }
  .section { padding: 86px 0; }
  .section-heading h2, h2 { font-size: clamp(41px,12vw,58px); }
  .service-grid { margin-top: 48px; }
  .service-card { min-height: 360px; padding: 24px; }
  .work-shell { gap: 55px; }
  .project-gallery { min-height: 520px; }
  .gallery-main { width: 73%; height: 485px; }
  .gallery-detail { width: 43%; height: 200px; top: 55px; }
  .gallery-detail-two { top: 278px; height: 172px; }
  .gallery-main figcaption { left: 29%; }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-mark { width: 84%; margin-inline: auto; }
  .values { grid-template-columns: 1fr; }
  .values div { display: flex; justify-content: space-between; align-items: baseline; }
  .area-band .shell { align-items: flex-start; flex-direction: column; gap: 18px; }
  .area-band ul { width: 100%; display: grid; grid-template-columns: 1fr 1fr; row-gap: 18px; }
  .area-band li::after { display: none; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-actions a { min-height: 88px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: block;
    padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
    background: rgba(6,26,50,.96);
    backdrop-filter: blur(12px);
  }
  .mobile-cta a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-radius: 12px;
    color: var(--ink);
    background: var(--sky);
    text-decoration: none;
  }
  .mobile-cta span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-cta strong { font: 700 16px/1 "Outfit", sans-serif; }
}

@media (max-width: 390px) {
  .brand-copy small { display: none; }
  .proof-strip { align-items: flex-start; flex-direction: column; }
  .proof-divider { display: none; }
  .hero-visual { height: 445px; }
  .project-gallery { min-height: 455px; }
  .gallery-main { height: 430px; }
  .gallery-detail { height: 170px; }
  .gallery-detail-two { top: 245px; height: 145px; }
  .contact-actions strong { font-size: 17px; }
}

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