:root {
  color-scheme: light;
  --ink: #07384a;
  --ink-strong: #062536;
  --paper: #ffffff;
  --mist: #f5fbfc;
  --mist-2: #edf8f9;
  --surface: #ffffff;
  --text: #1b343d;
  --text-soft: #5b717a;
  --muted: #7f939b;
  --teal: #13aaa8;
  --teal-deep: #087b82;
  --blue: #0b5b91;
  --sun: #f4b052;
  --red: #e55f4c;
  --line: rgba(7, 56, 74, 0.12);
  --line-soft: rgba(7, 56, 74, 0.08);
  --shadow: 0 26px 70px rgba(7, 56, 74, 0.14);
  --shadow-soft: 0 16px 42px rgba(7, 56, 74, 0.1);
  --shadow-lift: 0 22px 58px rgba(7, 56, 74, 0.12);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--mist) 48%, var(--paper) 100%);
  color: var(--text);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  isolation: isolate;
}

body::before,
body::after {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(19, 170, 168, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--sun);
  color: var(--ink-strong);
  padding: 10px 14px;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 1.0);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(255, 255, 255, 1.0);
  box-shadow: 0 14px 34px rgba(7, 56, 74, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 52px;
  max-height: 52px;
  object-fit: contain;
}

.brand-location {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(7, 56, 74, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  background: var(--mist-2);
  color: var(--ink);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: var(--paper);
  background: var(--ink);
}

.site-nav .nav-cta:hover {
  background: var(--teal);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-dark {
  background: var(--paper);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 118px 28px 0;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 251, 252, 0.92)),
    linear-gradient(rgba(7, 91, 145, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 91, 145, 0.045) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
}

.hero::after {
  display: none;
}

.hero-grid,
.work-section,
.services-section,
.profile-section,
.process-section,
.local-grid,
.faq-section,
.contact-section,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-areas:
    "copy visual"
    "proof visual";
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 58px;
  min-height: calc(100svh - 204px);
}

.hero-copy {
  grid-area: copy;
  padding: 34px 0 0;
}

.hero-location,
.section-label {
  margin: 0 0 16px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: 84px;
  line-height: 0.94;
}

h2 {
  color: var(--ink);
  font-size: 46px;
  line-height: 1.08;
}

h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.hero-kicker {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.16;
}

.hero-lede {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal);
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(19, 170, 168, 0.2);
}

.button-primary:hover {
  background: var(--blue);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-quiet {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}

.button-quiet:hover {
  border-color: rgba(19, 170, 168, 0.36);
  background: var(--mist-2);
}

.hero-proof {
  grid-area: proof;
  display: grid;
  grid-template-columns: 1fr 1fr 1.14fr;
  gap: 0;
  max-width: 710px;
  margin: -8px 0 74px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 48px rgba(7, 56, 74, 0.08);
  backdrop-filter: blur(10px);
}

.hero-proof div {
  min-height: 98px;
  padding: 18px;
}

.hero-proof div + div {
  border-left: 1px solid var(--line);
}

.hero-proof dt {
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-proof dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  word-break: normal;
  overflow-wrap: normal;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.portrait-frame {
  position: relative;
  width: min(100%, 510px);
  margin: 0;
  aspect-ratio: 0.82;
  overflow: hidden;
  border: 1px solid rgba(7, 56, 74, 0.13);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, 0.9)),
    linear-gradient(90deg, rgba(19, 170, 168, 0.08), transparent 38%);
  pointer-events: none;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: 3px;
  z-index: 2;
  background: linear-gradient(var(--teal), var(--blue));
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  filter: contrast(1.04) brightness(1.04);
}

.portrait-frame figcaption {
  position: absolute;
  left: 20px;
  right: 44px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
}

.portrait-frame figcaption span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.portrait-frame figcaption strong {
  max-width: 260px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.12;
  text-align: right;
}

