:root {
  --ink: #23342f;
  --muted: #66736e;
  --paper: #fbf8ef;
  --mist: #dfeee6;
  --mint: #a8d8c4;
  --teal: #1f7b6d;
  --teal-dark: #15574e;
  --sun: #f2c45f;
  --clay: #d98264;
  --white: #fffef9;
  --shadow: 0 22px 60px rgba(35, 52, 47, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 248, 239, 0.86);
  border-bottom: 1px solid rgba(35, 52, 47, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.trust-strip,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 42% 42%;
  background:
    radial-gradient(circle at 65% 30%, var(--white) 0 12%, transparent 13%),
    linear-gradient(145deg, var(--teal), var(--mint));
  box-shadow: inset -6px -8px 0 rgba(21, 87, 78, 0.16);
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--teal-dark);
}

.header-cta {
  border: 1px solid rgba(31, 123, 109, 0.3);
  border-radius: 999px;
  color: var(--teal-dark);
  font-weight: 800;
  padding: 10px 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 84px);
  min-height: 78vh;
  padding: clamp(58px, 8vw, 116px) clamp(18px, 5vw, 72px) clamp(36px, 6vw, 70px);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  max-width: 680px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  max-width: 780px;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 590px;
  margin: 26px 0 32px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-width: 154px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal-dark);
  box-shadow: 0 14px 28px rgba(21, 87, 78, 0.22);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: inset 0 0 0 1px rgba(35, 52, 47, 0.14);
}

.hero-visual {
  align-self: center;
  min-height: 520px;
  position: relative;
}

.hero-visual::before {
  background:
    linear-gradient(135deg, rgba(168, 216, 196, 0.55), rgba(242, 196, 95, 0.42)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 254, 249, 0.5) 19px 20px);
  border-radius: 46% 54% 50% 50%;
  content: "";
  inset: 10% -8% 0 3%;
  position: absolute;
  transform: rotate(-7deg);
}

.window-card {
  background: linear-gradient(180deg, var(--white), #f1fbf4);
  border: 1px solid rgba(35, 52, 47, 0.1);
  border-radius: 34px;
  box-shadow: var(--shadow);
  height: 470px;
  margin: 22px auto 0;
  max-width: 430px;
  overflow: hidden;
  position: relative;
}

.shine {
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(31, 123, 109, 0.15) 17% 18%, transparent 19%),
    linear-gradient(180deg, #d7f1e8 0 38%, #fff4d5 39% 100%);
  height: 58%;
}

.counter-scene {
  background: #fbf8ef;
  border-top: 12px solid #e4d7bf;
  bottom: 0;
  height: 44%;
  left: 0;
  position: absolute;
  right: 0;
}

.spray {
  background: linear-gradient(145deg, var(--teal), #7fc4aa);
  border-radius: 18px 18px 12px 12px;
  bottom: 42px;
  height: 112px;
  left: 72px;
  position: absolute;
  transform: rotate(-8deg);
  width: 58px;
}

.spray::before {
  background: var(--sun);
  border-radius: 10px 10px 4px 4px;
  content: "";
  height: 28px;
  left: 10px;
  position: absolute;
  top: -24px;
  width: 38px;
}

.spray::after {
  background: var(--ink);
  border-radius: 8px;
  content: "";
  height: 10px;
  left: 32px;
  position: absolute;
  top: -26px;
  width: 58px;
}

.cloth {
  background: linear-gradient(135deg, var(--clay), #f0a98a);
  border-radius: 42% 58% 48% 52%;
  bottom: 38px;
  height: 76px;
  position: absolute;
  right: 78px;
  transform: rotate(11deg);
  width: 138px;
}

.sparkle {
  background: var(--sun);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  position: absolute;
}

.sparkle-one {
  height: 28px;
  right: 122px;
  top: -128px;
  width: 28px;
}

.sparkle-two {
  height: 18px;
  left: 142px;
  top: -88px;
  width: 18px;
}

.sparkle-three {
  height: 22px;
  right: 62px;
  top: -38px;
  width: 22px;
}

.note-card {
  background: var(--ink);
  border-radius: 18px;
  bottom: 26px;
  color: var(--white);
  display: grid;
  gap: 2px;
  left: 32px;
  padding: 14px 18px;
  position: absolute;
  width: min(260px, calc(100% - 64px));
}

.note-card span {
  color: rgba(255, 254, 249, 0.72);
  font-size: 0.92rem;
}

.trust-strip,
.section,
.contact-band,
.site-footer {
  margin-inline: clamp(18px, 5vw, 72px);
}

.trust-strip {
  background: var(--white);
  border: 1px solid rgba(35, 52, 47, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(35, 52, 47, 0.08);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.trust-strip div {
  display: grid;
  gap: 2px;
  padding: 22px;
}

.trust-strip strong {
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(76px, 10vw, 126px) 0 0;
}

.section-heading {
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr 0.85fr;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(35, 52, 47, 0.08);
  border-radius: 8px;
  min-height: 220px;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
}

.service-card.featured {
  background: var(--teal-dark);
  color: var(--white);
  grid-row: span 2;
  min-height: 458px;
}

.service-card.compact {
  background: var(--mist);
}

.service-card p {
  color: var(--muted);
  font-size: 1.03rem;
  margin: 18px 0 0;
  max-width: 460px;
}

.service-card.featured p {
  color: rgba(255, 254, 249, 0.76);
}

.service-number {
  color: var(--clay);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 46px;
}

.process {
  display: grid;
  gap: 40px;
  grid-template-columns: 0.75fr 1fr;
}

.process-list {
  counter-reset: steps;
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.process-list li {
  background: rgba(255, 254, 249, 0.72);
  border-left: 5px solid var(--sun);
  border-radius: 8px;
  color: var(--muted);
  padding: 22px 24px;
}

.process-list span {
  color: var(--ink);
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 6px;
}

.contact-band {
  align-items: start;
  background: linear-gradient(135deg, var(--mint), #f5e1a5);
  border-radius: 30px;
  display: grid;
  gap: 32px;
  grid-template-columns: 0.85fr 1fr;
  margin-top: clamp(76px, 10vw, 126px);
  padding: clamp(26px, 5vw, 56px);
}

.contact-band p:not(.eyebrow) {
  color: var(--teal-dark);
  font-size: 1.12rem;
  max-width: 470px;
}

.contact-form {
  background: rgba(255, 254, 249, 0.78);
  border: 1px solid rgba(35, 52, 47, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.hidden-field {
  display: none;
}

label {
  color: var(--teal-dark);
  display: grid;
  font-weight: 900;
  gap: 7px;
}

input,
select {
  background: var(--white);
  border: 1px solid rgba(35, 52, 47, 0.16);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  min-width: 0;
  padding: 13px 16px;
}

input:focus,
select:focus,
.button:focus,
a:focus {
  outline: 3px solid rgba(217, 130, 100, 0.45);
  outline-offset: 3px;
}

.site-footer {
  color: var(--muted);
  justify-content: space-between;
  padding: 34px 0;
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .process,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

  .window-card {
    height: 390px;
  }

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

  .service-card.featured {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
    position: static;
  }

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

  h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 340px;
  }

  .window-card {
    border-radius: 24px;
    height: 320px;
  }
}
