:root {
  --cream: #F7F3EC;
  --gold: #C9A44A;
  --gold-light: #E8C96A;
  --mauve: #5C4E6B;
  --mauve-light: #7A6A8A;
  --dark: #3A3A3A;
  --white: #FFFFFF;
  --shadow: rgba(92, 78, 107, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
}

/* ── Ornamental divider ── */
.divider {
  text-align: center;
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.4em;
  margin: 2.5rem auto;
  user-select: none;
}

/* ── Top gold bar ── */
.top-bar {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* ── NAV ── */
nav {
  background-color: var(--cream);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(201, 164, 74, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav a {
  color: var(--mauve);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--gold);
}

/* ── HERO ── */
#hero {
  text-align: center;
  padding: 4.5rem 1.5rem 3rem;
}

.hero-logo {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--mauve);
  line-height: 1.1;
  margin-bottom: 0.1rem;
  text-shadow: 0 2px 12px var(--shadow);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--mauve-light);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 2px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-whatsapp {
  background-color: var(--mauve);
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #4a3d5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--shadow);
}

.btn-sms {
  background-color: transparent;
  color: var(--mauve);
  border: 1.5px solid var(--gold);
}

.btn-sms:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--shadow);
}

/* ── SECTIONS ── */
section {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.8rem, 7vw, 4rem);
  color: var(--mauve);
  text-align: center;
  margin-bottom: 0.2rem;
}

.section-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

/* ── ABOUT ── */
#about p {
  text-align: center;
  font-size: 1.15rem;
  color: var(--dark);
  max-width: 620px;
  margin: 0 auto;
}

/* ── SERVICES ── */
#services {
  background-color: var(--white);
  max-width: 100%;
  padding: 3rem 1.5rem;
}

#services .inner {
  max-width: 860px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.service-card {
  text-align: center;
  padding: 1.8rem 1rem;
  border: 1px solid rgba(201, 164, 74, 0.35);
  border-radius: 2px;
  background: var(--cream);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 20px var(--shadow);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.7rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--mauve);
  letter-spacing: 0.05em;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
  margin-top: 0.5rem;
}

.step {
  padding: 1.5rem 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 1.3rem;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mauve);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.step p {
  font-size: 0.95rem;
  color: var(--mauve-light);
}

.dropoff-note {
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--mauve-light);
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  border-top: 1px solid rgba(201, 164, 74, 0.3);
}

/* ── PRICING ── */
#pricing {
  background-color: var(--white);
  max-width: 100%;
  padding: 3rem 1.5rem;
}

#pricing .inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

#pricing p {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

/* ── SERVICE AREA ── */
#area p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--dark);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.suburb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.suburb-tag {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--mauve);
  padding: 0.3rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  border-radius: 1px;
}

/* ── CONTACT ── */
#contact {
  background-color: var(--mauve);
  max-width: 100%;
  padding: 4rem 1.5rem;
  text-align: center;
}

#contact .inner {
  max-width: 860px;
  margin: 0 auto;
}

#contact .section-title {
  color: var(--white);
}

#contact .section-label {
  color: var(--gold-light);
}

#contact p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-contact-whatsapp {
  background-color: var(--gold);
  color: var(--white);
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
}

.btn-contact-whatsapp:hover {
  background-color: var(--gold-light);
  color: var(--mauve);
  transform: translateY(-1px);
}

.btn-contact-sms {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
}

.btn-contact-sms:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-1px);
}

.contact-email {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.contact-email:hover {
  color: var(--white);
}

.dropoff-reminder {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.95rem;
}

/* ── FOOTER ── */
footer {
  background-color: #3A3245;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav {
    gap: 1.2rem;
    font-size: 0.75rem;
  }

  .hero-logo {
    font-size: 4.5rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  nav {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
}
