/* Prime Tech Enterprise — Pattaya branch */
:root {
  --font-body: "IBM Plex Sans Thai", "Noto Sans Thai", system-ui, sans-serif;
  --font-display: "Manrope", "IBM Plex Sans Thai", system-ui, sans-serif;
  --brand: #c7f31b;
  --brand-bright: #d8ff36;
  --brand-deep: #7c9f00;
  --sage: #9aaa84;
  --bg: #f4f6ee;
  --bg-soft: #e9eee0;
  --surface: #fffef9;
  --surface-raised: #ffffff;
  --surface-dark: #11150f;
  --ink: #12170e;
  --ink-soft: #30392a;
  --muted: #66705e;
  --muted-strong: #4d5746;
  --line: rgba(18, 23, 14, 0.13);
  --line-strong: rgba(18, 23, 14, 0.22);
  --shadow-sm: 0 8px 28px rgba(24, 32, 17, 0.07);
  --shadow-md: 0 20px 50px rgba(24, 32, 17, 0.12);
  --shadow-lg: 0 36px 90px rgba(11, 16, 8, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1220px;
  --nav-height: 76px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #0c100b;
  --bg-soft: #121810;
  --surface: #151b12;
  --surface-raised: #1a2116;
  --ink: #f2f5ea;
  --ink-soft: #d5dccb;
  --muted: #a3ad9a;
  --muted-strong: #c2cab9;
  --line: rgba(239, 245, 230, 0.12);
  --line-strong: rgba(239, 245, 230, 0.23);
  --shadow-sm: 0 8px 28px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 36px 90px rgba(0, 0, 0, 0.46);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color .3s ease, color .3s ease;
}

body.menu-open,
body.chat-open,
body:has(dialog[open]) {
  overflow: hidden;
}

::selection {
  background: var(--brand);
  color: #10140d;
}

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
}

button:not(:disabled),
a {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.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;
}

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

.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: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--brand);
  color: #10140d;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.section {
  position: relative;
  padding: 120px 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--brand-deep);
}

html[data-theme="dark"] .eyebrow--dark {
  color: var(--brand);
}

.micro-label {
  font-family: var(--font-display);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.15;
  transition: transform .25s var(--ease), box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

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

.button:active {
  transform: translateY(0) scale(.98);
}

.button--large {
  min-height: 58px;
  padding-inline: 26px;
}

.button--primary {
  background: var(--brand);
  color: #10140d;
  box-shadow: 0 12px 30px rgba(199, 243, 27, 0.2);
}

.button--primary:hover {
  background: var(--brand-bright);
  box-shadow: 0 16px 38px rgba(199, 243, 27, 0.3);
}

.button--glass {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button--glass:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .17);
}

.button--outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.button--dark {
  background: #11150f;
  color: #f8faef;
}

.button--dark:hover {
  background: #21281d;
}

.button--line {
  background: #06c755;
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-weight: 700;
  transition: gap .25s var(--ease), color .2s ease;
}

.text-link:hover {
  gap: 14px;
  color: var(--brand);
}

.text-link--brand {
  color: var(--brand);
}

.text-button {
  padding: 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: var(--muted);
  font-size: .9rem;
}

.icon-button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.icon-button:hover {
  border-color: var(--line-strong);
  background: rgba(127, 145, 112, .12);
  transform: translateY(-1px);
}

.icon-box {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(199, 243, 27, .16);
  color: var(--brand-deep);
}

.icon-box--light {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  backdrop-filter: blur(12px);
}

.icon-box--dark {
  background: #11150f;
  color: var(--brand);
}

.icon-box--brand {
  background: var(--brand);
  color: #10140d;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 18px;
  pointer-events: none;
}

.floating-nav {
  display: flex;
  min-height: var(--nav-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(13, 17, 11, .72);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  pointer-events: auto;
  transition: min-height .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.scrolled .floating-nav {
  min-height: 66px;
  border-color: rgba(255, 255, 255, .09);
  background: rgba(10, 14, 9, .9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(199, 243, 27, .12);
}

.brand__copy {
  display: grid;
  line-height: 1.06;
}

.brand__copy strong {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.brand__copy > span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .68);
  font-family: var(--font-display);
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.brand__copy small {
  margin-top: 4px;
  color: var(--brand);
  font-size: .58rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 28px);
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, .78);
  font-size: .86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 10px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-actions .icon-button {
  border-color: rgba(255, 255, 255, .16);
  color: #fff;
}

.nav-actions .icon-button:hover {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
}

.language-toggle span {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
}

.theme-toggle .icon-moon,
html[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

.button--nav {
  min-height: 44px;
  padding-inline: 16px;
  background: var(--brand);
  color: #10140d;
  font-size: .78rem;
}

.button--nav:hover {
  background: var(--brand-bright);
}

.menu-toggle {
  display: none;
}

.menu-close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close-icon {
  display: block;
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 910px;
  overflow: hidden;
  background: #0b0e0a;
  color: #fff;
}

.hero__image,
.hero__overlay,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.72) contrast(1.08);
  transform: scale(1.015);
}

.hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 10, 6, .94) 0%, rgba(7, 10, 6, .8) 40%, rgba(7, 10, 6, .24) 76%, rgba(7, 10, 6, .3) 100%),
    linear-gradient(0deg, rgba(8, 11, 7, .96) 0%, rgba(8, 11, 7, .16) 45%, rgba(8, 11, 7, .4) 100%);
}

