/*
  Pro Kitchen Remodeling San Diego
  Static HTML/CSS/JS website
  Design direction: modern coastal, premium-accessible, navy + gold.
*/

:root {
  --navy-950: #0d2d40;
  --navy-900: #12354b;
  --navy-800: #1e3a5f;
  --navy-700: #2b4d70;
  --ink: #182630;
  --gold-500: #d4a72c;
  --gold-400: #e2b84b;
  --gold-200: #f4df9c;
  --sand-50: #fbf8f1;
  --sand-100: #f3ebdd;
  --sand-200: #e7dccb;
  --warm-tan: #d8b48b;
  --bronze: #b88b55;
  --sage: #7e9d94;
  --off-white: #f7f7f2;
  --white: #ffffff;
  --line: #d9dfe2;
  --line-strong: #c7d0d5;
  --muted: #60707a;
  --muted-light: #dbe4e8;
  --error: #a52a2a;
  --success: #2f6b57;
  --shadow-sm: 0 8px 22px rgb(13 45 64 / 0.08);
  --shadow-md: 0 18px 45px rgb(13 45 64 / 0.12);
  --shadow-lg: 0 28px 75px rgb(13 45 64 / 0.18);
  --radius-sm: 7px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --container: 1200px;
  --reading: 760px;
  --header-height: 78px;
  --transition: 180ms ease;
  --font-display: "Arial Narrow", "Aptos Display", "Trebuchet MS", Arial, sans-serif;
  --font-body: "Aptos", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

a {
  color: var(--navy-800);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy-950);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--white);
  background: var(--navy-800);
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.55rem, 5.3vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}

p {
  margin: 0 0 1.15rem;
}

ul,
ol {
  padding-left: 1.3rem;
}

