:root {
  color-scheme: light;
  --ink: #1c1123;
  --muted: #664f72;
  --paper: #fff7fb;
  --panel: #ffffff;
  --line: #f0d8eb;
  --gold: #ff8c42;
  --green: #0f8b8d;
  --red: #ef476f;
  --pink: #ff4fa3;
  --orange: #ff9f1c;
  --shadow: 0 24px 60px rgba(97, 25, 84, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 143, 188, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 174, 66, 0.18), transparent 24%),
    linear-gradient(180deg, #fff6fb 0%, #fff8f1 100%);
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.5;
  position: relative;
}

body::before {
  background-image: url("assets/monstera-bg.png"), url("assets/palms-bg.png");
  background-position: left -340px top 110px, right -430px top 680px;
  background-repeat: no-repeat, no-repeat;
  background-size: clamp(820px, 78vw, 1180px), clamp(900px, 86vw, 1280px);
  content: "";
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 247, 251, 0.88);
  border-bottom: 1px solid rgba(240, 216, 235, 0.9);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 5vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  color: #241028;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-transform: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.brand-logo-art {
  display: block;
  height: 48px;
  object-fit: contain;
  width: 48px;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-title {
  color: #241028;
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: none;
}

.brand-wordmark {
  color: #241028;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-wordmark span {
  background: linear-gradient(90deg, var(--pink) 0%, #ff6d59 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-wordmark span {
  color: var(--pink);
}

.brand-sub {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.94rem;
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--pink);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a:active {
  transform: translateY(0) scale(0.98);
}

.hero {
  min-height: calc(100svh - 62px);
  overflow: hidden;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(24, 11, 30, 0.86), rgba(24, 11, 30, 0.56) 42%, rgba(24, 11, 30, 0.08)),
    linear-gradient(180deg, rgba(255, 96, 160, 0.08), rgba(255, 159, 28, 0.06));
  content: "";
  inset: 0;
  position: absolute;
}

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

.hero-copy {
  color: white;
  max-width: 640px;
  padding: clamp(76px, 15vh, 136px) clamp(20px, 6vw, 72px) 72px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #ffbf69;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 7.4rem);
  max-width: 9ch;
}