.hero__grid {
  z-index: 2;
  opacity: .14;
  background-image: linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, .58fr);
  align-items: center;
  gap: 80px;
  padding-top: 132px;
  padding-bottom: 120px;
}

.hero__main {
  max-width: 770px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .84);
  font-size: .74rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.status-pill__dot,
.footer-status span,
.ai-chat__header p span {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(199, 243, 27, .13);
}

.status-pill__dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--brand);
  border-radius: 50%;
  content: "";
  animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
  0% { opacity: .9; transform: scale(.7); }
  70%, 100% { opacity: 0; transform: scale(1.7); }
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.9vw, 6rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero h1 span {
  color: var(--brand);
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.hero__trust p {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: .76rem;
  line-height: 1.45;
}

.hero__trust strong {
  color: rgba(255, 255, 255, .92);
  font-size: .81rem;
}

.avatar-stack {
  display: flex;
  padding-left: 9px;
}

.avatar-stack span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -9px;
  place-items: center;
  border: 2px solid #151912;
  border-radius: 50%;
  background: linear-gradient(145deg, #d8ff36, #829f17);
  color: #12170e;
  font-size: .7rem;
  font-weight: 800;
}

.avatar-stack span:nth-child(2) { background: linear-gradient(145deg, #bac2ac, #65705e); color: #fff; }
.avatar-stack span:nth-child(3) { background: linear-gradient(145deg, #f8f9f2, #9da594); }

.coastal-float {
  align-self: center;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(25, 33, 21, .77), rgba(12, 16, 10, .57));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.coastal-float__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.coastal-float__top .micro-label {
  color: rgba(255, 255, 255, .45);
}

.coastal-float h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  letter-spacing: -.04em;
  line-height: 1.12;
}

.coastal-float > p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
}

.coastal-float .text-link {
  color: var(--brand);
  font-size: .82rem;
}

.coastal-float__meter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
}

.coastal-float__meter strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: .85rem;
}

.coastal-float__meter i {
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .1);
}

.coastal-float__meter b {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #86a60c, var(--brand));
  box-shadow: 0 0 16px rgba(199, 243, 27, .35);
}

.hero__stats-wrap {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(1px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: rgba(10, 14, 9, .78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-stat {
  position: relative;
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 15px;
  padding: 22px 30px;
}

.hero-stat + .hero-stat::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, .12);
  content: "";
}

.hero-stat strong {
  flex: 0 0 auto;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}

.hero-stat strong span {
  font-size: .5em;
  letter-spacing: -.02em;
}

.hero-stat p {
  max-width: 120px;
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: .72rem;
  line-height: 1.45;
}

/* Client strip */
.client-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.client-strip__track {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  white-space: nowrap;
}

.client-strip__track > span:first-child {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
}

.client-strip__track i {
  width: 50px;
  height: 1px;
  background: var(--line-strong);
}

.client-strip__track strong {
  color: var(--muted-strong);
  font-size: .8rem;
  font-weight: 600;
}

.client-strip__track > span:not(:first-child) {
  color: var(--brand-deep);
}

/* Intro */
.section--intro {
  overflow: hidden;
  background: var(--bg);
}

.section--intro::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 480px;
  height: 480px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(130, 150, 109, .035), 0 0 0 160px rgba(130, 150, 109, .025);
}

.intro-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 80px;
}

.section-kicker {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-top: 12px;
}

.section-kicker span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 800;
}

.section-kicker p {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.intro-copy h2 {
  max-width: 940px;
  margin-bottom: 42px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.7vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.intro-copy h2 span {
  color: var(--sage);
}

.intro-copy__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px;
  max-width: 880px;
}

.intro-copy__body p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.intro-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.signature-mark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -.08em;
  transform: rotate(-5deg);
}

.intro-signature > div:last-child {
  display: grid;
}

.intro-signature strong {
  font-family: var(--font-display);
  font-size: .84rem;
}

.intro-signature span {
  color: var(--muted);
  font-size: .72rem;
}

/* Section headers */
.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 50px;
  margin-bottom: 50px;
}

.section-header h2,
.section-header--center h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1.08;
}

.section-header > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.section-header--center {
  display: block;
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-header--center > p:last-child {
  max-width: 620px;
  margin: 20px auto 0;
}

/* Services */
.section--services {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

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

.service-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
  transform: translateZ(0);
  transition: transform .38s var(--ease), box-shadow .38s ease, border-color .3s ease;
}

.service-card:hover {
  z-index: 2;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-card--wide {
  grid-column: span 2;
}

.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease), filter .5s ease;
}

.service-card--wide > img {
  object-position: center 48%;
}

.service-card:hover > img {
  transform: scale(1.045);
}

.service-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 6, .09) 0%, rgba(7, 10, 6, .88) 82%);
}

.service-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.service-card__number {
  position: absolute;
  top: 26px;
  right: 27px;
  color: currentColor;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  opacity: .42;
}

.service-card .icon-box {
  margin-bottom: auto;
}