.hero-next {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-next span {
  min-height: 76px;
  padding: 25px 20px;
  border-right: 1px solid var(--line);
  color: rgba(7, 56, 74, 0.58);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.work-section,
.services-section,
.process-section,
.faq-section {
  padding: 108px 28px;
}

.section-intro {
  max-width: 820px;
}

.section-intro p:last-child {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}

.section-dark .section-intro p:last-child {
  color: var(--text-soft);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.work-panel {
  background: var(--surface);
  border: 1px solid rgba(7, 56, 74, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7, 56, 74, 0.07);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.work-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(19, 170, 168, 0.22);
  box-shadow: var(--shadow-lift);
}

.work-link {
  display: grid;
  grid-template-rows: 404px 1fr;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.device {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #f9fcfc 0%, #eef8f8 100%);
}

.device::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(7, 56, 74, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.18));
  pointer-events: none;
}

.device-pair {
  min-height: 404px;
}

.device-bright {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96) 0%, rgba(232, 248, 245, 0.96) 58%, rgba(255, 248, 237, 0.92) 100%);
}

.device-clinical {
  background:
    linear-gradient(155deg, rgba(250, 253, 254, 0.98) 0%, rgba(235, 246, 250, 0.98) 56%, rgba(246, 251, 250, 0.94) 100%);
}

.iphone {
  position: relative;
  z-index: 1;
  width: 164px;
  padding: 9px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, #07141a, #244450 48%, #07141a),
    #0a0f12;
  box-shadow:
    0 30px 58px rgba(7, 56, 74, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.iphone-chorbie {
  transform: translateX(-44px) rotate(-5deg);
}

.iphone-chorbie-alt {
  position: absolute;
  top: 58px;
  left: calc(50% + 18px);
  width: 132px;
  opacity: 0.92;
  transform: rotate(6deg);
  box-shadow:
    0 24px 46px rgba(7, 56, 74, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.iphone-seize {
  transform: translateX(-42px) rotate(3deg);
  box-shadow:
    0 30px 60px rgba(7, 56, 74, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.iphone-seize-alt {
  position: absolute;
  top: 58px;
  left: calc(50% + 18px);
  width: 132px;
  opacity: 0.9;
  transform: rotate(-5deg);
  box-shadow:
    0 24px 48px rgba(7, 56, 74, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.work-panel:hover .iphone-chorbie {
  transform: translateX(-48px) rotate(-3deg) translateY(-4px);
}

.work-panel:hover .iphone-seize {
  transform: translateX(-46px) rotate(1deg) translateY(-4px);
}

.work-panel:hover .iphone-chorbie-alt {
  transform: rotate(4deg) translateY(-2px);
}

.work-panel:hover .iphone-seize-alt {
  transform: rotate(-3deg) translateY(-2px);
}

.iphone::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 3;
  width: 56px;
  height: 16px;
  border-radius: 999px;
  background: #05090b;
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.iphone::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 2;
  border-radius: 26px;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.22), transparent 18%, transparent 78%, rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.iphone-button {
  position: absolute;
  width: 3px;
  border-radius: 999px;
  background: #172126;
}

.iphone-button-left {
  left: -3px;
  top: 72px;
  height: 44px;
}

.iphone-button-right {
  right: -3px;
  top: 104px;
  height: 68px;
}

.iphone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 390 / 844;
  border-radius: 26px;
  background: #071014;
}

.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.work-copy {
  padding: 28px;
  border-top: 1px solid rgba(7, 56, 74, 0.08);
}

.work-copy span {
  display: block;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-copy h3 {
  margin-top: 10px;
}

.work-copy p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.services-section {
  max-width: none;
  margin: 0;
  background:
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%);
}

.services-section > .section-intro,
.services-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 50px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 284px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.86);
}

.service-card span,
.process-list span {
  color: var(--teal-deep);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 26px;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--text-soft);
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 110px 28px;
}

.profile-media {
  position: relative;
  max-width: 460px;
}


.profile-media img {
  position: relative;
  width: 100%;
  max-height: 500px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 54% center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: contrast(1.03) brightness(1.04);
}

.profile-copy p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}

.profile-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.profile-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 2px;
  background: var(--sun);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.process-list li {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list h3 {
  margin-top: 54px;
}

.process-list p {
  margin: 16px 0 0;
  color: var(--text-soft);
}

.local-section {
  max-width: none;
  margin: 0;
  padding: 100px 28px;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--mist-2) 100%);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 60px;
  align-items: center;
}

.local-copy p:not(.section-label) {
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}

.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.local-links span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.local-proof-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(7, 91, 145, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 91, 145, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.9);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow-soft);
}

