:root {
  --green: #00a068;
  --deep-blue: #006b7a;
  --sky: #79d0f2;
  --sprout: #bce34a;
  --light: #fff4bf;
  --paper: #faf8f1;
  --text: #263238;
  --muted: #5f6f73;
  --line: #dce9e6;
  --white: #ffffff;
  --shadow: 0 12px 24px rgba(38, 50, 56, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Aptos, "Segoe UI", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(130px, 200px) 1fr auto;
  align-items: center;
  min-height: 68px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(220, 233, 230, 0.75);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
  color: #4d4c59;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a {
  padding: 22px 0;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #7d91ff;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  width: 27px;
  height: 27px;
  color: #111111;
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 570px;
  overflow: hidden;
  background: var(--sky);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(121, 208, 242, 0.96) 0%, rgba(121, 208, 242, 0.84) 42%, rgba(121, 208, 242, 0.05) 78%),
    radial-gradient(circle at 24% 58%, rgba(255, 255, 255, 0.2), transparent 35%);
}

.hero-copy {
  width: min(560px, 84vw);
  margin-left: clamp(42px, 9.2vw, 118px);
  padding-top: 156px;
  color: var(--white);
}

.hero h1,
.hero p,
h2,
.quote-wrap strong {
  font-family: var(--serif);
}

.hero h1 {
  max-width: 525px;
  margin: 0;
  font-size: clamp(1.75rem, 2vw, 2.12rem);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0;
}

.hero p {
  margin: 50px 0 24px;
  font-size: clamp(1.55rem, 1.9vw, 2rem);
  line-height: 1.18;
  font-weight: 700;
}

.hero-flowers {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: min(64vw, 760px);
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font: 800 13px/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(188, 227, 74, 0.75);
  outline-offset: 3px;
}

.button-dark {
  color: var(--white);
  background: #007d86;
  box-shadow: 0 2px 0 rgba(0, 107, 122, 0.25);
}

.button-light {
  color: var(--deep-blue);
  background: var(--sprout);
  box-shadow: 0 2px 0 rgba(0, 107, 122, 0.14);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.logo-panel {
  display: grid;
  place-items: center;
  min-height: 520px;
  background: #e4f998;
}

.logo-panel img {
  width: min(78%, 520px);
}

.text-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(54px, 9vw, 116px) clamp(42px, 8vw, 86px);
  background: var(--white);
}

h2 {
  margin: 0 0 24px;
  color: var(--deep-blue);
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.text-panel p {
  max-width: 445px;
  margin: 0 0 34px;
  color: #45455f;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}

.founder {
  min-height: 585px;
}

.founder-copy {
  padding-left: clamp(54px, 11vw, 142px);
}

.founder-photo {
  min-height: 585px;
  margin: 0;
  overflow: hidden;
  background: #eef7f4;
}

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

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: clamp(70px, 9vw, 108px) clamp(28px, 11vw, 140px);
  background: #fff4ba;
}

.principles article {
  min-height: 220px;
  padding: 34px 20px 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.principles h3,
.service-card h3 {
  margin: 0 0 8px;
  color: var(--deep-blue);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.22;
  text-transform: uppercase;
}

.principles p {
  margin: 0;
  color: #236579;
  font-weight: 600;
  line-height: 1.7;
}

.quote-band {
  padding: clamp(86px, 10vw, 130px) 24px;
  background: var(--white);
}

.quote-wrap {
  position: relative;
  width: min(720px, 88vw);
  margin: 0 auto;
  padding: 20px 0 14px;
  text-align: center;
}

.quote-wrap::before {
  content: "";
  position: absolute;
  inset: -20px -92px -6px;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(255, 244, 191, 0.95), rgba(255, 244, 191, 0) 72%);
}

.quote-wrap p,
.quote-wrap strong,
.quote-mark {
  position: relative;
  z-index: 1;
}

.quote-wrap p {
  margin: 0 auto 34px;
  color: #0c8894;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.7;
}

.quote-wrap strong {
  display: block;
  color: var(--deep-blue);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.quote-mark {
  position: absolute;
  color: var(--deep-blue);
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
}

.quote-mark.top {
  top: -30px;
  left: -60px;
}

.quote-mark.bottom {
  right: -55px;
  bottom: 12px;
}

.services {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 96px) clamp(28px, 12vw, 150px) 70px;
  color: var(--white);
  background: #047281;
}

.services::before,
.services::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 140px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 51% 49% 47% 53%;
  transform: rotate(-22deg);
}