.service-card__tag {
  margin: 62px 0 10px;
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.service-card h3 {
  max-width: 490px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.16;
}

.service-card p:not(.service-card__tag) {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.service-card--photo {
  color: #fff;
}

.service-card--photo .service-card__number,
.service-card--photo .service-card__tag {
  color: rgba(255, 255, 255, .72);
}

.service-card--photo p:not(.service-card__tag) {
  color: rgba(255, 255, 255, .65);
}

.card-action {
  display: flex;
  width: 100%;
  max-height: 0;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height .35s var(--ease), margin-top .35s var(--ease), padding-top .35s var(--ease), opacity .25s ease, transform .35s var(--ease);
}

.service-card--photo .card-action,
.service-card--dark .card-action {
  border-color: rgba(255, 255, 255, .18);
}

.service-card:hover .card-action,
.service-card:focus-within .card-action {
  max-height: 60px;
  margin-top: 22px;
  padding-top: 15px;
  opacity: 1;
  transform: translateY(0);
}

.card-action:hover {
  color: var(--brand-deep);
}

.service-card--photo .card-action:hover,
.service-card--dark .card-action:hover {
  color: var(--brand);
}

.service-card--brand {
  border-color: var(--brand);
  background: var(--brand);
  color: #10140d;
}

.service-card--brand .service-card__tag,
.service-card--brand p:not(.service-card__tag) {
  color: rgba(16, 20, 13, .65);
}

.service-card--brand .card-action {
  border-color: rgba(16, 20, 13, .2);
}

.service-card--plain {
  background: var(--bg-soft);
}

.service-card--dark {
  overflow: hidden;
  border-color: #21271e;
  background: #10140d;
  color: #f8faef;
}

.service-card--dark p:not(.service-card__tag) {
  color: rgba(248, 250, 239, .58);
}

.service-card--dark .service-card__tag {
  color: var(--brand);
}

.service-card__pattern {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(199, 243, 27, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(199, 243, 27, .025), 0 0 0 90px rgba(199, 243, 27, .025);
}

/* Coastal section */
.section--coastal {
  overflow: hidden;
  background: #10140d;
  color: #f5f8ed;
}

.section--coastal::before {
  position: absolute;
  top: -200px;
  left: 45%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(199, 243, 27, .08);
  content: "";
  filter: blur(100px);
}

.coastal-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
  gap: 75px;
  align-items: stretch;
}

.coastal-showcase__media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .35);
}

.coastal-showcase__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 7, 3, .72));
  content: "";
}

.coastal-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  filter: saturate(.62) contrast(1.05);
  transition: transform .9s var(--ease);
}

.coastal-showcase:hover .coastal-showcase__media img {
  transform: scale(1.025);
}

.coastal-showcase__badge {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(10, 14, 9, .68);
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  backdrop-filter: blur(12px);
}

.coastal-showcase__badge .icon {
  color: var(--brand);
}

.coastal-showcase__caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .65);
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .08em;
}

.coastal-showcase__content {
  align-self: center;
  padding-block: 30px;
}

.coastal-showcase__content h2 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.04;
}

.coastal-showcase__content h2 span {
  color: var(--brand);
}

.coastal-showcase__lead {
  max-width: 670px;
  margin-bottom: 35px;
  color: rgba(245, 248, 237, .6);
  font-size: 1rem;
}

.coastal-risks {
  margin-bottom: 36px;
}

.coastal-risks > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.coastal-risks > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.coastal-risks > div > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(199, 243, 27, .4);
  border-radius: 50%;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 800;
}

.coastal-risks strong {
  font-size: .95rem;
}

.coastal-risks p {
  margin: 4px 0 0;
  color: rgba(245, 248, 237, .52);
  font-size: .82rem;
}

/* Process */
.section--process {
  background: var(--bg);
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-rail::before {
  position: absolute;
  z-index: 0;
  top: 62px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 285px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.process-step:hover {
  border-color: rgba(124, 159, 0, .45);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.process-step__num {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .64rem;
  font-weight: 800;
}

.process-step__icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 42px;
  place-items: center;
  border: 8px solid var(--bg);
  border-radius: 50%;
  background: var(--brand);
  color: #10140d;
  box-shadow: 0 0 0 1px var(--line);
}

.process-step__icon .icon {
  width: 25px;
  height: 25px;
}

.process-step h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -.02em;
}

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

/* Plans */
.section--plans {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 545px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .3s ease;
}

.plan-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.plan-card--featured {
  border-color: var(--brand);
  background: var(--brand);
  color: #10140d;
  box-shadow: 0 24px 60px rgba(124, 159, 0, .18);
}

.plan-card__ribbon {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 7px 12px 8px;
  border-radius: 0 0 10px 10px;
  background: #10140d;
  color: var(--brand);
  font-size: .65rem;
  font-weight: 700;
}

.plan-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 52px;
}

.plan-card__index {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 800;
}

.plan-card--featured .plan-card__index {
  border-color: rgba(16, 20, 13, .26);
}

.plan-badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(124, 159, 0, .12);
  color: var(--brand-deep);
  font-size: .67rem;
  font-weight: 700;
}

.plan-card--featured .plan-badge {
  background: rgba(16, 20, 13, .1);
  color: #10140d;
}

.plan-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -.04em;
}

.plan-card > p {
  min-height: 55px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: .88rem;
}

.plan-card--featured > p {
  color: rgba(16, 20, 13, .66);
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.plan-card--featured ul {
  border-color: rgba(16, 20, 13, .18);
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
}

.plan-card li .icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--brand-deep);
  stroke-width: 2.5;
}

