
:root {
  --ink: #071a2a;
  --graphite: #0c2235;
  --panel: #123047;
  --paper: #f6f5f1;
  --mist: #e8eef1;
  --muted: #a6b4bd;
  --steel: #7894a6;
  --accent: #126b94;
  --accent-bright: #0d587a;
  --accent-deep: #083e59;
  --line: rgba(224, 233, 238, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  height: 82px;
  display: grid;
  grid-template-columns: 340px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 26, 42, 0.97);
  position: relative;
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: auto; height: 52px; object-fit: contain; }
.brand small {
  color: #e2ebef;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 48px); }
nav a { font-size: 14px; position: relative; padding: 10px 0; }
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  transition: right .2s ease;
}
nav a:hover::after, nav a:focus-visible::after { right: 0; }
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  align-items: center;
  gap: 36px;
  padding: 72px max(5vw, 36px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,20,33,.98) 0%, rgba(7,26,42,.93) 44%, rgba(8,31,50,.42) 72%, rgba(5,20,33,.68) 100%),
    radial-gradient(circle at 72% 50%, rgba(18, 107, 148, .14), transparent 25%),
    url("hero-commercial-fitout.webp") center / cover no-repeat;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-grid::after {
  content: "";
  position: absolute;
  right: 14%;
  top: -10%;
  width: 28%;
  height: 130%;
  border-left: 1px solid rgba(18,107,148,.68);
  border-right: 1px solid rgba(120,148,166,.25);
  transform: skewX(-13deg);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,17,29,.28), transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; animation: rise .55s ease both; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: #d3dde2;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 2px; background: var(--accent); }
