:root {
  --mint: #88bfa2;
  --mint-deep: #6ea98a;
  --mint-smoke: #dbe9df;
  --turquoise: #0097b2;
  --sky: #82c2d3;
  --coral: #ff804a;
  --sand: #ffe2a0;
  --ink: #15352f;
  --ink-soft: #23483f;
  --text: #27453c;
  --paper: #fffdf8;
  --paper-deep: #f4efe6;
  --line: rgba(21, 53, 47, 0.12);
  --shadow: 0 24px 60px rgba(17, 43, 38, 0.1);
  --shadow-soft: 0 16px 40px rgba(17, 43, 38, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 199, 56, 0.08), transparent 20%),
    linear-gradient(180deg, #d8e6dc 0%, #eef4ee 18%, #f7f2e9 44%, #fdfbf7 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(21, 53, 47, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 53, 47, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, black 35%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 199, 56, 0.18), transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(0, 151, 178, 0.14), transparent 22%),
    radial-gradient(circle at 50% 82%, rgba(21, 53, 47, 0.08), transparent 24%);
}

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

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

.site-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 40px;
  position: relative;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px 16px 22px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(244, 239, 230, 0.88)),
    rgba(255, 251, 245, 0.92);
  border: 1px solid rgba(21, 53, 47, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(17, 43, 38, 0.08);
  position: sticky;
  top: 18px;
  z-index: 10;
}

.topbar-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex: 1;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 208px;
  padding-right: 18px;
  border-right: 1px solid rgba(21, 53, 47, 0.08);
}

.brand-kicker,
.eyebrow {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--turquoise);
  font-weight: 800;
}

.brand-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.16rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-weight: 700;
  flex: 1;
}

.nav a {
  color: rgba(39, 69, 60, 0.88);
  position: relative;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--coral);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(255, 128, 74, 0.22);
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(255, 128, 74, 0.28);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-ghost {
  background: rgba(255, 251, 245, 0.92);
  border-color: rgba(21, 53, 47, 0.12);
  color: var(--ink);
  box-shadow: none;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-phone {
  display: grid;
  gap: 2px;
  padding: 10px 14px 10px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(21, 53, 47, 0.08);
  box-shadow: var(--shadow-soft);
}

.topbar-phone span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turquoise);
}

.topbar-phone strong {
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 42px;
  align-items: stretch;
  padding: 54px 0 40px;
}

.hero-copy h1,
.section-heading h2,
.quick-facts h2,
.callout strong,
.story-copy h2,
.footer h2,
.gallery-card span {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.hero-copy {
  position: relative;
  padding: 24px 0;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink), var(--coral));
}

.hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(3.82rem, 6.92vw, 6.5rem);
  line-height: 0.92;
  font-weight: 600;
  max-width: 12ch;
  text-wrap: balance;
}

.lead {
  max-width: 62ch;
  font-size: 1.06rem;
  line-height: 1.82;
  color: rgba(39, 69, 60, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 700;
  max-width: 44rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 128, 74, 0.15);
}

.hero-brand-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.logo-card {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 239, 230, 0.82)),
    rgba(255, 255, 255, 0.95);
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 53, 47, 0.07);
}

.logo-card img {
  width: 100%;
  border-radius: 18px;
}

.service-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 2px;
}

.service-band span {
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(21, 53, 47, 0.08);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

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

.hero-metrics div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(21, 53, 47, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.96rem;
}

.hero-metrics span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.55;
}

.quick-facts,
.proof-grid {
  display: grid;
  gap: 18px;
}

.quick-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 6px 0 24px;
}

.quick-facts article,
.proof-grid article,
.values-card,
.proposal-form,
.callout {
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid rgba(21, 53, 47, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.quick-facts article {
  padding: 24px 24px 26px;
  position: relative;
}

.fact-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(21, 53, 47, 0.06);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-facts h2,
.section-heading h2,
.story-copy h2,
.footer h2 {
  margin: 0 0 10px;
}

.section {
  padding: 68px 0 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 0.94;
  font-weight: 600;
}

.section-heading p {
  font-size: 1.03rem;
  line-height: 1.82;
}

.section-services {
  position: relative;
}

.section-services::before {
  content: "";
  position: absolute;
  inset: 24px -32px 0;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(136, 191, 162, 0.18), rgba(255, 253, 248, 0.03) 72%, rgba(255, 253, 248, 0)),
    radial-gradient(circle at top right, rgba(0, 151, 178, 0.08), transparent 30%);
  z-index: -1;
}

.service-grid {
  display: grid;
  gap: 20px;
}

.service-grid-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

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

.service-card {
  padding: 26px;
  background: rgba(255, 251, 245, 0.82);
  border: 1px solid rgba(21, 53, 47, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.service-card h3,
.proof-grid h3,
.values-card h3,
.form-success h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  color: var(--ink);
}

.service-card-featured {
  background:
    linear-gradient(180deg, rgba(0, 151, 178, 0.1), rgba(255, 251, 245, 0.74) 40%),
    rgba(255, 251, 245, 0.82);
}

.service-note {
  margin-top: 16px;
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 24px;
  align-items: center;
  margin: 34px 0 8px;
  padding: 28px 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(21, 53, 47, 0.96), rgba(35, 72, 63, 0.92)),
    rgba(21, 53, 47, 0.94);
  box-shadow: 0 28px 60px rgba(17, 43, 38, 0.18);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 128, 74, 0.22), transparent 22%),
    linear-gradient(90deg, transparent, rgba(255, 199, 56, 0.08), transparent);
  pointer-events: none;
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p,
.cta-band-actions {
  position: relative;
  z-index: 1;
}