.plan-card--featured li .icon {
  color: #10140d;
}

.plan-card__price {
  display: grid;
  margin-top: auto;
  margin-bottom: 18px;
}

.plan-card__price span {
  color: var(--muted);
  font-size: .7rem;
}

.plan-card--featured .plan-card__price span {
  color: rgba(16, 20, 13, .58);
}

.plan-card__price strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.plan-card .button {
  width: 100%;
}

.plans-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .72rem;
  text-align: center;
}

/* Why */
.section--why {
  overflow: hidden;
  background: #10140d;
  color: #f5f8ed;
}

.section--why::after {
  position: absolute;
  right: -200px;
  bottom: -300px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(199, 243, 27, .08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 100px rgba(199, 243, 27, .018), 0 0 0 200px rgba(199, 243, 27, .012);
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: 90px;
}

.why-heading {
  position: sticky;
  top: 125px;
  align-self: start;
}

.why-heading h2 {
  margin-bottom: 25px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .98;
}

.why-heading h2 span {
  color: var(--brand);
}

.why-heading > p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 30px;
  color: rgba(245, 248, 237, .58);
}

.why-cards {
  display: grid;
  gap: 14px;
}

.why-card {
  position: relative;
  display: grid;
  min-height: 180px;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .035);
  transition: background-color .3s ease, border-color .3s ease, transform .3s var(--ease);
}

.why-card:hover {
  border-color: rgba(199, 243, 27, .35);
  background: rgba(199, 243, 27, .05);
  transform: translateX(-6px);
}

.why-card h3 {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.why-card p {
  max-width: 440px;
  margin: 0;
  color: rgba(245, 248, 237, .52);
  font-size: .82rem;
}

.why-card > strong {
  color: rgba(245, 248, 237, .12);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.06em;
}

/* Gallery */
.section--gallery {
  overflow: hidden;
  background: var(--bg-soft);
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.gallery-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -.05em;
  line-height: 1.08;
}

.gallery-controls {
  display: flex;
  gap: 8px;
}

.gallery-controls .icon-button {
  width: 50px;
  height: 50px;
  background: var(--surface);
}

.gallery-track {
  display: flex;
  gap: 22px;
  width: 100%;
  overflow-x: auto;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2)) 35px;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--sage) transparent;
}

.gallery-track::-webkit-scrollbar {
  height: 5px;
}

.gallery-track::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: var(--sage);
}

.profile-card {
  flex: 0 0 min(620px, 73vw);
  margin: 0;
  padding: 12px 12px 20px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 8px 8px 18px 18px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transform: rotate(-.7deg);
  transition: transform .35s var(--ease), box-shadow .35s ease;
}

.profile-card:nth-child(even) {
  transform: rotate(.65deg) translateY(7px);
}

.profile-card:hover {
  z-index: 2;
  box-shadow: var(--shadow-lg);
  transform: rotate(0) translateY(-5px);
}

.profile-card > div {
  overflow: hidden;
  border-radius: 4px 4px 12px 12px;
  background: #10140d;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.profile-card:hover img {
  transform: scale(1.025);
}

.profile-card figcaption {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 6px 0;
}

.profile-card figcaption span {
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 800;
}

.profile-card figcaption strong {
  font-size: .88rem;
}

/* FAQ */
.section--faq {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 90px;
}

.faq-heading {
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.2vw, 4.1rem);
  letter-spacing: -.055em;
  line-height: 1.08;
}

.faq-heading > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line-strong);
}

.accordion details {
  border-bottom: 1px solid var(--line-strong);
}

.accordion summary {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 5px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.accordion summary i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.accordion summary i::before,
.accordion summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.accordion summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary i {
  border-color: var(--brand-deep);
  background: var(--brand);
  color: #10140d;
}

.accordion details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
  max-width: 740px;
  margin: -5px 45px 0 5px;
  padding-bottom: 26px;
  color: var(--muted);
  font-size: .9rem;
}

/* Contact */
.section--contact {
  overflow: hidden;
  background: #10140d;
  color: #f5f8ed;
}

.section--contact::before {
  position: absolute;
  top: 20%;
  left: -250px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(199, 243, 27, .08);
  content: "";
  filter: blur(100px);
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(480px, 1.18fr);
  gap: 90px;
  align-items: start;
}

.contact-info {
  padding-top: 24px;
}

.contact-info h2 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.6vw, 4.7rem);
  letter-spacing: -.06em;
  line-height: 1.04;
}

.contact-info h2 span {
  color: var(--brand);
}

.contact-info > p:not(.eyebrow) {
  margin-bottom: 35px;
  color: rgba(245, 248, 237, .58);
}

.contact-list {
  display: grid;
}

.contact-list > a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  transition: padding-left .25s var(--ease), border-color .2s ease;
}

.contact-list > a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contact-list > a:hover {
  padding-left: 8px;
  border-color: rgba(199, 243, 27, .36);
}

.contact-list__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, .07);
  color: var(--brand);
}

.contact-list__icon--line {
  background: #06c755;
  color: #fff;
}

.contact-list > a > span:nth-child(2) {
  display: grid;
}

.contact-list small {
  color: rgba(245, 248, 237, .45);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .03em;
}