.hero-wordmark {
  color: white;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-wordmark span {
  background: linear-gradient(90deg, var(--pink) 0%, #ff6d59 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: none;
}

.hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 560px;
}

.hero-pills {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.hero-pills span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff7fb;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 9px 12px;
  white-space: nowrap;
  text-align: center;
  transition: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-action-pair {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.hero-action-pair::before {
  content: none;
}

.hero-action-pair .split-action {
  display: grid;
  min-width: max-content;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  box-shadow: 0 14px 28px rgba(239, 71, 111, 0.32);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
}

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

.button:active {
  transform: translateY(1px) scale(0.985);
}

.split-action {
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(239, 71, 111, 0.24);
  color: white;
  min-width: 0;
  padding-inline: 20px;
  position: relative;
  white-space: nowrap;
}

.split-action:hover {
  box-shadow: 0 18px 30px rgba(239, 71, 111, 0.28);
  filter: brightness(1.03);
}

.split-action:active {
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.16), 0 10px 20px rgba(239, 71, 111, 0.2);
  filter: brightness(0.99);
}

.split-action-left {
  background: linear-gradient(90deg, var(--pink) 0%, #ff6d59 100%);
}

.split-action-right {
  background: linear-gradient(90deg, #ff6d59 0%, var(--orange) 100%);
}

.section {
  padding: clamp(44px, 8vw, 88px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 108px;
}

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

.intro div,
.service-grid article,
.package-grid article,
form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.intro div {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.intro div::before {
  background: linear-gradient(135deg, rgba(255, 79, 163, 0.14), rgba(255, 159, 28, 0.12));
  content: "";
  inset: 0 auto auto 0;
  height: 6px;
  position: absolute;
  width: 100%;
}

.intro p,
.service-grid p,
.package-grid p,
.quote p,
.form-note {
  color: var(--muted);
  margin: 8px 0 0;
}

.stat {
  color: #a11f79;
  display: block;
  font-weight: 850;
}

.split,
.quote {
  display: grid;
  gap: clamp(26px, 5vw, 56px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
}

.quote-section {
  align-items: start;
}

.field-help {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.label-help-row {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  position: relative;
  width: fit-content;
}

.help-trigger {
  align-items: center;
  background: rgba(255, 79, 163, 0.1);
  border: 1px solid rgba(255, 79, 163, 0.2);
  border-radius: 999px;
  color: #8d175f;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  height: 21px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 21px;
}

.help-popover {
  background: #241028;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(36, 16, 40, 0.18);
  color: white;
  display: none;
  font-size: 0.78rem;
  font-weight: 750;
  left: 100%;
  line-height: 1.35;
  margin-left: 8px;
  max-width: min(240px, 70vw);
  padding: 9px 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
  z-index: 20;
}

.help-trigger.active + .help-popover {
  display: block;
}

.intake-shell {
  display: grid;
  gap: 16px;
}

.intake-toggle {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 8px;
}

.intake-tab {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: clamp(0.85rem, 3vw, 1rem);
  font-weight: 800;
  min-height: 48px;
  padding: 0 18px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.intake-tab.active {
  background: linear-gradient(135deg, rgba(255, 79, 163, 0.12), rgba(255, 159, 28, 0.16));
  box-shadow: 0 10px 22px rgba(97, 25, 84, 0.08);
  color: #8d175f;
}

.intake-tab:active {
  transform: scale(0.985);
}

.intake-form {
  display: none;
}

.intake-form.active {
  display: grid;
}

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

.service-grid,
.package-grid {
  display: grid;
  gap: 16px;
}

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

.service-grid article,
.package-grid article {
  padding: 24px;
}

.icon-service-grid article,
.icon-package-grid article {
  align-items: center;
  overflow: hidden;
  position: relative;
}

.icon-sprite {
  display: none;
}

.card-title-row {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.tile-icon {
  color: #8d175f;
  flex: 0 0 30px;
  fill: none;
  height: 30px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 30px;
}

.tile-icon.icon-pink {
  color: #d92f87;
}

.tile-icon.icon-orange {
  color: #e56f19;
}

.tile-icon.icon-gold {
  color: #d88900;
}

.tile-icon.icon-teal {
  color: #0f8b8d;
}

.tile-logo-icon {
  flex: 0 0 34px;
  height: 34px;
  object-fit: contain;
  transform: translateY(-5px);
  width: 34px;
}

.card-title-row h3,
.icon-service-grid article p,
.icon-package-grid article p {
  min-width: 0;
}

h3 {
  font-size: 1.12rem;
  margin: 0;
}

.packages {
  background:
    linear-gradient(180deg, rgba(255, 204, 227, 0.34), rgba(255, 241, 224, 0.7)),
    #fff7fb;
}

.section-heading {
  margin: 0 auto 28px;
  max-width: 820px;
  text-align: center;
}

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

.package-grid article > span {
  color: var(--red);
  display: block;
  font-weight: 800;
  margin-top: 18px;
}

form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  padding: clamp(18px, 4vw, 30px);
}

label {
  color: var(--ink);
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 7px;
}

input,
select,
textarea {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.select-shell {
  position: relative;
}

.select-shell.open {
  z-index: 50;
}

.select-native {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}

.select-trigger {
  align-items: center;
  appearance: none;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font: inherit;
  justify-content: space-between;
  min-height: 46px;
  padding: 10px 14px;
  text-align: left;
  width: 100%;
}

.select-trigger::after {
  color: var(--muted);
  content: "▾";
  flex: 0 0 auto;
  font-size: 0.9rem;
  margin-left: 12px;
}

.select-shell.open .select-trigger {
  outline: 3px solid rgba(255, 79, 163, 0.24);
  outline-offset: 2px;
}

.select-menu {
  background: #fffdfd;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(97, 25, 84, 0.18);
  display: none;
  left: 0;
  margin-top: 8px;
  max-height: 260px;
  overflow: auto;
  padding: 8px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 30;
}

.select-shell.open .select-menu {
  display: grid;
  gap: 4px;
}

.select-option {
  background: transparent;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  min-height: 40px;
  padding: 10px 12px;
  text-align: left;
}

.select-option:hover,
.select-option.active {
  background: rgba(255, 79, 163, 0.1);
  color: #8d175f;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.select-trigger:focus-visible {
  outline: 3px solid rgba(255, 79, 163, 0.24);
  outline-offset: 2px;
}

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

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer span {
  font-weight: 850;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(24, 11, 30, 0.88), rgba(24, 11, 30, 0.34));
  }

  .intro,
  .split,
  .quote,
  .service-grid,
  .package-grid,
  form {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 520px) {
  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .brand-sub {
    display: none;
  }

  .hero-copy {
    padding-top: 88px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-action-pair {
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }
}