small {
  font-size: 0.86rem;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 0.7rem 1rem;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform var(--transition);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 40px), var(--reading));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--compact {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--sand {
  background: var(--sand-50);
}

.section--offwhite {
  background: var(--off-white);
}

.section--navy {
  color: var(--white);
  background: var(--navy-950) url("../images/pattern-grid.svg") repeat;
}

.section--navy h2,
.section--navy h3,
.section--navy p,
.section--navy a {
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 810px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--navy .section-heading p {
  color: rgb(255 255 255 / 0.78);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  background: var(--gold-500);
  border-radius: 100px;
}

.eyebrow--light {
  color: var(--white);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.kicker {
  color: var(--gold-500);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy-950);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.divider {
  width: 100%;
  height: 1px;
  margin: 2rem 0;
  background: var(--line);
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--lg {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-badge {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gold-500);
  background: rgb(212 167 44 / 0.12);
  border: 1px solid rgb(212 167 44 / 0.24);
  border-radius: 50%;
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.015em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn--primary {
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 10px 25px rgb(13 45 64 / 0.18);
}

.btn--primary:hover {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 14px 30px rgb(13 45 64 / 0.24);
}

.btn--gold {
  color: #17232b;
  background: var(--gold-500);
  box-shadow: 0 10px 25px rgb(212 167 44 / 0.2);
}

.btn--gold:hover {
  color: #17232b;
  background: var(--gold-400);
}

.btn--outline {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--navy-950);
}

.btn--outline:hover {
  color: var(--white);
  background: var(--navy-950);
}

.btn--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgb(255 255 255 / 0.6);
}

.btn--outline-light:hover {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

.btn--small {
  min-height: 42px;
  padding: 0.66rem 0.95rem;
  font-size: 0.82rem;
}

.btn--wide {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Utility bar + header */
.utility-bar {
  color: rgb(255 255 255 / 0.9);
  background: var(--navy-950);
  font-size: 0.82rem;
}

.utility-bar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar a {
  color: var(--white);
  text-decoration: none;
}

.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.utility-bar__divider {
  width: 1px;
  height: 16px;
  background: rgb(255 255 255 / 0.28);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgb(255 255 255 / 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgb(13 45 64 / 0.09);
}

.site-header__main {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.site-logo {
  display: inline-block;
  width: min(100%, 260px);
}

.site-logo img {
  width: 100%;
}

.site-nav {
  justify-self: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__link,
.site-nav__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 0.32rem;
  padding: 0.55rem 0.68rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 820;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"],
.site-nav__button:hover,
.site-nav__button[aria-expanded="true"] {
  color: var(--navy-950);
  background: var(--sand-100);
}

.nav-item--dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: 680px;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown__intro {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-sm);
}

.nav-dropdown__intro .nav-dropdown__title {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1.12;
}

.nav-dropdown__intro p {
  margin: 0;
  color: rgb(255 255 255 / 0.76);
  font-size: 0.9rem;
}

.nav-dropdown__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-dropdown__links a {
  display: block;
  padding: 0.65rem 0.7rem;
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-dropdown__links a:hover {
  color: var(--navy-950);
  background: var(--sand-100);
}

.header-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle__bars {
  position: relative;
}

.menu-toggle__bars::before {
  position: absolute;
  top: -6px;
}

.menu-toggle__bars::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 990;
  inset: 0;
  top: calc(36px + var(--header-height));
  display: none;
  overflow-y: auto;
  padding: 1.25rem 20px 8rem;
  background: var(--white);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__list,
.mobile-nav__sublist {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-nav__list > li {
  border-bottom: 1px solid var(--line);
}

.mobile-nav a,
.mobile-nav button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  color: var(--navy-950);
  background: transparent;
  border: 0;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
}

.mobile-nav__sublist {
  display: none;
  padding: 0 0 0.75rem 0.8rem;
}

.mobile-nav__sublist.is-open {
  display: block;
}

.mobile-nav__sublist a {
  min-height: 42px;
  padding: 0.45rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-nav__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

/* Hero — full-bleed photo with left content overlay (shorter height) */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero__grid {
  position: relative;
  display: grid;
  min-height: clamp(380px, 48vh, 520px);
  grid-template-columns: 1fr;
}

.hero__content,
.hero__media {
  grid-area: 1 / 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  padding: clamp(2.4rem, 5vw, 3.8rem) max(30px, calc((100vw - var(--container)) / 2));
  background: transparent;
}

.hero__content::after {
  display: none;
}

.hero h1 {
  max-width: 15ch;
  margin-top: 0.65rem;
  color: var(--white);
  font-size: clamp(2.35rem, 4.6vw, 3.8rem);
  text-wrap: balance;
}

.hero__lead {
  max-width: 36rem;
  margin: 1rem 0 1.35rem;
  color: rgb(255 255 255 / 0.88);
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
}

.hero__media {
  position: relative;
  z-index: 0;
  min-height: inherit;
  background: #27343d;
}

.hero__media picture,
.hero__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 68% center;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(13 45 64 / 0.9) 0%, rgb(13 45 64 / 0.7) 28%, rgb(13 45 64 / 0.32) 52%, rgb(13 45 64 / 0.1) 72%, rgb(13 45 64 / 0.04) 100%),
    linear-gradient(0deg, rgb(13 45 64 / 0.28) 0%, transparent 42%);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 1.1rem;
  color: rgb(255 255 255 / 0.86);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.hero__proof .icon {
  color: var(--gold-400);
}

.hero__caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  padding: 0.45rem 0.65rem;
  color: rgb(255 255 255 / 0.88);
  background: rgb(13 45 64 / 0.75);
  border-radius: 4px;
  font-size: 0.72rem;
  backdrop-filter: blur(8px);
}

/* Interior page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.2rem, 9vw, 7rem) 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url("../images/pattern-grid.svg") repeat;
  opacity: 0.9;
}

.page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.page-hero__content {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0.8rem 0 1.1rem;
  color: var(--white);
}

.page-hero p {
  max-width: 720px;
  color: rgb(255 255 255 / 0.8);
  font-size: 1.1rem;
}

.page-hero__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-800);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumbs {
  position: relative;
  padding: 0;
  margin: 0 0 0.9rem;
  list-style: none;
  font-size: 0.83rem;
}

.breadcrumbs li {
  display: inline;
}

.breadcrumbs li + li::before {
  margin: 0 0.4rem;
  color: rgb(255 255 255 / 0.48);
  content: "/";
}

.breadcrumbs a {
  color: rgb(255 255 255 / 0.8);
  text-decoration: none;
}

/* Trust/value strip */
.value-strip {
  color: var(--white);
  background: var(--navy-950);
  border-top: 1px solid rgb(255 255 255 / 0.08);
}

.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.value-strip__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 1.3rem 1rem;
  border-right: 1px solid rgb(255 255 255 / 0.14);
}

.value-strip__item:last-child {
  border-right: 0;
}

.value-strip__item .icon {
  color: var(--gold-400);
}

.value-strip__item strong {
  display: block;
  font-size: 0.9rem;
}

.value-strip__item span {
  display: block;
  margin-top: 0.12rem;
  color: rgb(255 255 255 / 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

/* Who We Are + homepage lead form */
.who-we-are__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 3.75rem);
}

.who-we-are__content h2 {
  max-width: 16ch;
}

.who-we-are__content .lead {
  margin-top: 0;
}

.who-we-are__content .check-list {
  margin-top: 1.5rem;
}

.who-we-are__phone {
  margin-top: 1.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.who-we-are__phone p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.who-we-are__phone a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy-950);
  font-size: 1.15rem;
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
}

.who-we-are__phone a:hover {
  color: var(--navy-800);
}

.who-we-are__phone a:focus-visible {
  outline: 3px solid rgb(30 58 95 / 0.28);
  outline-offset: 3px;
  border-radius: 4px;
}

.form-card__intro {
  margin-bottom: 1.35rem;
}

.form-card__intro h3 {
  margin: 0.15rem 0 0.55rem;
}

.form-card__intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Cards and grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card--padded {
  padding: 1.4rem;
}

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand-100);
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.card:hover .card__image img {
  transform: scale(1.035);
}

.card__body {
  padding: 1.25rem;
}

.card__body h3 {
  margin-bottom: 0.55rem;
}

.card__body p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  color: var(--ink);
  border-color: rgb(212 167 44 / 0.7);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand-100);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem;
}

.service-card__body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
}

.service-card__body p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 850;
}