.contact-list strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: .95rem;
  text-overflow: ellipsis;
}

.contact-list__arrow {
  color: rgba(245, 248, 237, .3);
}

.quote-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  background: #f5f7ef;
  color: #12170e;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .32);
}

.quote-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.quote-card__head .micro-label {
  color: #718000;
}

.quote-card__head h3 {
  margin: 5px 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -.04em;
}

.quote-card__step {
  color: #7a8273;
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
}

#quote-form {
  display: grid;
  gap: 18px;
}

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

#quote-form label:not(.check-field) {
  display: grid;
  gap: 7px;
  color: #30382b;
  font-size: .76rem;
  font-weight: 600;
}

#quote-form input:not([type="checkbox"]),
#quote-form select,
#quote-form textarea {
  width: 100%;
  border: 1px solid #d1d7c9;
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: #12170e;
  font-size: .88rem;
  font-weight: 400;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

#quote-form input:not([type="checkbox"]),
#quote-form select {
  height: 50px;
  padding: 0 14px;
}

#quote-form textarea {
  min-height: 110px;
  padding: 13px 14px;
  resize: vertical;
}

#quote-form input:focus,
#quote-form select:focus,
#quote-form textarea:focus {
  border-color: #8fae0d;
  box-shadow: 0 0 0 4px rgba(199, 243, 27, .16);
}

#quote-form label.invalid input,
#quote-form label.invalid select,
#quote-form label.invalid textarea {
  border-color: #c83d34;
  box-shadow: 0 0 0 3px rgba(200, 61, 52, .1);
}

.field-error {
  display: none;
  color: #b02e27;
  font-size: .68rem;
  font-weight: 500;
}

label.invalid .field-error {
  display: block;
}

.check-field {
  display: grid;
  gap: 6px;
  font-size: .72rem;
}

.check-field > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check-field > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-field i {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #b8c0b0;
  border-radius: 6px;
  background: #fff;
  color: transparent;
}

.check-field i .icon {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.check-field input:checked + span i {
  border-color: var(--brand);
  background: var(--brand);
  color: #10140d;
}

.check-field input:focus-visible + span i {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.check-field em {
  color: #66705e;
  font-style: normal;
  font-weight: 400;
}

.check-field em button,
.footer-bottom button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: inherit;
}

.quote-submit {
  width: 100%;
  border-radius: 14px;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: -5px 0 0;
  color: #75806d;
  font-size: .64rem;
  text-align: center;
}

.form-note .icon {
  width: 14px;
  height: 14px;
}

.form-success {
  display: grid;
  min-height: 550px;
  place-items: center;
  align-content: center;
  padding: 30px 10px;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success__icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #10140d;
  box-shadow: 0 0 0 12px rgba(199, 243, 27, .17);
}

.form-success__icon .icon {
  width: 34px;
  height: 34px;
  stroke-width: 2.6;
}

.form-success h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -.04em;
}

.form-success > p {
  max-width: 460px;
  margin-bottom: 25px;
  color: #66705e;
}

.form-success__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.quote-card .button--outline {
  border-color: #b8c0b0;
  color: #12170e;
}

.quote-card .button--outline:hover {
  border-color: #12170e;
  background: #12170e;
  color: #fff;
}

/* Locations */
.locations {
  padding: 22px 0 100px;
  background: var(--bg);
}

.locations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
  gap: 18px;
}

.location-primary,
.location-secondary {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.location-primary {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
}

.location-primary__map {
  min-height: 360px;
  overflow: hidden;
  background: var(--bg-soft);
  filter: saturate(.55) contrast(1.04);
}

html[data-theme="dark"] .location-primary__map {
  filter: saturate(.4) invert(.87) hue-rotate(160deg) contrast(.9);
}

.location-primary__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-primary__copy {
  align-self: center;
  padding: 34px;
}

.location-primary__copy h2 {
  margin: 16px 0 12px;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -.04em;
}

.location-primary__copy p,
.location-secondary > p {
  color: var(--muted);
  font-size: .87rem;
}

.location-primary__copy .text-link {
  margin-top: 15px;
  color: var(--brand-deep);
  font-size: .77rem;
}

.location-secondary {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
}

.location-secondary::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 35px rgba(130, 150, 109, .04), 0 0 0 70px rgba(130, 150, 109, .025);
}

.location-secondary > .micro-label {
  margin-bottom: 26px;
  color: var(--muted);
}

.location-secondary .icon-box {
  margin-bottom: 20px;
}

.location-secondary h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.location-secondary__meta {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: auto;
}

.location-secondary__meta span {
  color: var(--muted);
  font-size: .67rem;
}

.location-secondary__meta strong {
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-size: .83rem;
  letter-spacing: .08em;
}

/* Footer */
.site-footer {
  padding: 85px 0 28px;
  background: #0b0e0a;
  color: #f5f8ed;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 70px;
}

.brand--footer {
  margin-bottom: 22px;
}

