:root {
  --ink: #1a3430;
  --ink-soft: #355851;
  --card: #ffffff;
  --coral: #d3634f;
  --teal: #2f6457;
  --sand: #ece1c5;
  --line: #b9c3ad;
  --shadow: 0 18px 40px rgba(22, 48, 61, 0.12);
  --radius: 18px;
  --paper: #f4f6ec;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(248, 250, 244, 0.2), rgba(248, 250, 244, 0.2)),
    url("michelle-background.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 244, 0.28) 0%,
    rgba(248, 250, 244, 0.12) 38%,
    rgba(248, 250, 244, 0.22) 100%
  );
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(248, 250, 244, 0.84);
  border-bottom: 1px solid rgba(51, 95, 79, 0.2);
  z-index: 10;
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  font-weight: 700;
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--coral);
}

.hero {
  padding: 7rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1.25fr 0.85fr;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5.8vw, 4.3rem);
  line-height: 0.95;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero-text {
  margin: 1.1rem 0 1.8rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

.service-area {
  display: inline-block;
  margin: 0 0 1.3rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(53, 95, 79, 0.25);
  background: rgba(248, 250, 244, 0.8);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-card h2 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.hero-card p {
  margin: 0.35rem 0 0.8rem;
}

.hero-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.hero-card li + li {
  margin-top: 0.45rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.74rem 1.3rem;
  cursor: pointer;
  font-weight: 600;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 122, 89, 0.28);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

section {
  padding: 2.4rem 0;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.services {
  padding-top: 4rem;
}

.card-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: linear-gradient(180deg, #fff, #fff9ee);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem;
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
}

.about-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.about-copy p {
  color: var(--ink-soft);
}

.about-panel {
  background: #eaf7f6;
  border: 1px solid #cae9e8;
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}

.about-panel h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
}

.about-panel ul {
  margin: 0;
  padding-left: 1.15rem;
}

.about-panel li + li {
  margin-top: 0.45rem;
}

.shop-wrap {
  background: linear-gradient(132deg, rgba(255, 122, 89, 0.12), rgba(243, 226, 195, 0.64));
  border: 1px solid rgba(255, 122, 89, 0.35);
  border-radius: var(--radius);
  padding: 1.7rem;
}

.shop-wrap p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  align-items: start;
}

.contact-copy p {
  color: var(--ink-soft);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.33rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 0.9rem;
  border: 1px solid #cfc5ae;
  border-radius: 10px;
  padding: 0.67rem 0.72rem;
  font: inherit;
  color: var(--ink);
  background: #fffdf9;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2.3rem;
  padding: 1.2rem 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.7s ease-out forwards;
}

.reveal-1 { animation-delay: 90ms; }
.reveal-2 { animation-delay: 190ms; }
.reveal-3 { animation-delay: 290ms; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .card-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.8rem;
  }

  .hero-card {
    transform: none;
  }
}

@media (max-width: 700px) {
  body::before {
    background-image:
      linear-gradient(rgba(248, 250, 244, 0.26), rgba(248, 250, 244, 0.26)),
      url("michelle-background-mobile.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  body::after {
    background: linear-gradient(
      180deg,
      rgba(248, 250, 244, 0.42) 0%,
      rgba(248, 250, 244, 0.24) 38%,
      rgba(248, 250, 244, 0.34) 100%
    );
  }

  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.8rem 0;
  }

  .brand {
    font-size: 1.7rem;
  }

  .nav-links {
    gap: 0.75rem;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 4.2rem;
  }
}