.local-proof-panel::after {
  content: "HULL";
  position: absolute;
  right: -12px;
  bottom: -34px;
  color: rgba(7, 91, 145, 0.055);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 128px;
  font-weight: 800;
  line-height: 1;
}

.local-brand-mark {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto 28px;
  object-fit: contain;
}

.local-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.local-proof-list div {
  padding: 18px 16px 0 0;
}

.local-proof-list dt {
  color: var(--teal-deep);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.local-proof-list dd {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.3;
}

.faq-grid {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(7, 56, 74, 0.05);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-soft);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
  max-width: none;
  margin: 0;
  padding: 110px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background:
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%);
}

.contact-copy p:not(.section-label) {
  margin: 20px 0 0;
  max-width: 560px;
  color: var(--text-soft);
  font-size: 18px;
}

.contact-email {
  display: inline-flex;
  margin-top: 30px;
  color: var(--teal-deep);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.contact-email:hover {
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(7, 56, 74, 0.16);
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(19, 170, 168, 0.5);
  box-shadow: 0 0 0 4px rgba(19, 170, 168, 0.1);
}

.contact-form textarea {
  min-height: 146px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note[data-state="pending"] {
  color: var(--teal-deep);
}

.form-note[data-state="success"] {
  color: #16784f;
}

.form-note[data-state="error"] {
  color: var(--red);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 28px;
  color: var(--text-soft);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--teal-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible,
.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-grid,
  .local-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "proof";
  }

  .hero-copy {
    padding: 22px 0 0;
  }

  .hero-proof {
    margin: 0 0 78px;
  }

  .hero-visual {
    justify-content: flex-start;
    min-height: auto;
  }

  .portrait-frame {
    width: min(100%, 620px);
    aspect-ratio: 16 / 10;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-section {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand-logo {
    width: auto;
    height: 44px;
    max-height: 44px;
  }

  .brand-location {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 12px auto;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    justify-content: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding: 106px 18px 0;
  }

  .hero-grid,
  .work-section,
  .services-section,
  .profile-section,
  .process-section,
  .local-section,
  .faq-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
  }

  h1 {
    font-size: 52px;
    line-height: 1.02;
  }

  h2 {
    font-size: 32px;
  }

  .hero-kicker {
    font-size: 24px;
  }

  .hero-lede,
  .section-intro p:last-child,
  .profile-copy p:not(.section-label),
  .local-copy p:not(.section-label),
  .contact-copy p:not(.section-label) {
    font-size: 17px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-proof div {
    min-height: auto;
    padding: 16px 18px;
  }

  .hero-proof div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-visual {
    min-height: auto;
  }

  .portrait-frame {
    aspect-ratio: 4 / 3;
  }

  .portrait-frame figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .portrait-frame figcaption strong {
    text-align: left;
  }

  .hero-next {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-section,
  .services-section,
  .profile-section,
  .process-section,
  .faq-section,
  .contact-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .work-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-link {
    grid-template-rows: 330px 1fr;
  }

  .device {
    min-height: 330px;
  }

  .iphone {
    width: 128px;
  }

  .iphone-chorbie {
    transform: translateX(-34px) rotate(-4deg);
  }

  .iphone-chorbie-alt {
    top: 66px;
    left: calc(50% + 6px);
    width: 108px;
    transform: rotate(6deg);
  }

  .iphone-seize {
    transform: translateX(-34px) rotate(3deg);
  }

  .iphone-seize-alt {
    top: 66px;
    left: calc(50% + 6px);
    width: 108px;
    transform: rotate(-5deg);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: auto;
  }

  .process-list h3 {
    margin-top: 28px;
  }

  .profile-copy {
    order: 1;
  }

  .profile-media {
    order: 2;
    max-width: 100%;
  }

  .profile-media img {
    max-height: 280px;
    aspect-ratio: 16 / 10;
    object-position: center 40%;
  }

  .local-proof-panel {
    min-height: auto;
  }

  .local-brand-mark {
    width: min(100%, 360px);
  }

  .local-proof-list {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .brand-logo {
    height: 40px;
    max-height: 40px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-next {
    display: none;
  }

  .hero-kicker {
    font-size: 21px;
  }

  .portrait-frame {
    max-height: 320px;
  }

  .portrait-frame figcaption {
    display: none;
  }

  .work-copy,
  .service-card,
  .process-list li,
  .contact-form {
    padding: 22px;
  }

  summary {
    padding: 19px 20px;
    font-size: 18px;
  }

  details p {
    padding: 0 20px 20px;
  }

  .contact-email {
    font-size: 20px;
  }
}

/* Professional polish pass */
:root {
  --ink: #063346;
  --ink-strong: #041f2c;
  --night: #052533;
  --night-2: #07384a;
  --paper: #fbfdfd;
  --mist: #f1f8f8;
  --mist-2: #e7f4f4;
  --surface: #ffffff;
  --text: #17313b;
  --text-soft: #536f79;
  --muted: #789099;
  --teal: #10b9b5;
  --teal-deep: #057f86;
  --blue: #0a5f96;
  --sun: #efb24e;
  --line: rgba(6, 51, 70, 0.12);
  --line-soft: rgba(6, 51, 70, 0.07);
  --shadow: 0 30px 80px rgba(6, 31, 44, 0.18);
  --shadow-soft: 0 18px 52px rgba(6, 31, 44, 0.1);
  --shadow-lift: 0 30px 72px rgba(6, 31, 44, 0.16);
}

::selection {
  background: rgba(239, 178, 78, 0.34);
  color: var(--ink-strong);
}

body {
  background:
    linear-gradient(180deg, #fbfdfd 0%, #f0f8f8 34%, #ffffff 66%, #f7fbfb 100%);
}

.site-header {
  top: 14px;
  left: 18px;
  right: 18px;
  min-height: 72px;
  padding: 12px 18px 12px 22px;
  border: 1px solid rgba(6, 51, 70, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 1.0);
  box-shadow: 0 18px 46px rgba(6, 31, 44, 0.09);
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 1.0);
  box-shadow: 0 18px 54px rgba(6, 31, 44, 0.13);
}

.brand-logo {
  height: 48px;
  max-height: 48px;
}

.brand-location {
  color: var(--ink);
  letter-spacing: 0.04em;
}

.site-nav {
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  padding: 8px 12px;
  color: rgba(6, 51, 70, 0.72);
}

.site-nav a:hover {
  background: rgba(16, 185, 181, 0.09);
  color: var(--ink);
}

.site-nav .nav-cta {
  margin-left: 10px;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(6, 51, 70, 0.16);
}

.site-nav .nav-cta:hover {
  background: var(--teal-deep);
}

.hero {
  min-height: 100svh;
  padding-top: 126px;
  background: var(--night);
  color: #fff;
}

.hero::before {
  background:
    linear-gradient(125deg, rgba(5, 37, 51, 0.98) 0%, rgba(6, 51, 70, 0.97) 50%, rgba(5, 127, 134, 0.9) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 150px);
  background-size: auto;
}

.hero::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 42%;
  background: linear-gradient(90deg, transparent 0%, rgba(239, 178, 78, 0.16) 100%);
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-grid {
  min-height: calc(100svh - 218px);
  gap: 70px;
}

.hero-location,
.hero .section-label {
  color: var(--sun);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-deep);
  letter-spacing: 0.06em;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1 {
  font-size: clamp(64px, 7vw, 104px);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.hero h1,
.hero .hero-kicker {
  color: #fff;
}

.hero-kicker {
  max-width: 720px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.74);
}

.button {
  min-height: 54px;
  padding: 14px 20px;
  letter-spacing: 0.01em;
  box-shadow: none;
}

.button-primary {
  background: var(--sun);
  color: var(--ink-strong);
  box-shadow: 0 16px 34px rgba(239, 178, 78, 0.24);
}

.button-primary:hover {
  background: #ffd06f;
  color: var(--ink-strong);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.section-dark .button-quiet,
.contact-section .button-quiet {
  color: var(--ink);
  background: #fff;
}

.hero-proof {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.hero-proof div + div {
  border-left-color: rgba(255, 255, 255, 0.13);
}

.hero-proof dt {
  color: #fff;
}

.hero-proof dd {
  color: rgba(255, 255, 255, 0.64);
}

.portrait-frame {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.portrait-frame::before {
  background:
    linear-gradient(180deg, transparent 54%, rgba(5, 37, 51, 0.86)),
    linear-gradient(90deg, rgba(16, 185, 181, 0.16), transparent 42%);
}

.portrait-frame::after {
  background: linear-gradient(var(--sun), var(--teal));
}

.portrait-frame figcaption {
  color: #fff;
}

.portrait-frame figcaption span {
  color: var(--sun);
}

.hero-next {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(4, 31, 44, 0.96);
}

.hero-next span {
  border-right-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
}

.work-section,
.profile-section,
.process-section,
.faq-section {
  padding-top: 124px;
  padding-bottom: 124px;
}

.section-intro {
  max-width: 900px;
}

.section-intro p:last-child {
  max-width: 720px;
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.work-panel {
  border-color: rgba(6, 51, 70, 0.09);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 58px rgba(6, 31, 44, 0.09);
}

.work-panel:hover {
  transform: translateY(-7px);
  border-color: rgba(16, 185, 181, 0.3);
  box-shadow: 0 34px 76px rgba(6, 31, 44, 0.15);
}

.work-link {
  grid-template-rows: 396px 1fr;
}

.device {
  isolation: isolate;
}

.device::before {
  inset: 30px;
  border-color: rgba(6, 51, 70, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.22)),
    repeating-linear-gradient(90deg, rgba(6, 51, 70, 0.04) 0 1px, transparent 1px 84px);
}

.device-bright {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(229, 248, 243, 0.98) 56%, rgba(255, 247, 233, 0.95) 100%);
}

.device-clinical {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99) 0%, rgba(231, 245, 250, 0.98) 58%, rgba(238, 250, 248, 0.96) 100%);
}

.device-commerce {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99) 0%, rgba(235, 247, 235, 0.98) 58%, rgba(255, 248, 232, 0.95) 100%);
}

.iphone {
  z-index: 2;
  box-shadow:
    0 32px 64px rgba(6, 31, 44, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.iphone-main {
  z-index: 3;
}

.iphone-secondary,
.iphone-chorbie-alt,
.iphone-seize-alt,
.iphone-bike-alt {
  z-index: 2;
  opacity: 1;
}

.iphone-bike {
  transform: translateX(-42px) rotate(-3deg);
}

.iphone-bike-alt {
  position: absolute;
  top: 58px;
  left: calc(50% + 18px);
  width: 132px;
  transform: rotate(5deg);
  box-shadow:
    0 24px 48px rgba(6, 31, 44, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.work-panel:hover .iphone-bike {
  transform: translateX(-46px) rotate(-1deg) translateY(-4px);
}

.work-panel:hover .iphone-bike-alt {
  transform: rotate(3deg) translateY(-2px);
}

.work-copy {
  padding: 32px;
}

.work-copy span {
  color: var(--teal-deep);
  letter-spacing: 0.06em;
}

.work-copy h3 {
  max-width: 560px;
  font-size: 22px;
  line-height: 1.12;
}

.services-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--night) 0%, #063346 100%);
  color: #fff;
}

.services-section > .section-intro,
.services-grid {
  position: relative;
}

.services-section .section-label {
  color: var(--sun);
}

.services-section h2,
.services-section h3 {
  color: #fff;
}

.services-section .section-intro p:last-child,
.service-card p {
  color: rgba(255, 255, 255, 0.7);
}

.services-grid {
  gap: 1px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.11);
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--sun), var(--teal));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-2px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card span {
  color: var(--sun);
}

.profile-section {
  gap: 76px;
}


.profile-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.profile-list li {
  padding: 16px 0 16px 34px;
  border-bottom: 1px solid var(--line);
}

.profile-list li::before {
  top: 27px;
  height: 3px;
  background: var(--teal);
}

.process-section {
  max-width: none;
  background:
    linear-gradient(180deg, #ffffff 0%, #eef7f7 100%);
}

.process-section > .section-intro,
.process-list {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.process-list {
  gap: 16px;
  border: 0;
  background: transparent;
}

.process-list li {
  position: relative;
  min-height: 340px;
  border: 1px solid rgba(6, 51, 70, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(6, 31, 44, 0.06);
}

.process-list span {
  color: var(--teal-deep);
}

.process-list h3 {
  margin-top: 64px;
}

.process-list li::after {
  content: "";
  position: absolute;
  top: 76px;
  left: 28px;
  width: 44px;
  height: 2px;
  background: var(--sun);
}

.local-section {
  padding-top: 118px;
  padding-bottom: 118px;
  background: #fff;
}

.local-proof-panel {
  border-color: rgba(6, 51, 70, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 246, 0.9));
  background-size: auto;
  box-shadow: var(--shadow-soft);
}

.local-proof-panel::after {
  color: rgba(6, 51, 70, 0.06);
}

.local-links span {
  background: rgba(231, 244, 244, 0.82);
}

details {
  overflow: hidden;
  border-color: rgba(6, 51, 70, 0.1);
  box-shadow: 0 14px 40px rgba(6, 31, 44, 0.055);
}

summary {
  position: relative;
  padding-right: 56px;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal-deep);
  line-height: 26px;
  text-align: center;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--night) 0%, var(--night-2) 56%, #075a61 100%);
  color: #fff;
}


.contact-copy,
.contact-form {
  position: relative;
}

.contact-section .section-label {
  color: var(--sun);
}

.contact-section h2 {
  color: #fff;
}

.contact-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-email {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(239, 178, 78, 0.56);
  text-underline-offset: 7px;
}

.contact-email:hover {
  color: var(--sun);
}

.contact-form {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.contact-form span {
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(6, 51, 70, 0.14);
  background: #fafdfe;
}

.contact-form .button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(6, 51, 70, 0.18);
}

.contact-form .button-primary:hover {
  background: var(--teal-deep);
}

.site-footer {
  max-width: none;
  padding: 34px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: #fff;
  border-top: 1px solid var(--line-soft);
}

#work,
#services,
#process,
#hull,
#contact {
  scroll-margin-top: 112px;
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-proof {
    margin-bottom: 54px;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-panel:nth-child(3) {
    grid-column: 1 / -1;
  }

  .work-panel:nth-child(3) .work-link {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    grid-template-rows: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 64px;
    padding: 10px 12px;
  }

  .brand-logo {
    height: 40px;
    max-height: 40px;
  }

  .site-nav {
    inset: 82px 10px auto;
  }

  .hero {
    padding-top: 100px;
  }

  .hero::after {
    width: 72%;
    opacity: 0.45;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-kicker {
    font-size: 25px;
  }

  .button-quiet {
    color: #fff;
  }

  .work-link {
    grid-template-rows: 350px 1fr;
  }

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

  .work-panel:nth-child(3) {
    grid-column: auto;
  }

  .work-panel:nth-child(3) .work-link {
    grid-template-columns: none;
    grid-template-rows: 350px 1fr;
  }

  .device {
    min-height: 350px;
  }

  .iphone-bike {
    transform: translateX(-34px) rotate(-3deg);
  }

  .iphone-bike-alt {
    top: 66px;
    left: calc(50% + 6px);
    width: 108px;
    transform: rotate(5deg);
  }

  .services-grid {
    gap: 1px;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .profile-section {
    gap: 38px;
  }

  .contact-section {
    gap: 38px;
  }

  #work,
  #services,
  #process,
  #hull,
  #contact {
    scroll-margin-top: 94px;
  }
}

@media (max-width: 480px) {
  .site-header {
    border-radius: 8px;
  }

  .hero {
    padding-top: 94px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-kicker {
    font-size: 22px;
  }

  .hero-proof {
    margin-bottom: 44px;
  }

  .work-link {
    grid-template-rows: 342px 1fr;
  }

  .device {
    min-height: 342px;
  }

  .iphone-chorbie,
  .iphone-seize,
  .iphone-bike {
    transform: translateX(-32px) rotate(-3deg);
  }

  .iphone-seize {
    transform: translateX(-32px) rotate(3deg);
  }

  .iphone-chorbie-alt,
  .iphone-seize-alt,
  .iphone-bike-alt {
    left: calc(50% + 4px);
    opacity: 1;
  }

  .service-card::before {
    left: 22px;
    right: 22px;
  }
}