.footer-brand > p {
  max-width: 360px;
  margin-bottom: 25px;
  color: rgba(245, 248, 237, .5);
  font-size: .83rem;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-status span {
  width: 7px;
  height: 7px;
}

.footer-status p {
  margin: 0;
  color: rgba(245, 248, 237, .55);
  font-size: .7rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 10px;
  color: rgba(245, 248, 237, .95);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(245, 248, 237, .48);
  font-size: .78rem;
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.footer-contact a {
  color: rgba(245, 248, 237, .7);
  font-family: var(--font-display);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(245, 248, 237, .35);
  font-size: .65rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a:hover,
.footer-bottom button:hover {
  color: rgba(245, 248, 237, .8);
}

/* Mobile dock */
.mobile-dock {
  display: none;
}

/* Chat */
.chat-launcher {
  position: fixed;
  z-index: 1200;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 0;
  border-radius: 22px;
  background: var(--brand);
  color: #10140d;
  box-shadow: 0 18px 45px rgba(63, 78, 7, .3);
  transition: transform .3s var(--ease), border-radius .3s ease, background-color .2s ease;
}

.chat-launcher:hover {
  border-radius: 50%;
  background: var(--brand-bright);
  transform: translateY(-4px) rotate(-2deg);
}

.chat-launcher .icon {
  width: 27px;
  height: 27px;
  stroke-width: 2;
}

.chat-launcher__pulse {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(199, 243, 27, .7);
  border-radius: 26px;
  animation: chat-pulse 2.4s infinite;
}

@keyframes chat-pulse {
  0% { opacity: .8; transform: scale(.9); }
  70%, 100% { opacity: 0; transform: scale(1.25); }
}

.chat-launcher i {
  position: absolute;
  top: -7px;
  right: -6px;
  display: grid;
  min-width: 26px;
  height: 22px;
  place-items: center;
  border: 2px solid var(--bg);
  border-radius: 999px;
  background: #10140d;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: .57rem;
  font-style: normal;
  font-weight: 800;
}

.chat-launcher__close {
  display: none;
}

.chat-launcher[aria-expanded="true"] .chat-launcher__chat,
.chat-launcher[aria-expanded="true"] i,
.chat-launcher[aria-expanded="true"] .chat-launcher__pulse {
  display: none;
}

.chat-launcher[aria-expanded="true"] .chat-launcher__close {
  display: block;
}

.ai-chat {
  position: fixed;
  z-index: 1190;
  right: max(24px, env(safe-area-inset-right));
  bottom: calc(max(24px, env(safe-area-inset-bottom)) + 78px);
  display: flex;
  width: min(390px, calc(100vw - 32px));
  height: min(650px, calc(100dvh - 140px));
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .3s var(--ease);
}

.ai-chat.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-chat__header {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 16px 16px 13px;
  border-bottom: 1px solid var(--line);
}

.ai-avatar {
  position: relative;
}

.ai-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.ai-avatar span {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: #23c55e;
}

.ai-chat__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -.02em;
}

.ai-chat__header p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 2px 0 0;
}

.ai-chat__header p span {
  width: 6px;
  height: 6px;
  background: #23c55e;
  box-shadow: none;
}

.ai-chat__header p em {
  color: var(--muted);
  font-size: .64rem;
  font-style: normal;
}

.ai-chat__header .icon-button {
  width: 36px;
  height: 36px;
}

.ai-chat__disclaimer {
  padding: 7px 14px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: .59rem;
  text-align: center;
}

.chat-messages {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 13px;
  overflow-y: auto;
  padding: 17px 15px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.chat-row--user {
  justify-content: flex-end;
}

.chat-mini-avatar {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--brand);
  color: #10140d;
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 800;
}

.chat-bubble {
  max-width: 82%;
  padding: 10px 12px 7px;
  border-radius: 7px 16px 16px 16px;
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.55;
}

.chat-row--user .chat-bubble {
  border-radius: 16px 7px 16px 16px;
  background: #151b12;
  color: #f5f8ed;
}

.chat-bubble p {
  margin: 0;
}

.chat-bubble time {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .52rem;
  text-align: right;
}

.chat-row--user .chat-bubble time {
  color: rgba(245, 248, 237, .45);
}

.chat-bubble a {
  display: inline-flex;
  margin-top: 8px;
  margin-right: 5px;
  padding: 5px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--brand-deep);
  font-size: .68rem;
  font-weight: 700;
}

.chat-suggestions {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 8px 14px 11px;
  scrollbar-width: none;
}

.chat-suggestions::-webkit-scrollbar {
  display: none;
}

.chat-suggestions button {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted-strong);
  font-size: .65rem;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.chat-suggestions button:hover {
  border-color: var(--brand-deep);
  background: rgba(199, 243, 27, .1);
  color: var(--ink);
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
}

.chat-input input {
  min-width: 0;
  height: 44px;
  flex: 1;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: .78rem;
}

.chat-input input:focus {
  border-color: var(--brand-deep);
  box-shadow: 0 0 0 3px rgba(199, 243, 27, .12);
}

.chat-input button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 13px;
  background: var(--brand);
  color: #10140d;
}

.chat-input button:hover {
  background: var(--brand-bright);
}

.chat-powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 0 8px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .52rem;
  letter-spacing: .04em;
}

.chat-powered .icon {
  width: 10px;
  height: 10px;
  color: var(--brand-deep);
}

/* Privacy dialog */
.privacy-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: min(780px, calc(100dvh - 32px));
  padding: 28px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.privacy-dialog::backdrop {
  background: rgba(4, 7, 3, .72);
  backdrop-filter: blur(6px);
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.dialog-head .micro-label {
  color: var(--brand-deep);
}

.dialog-head h2 {
  margin: 5px 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -.04em;
}

.dialog-body {
  padding: 22px 0 12px;
}

.dialog-body h3 {
  margin: 22px 0 6px;
  font-size: 1rem;
}

.dialog-body p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .86rem;
}