.cta-band .eyebrow {
  color: var(--sand);
}

.cta-band h2 {
  margin: 8px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 3.7rem);
  line-height: 0.96;
  color: #fffaf2;
}

.cta-band p {
  margin: 0;
  max-width: 52ch;
  line-height: 1.8;
  color: rgba(255, 250, 242, 0.82);
}

.cta-band-actions {
  display: grid;
  gap: 12px;
}

.cta-band-actions .button-ghost {
  background: rgba(255, 250, 242, 0.1);
  color: #fffaf2;
  border-color: rgba(255, 250, 242, 0.22);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--coral), rgba(0, 151, 178, 0.48));
  opacity: 0.72;
}

.service-card-hero {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-accent {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 53, 47, 0.06);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.proof-grid article {
  padding: 24px;
}

.callout {
  margin-top: 20px;
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 199, 56, 0.16), rgba(255, 251, 245, 0.92));
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.story-copy p {
  line-height: 1.84;
}

.values-card {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(0, 151, 178, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(136, 191, 162, 0.2), rgba(255, 251, 245, 0.94));
}

.values-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.gallery-figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 251, 245, 0.9);
  border: 1px solid rgba(21, 53, 47, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.gallery-figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 220ms ease;
}

.gallery-figure-tall img {
  height: 100%;
  min-height: 520px;
}

.gallery-figure:hover img {
  transform: scale(1.02);
}

.gallery-figure::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(21, 53, 47, 0.1), transparent);
  pointer-events: none;
}

.gallery-figure figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 22px;
}

.gallery-figure strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.gallery-figure span {
  line-height: 1.6;
}

.section-gallery::after {
  content: "";
  display: block;
  margin-top: 18px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(21, 53, 47, 0.14), transparent);
}

.gallery-note {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.gallery-note p {
  margin: 0;
  max-width: 34rem;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(21, 53, 47, 0.08);
  color: var(--ink-soft);
  line-height: 1.6;
  box-shadow: var(--shadow-soft);
}

.proposal-form {
  padding: 28px;
}

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

.proposal-form label,
.checkbox-group legend {
  font-weight: 700;
  color: var(--ink);
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(21, 53, 47, 0.12);
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
  color: var(--text);
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
  outline: none;
  border-color: rgba(0, 151, 178, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 151, 178, 0.08);
}

.field-block,
.checkbox-group {
  display: block;
  margin-top: 18px;
}

.checkbox-group {
  padding: 16px;
  border-radius: 20px;
  border: 1px dashed rgba(21, 53, 47, 0.16);
}

.checkbox-group legend {
  padding: 0 10px;
}

.checkbox-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px 16px 0 0;
  font-weight: 600;
}

.checkbox-group input {
  width: auto;
  margin: 0;
}

.field-help,
.form-note {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(39, 69, 60, 0.8);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.form-success {
    margin-top: 18px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(136, 191, 162, 0.16), rgba(255, 251, 245, 0.94));
    border-radius: 24px;
    border: 1px solid rgba(21, 53, 47, 0.08);
  }

  .form-error {
    margin-top: 18px;
    padding: 22px;
    background: rgba(255, 245, 241, 0.96);
    border-radius: 24px;
    border: 1px solid rgba(255, 128, 74, 0.28);
  }

  .proposal-form button:disabled {
    opacity: 0.75;
    cursor: wait;
  }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 54px 0 32px;
  border-top: 1px solid rgba(21, 53, 47, 0.08);
  margin-top: 38px;
}

.footer-meta {
  display: grid;
  gap: 10px;
  text-align: right;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero,
  .story-layout,
  .quick-facts,
  .service-grid-featured,
  .service-grid-supporting,
  .proof-grid,
  .gallery-grid,
  .footer,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .gallery-figure-tall img {
    min-height: 320px;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 780px) {
  .site-shell {
    padding: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
    position: static;
    gap: 14px;
    padding: 16px 16px 18px;
  }

  .brand-lockup {
    min-width: 0;
    padding-right: 0;
    border-right: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(21, 53, 47, 0.08);
    max-width: none;
  }

  .brand-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .brand-name {
    font-size: 1.9rem;
  }

  .topbar-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 0;
    border-top: 0;
  }

  .nav {
    justify-content: flex-start;
    flex: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(21, 53, 47, 0.08);
    box-shadow: var(--shadow-soft);
    font-size: 0.84rem;
  }

  .nav a::after {
    display: none;
  }

  .topbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cta-band {
    padding: 24px 22px;
  }

  .cta-band-actions {
    width: 100%;
  }

  .topbar-phone {
    padding: 12px 14px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    max-width: 12ch;
  }
}