h1, h2 {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: .015em;
  text-transform: uppercase;
}
h1 { margin: 0; font-size: clamp(50px, 4.7vw, 70px); line-height: 1.02; max-width: 760px; }
.hero-copy { max-width: 650px; margin: 28px 0 0; color: #d3dde2; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #ffffff; background: var(--accent); border-color: var(--accent); }
.button-primary:hover { background: var(--accent-bright); }
.button-secondary:hover { border-color: var(--steel); background: rgba(120,148,166,.08); }

.control-stack { position: relative; z-index: 2; display: grid; gap: 14px; animation: rise .65s .1s ease both; }
.control-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: 48px 1fr 8px;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(16, 43, 63, .95);
  box-shadow: 0 18px 35px rgba(1,10,17,.3);
  transition: transform .2s ease, border-color .2s ease;
}
.control-card:hover { transform: translateY(-3px); border-color: rgba(18,107,148,.78); }
.control-card svg { width: 40px; height: 40px; fill: none; stroke: var(--paper); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.control-card span { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.control-card i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }

.credibility {
  min-height: 106px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #081d2e;
}
.credibility a { display: flex; gap: 18px; align-items: center; padding: 24px 32px; border-right: 1px solid var(--line); font-size: 16px; }
.credibility a:last-child { border-right: 0; }
.credibility span { color: #6ea6c0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; }
.intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
  padding: 120px max(5vw, 36px);
  background: var(--paper);
  color: var(--ink);
}
.section-label { margin: 7px 0 0; color: var(--accent-deep); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.intro h2 { margin: 0; font-size: clamp(38px, 4vw, 64px); line-height: 1; }
.intro div p { max-width: 700px; color: #52616c; font-size: 19px; line-height: 1.65; }

.services-section { background: var(--paper); color: var(--ink); padding: 0 max(5vw, 36px) 120px; }
.service-card {
  display: grid;
  grid-template-columns: 90px minmax(280px, 1.2fr) minmax(250px, .9fr) 180px;
  align-items: start;
  gap: 34px;
  padding: 46px 0;
  border-top: 1px solid #c7d1d7;
  scroll-margin-top: 84px;
}
.service-card:last-child { border-bottom: 1px solid #c7d1d7; }
.service-number { color: var(--accent-deep); font: 700 12px/1 ui-monospace, monospace; }
.service-card h3, .process-list h3, .industry-grid h3, .project-grid h3 { margin: 0; font-size: 24px; line-height: 1.2; }
.service-card p { color: #52616c; line-height: 1.7; }
.service-card ul { margin: 0; padding: 0; list-style: none; }
.service-card li { padding: 9px 0; border-bottom: 1px solid #d6dfe3; font-size: 14px; }
.service-card li::before { content: "—"; color: var(--accent-deep); margin-right: 10px; }
.service-card > a, .text-link { color: #27556e; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

.process-section { display: grid; grid-template-columns: 1fr 1.45fr; gap: 80px; padding: 120px max(5vw, 36px); background: var(--mist); color: var(--ink); }
.process-heading h2, .section-head h2, .about-section h2, .contact-intro h2 { margin: 18px 0 0; font-size: clamp(42px, 4.5vw, 70px); line-height: 1; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid #aebdc5; }
.process-list li:last-child { border-bottom: 1px solid #aebdc5; }
.process-list > li > span { color: var(--accent-deep); font: 700 11px/1 ui-monospace, monospace; padding-top: 5px; }
.process-list p { margin: 8px 0 0; color: #52616c; line-height: 1.6; }

.industries-section { padding: 120px max(5vw, 36px); background: var(--paper); color: var(--ink); }
.section-head { max-width: 940px; }
.section-head > p:last-child { max-width: 720px; color: #52616c; font-size: 18px; line-height: 1.65; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; border-top: 1px solid #c5d0d6; border-bottom: 1px solid #c5d0d6; }
.industry-grid article { min-height: 280px; padding: 32px; border-right: 1px solid #c5d0d6; }
.industry-grid article:last-child { border-right: 0; }
.industry-grid span { display: block; margin-bottom: 70px; color: var(--accent-deep); font: 700 11px/1 ui-monospace, monospace; }
.industry-grid p { color: #52616c; line-height: 1.65; }

.projects-section { padding: 120px max(5vw, 36px); background: #0b2032; }
.section-head.light > p:last-child { color: #b5c2ca; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 64px; background: var(--line); border: 1px solid var(--line); }
.project-grid article { min-height: 280px; padding: 42px; background: #123047; }
.project-grid .project-feature { grid-row: span 3; min-height: 840px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(rgba(7,26,42,.28), rgba(7,26,42,.94)), url("hero-commercial-fitout.webp") 68% center / cover; }
.project-tag { margin-bottom: 22px; color: #d3dde2; font: 700 11px/1.3 ui-monospace, monospace; letter-spacing: .08em; text-transform: uppercase; }
.project-grid h3 { font-size: 30px; }
.project-grid p { color: #c4d0d6; line-height: 1.7; }
.project-grid dl { margin: 30px 0 0; }
.project-grid dl div { display: grid; grid-template-columns: 130px 1fr; padding: 13px 0; border-top: 1px solid var(--line); }
.project-grid dt { color: var(--muted); font-size: 12px; text-transform: uppercase; }
.project-grid dd { margin: 0; }

.about-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding: 120px max(5vw, 36px); background: var(--paper); color: var(--ink); }
.about-mark { min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; color: var(--paper); background: #0d2c43; overflow: hidden; }
.about-logo { width: min(100%, 340px); height: auto; object-fit: contain; object-position: left bottom; }
.about-mark span { margin-top: 40px; font: 700 11px/1 Arial, sans-serif; color: #d3dde2; letter-spacing: .16em; text-transform: uppercase; }
.about-section > div:last-child { align-self: center; }
.about-section > div > p:not(.section-label) { color: #52616c; font-size: 17px; line-height: 1.75; }
.text-link { display: inline-block; margin-top: 24px; }

.faq-section { padding: 120px max(5vw, 36px); background: #edf1f3; color: var(--ink); }
.faq-list { margin-top: 64px; border-top: 1px solid #aebdc5; }
details { border-bottom: 1px solid #aebdc5; }
summary { display: flex; justify-content: space-between; gap: 24px; padding: 28px 0; cursor: pointer; font-size: 18px; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--accent-deep); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details > p { max-width: 850px; margin: -4px 0 30px; color: #52616c; line-height: 1.75; }

.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding: 120px max(5vw, 36px); background: #081c2c; }
.contact-intro > p:not(.section-label) { max-width: 560px; color: #becbd2; font-size: 17px; line-height: 1.7; }
.direct-contact { display: grid; gap: 8px; margin-top: 48px; }
.direct-contact span { margin-top: 16px; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.direct-contact strong { color: #d3dde2; font-size: 20px; line-height: 1.4; }
.intake-form { padding: 42px; border: 1px solid var(--line); background: #102b3f; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.intake-form label { display: grid; gap: 9px; color: #d1dce1; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.intake-form .wide { grid-column: 1 / -1; }
.intake-form input, .intake-form select, .intake-form textarea { width: 100%; min-height: 48px; border: 1px solid #486477; border-radius: 0; padding: 12px; color: var(--paper); background: #0a2132; font: 400 15px/1.4 Arial, sans-serif; text-transform: none; }
.intake-form textarea { resize: vertical; }
.intake-form input:focus, .intake-form select:focus, .intake-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.consent { display: flex !important; grid-template-columns: 18px 1fr !important; align-items: center; margin: 24px 0; text-transform: none !important; letter-spacing: 0 !important; }
.consent input { min-height: 18px; accent-color: var(--accent); }
.intake-form button { cursor: pointer; }
.intake-form button:disabled { cursor: wait; opacity: .72; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note, .form-status { color: var(--muted); font-size: 11px; line-height: 1.5; }
.form-status { color: #d3dde2; min-height: 16px; }

footer { display: grid; grid-template-columns: 1fr 1.2fr .8fr; gap: 40px; padding: 64px max(5vw, 36px) 40px; border-top: 1px solid var(--line); background: #06131f; }
.footer-brand { display: grid; gap: 10px; }
.footer-brand img { width: auto; height: 88px; object-fit: contain; object-position: left center; }
.footer-brand span, footer p { color: var(--muted); font-size: 13px; }
footer > div:last-of-type { display: grid; align-content: start; gap: 16px; text-align: right; }
footer > div:last-of-type a { color: #c8d6dd; }
footer small { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid var(--line); color: #84949e; font-size: 10px; line-height: 1.6; }

.legal-page { max-width: 940px; min-height: 100vh; margin: 0 auto; padding: 70px 32px 110px; background: var(--paper); color: var(--ink); }
.legal-brand { width: fit-content; display: flex; align-items: center; gap: 16px; margin-bottom: 80px; padding: 12px 18px; background: #071a2a; }
.legal-brand img { width: auto; height: 62px; object-fit: contain; }
.legal-brand span { color: #8fa0aa; font: 700 10px/1 Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.legal-page h1 { margin-bottom: 16px; }
.legal-page h2 { margin-top: 42px; font: 700 24px/1.2 Arial, sans-serif; text-transform: none; }
.legal-page p { color: #52616c; line-height: 1.8; }
.legal-page a:not(.button):not(.legal-brand) { color: #27556e; text-decoration: underline; }
.legal-note { margin: 48px 0 28px; padding: 20px; border-left: 3px solid #5f91aa; background: #e8eceb; font-weight: 700; }

@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 22px; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 66px; }
  .control-stack { grid-template-columns: repeat(3, 1fr); }
  .control-card { grid-template-columns: 32px 1fr; min-height: 88px; padding: 14px; }
  .control-card svg { width: 30px; height: 30px; }
  .control-card i { display: none; }
  .credibility { grid-template-columns: repeat(2, 1fr); }
  .credibility a:nth-child(2) { border-right: 0; }
  .credibility a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-card { grid-template-columns: 60px 1fr; }
  .service-card ul, .service-card > a { grid-column: 2; }
  .process-section, .about-section, .contact-section { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid article:nth-child(2) { border-right: 0; }
  .industry-grid article:nth-child(-n+2) { border-bottom: 1px solid #c5d0d6; }
}

@media (max-width: 640px) {
  .site-header { height: 70px; }
  .brand { gap: 9px; }
  .brand small { font-size: 10px; letter-spacing: .08em; }
  .header-cta span { display: none; }
  .brand-logo { height: 46px; }
  .header-cta { padding: 0 12px; font-size: 10px; }
  .hero { min-height: 0; padding: 58px 22px 42px; }
  h1 { font-size: clamp(45px, 13.6vw, 60px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .control-stack { grid-template-columns: 1fr; margin-top: 16px; }
  .control-card { min-height: 68px; }
  .credibility { grid-template-columns: 1fr; }
  .credibility a { min-height: 68px; border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 22px; }
  .intro { grid-template-columns: 1fr; gap: 32px; padding: 80px 22px; }
  .services-section { padding: 0 22px 80px; }
  .service-card { grid-template-columns: 1fr; gap: 18px; padding: 34px 0; }
  .service-card ul, .service-card > a { grid-column: 1; }
  .process-section, .industries-section, .projects-section, .about-section, .faq-section, .contact-section { padding: 80px 22px; }
  .industry-grid, .project-grid { grid-template-columns: 1fr; }
  .industry-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid #c5d0d6; }
  .industry-grid span { margin-bottom: 34px; }
  .project-grid .project-feature { grid-row: auto; min-height: 520px; }
  .about-mark { min-height: 300px; }
  .form-grid { grid-template-columns: 1fr; }
  .intake-form { padding: 24px; }
  .intake-form .wide { grid-column: 1; }
  footer { grid-template-columns: 1fr; padding: 54px 22px 32px; }
  footer > div:last-of-type { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