.dialog-update {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .72rem !important;
}

.privacy-dialog > .button {
  width: 100%;
}

/* Toast */
.toast {
  position: fixed;
  z-index: 2000;
  bottom: 28px;
  left: 50%;
  max-width: calc(100% - 32px);
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: #10140d;
  color: #f5f8ed;
  box-shadow: var(--shadow-md);
  font-size: .76rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity .25s ease, transform .3s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Responsive */
@media (max-width: 1120px) {
  :root { --container: 980px; }

  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .floating-nav { padding-left: 13px; }

  .mobile-menu {
    display: grid;
    max-height: 0;
    margin-top: 8px;
    padding: 0 20px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    background: rgba(10, 14, 9, .96);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: max-height .35s var(--ease), padding .35s var(--ease), opacity .25s ease, transform .35s var(--ease), border-color .25s ease;
    backdrop-filter: blur(18px);
  }

  .mobile-menu.is-open {
    max-height: 560px;
    padding: 15px 20px 20px;
    border-color: rgba(255, 255, 255, .1);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu > a {
    padding: 13px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
    font-weight: 600;
  }

  .mobile-menu > a:hover { color: var(--brand); }

  .mobile-menu__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 15px;
  }

  .mobile-menu__contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-size: .72rem;
  }

  .hero__content { gap: 35px; }
  .coastal-float { padding: 22px; }
  .hero-stat { padding-inline: 20px; }

  .coastal-showcase { gap: 45px; }
  .process-step { padding: 18px; }
  .process-step__icon { margin-bottom: 35px; }
  .why-grid { gap: 55px; }
  .faq-grid { gap: 55px; }
  .contact-shell { gap: 50px; }
  .footer-grid { gap: 35px; }
}

@media (max-width: 920px) {
  .section { padding: 95px 0; }

  .hero { min-height: 980px; }
  .hero__content {
    min-height: 825px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 35px;
    padding-top: 145px;
    padding-bottom: 190px;
  }
  .hero__main { max-width: 720px; }
  .hero h1 { font-size: clamp(3.3rem, 9vw, 5.5rem); }
  .coastal-float { display: none; }
  .hero__overlay {
    background: linear-gradient(90deg, rgba(7, 10, 6, .92), rgba(7, 10, 6, .55)), linear-gradient(0deg, rgba(8, 11, 7, .96), rgba(8, 11, 7, .2) 55%, rgba(8, 11, 7, .5));
  }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { min-height: 100px; }
  .hero-stat:nth-child(3)::before { display: none; }
  .hero-stat:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .1); }
  .hero__stats { border-radius: 22px 22px 0 0; }

  .client-strip { overflow-x: auto; }
  .client-strip__track { width: max-content; padding-right: 24px; }

  .intro-grid { grid-template-columns: 1fr; gap: 35px; }
  .section-kicker { display: none; }

  .section-header { grid-template-columns: 1fr; gap: 20px; }
  .section-header > p { max-width: 650px; }

  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card--wide { grid-column: span 2; }
  .service-card { min-height: 450px; }
  .card-action { max-height: 60px; margin-top: 22px; padding-top: 15px; opacity: 1; transform: none; }

  .coastal-showcase { grid-template-columns: 1fr; }
  .coastal-showcase__media { min-height: 520px; }
  .coastal-showcase__media img { object-position: center 58%; }
  .coastal-showcase__content { padding: 0; }

  .process-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-rail::before { display: none; }
  .process-step:last-child { grid-column: span 2; min-height: 240px; }

  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: auto; }
  .plan-card > p { min-height: 0; }

  .why-grid { grid-template-columns: 1fr; }
  .why-heading { position: static; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-heading { max-width: 620px; }

  .contact-shell { grid-template-columns: 1fr; }
  .contact-info { max-width: 680px; }
  .quote-card { max-width: 730px; }

  .locations-grid { grid-template-columns: 1fr; }
  .location-secondary { min-height: 310px; }

  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-contact { grid-column: 2; }
}

