:root {
  color-scheme: light;
  --ink: #24313c;
  --muted: #66727d;
  --paper: #fffdf8;
  --soft: #f3eee5;
  --line: #ddd5c8;
  --teal: #246a66;
  --teal-dark: #174e4a;
  --coral: #d36b4c;
  --plum: #5d405f;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(36, 49, 60, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(221, 213, 200, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--teal-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(74vh, 650px);
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 54% 50%;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 31, 38, 0.72) 0%, rgba(20, 31, 38, 0.48) 42%, rgba(20, 31, 38, 0.1) 100%),
    linear-gradient(0deg, rgba(36, 49, 60, 0.16), rgba(36, 49, 60, 0.16));
}

.hero-content {
  align-self: center;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 76px);
  padding: 78px 0 64px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b59f;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: 6.4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.18rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 76px);
  padding: clamp(44px, 7vw, 76px) 0;
  align-items: start;
}

.intro-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.services {
  padding: clamp(54px, 8vw, 92px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(28px, 5vw, 44px);
}

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

.service-item {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(36, 49, 60, 0.06);
}

.service-item h3 {
  color: var(--teal-dark);
}

.service-item p {
  margin: 14px 0 0;
  color: var(--muted);
}

.pricing-band {
  background: #203742;
  color: var(--white);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 7vw, 82px);
  padding: clamp(54px, 8vw, 92px) 0;
  align-items: center;
}

.pricing-layout p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.price-list {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.price-list dt {
  color: rgba(255, 255, 255, 0.78);
}

.price-list dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 78px);
  padding: clamp(54px, 8vw, 92px) 0;
  align-items: start;
}

.contact-copy p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-note {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.contact-note strong {
  color: var(--plum);
}

.google-form-panel {
  display: grid;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.google-form-embed {
  width: 100%;
  min-height: 760px;
  border: 0;
}

.google-form-placeholder {
  display: grid;
  min-height: 440px;
  place-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px dashed #bfb4a6;
  border-radius: 8px;
  background: #fffefa;
  text-align: center;
}

.google-form-placeholder h3 {
  color: var(--teal-dark);
}

.google-form-placeholder p:not(.section-kicker) {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 56px);
  background: var(--soft);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 700;
}

.thanks-page {
  min-height: 100vh;
  background: var(--soft);
}

.thanks-layout {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 18px;
}

.thanks-panel {
  width: min(720px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  color: var(--ink);
}

.thanks-panel p:not(.section-kicker) {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 690px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(20, 31, 38, 0.78) 0%, rgba(20, 31, 38, 0.5) 72%, rgba(20, 31, 38, 0.16) 100%),
      linear-gradient(0deg, rgba(36, 49, 60, 0.18), rgba(36, 49, 60, 0.18));
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .intro-grid,
  .pricing-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .brand span:last-child {
    font-size: 0.95rem;
  }

  nav {
    gap: 10px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 660px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.1rem;
  }

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

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

  .service-item {
    min-height: 0;
  }

  .price-list div,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-list dd {
    text-align: left;
  }
}
