:root {
  --cream: #fdf8f4;
  --peach: #fbdcc9;
  --blush: #f8d2dc;
  --lilac: #e0d6f2;
  --sky: #cfe3f2;
  --mint: #cfe9dd;
  --butter: #fbe9c4;

  --ink: #4a3f45;
  --ink-soft: #7c6d74;
  --line: rgba(120, 100, 110, 0.14);

  --accent: #e8a0b4;
  --accent-deep: #d1798f;

  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 18px 40px -24px rgba(122, 94, 106, 0.45);
  --shadow-lift: 0 26px 55px -26px rgba(122, 94, 106, 0.55);
  --max: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Quicksand", "Avenir Next", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

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

/* Ambient pastel wash */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.blob--one   { width: 520px; height: 520px; background: var(--blush); top: -160px; left: -140px; }
.blob--two   { width: 460px; height: 460px; background: var(--sky);   top: 22%; right: -180px; }
.blob--three { width: 420px; height: 420px; background: var(--butter); bottom: -160px; left: 18%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 56px);
  background: rgba(253, 248, 244, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark svg { width: 34px; height: 34px; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
}
.brand__text em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-nav { display: flex; align-items: center; gap: 28px; font-weight: 600; font-size: 0.95rem; }
.site-nav a:not(.btn) { color: var(--ink-soft); transition: color 0.2s ease; }
.site-nav a:not(.btn):hover { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.97rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #f3bfa6 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--quiet { background: rgba(255, 255, 255, 0.75); border-color: var(--line); color: var(--ink); }
.btn--quiet:hover { transform: translateY(-2px); background: #fff; }
.btn--ghost { padding: 10px 22px; background: rgba(255, 255, 255, 0.8); border-color: var(--line); }
.btn--ghost:hover { background: #fff; }
.btn--block { width: 100%; padding: 16px; font-size: 1rem; }

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 11vw, 130px) clamp(20px, 5vw, 40px) clamp(50px, 8vw, 90px);
  text-align: center;
}

.eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 9px 20px 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge__dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232, 160, 180, 0.6);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 160, 180, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(232, 160, 180, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 160, 180, 0); }
}

.hero h1 { font-size: clamp(2.5rem, 6.4vw, 4.4rem); }

.highlight {
  background: linear-gradient(180deg, transparent 62%, var(--peach) 62%);
  padding: 0 6px;
}

.hero__lede {
  max-width: 620px;
  margin: 26px auto 0;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 7vw, 78px);
  margin: clamp(56px, 8vw, 86px) 0 0;
  padding: 34px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero__stats div { text-align: center; }
.hero__stats dt {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero__stats dd {
  margin: 8px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
}
.dd--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--accent-deep);
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 40px);
}
.section--tinted {
  max-width: none;
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--line);
}
.section--tinted > * { max-width: var(--max); margin-inline: auto; }

.section__head { text-align: center; margin-bottom: clamp(38px, 6vw, 60px); }
.section__head h2 { font-size: clamp(1.9rem, 3.9vw, 2.7rem); }
.section__lede {
  max-width: 540px;
  margin: 16px auto 0;
  color: var(--ink-soft);
}

/* Project cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}

.card {
  padding: 32px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card h3 { font-size: 1.4rem; margin: 14px 0 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

.card--peach  { background: var(--peach); }
.card--mint   { background: var(--mint); }
.card--lilac  { background: var(--lilac); }
.card--sky    { background: var(--sky); }
.card--butter { background: var(--butter); }
.card--blush  { background: var(--blush); }

.tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Credentials row */
.creds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 32px;
  list-style: none;
  margin: 34px 0 0;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.creds li { position: relative; padding-left: 20px; }
.creds li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--accent);
  font-size: 0.7rem;
}
.creds strong { color: var(--ink); }

/* Approach steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 20px;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.step h3 { font-size: 1.22rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

.step__num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: var(--sky);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
}
.step:nth-child(2) .step__num { background: var(--peach); }
.step:nth-child(3) .step__num { background: var(--mint); }
.step:nth-child(4) .step__num { background: var(--lilac); }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  padding: clamp(32px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact__intro h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin: 0 0 16px; }
.contact__intro p { color: var(--ink-soft); }

.contact__details {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
}
.contact__details li { display: flex; align-items: center; gap: 12px; }
.contact__details a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.contact__details a:hover { color: var(--accent-deep); border-bottom-color: var(--accent); }
.contact__details span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background: var(--sky);
  font-size: 0.9rem;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }

label { font-size: 0.88rem; font-weight: 600; }
.optional { color: var(--ink-soft); font-weight: 500; }

input, select, textarea {
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input::placeholder, textarea::placeholder { color: #b9aab1; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 160, 180, 0.18);
}
textarea { resize: vertical; }

.error { min-height: 1em; font-size: 0.8rem; color: var(--accent-deep); font-weight: 600; }
.field.invalid input,
.field.invalid textarea { border-color: var(--accent-deep); }

.form-note { margin-top: 12px; font-size: 0.8rem; color: var(--ink-soft); text-align: center; }

.form-success {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--mint);
  font-weight: 600;
  text-align: center;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px clamp(20px, 5vw, 40px) 44px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Entrance animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-nav a:not(.btn) { display: none; }
  .hero h1 br { display: none; }
  .contact__form { grid-template-columns: 1fr; }
  .hero__stats { gap: 26px; }
  .hero__stats div { flex: 1 1 40%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
