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

:root {
  --bg: #F8F5F0;
  --green-dark: #234237;
  --green-soft: #6F8C77;
  --sand: #D2C5B2;
  --ink: #22201D;
}

body {
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(248, 245, 240, 0.96);
  border-bottom: 1px solid rgba(210, 197, 178, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--green-dark);
}

nav a {
  margin-left: 1.4rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

nav a:hover {
  opacity: 1;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-frame {
  border-radius: 1.6rem;
  border: 1px solid var(--sand);
  padding: 2.1rem 2.2rem;
  position: relative;
  overflow: hidden;
  background: rgba(248, 245, 240, 0.9);
}

/* Eucalyptus-inspired line art using abstract curves */
.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(35, 66, 55, 0.35);
  width: 220px;
  height: 220px;
  pointer-events: none;
}

.hero-frame::before {
  top: -80px;
  left: -40px;
  border-style: dashed;
}

.hero-frame::after {
  bottom: -80px;
  right: -20px;
  border-style: solid;
  opacity: 0.45;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--green-soft);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.subtitle {
  font-size: 1.02rem;
  max-width: 30rem;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-align: center;
}

.btn.primary {
  background: var(--green-dark);
  color: #f9f7f2;
  box-shadow: 0 10px 22px rgba(26, 50, 41, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(26, 50, 41, 0.45);
}

.btn.ghost {
  border-color: var(--green-soft);
  background: rgba(248, 245, 240, 0.9);
  color: var(--green-dark);
}

.btn.ghost:hover {
  background: #ECE5D9;
}

.btn.full {
  width: 100%;
}

.reassurance {
  font-size: 0.9rem;
  color: var(--green-soft);
}

.hero-card {
  position: relative;
}

.hero-card-inner {
  border-radius: 1.5rem;
  border: 1px solid var(--sand);
  padding: 1.6rem 1.8rem;
  background: #FAF7F2;
  box-shadow: 0 14px 30px rgba(125, 104, 75, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-card-inner::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 1.2rem;
  border: 1px dashed rgba(111, 140, 119, 0.6);
  pointer-events: none;
}

.hero-card-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
  color: var(--green-dark);
}

.hero-card-inner ul {
  list-style: none;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.hero-card-inner li {
  margin-bottom: 0.35rem;
}

.small {
  font-size: 0.8rem;
  opacity: 0.85;
}

.section {
  padding: 3.4rem 0;
}

.section.soft {
  background: #F3EEE4;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.center {
  text-align: center;
}

.section-intro {
  max-width: 30rem;
  margin: 0.2rem auto 2rem;
  font-size: 0.98rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: start;
}

.about-highlight {
  border-radius: 1.3rem;
  border: 1px solid var(--sand);
  padding: 1.5rem 1.6rem;
  background: #FAF7F2;
  position: relative;
}

.about-highlight::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-soft), transparent);
  opacity: 0.6;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.quote-attr {
  font-size: 0.9rem;
  color: var(--green-soft);
}

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

.card {
  background: #FAF7F2;
  border-radius: 1.4rem;
  padding: 1.6rem 1.6rem 1.5rem;
  border: 1px solid var(--sand);
  box-shadow: 0 10px 24px rgba(112, 98, 78, 0.18);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111, 140, 119, 0.7), transparent);
  opacity: 0.75;
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-soft);
  margin-bottom: 0.5rem;
}

.tag.highlight {
  color: var(--green-dark);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}

.price {
  font-weight: 700;
  margin: 0.4rem 0 0.8rem;
  color: var(--green-dark);
}

.list {
  list-style: none;
  font-size: 0.95rem;
}

.list li {
  margin-bottom: 0.4rem;
}

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

.step {
  background: #FAF7F2;
  border-radius: 1.4rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--sand);
  box-shadow: 0 10px 24px rgba(112, 98, 78, 0.18);
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 1.1rem;
  border: 1px dashed rgba(111, 140, 119, 0.6);
  pointer-events: none;
}

.step-number {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 140, 119, 0.2);
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin-top: 0.8rem;
  font-size: 0.96rem;
}

.contact-list li {
  margin-bottom: 0.3rem;
}

.contact-form {
  background: #FAF7F2;
  border-radius: 1.4rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--sand);
  box-shadow: 0 14px 32px rgba(112, 98, 78, 0.22);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.6rem;
  color: var(--green-dark);
}

.contact-form label {
  display: block;
  font-size: 0.86rem;
  margin-top: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(111, 140, 119, 0.7);
  font-family: inherit;
  font-size: 0.9rem;
  background: #F8F5F0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 1px rgba(35, 66, 55, 0.25);
}

.form-note {
  font-size: 0.78rem;
  color: var(--green-soft);
  margin-top: 0.45rem;
}

.site-footer {
  border-top: 1px solid rgba(210, 197, 178, 0.8);
  padding: 1.5rem 0 1.8rem;
  background: #F8F5F0;
}

.footer-inner {
  text-align: center;
  font-size: 0.86rem;
  color: var(--green-soft);
}

.tiny {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: 2;
  }

  .split,
  .card-grid,
  .steps,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-grid {
    gap: 1.4rem;
  }

  nav {
    display: none;
  }

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

@media (max-width: 600px) {
  .hero-frame {
    padding: 1.7rem 1.6rem;
  }

  .hero-card-inner {
    padding: 1.4rem 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }
}


.about-photo {
  margin-bottom: 1rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--sand);
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