.service-card__link::after {
  content: "→";
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-card h3 {
  margin: 0.8rem 0 0.5rem;
  font-size: 1.18rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.split-layout--reverse .split-layout__media {
  order: 2;
}

.split-layout__media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--sand-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.split-layout__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-layout__media .media-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 0.55rem 0.75rem;
  color: var(--white);
  background: rgb(13 45 64 / 0.82);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.3rem 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.6rem;
  align-items: start;
}

.check-list li::before {
  display: grid;
  width: 19px;
  height: 19px;
  margin-top: 0.23rem;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

/* Gallery */
.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.filter-btn {
  min-height: 40px;
  padding: 0.5rem 0.85rem;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.filter-btn[aria-pressed="true"] {
  color: var(--white);
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  background: var(--navy-950);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(transparent, rgb(13 45 64 / 0.92));
}

.gallery-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.15rem;
  color: var(--white);
}

.gallery-card__content h3 {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 1.15rem;
}

.gallery-card__content p {
  margin: 0;
  color: rgb(255 255 255 / 0.74);
  font-size: 0.83rem;
}

.placeholder-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  padding: 0.35rem 0.55rem;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 1.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process-step__number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 0.55rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 31px;
  width: 2px;
  content: "";
  background: var(--sand-200);
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
}

.timeline__number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--white);
  background: var(--navy-950);
  border: 5px solid var(--sand-50);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
}