.services::before {
  left: -50px;
  bottom: 58px;
  box-shadow:
    26px 24px 0 -5px rgba(255, 255, 255, 0.18),
    60px 8px 0 -16px rgba(255, 255, 255, 0.18);
}

.services::after {
  top: 120px;
  right: -36px;
  box-shadow:
    -26px 24px 0 -5px rgba(255, 255, 255, 0.18),
    -60px 8px 0 -16px rgba(255, 255, 255, 0.18);
}

.services h2 {
  margin-bottom: 54px;
  color: var(--white);
  text-align: center;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 110px);
}

.service-card {
  position: relative;
  min-height: 320px;
  padding: 46px 42px 40px 82px;
  color: #45455f;
  background: var(--white);
  border-radius: 8px;
}

.service-card h3 {
  color: #45455f;
  font-size: 1.45rem;
  text-transform: none;
}

.service-card ul {
  margin: 22px 0 0;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.service-card li + li {
  margin-top: 8px;
}

.service-icon {
  position: absolute;
  top: 30px;
  left: -24px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--deep-blue);
  background: var(--white);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--deep-blue);
}

.service-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-cta {
  position: relative;
  z-index: 1;
  margin: 52px auto 0;
  display: flex;
  width: max-content;
  min-width: 134px;
}

.contact {
  padding: clamp(72px, 8vw, 100px) 24px 78px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.contact-form {
  width: min(405px, 92vw);
  margin: 0 auto;
}

.contact-form h2 {
  margin-bottom: 26px;
  font-size: clamp(1.8rem, 2.4vw, 2.25rem);
}

.contact-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  color: #19898c;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #8d8d8d;
  border-radius: 0;
  padding: 11px 14px;
  color: var(--text);
  background: var(--white);
  font: 500 17px/1.35 var(--sans);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-width: 223px;
  margin-top: 12px;
  border-radius: 0;
  font-family: var(--serif);
  font-size: 16px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: #19898c;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  padding: 64px clamp(36px, 9vw, 112px);
  color: var(--deep-blue);
  background: #d9e8fb;
}

.site-footer > div {
  display: flex;
  align-items: center;
}

.site-footer img {
  width: min(430px, 48vw);
}

.site-footer span {
  max-width: 220px;
  padding-left: 14px;
  border-left: 2px solid currentColor;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
}

.site-footer address {
  margin: 0;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
}

.site-footer p {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  margin: 0;
  line-height: 1.4;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 64px;
    padding: 0 22px;
  }

  .brand img {
    width: 126px;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--deep-blue);
  }

  .site-nav,
  .social-links {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    justify-items: start;
    padding: 14px 24px 22px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 18px rgba(38, 50, 56, 0.08);
  }

  .site-header.is-open .site-nav a {
    width: 100%;
    padding: 10px 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(121, 208, 242, 0.94), rgba(121, 208, 242, 0.7)),
      radial-gradient(circle at 24% 58%, rgba(255, 255, 255, 0.2), transparent 35%);
  }

  .hero-copy {
    margin-left: 28px;
    padding-top: 92px;
  }

  .hero p {
    margin-top: 36px;
  }

  .hero-flowers {
    width: 88vw;
    opacity: 0.72;
    object-position: 68% top;
  }

  .split,
  .principles,
  .service-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .logo-panel,
  .founder-photo {
    min-height: 360px;
  }

  .intro .text-panel {
    order: 2;
  }

  .founder-copy {
    padding-left: clamp(32px, 8vw, 70px);
  }

  .principles {
    padding-inline: 28px;
  }

  .quote-mark.top {
    left: -24px;
  }

  .quote-mark.bottom {
    right: -24px;
  }

  .services {
    padding-inline: 34px;
  }

  .service-card {
    padding: 82px 28px 34px;
  }

  .service-icon {
    top: -30px;
    left: 28px;
  }

  .site-footer p {
    grid-template-columns: 96px 1fr;
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    width: calc(100vw - 48px);
  }

  .hero p {
    max-width: 300px;
    font-size: 1.55rem;
  }

  .text-panel {
    padding: 48px 28px;
  }

  .principles article {
    min-height: auto;
  }

  .site-footer p {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 10px;
  }
}
