@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --alabaster: #f9f9f7;
  --stone: #f1f1ec;
  --obsidian: #121416;
  --obsidian-soft: #1c2023;
  --steel-blue: #4a6c8c;
  --brand-blue: #2dbfe6;
  --brand-dark-blue: #2f41df;
  --citron: #d1e231;
  --citron-deep: #b8ca2a;
  --citron-soft: #fefef9;
  --text: #121416;
  --text-soft: rgba(18, 20, 22, 0.66);
  --text-inverse: rgba(249, 249, 247, 0.92);
  --text-inverse-soft: rgba(249, 249, 247, 0.68);
  --border: rgba(18, 20, 22, 0.08);
  --radius: 24px;
  --radius-lg: 34px;
  --max: 1280px;
  --shadow: 0 22px 70px rgba(18, 20, 22, 0.08);
  --shadow-media: 0 24px 60px rgba(18, 20, 22, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--alabaster);
  color: var(--text);
  font:
    400 18px/1.7 "Plus Jakarta Sans",
    sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-top: 12px;
}

body:not(.inner-page) .site-header {
  background: var(-n);
  padding-bottom: 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inner-page .brand-mark {
  width: 108px;
  height: 108px;
}

.inner-page .brand-mark img {
  width: 118%;
  height: 118%;
}

.brand-title {
  display: block;
  color: var(--alabaster);
  font:
    800 1.02rem/1.1 "Inter Tight",
    sans-serif;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  display: block;
  color: rgba(249, 249, 247, 0.62);
  font-size: 0.86rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(249, 249, 247, 0.78);
  font:
    700 0.86rem/1 "Inter Tight",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(249, 249, 247, 0.1);
  color: var(--alabaster);
}

.header-cta,
.button,
.button-secondary,
.button-dark,
.button-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font:
    700 0.84rem/1 "Inter Tight",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.header-cta:hover,
.button:hover,
.button-secondary:hover,
.button-dark:hover,
.button-outline-light:hover {
  transform: translateY(-1px);
}

.header-cta,
.button {
  background: var(--brand-blue);
  color: var(--obsidian);
}

.button-secondary {
  border: 1px solid rgba(249, 249, 247, 0.3);
  color: var(--alabaster);
  background: transparent;
}

.button-dark {
  background: var(--obsidian);
  color: var(--alabaster);
}

.button-outline-light {
  border: 1px solid rgba(249, 249, 247, 0.24);
  color: var(--alabaster);
  background: rgba(249, 249, 247, 0.06);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: rgba(249, 249, 247, 0.14);
  color: var(--alabaster);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--brand-blue);
  font:
    700 0.78rem/1 "Inter Tight",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--obsidian);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(18, 20, 22, 0.18) 0%,
    rgba(18, 20, 22, 0.32) 35%,
    rgba(18, 20, 22, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 84px;
}

.hero-copy {
  max-width: 760px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(3.6rem, 10vw, 5rem);
  line-height: 0.92;
  color: var(--alabaster);
  margin-bottom: 26px;
  text-shadow: 0 6px 18px rgba(18, 20, 22, 0.45);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.08;
}

.hero-copy p,
.section-lead,
.page-hero p {
  max-width: 38rem;
  color: var(--text-inverse-soft);
  font-size: 1.06rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section-dark {
  background: var(--obsidian);
  color: var(--alabaster);
}

.section-blue {
  background: var(--steel-blue);
  color: var(--alabaster);
}

.section-citron {
  background: var(--citron-soft);
  color: var(--obsidian);
}

.section-citron .eyebrow {
  color: var(--obsidian);
}

h2 {
  color: var(--brand-blue);
}

.cta-band h2 {
  color: var(--alabaster);
}

.service-row h2 {
  color: var(--text);
}

.stats-band {
  padding: 52px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-blue);
  font:
    800 clamp(2.2rem, 4vw, 3.4rem)/1 "Inter Tight",
    sans-serif;
}

.stat-item span {
  color: rgba(249, 249, 247, 0.54);
  font:
    700 0.78rem/1.4 "Inter Tight",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--stone);
}

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

.section-head p,
.card p,
.page-hero-card p,
.service-copy p,
.detail-card p,
.info-card p,
.about-copy p {
  color: var(--text-soft);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.video-frame {
  max-width: 80%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--alabaster);
  box-shadow: var(--shadow-media);
}

.video-frame video,
.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.video-frame video {
  object-fit: cover;
}

.service-tile-wrap {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-media);
}

.service-tile {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: var(--obsidian);
}

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

.service-tile:hover img {
  transform: scale(1.05);
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 20, 22, 0.06),
    rgba(18, 20, 22, 0.78)
  );
}

.service-tile-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 26px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--obsidian);
  font:
    700 0.74rem/1 "Inter Tight",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-tile h3,
.service-tile p {
  color: var(--alabaster);
}

.service-tile h3 {
  margin: 16px 0 10px;
}

.service-tile p {
  color: rgba(249, 249, 247, 0.7);
  font-size: 0.94rem;
  max-width: 22rem;
}

.card,
.info-card,
.detail-card,
.contact-card,
.value-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--alabaster);
  box-shadow: var(--shadow);
}

.section-soft .card,
.section-soft .info-card,
.section-soft .detail-card,
.section-soft .contact-card,
.section-soft .value-card {
  background: var(--alabaster);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(209, 226, 49, 0.18);
  color: var(--obsidian);
  font:
    800 0.9rem/1 "Inter Tight",
    sans-serif;
}

.center-copy {
  max-width: 740px;
  margin: 0 auto 54px;
  text-align: center;
}

.cta-band {
  text-align: center;
}