.timeline__content {
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.timeline__content h2,
.timeline__content h3 {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
}

.timeline__content p:last-child {
  margin-bottom: 0;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.faq-item[open] {
  border-color: rgb(212 167 44 / 0.58);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 3.5rem 1rem 1.15rem;
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--navy-950);
  background: var(--sand-100);
  border-radius: 50%;
  content: "+";
  font-size: 1.25rem;
  transform: translateY(-50%);
  transition: transform var(--transition), background var(--transition);
}

.faq-item[open] summary::after {
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-50%) rotate(45deg);
}

.faq-item__answer {
  max-width: 850px;
  padding: 0 1.15rem 1.2rem;
  color: var(--muted);
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

/* Service areas */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.64rem 0.85rem;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 800;
}

.area-chip .icon {
  width: 1rem;
  height: 1rem;
  color: var(--gold-500);
}

.area-checker {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.area-checker__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}

.area-checker__result {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.area-checker__result.is-success {
  color: var(--success);
}

.area-checker__result.is-warning {
  color: #7a4c00;
}

/* Forms */
.form-card {
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.38rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.form-label {
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 820;
}

.form-field input,
.form-field select,
.form-field textarea,
.area-checker input {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.area-checker input:focus {
  border-color: var(--navy-800);
  box-shadow: 0 0 0 3px rgb(30 58 95 / 0.13);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-help,
.field-error {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.field-help {
  color: var(--muted);
}

.field-error {
  display: none;
  color: var(--error);
}

.field-error.is-visible {
  display: block;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.65rem;
  align-items: start;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  accent-color: var(--navy-950);
}

.form-note {
  padding: 1rem;
  margin: 0;
  color: var(--muted);
  background: var(--sand-50);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.86rem;
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #1f513e;
  background: #e7f4ee;
  border: 1px solid #a9d2c0;
}

.form-status.is-error {
  color: #7d1f1f;
  background: #fff0f0;
  border: 1px solid #e1afaf;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-card strong {
  display: block;
  color: var(--navy-950);
}

.contact-card p,
.contact-card a {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Content/prose */
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: clamp(2rem, 6vw, 4rem);
}

.prose {
  max-width: 790px;
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 2.8rem 0 1rem;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
}

.prose h3 {
  margin: 1.8rem 0 0.65rem;
  font-size: 1.35rem;
}

.prose p {
  color: #33434d;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.5rem;
}

.prose li::marker {
  color: var(--gold-500);
  font-weight: 900;
}

.prose blockquote {
  padding: 1rem 1.15rem;
  margin: 1.5rem 0;
  color: var(--navy-950);
  background: var(--sand-50);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

.prose th,
.prose td {
  padding: 0.75rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prose th {
  color: var(--navy-950);
  background: var(--sand-50);
}

.content-aside {
  position: sticky;
  top: calc(var(--header-height) + 58px);
  display: grid;
  gap: 1rem;
}

.aside-card {
  padding: 1.3rem;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
}

.aside-card h2,
.aside-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
}

.aside-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.aside-card .button-row {
  display: grid;
}

.related-links {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0;
  color: var(--navy-950);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.related-links a::after {
  content: "→";
}

.notice {
  padding: 1rem 1.1rem;
  color: var(--muted);
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-sm);
}

.notice--important {
  color: #5f4600;
  background: #fff9e6;
  border-color: #ecd27b;
}

.notice--success {
  color: #1f513e;
  background: #e7f4ee;
  border-color: #a9d2c0;
}

/* CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.cta-panel::before {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgb(212 167 44 / 0.24), transparent 65%);
}

.cta-panel__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.cta-panel h2 {
  margin: 0.55rem 0 0.75rem;
  color: var(--white);
}

.cta-panel p {
  max-width: 680px;
  margin: 0;
  color: rgb(255 255 255 / 0.78);
}

/* Stats/decision cards */
.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.decision-card {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold-500);
  border-radius: var(--radius-md);
}

.decision-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.decision-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Resource cards */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.resource-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.35rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.resource-card:hover {
  color: var(--ink);
  border-color: rgb(212 167 44 / 0.72);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.resource-card__tag {
  display: inline-flex;
  width: max-content;
  padding: 0.3rem 0.5rem;
  margin-bottom: 1rem;
  color: var(--navy-950);
  background: var(--sand-100);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin-bottom: 0.6rem;
}

.resource-card p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.resource-card span:last-child {
  margin-top: auto;
  color: var(--navy-950);
  font-size: 0.88rem;
  font-weight: 850;
}

/* Footer */
.site-footer {
  padding: 4.5rem 0 0;
  color: rgb(255 255 255 / 0.76);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.95fr 0.95fr;
  gap: 2.2rem;
}

.footer-brand img {
  width: 270px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 430px;
  font-size: 0.93rem;
}

.footer-contact {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgb(255 255 255 / 0.84);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column h2,
.footer-column h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: rgb(255 255 255 / 0.72);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.14);
  font-size: 0.78rem;
}

.footer-bottom__links {
  display: flex;
  gap: 1rem;
}

.footer-bottom a {
  color: rgb(255 255 255 / 0.68);
  text-decoration: none;
}

/* Mobile sticky conversion bar */
.mobile-sticky {
  position: fixed;
  z-index: 1200;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.5rem;
  padding: 0.55rem max(0.65rem, env(safe-area-inset-right)) calc(0.55rem + env(safe-area-inset-bottom)) max(0.65rem, env(safe-area-inset-left));
  background: rgb(255 255 255 / 0.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgb(13 45 64 / 0.13);
  backdrop-filter: blur(12px);
}

.mobile-sticky .btn {
  min-height: 46px;
  padding: 0.65rem 0.7rem;
}

/* Toast and back-to-top */
.toast {
  position: fixed;
  z-index: 2000;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 0.9rem 1rem;
  visibility: hidden;
  opacity: 0;
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  transform: translateY(15px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

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

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  visibility: hidden;
  place-items: center;
  opacity: 0;
  color: var(--white);
  background: var(--navy-950);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* 404 */
.error-page {
  display: grid;
  min-height: 65vh;
  place-items: center;
  padding: 5rem 0;
  text-align: center;
}

.error-code {
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 900;
  line-height: 0.85;
}

/* Responsive */
@media (max-width: 1120px) {
  .site-header__main {
    grid-template-columns: 235px 1fr auto;
  }

  .site-nav__link,
  .site-nav__button {
    padding-inline: 0.5rem;
    font-size: 0.74rem;
  }

  .header-cta {
    display: none;
  }

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

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

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .utility-bar__right .utility-email,
  .utility-bar__divider {
    display: none;
  }

  .site-header__main {
    grid-template-columns: 230px 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .hero__grid {
    min-height: clamp(340px, 44vh, 460px);
  }

  .hero__media img {
    object-position: 72% center;
  }

  .page-hero__grid,
  .split-layout,
  .contact-grid,
  .who-we-are__grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .page-hero__media {
    max-width: 680px;
  }

  .content-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-strip__item:nth-child(2) {
    border-right: 0;
  }

  .value-strip__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 0.14);
  }

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

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 68px;
    font-size: 16.5px;
  }

  .container,
  .container--narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 4rem 0;
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar__left {
    display: none;
  }

  .site-header__main {
    min-height: var(--header-height);
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-logo {
    width: 230px;
  }

  .mobile-nav {
    top: calc(36px + var(--header-height));
  }

  .hero__content {
    padding: 3.7rem 20px 3.1rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.45rem);
  }

  .hero__media {
    min-height: 320px;
  }

  .hero__caption {
    right: 12px;
    bottom: 10px;
  }

  .page-hero {
    padding: 3.7rem 0;
  }

  .page-hero__grid {
    gap: 2.3rem;
  }

  .page-hero__media {
    aspect-ratio: 16 / 10;
  }

  .value-strip__grid,
  .service-grid,
  .card-grid,
  .card-grid--4,
  .resource-grid,
  .gallery-grid,
  .decision-grid,
  .process-grid,
  .feature-grid,
  .content-aside,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-strip__item,
  .value-strip__item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.14);
  }

  .value-strip__item:last-child {
    border-bottom: 0;
  }

  .split-layout--reverse .split-layout__media {
    order: initial;
  }

  .split-layout__media {
    min-height: 330px;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 280px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline__item {
    grid-template-columns: 50px 1fr;
  }

  .timeline__number {
    width: 50px;
    height: 50px;
    border-width: 4px;
    font-size: 1rem;
  }

  .area-checker__form,
  .cta-panel__grid {
    grid-template-columns: 1fr;
  }

  .cta-panel__actions {
    display: grid;
  }

  .contact-grid,
  .who-we-are__grid {
    gap: 2.2rem;
  }

  .who-we-are__content h2 {
    max-width: none;
  }

  .form-field--full {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-sticky {
    display: grid;
  }

  .back-to-top {
    right: 14px;
    bottom: 82px;
  }

  .toast {
    right: 14px;
    bottom: 86px;
  }
}

@media (max-width: 430px) {
  .site-logo {
    width: 205px;
  }

  .button-row {
    display: grid;
  }

  .hero__proof {
    display: grid;
    gap: 0.55rem;
  }

  .mobile-nav__actions {
    grid-template-columns: 1fr;
  }

  .footer-bottom__links {
    flex-wrap: wrap;
  }
}

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

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

@media print {
  .utility-bar,
  .site-header,
  .mobile-sticky,
  .back-to-top,
  .site-footer,
  .cta-panel,
  .content-aside,
  .button-row {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .page-hero {
    padding: 1.5rem 0;
    color: #000;
    background: #fff;
  }

  .page-hero h1,
  .page-hero p,
  .page-hero a {
    color: #000;
  }

  .section {
    padding: 1.5rem 0;
  }
}

/* Completion pack additions */
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .88em; }
.gallery-card__content { padding: 1.15rem; }
.gallery-card__content h2 { margin-bottom: .5rem; font-size: 1.2rem; }
.gallery-card__content p { margin: 0; color: var(--muted); font-size: .92rem; }
.error-page { padding: clamp(3rem, 10vw, 8rem) 0; text-align: center; }
.error-page .button-row { justify-content: center; }
.error-code { color: var(--gold-500); font-size: clamp(5rem, 18vw, 11rem); font-weight: 950; line-height: .85; letter-spacing: -.06em; }
@media print { .utility-bar,.site-header,.mobile-nav,.site-footer,.mobile-sticky,.back-to-top,.cta-panel,.button-row { display:none !important; } body { color:#000; background:#fff; } .page-hero { color:#000; background:#fff; padding:1rem 0; } .page-hero::before,.page-hero__media { display:none; } .page-hero p,.page-hero h1,.breadcrumbs a { color:#000; } .section { padding:1.5rem 0; } }


@media (min-width: 1121px) {
  .service-grid--featured {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Full-bleed hero polish — keep height compact */
@media (min-width: 1025px) {
  .hero__grid {
    min-height: clamp(400px, 46vh, 500px);
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(2.8rem, 3.8vw, 3.55rem);
    line-height: 1.04;
  }

  .hero__lead {
    max-width: 34rem;
  }

  .hero__media img {
    object-position: 70% center;
  }
}

@media (max-width: 720px) {
  .hero__grid {
    min-height: min(58vh, 460px);
  }

  .hero__media img {
    object-position: 78% center;
  }

  .hero__media::after {
    background:
      linear-gradient(90deg, rgb(13 45 64 / 0.92) 0%, rgb(13 45 64 / 0.7) 45%, rgb(13 45 64 / 0.35) 100%),
      linear-gradient(0deg, rgb(13 45 64 / 0.4), transparent 50%);
  }

  .hero__content {
    justify-content: flex-end;
    padding: 2.4rem 20px 2.2rem;
    background: transparent;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.1rem, 9vw, 2.7rem);
    line-height: 1.04;
  }

  .hero__lead {
    max-width: 34rem;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero__caption {
    display: none;
  }
}