@media (max-width: 680px) {
  :root { --radius-lg: 24px; --radius-xl: 30px; }
  html { scroll-padding-top: 92px; }
  body { padding-bottom: calc(67px + env(safe-area-inset-bottom)); }
  body.chat-open { padding-bottom: 0; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 76px 0; }

  .site-header { padding-top: 10px; }
  .floating-nav { min-height: 62px; border-radius: 16px; }
  .brand img { width: 40px; height: 40px; border-radius: 12px; }
  .brand__copy strong { font-size: .77rem; }
  .brand__copy > span { font-size: .46rem; }
  .brand__copy small { font-size: .52rem; }
  .button--nav { display: none; }
  .nav-actions { gap: 5px; }
  .nav-actions .icon-button { width: 38px; height: 38px; }
  .mobile-menu { width: calc(100% - 30px); }

  .hero { min-height: 900px; }
  .hero__content {
    min-height: 760px;
    padding-top: 122px;
    padding-bottom: 215px;
  }
  .hero__image { object-position: 55% center; }
  .hero__grid { background-size: 54px 54px; }
  .status-pill { margin-bottom: 22px; font-size: .66rem; }
  .hero .eyebrow { font-size: .62rem; letter-spacing: .12em; }
  .hero h1 { margin-bottom: 20px; font-size: clamp(2.65rem, 12vw, 4.2rem); line-height: 1.02; }
  .hero__lead { font-size: .92rem; line-height: 1.7; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .button { width: 100%; }
  .hero__trust { margin-top: 25px; }
  .hero__stats-wrap { width: 100%; }
  .hero__stats { width: 100%; border-radius: 20px 20px 0 0; }
  .hero-stat { min-height: 90px; gap: 10px; padding: 15px; }
  .hero-stat strong { font-size: 1.65rem; }
  .hero-stat p { font-size: .61rem; }

  .client-strip__track { min-height: 64px; }

  .intro-copy h2 { margin-bottom: 28px; font-size: clamp(2.1rem, 10vw, 3.1rem); }
  .intro-copy__body { grid-template-columns: 1fr; gap: 18px; }

  .section-header { margin-bottom: 34px; }
  .section-header h2, .section-header--center h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .section-header--center { margin-bottom: 42px; text-align: left; }
  .section-header--center > p:last-child { margin-left: 0; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; }
  .service-card { min-height: 435px; }
  .service-card__content { padding: 23px; }
  .service-card h3 { font-size: 1.65rem; }
  .service-card__tag { margin-top: 45px; }

  .coastal-showcase { gap: 38px; }
  .coastal-showcase__media { min-height: 470px; }
  .coastal-showcase__content h2 { font-size: clamp(2.25rem, 10vw, 3.2rem); }
  .coastal-showcase__lead { font-size: .9rem; }
  .coastal-showcase__badge { top: 15px; left: 15px; max-width: calc(100% - 30px); }
  .coastal-risks > div { grid-template-columns: 36px 1fr; gap: 13px; }
  .coastal-showcase__content .button { width: 100%; }

  .process-rail { grid-template-columns: 1fr; }
  .process-step, .process-step:last-child { min-height: 230px; grid-column: auto; }
  .process-step__icon { margin-bottom: 28px; }

  .plan-card { padding: 24px; }
  .plan-card__top { margin-bottom: 38px; }
  .plan-card__ribbon { right: 20px; }

  .why-grid { gap: 45px; }
  .why-heading h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .why-card { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px; }
  .why-card > strong { position: absolute; right: 17px; bottom: 5px; font-size: 2.5rem; }
  .why-card p { padding-right: 35px; }

  .gallery-head { align-items: center; }
  .gallery-controls .icon-button { width: 42px; height: 42px; }
  .gallery-track { gap: 14px; padding-left: 15px; padding-right: 15px; }
  .profile-card { flex-basis: 88vw; padding: 8px 8px 15px; }

  .faq-grid { gap: 42px; }
  .faq-heading h2 { font-size: clamp(2.1rem, 10vw, 3.1rem); }
  .accordion summary { min-height: 76px; font-size: .94rem; }
  .accordion details p { margin-right: 5px; font-size: .82rem; }

  .contact-info h2 { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .contact-shell { gap: 46px; }
  .contact-list strong { font-size: .82rem; }
  .quote-card { padding: 23px 18px; }
  .quote-card__head h3 { font-size: 1.65rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-success { min-height: 500px; }
  .form-success__actions { display: grid; width: 100%; }

  .locations { padding: 15px 0 76px; }
  .location-primary { grid-template-columns: 1fr; }
  .location-primary__map { min-height: 260px; }
  .location-primary__copy, .location-secondary { padding: 24px; }

  .site-footer { padding-top: 65px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 25px; padding-bottom: 50px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom > div { gap: 12px 18px; }

  .mobile-dock {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(64px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: rgba(10, 14, 9, .96);
    color: #f5f8ed;
    backdrop-filter: blur(15px);
  }

  .mobile-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 700;
  }
  .mobile-dock a + a { border-left: 1px solid rgba(255, 255, 255, .1); }
  .mobile-dock a:nth-child(2) { color: var(--brand); }
  .mobile-dock .icon { width: 18px; height: 18px; }

  .chat-launcher {
    right: 16px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    border-radius: 19px;
  }
  .ai-chat {
    right: 8px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    width: calc(100vw - 16px);
    height: min(680px, calc(100dvh - 92px - env(safe-area-inset-bottom)));
    border-radius: 22px;
  }
  .chat-open .chat-launcher { display: none; }

  .privacy-dialog { padding: 21px; }
  .dialog-head h2 { font-size: 1.65rem; }
  .toast { bottom: calc(78px + env(safe-area-inset-bottom)); }
}

@media (max-width: 410px) {
  .brand__copy > span { display: none; }
  .brand__copy small { margin-top: 2px; }
  .hero h1 { font-size: 2.65rem; }
  .status-pill { padding-inline: 10px; }
  .hero-stat { padding-inline: 11px; }
  .hero-stat p { max-width: 100px; }
  .gallery-controls { display: none; }
  .profile-card { flex-basis: 91vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-contact { grid-column: auto; }
}

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

@media print {
  .site-header, .mobile-dock, .chat-launcher, .ai-chat, .gallery-controls { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .section { padding: 40px 0; break-inside: avoid; }
  .hero { min-height: 680px; }
}