.cta-band p {
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  padding: 146px 0 26px;
  background: var(--obsidian);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.9rem);
  line-height: 0.96;
  margin-bottom: 10px;
}

.contact-page-hero {
  padding-bottom: 72px;
}

.page-hero-card h1 {
  margin-bottom: 10px;
}

.page-hero-card p {
  margin: 0;
}

.page-hero-card p + p {
  margin-top: 12px;
}

.page-hero + .section:not(.contact-quote-section) {
  position: relative;
  z-index: 2;
  margin-top: -56px;
  padding-top: 84px;
}

.section-intro {
  max-width: 760px;
  margin: 0 0 34px;
}

.about-photo-intro {
  margin: 22px 0 0;
}

.about-story-section .about-grid {
  margin-top: 34px;
}

.section-intro p {
  margin: 0;
  color: var(--text-soft);
}

.section-meta {
  margin-top: 10px !important;
  color: rgba(18, 20, 22, 0.52) !important;
  font-size: 0.92rem;
}

.split-layout,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-stack {
  display: grid;
  gap: 88px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-row:nth-child(even) .service-media {
  order: 2;
}

.service-row:nth-child(even) .service-copy {
  order: 1;
}

.service-media {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-media);
}

.service-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-copy ul,
.detail-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.service-copy li,
.detail-card li {
  margin-bottom: 10px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.service-subtitle {
  color: rgba(18, 20, 22, 0.42);
  font:
    700 0.78rem/1 "Inter Tight",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pill-cloud span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--alabaster);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-weight: 500;
}

.about-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
  position: relative;
  box-shadow: var(--shadow-media);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialist-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: end;
}

.specialist-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--stone);
}

.specialist-card p {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card h3,
.value-card h3 {
  margin-bottom: 12px;
}

.quote-shell {
  max-width: 860px;
  margin: 0 auto;
}

.contact-quote-section {
  position: relative;
  z-index: 3;
  margin-top: -56px;
  padding-top: 32px;
}

.contact-quote-section .quote-shell {
  background: var(--alabaster);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px;
}

.contact-quote-section .center-copy {
  margin-bottom: 24px;
}

.contact-quote-section h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.contact-info-section {
  padding-top: 56px;
}

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

.form-status {
  min-height: 1.6em;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.form-note {
  margin: -2px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-note a {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.button-outline-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--obsidian);
  font:
    700 0.84rem/1 "Inter Tight",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.honey-field {
  display: none;
}

.chat-hover-zone {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 150px;
  height: 150px;
  z-index: 2147483000;
  pointer-events: auto;
  background: transparent;
}

.chat-hover-tip {
  position: fixed;
  right: 76px;
  bottom: 82px;
  z-index: 2147483001;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(18, 20, 22, 0.94);
  color: var(--alabaster);
  font:
    700 0.8rem/1 "Inter Tight",
    sans-serif;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 34px rgba(18, 20, 22, 0.22);
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transform-origin: bottom right;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  pointer-events: none;
  white-space: nowrap;
}

.chat-hover-tip.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.chat-hover-tip::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: rgba(18, 20, 22, 0.94);
  transform: rotate(45deg);
  border-radius: 2px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

input,
select,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 0;
  border-radius: 18px;
  background: var(--stone);
  color: var(--text);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(18, 20, 22, 0.34);
}

.site-footer {
  padding: 34px 0 40px;
  background: var(--obsidian);
  color: var(--alabaster);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  color: rgba(249, 249, 247, 0.68);
}

.footer-meta {
  color: rgba(249, 249, 247, 0.54);
  font-size: 0.92rem;
}

.footer-bottomline {
  color: rgba(249, 249, 247, 0.54);
  font-size: 0.92rem;
}

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

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

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

@media (max-width: 980px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav.is-open {
    display: block;
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    z-index: 60;
    padding: 18px;
    border-radius: 24px;
    background: rgba(18, 20, 22, 0.96);
  }

  .main-nav.is-open ul {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.is-open a {
    justify-content: center;
  }

  .stats-grid,
  .grid-4,
  .contact-grid,
  .grid-3,
  .grid-2,
  .split-layout,
  .about-grid,
  .service-row,
  .field-row {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .service-row:nth-child(even) .service-media,
  .service-row:nth-child(even) .service-copy {
    order: initial;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .brand-mark {
    width: 72px;
    height: 72px;
  }

  .inner-page .brand-mark {
    width: 88px;
    height: 88px;
  }

  .site-header {
    padding-top: 14px;
  }

  body:not(.inner-page) .site-header {
    padding-bottom: 14px;
  }

  .hero-content {
    padding: 132px 0 60px;
  }

  .section,
  .page-hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .page-hero {
    padding-top: 124px;
    padding-bottom: 20px;
  }

  .contact-page-hero {
    padding-bottom: 48px;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
    margin-bottom: 8px;
  }

  .page-hero + .section:not(.contact-quote-section) {
    margin-top: -28px;
    padding-top: 44px;
  }

  .contact-quote-section {
    margin-top: -28px;
    padding-top: 16px;
  }

  .contact-quote-section .quote-shell {
    padding: 24px;
  }

  .contact-quote-section h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .chat-hover-zone {
    right: 10px;
    bottom: 10px;
    width: 120px;
    height: 120px;
  }

  .chat-hover-tip {
    right: 64px;
    bottom: 74px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.75rem;
  }

  .stats-band {
    padding: 42px 0;
  }

  .card,
  .info-card,
  .detail-card,
  .contact-card,
  .value-card,
  .specialist-card {
    padding: 24px;
  }

  .about-story-section .about-grid {
    margin-top: 24px;
  }

  .service-tile-copy {
    padding: 22px;
  }
}
