/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #FAF7F0;
  --bg2:       #F2EBE0;
  --text:      #1C1914;
  --muted:     #7A7060;
  --border:    #E0D8CC;
  --coral:     #5BBF82;
  --sage:      #5FAD82;
  --lavender:  #9B87CC;
  --sky:       #5AAAC7;
  --peach:     #F0A96B;
  --max:       1160px;
  --font:      'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-cta-alt {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lavender);
  border: 1.5px solid var(--lavender);
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s;
}
.nav-cta-alt:hover { background: var(--lavender); color: #fff; }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--coral);
  border: 1.5px solid var(--coral);
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--coral); color: #fff; }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  color: var(--text);
}

h1 em {
  font-style: normal;
  color: var(--coral);
}

.hero-sub {
  max-width: 500px;
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* ── Decorative background text ── */
.hero-deco {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.hero-deco span {
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px #D8CEBC;
  line-height: 0.92;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 0.4rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── Section shared ── */
section { padding: 6rem 2rem; }

.section-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--text);
}

/* ── Services ── */
.what-i-do {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.service-card {
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }

/* Each card gets its own pastel tint */
.service-card:nth-child(1) { background: #E2F6EC; }
.service-card:nth-child(2) { background: #E3F4EC; }
.service-card:nth-child(3) { background: #ECE8F8; }
.service-card:nth-child(4) { background: #FDEFD9; }

.service-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.service-card:nth-child(1) .service-num { color: var(--coral); }
.service-card:nth-child(2) .service-num { color: var(--sage); }
.service-card:nth-child(3) .service-num { color: var(--lavender); }
.service-card:nth-child(4) .service-num { color: var(--peach); }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── About ── */
.about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}
.about-text p + p { margin-top: 1rem; }

.monogram {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 50%, var(--lavender) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  flex-shrink: 0;
}

/* ── Contact ── */
.contact-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-sub {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input, textarea {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
input::placeholder, textarea::placeholder { color: #B0A898; }
input:focus, textarea:focus { border-color: var(--coral); }

.contact-direct {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}
.contact-direct a { color: var(--coral); text-decoration: underline; }

/* ── Footer ── */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .hero-deco { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .monogram { width: 110px; height: 110px; font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
