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

:root {
  --cream: #f7f0e6;
  --cream-dark: #ede4d4;
  --green: #3d4a1e;
  --green-mid: #5a6630;
  --green-light: #8a9a50;
  --brown: #7a5c3a;
  --text: #2e2a22;
  --text-muted: #6b6255;
  --white: #fff;
  --radius: 20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
}

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

/* ── NAV ── */
nav {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green);
  letter-spacing: .02em;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }
.btn-nav {
  background: var(--green);
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  font-size: .85rem !important;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--green-mid) !important; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .4rem;
}
.hero-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--green-mid);
  margin-bottom: 1.1rem;
}
.hero-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .55rem 1.3rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
}
.hero-body {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.75;
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.hero-photo-circle {
  width: 100%;
  max-width: 340px;
  border-radius: 24px;
  overflow: hidden;
  border: 5px solid var(--cream-dark);
  box-shadow: 0 8px 32px rgba(61,74,30,.13);
  position: relative;
  z-index: 1;
}
.hero-photo-circle img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-photo-accent {
  display: none;
}

/* ── LEAF DIVIDER ── */
.leaf-divider {
  text-align: center;
  padding: 1rem 0 .5rem;
}

/* ── THREE COLUMNS ── */
.three-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
.col {
  padding: 1.8rem 1.4rem;
  text-align: center;
}
.col-center {
  border-left: 1px solid var(--cream-dark);
  border-right: 1px solid var(--cream-dark);
}
.col-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}
.col-icon svg { width: 48px; height: 48px; }
.col h3 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: .65rem;
  text-transform: uppercase;
}
.col p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── GOAL SECTION ── */
.goal-section {
  background: var(--cream-dark);
  padding: 3rem 0;
}
.goal-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: center;
}
.goal-left {
  display: flex;
  justify-content: center;
}
.goal-circle-green {
  background: var(--green);
  color: var(--white);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem;
}
.goal-circle-script {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: .3rem;
}
.goal-circle-sub {
  font-family: 'Dancing Script', cursive;
  font-size: .95rem;
  opacity: .85;
  line-height: 1.3;
}
.goal-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--green-mid);
  margin-bottom: .75rem;
}
.goal-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── PRICING ── */
.pricing {
  background: var(--cream-dark);
  padding: 3.5rem 0;
}
.pricing-inner {
  text-align: center;
}
.pricing-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--green);
  margin-bottom: .5rem;
}
.pricing-sub {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: .9rem;
}
.pricing-note {
  font-size: .9rem;
  font-weight: 600;
  color: var(--green);
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  display: inline-block;
  padding: .7rem 1.4rem;
  margin-bottom: 2.2rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid #ddd4c4;
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-card--featured {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.pricing-tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--green);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
  align-self: flex-start;
}
.pricing-tag--light {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.pricing-card--featured .pricing-title {
  color: var(--white);
}
.pricing-price {
  font-size: .9rem;
  color: var(--text-muted);
}
.pricing-card--featured .pricing-price {
  color: rgba(255,255,255,.8);
}
.pricing-price strong {
  font-size: 1.4rem;
  color: var(--green);
  font-family: 'Playfair Display', serif;
}
.pricing-card--featured .pricing-price strong {
  color: var(--white);
}
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.pricing-list li {
  font-size: .875rem;
  color: var(--text-muted);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}
.pricing-card--featured .pricing-list li {
  color: rgba(255,255,255,.85);
}
.pricing-card--featured .pricing-list li::before {
  color: rgba(255,255,255,.6);
}
.btn-primary--light {
  background: var(--white) !important;
  color: var(--green) !important;
}
.btn-primary--light:hover {
  background: var(--cream) !important;
}

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

/* ── BEFORE & AFTER GALLERY ── */
.gallery {
  padding: 3.5rem 0 3rem;
  background: var(--cream);
}
.gallery-inner { text-align: center; }
.gallery-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--green);
  margin-bottom: .5rem;
}
.gallery-sub {
  font-size: .9rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.ba-pair {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.ba-slot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ba-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-placeholder {
  width: 100%;
  height: 100%;
  background: #ede4d4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border: 2px dashed #c8bfad;
}
.ba-placeholder--after {
  background: #edf2e4;
  border-color: #b0c48a;
}
.ba-placeholder span {
  font-size: .75rem;
  color: #a09080;
  font-weight: 500;
}
.ba-placeholder--after span { color: #7a9a50; }
.ba-label {
  position: absolute;
  bottom: .6rem;
  left: .6rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 999px;
}
.ba-label--before {
  background: rgba(80,60,40,.6);
  color: #fff;
}
.ba-label--after {
  background: var(--green);
  color: #fff;
}
.ba-caption {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  margin-top: .2rem;
}
.ba-combined {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 24px rgba(61, 74, 30, .12);
}
.ba-combined img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-note {
  font-size: .85rem;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  display: inline-block;
  padding: .6rem 1.3rem;
  margin-top: .5rem;
}

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

/* ── SERVICE AREA ── */
.area {
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
}
.area-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--green);
  margin-bottom: .5rem;
}
.area-sub {
  font-size: .9rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}
.area-city {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  color: var(--green);
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  letter-spacing: .02em;
}
.area-note {
  font-size: .85rem;
  color: var(--text-muted);
}
.area-note a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: none;
}
.area-note a:hover { text-decoration: underline; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}
.testimonials-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--green);
  margin-bottom: 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.stars {
  color: #c8a84b;
  font-size: 1.1rem;
  letter-spacing: .05em;
}
.testimonial-quote {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: .03em;
}

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

/* ── FAQ ── */
.faq {
  background: var(--cream-dark);
  padding: 3.5rem 0;
}
.faq-inner {
  text-align: center;
}
.faq-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--green);
  margin-bottom: 2rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid #ddd4c4;
  border-radius: 14px;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--green-mid);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item[open] summary {
  color: var(--green);
  border-bottom: 1px solid var(--cream-dark);
}
.faq-item p {
  padding: 1rem 1.4rem 1.2rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── CONNECT ── */
.connect {
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
}
.connect-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--green);
  margin-bottom: .5rem;
}
.connect-body {
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.connect-form {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  text-align: left;
}
.connect-form input,
.connect-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.connect-form input:focus,
.connect-form textarea:focus {
  border-color: var(--green-mid);
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  align-self: flex-start;
}
.btn-primary:hover { background: var(--green-mid); }
.btn-primary:disabled { opacity: .7; cursor: default; }

.contact-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 1.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius);
  max-width: 520px;
  margin: 0 auto;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--green);
}
.contact-item svg { flex-shrink: 0; }
.contact-item div { text-align: left; }
.contact-item strong {
  display: block;
  font-size: .7rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--green);
}
.contact-item span {
  font-size: .88rem;
  color: var(--text-muted);
}

/* ── BOOKING ── */
.booking {
  background: var(--cream-dark);
  padding: 3.5rem 0 4rem;
}
.booking-inner { text-align: center; }
.booking-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--green);
  margin-bottom: .5rem;
}
.booking-sub {
  font-size: .9rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Step indicators */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}
.bstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.bstep-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.bstep-label {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .03em;
}
.bstep.active .bstep-num {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.bstep.active .bstep-label { color: var(--green); font-weight: 700; }
.bstep.done .bstep-num {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
}
.bstep-line {
  width: 60px;
  height: 2px;
  background: var(--cream-dark);
  border-top: 2px dashed #c8bfad;
  margin: 0 .5rem;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
}

/* Booking card */
.booking-card {
  background: var(--white);
  border-radius: 22px;
  border: 1.5px solid #ddd4c4;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  padding: 2.2rem 2rem;
  text-align: left;
  min-height: 320px;
}
.bpanel { display: none; }
.bpanel.active { display: block; }
.bpanel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.3rem;
}

/* Service options */
.service-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.service-opt { cursor: pointer; }
.service-opt input { display: none; }
.service-opt-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  transition: all .2s;
}
.service-opt-inner strong { font-size: .95rem; color: var(--text); }
.service-opt-inner span { font-size: .82rem; color: var(--text-muted); }
.service-opt.selected .service-opt-inner,
.service-opt:hover .service-opt-inner {
  border-color: var(--green);
  background: #f0f3e8;
}
.service-opt.selected .service-opt-inner strong { color: var(--green); }

/* Date & time */
.date-time-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.bfield { display: flex; flex-direction: column; gap: .4rem; }
.bfield label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
}
.optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-muted); }
.bfield input[type="date"],
.bfield input[type="text"],
.bfield input[type="tel"],
.bfield textarea {
  padding: .7rem .95rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.bfield input:focus, .bfield textarea:focus { border-color: var(--green-mid); background: var(--white); }

/* Time options */
.time-options {
  display: flex;
  gap: .65rem;
}
.time-opt { cursor: pointer; flex: 1; }
.time-opt input { display: none; }
.time-opt span {
  display: block;
  padding: .75rem .5rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  transition: all .2s;
  line-height: 1.5;
}
.time-opt small { font-weight: 400; color: var(--text-muted); }
.time-opt.selected span,
.time-opt:hover span {
  border-color: var(--green);
  background: #f0f3e8;
  color: var(--green);
}

/* Contact fields */
.bfields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Nav buttons */
.bpanel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.btn-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  padding: .5rem 0;
}
.btn-back:hover { color: var(--green); }

/* Confirmation */
.confirm-wrap {
  text-align: center;
  padding: 1.5rem 0;
}
.confirm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.confirm-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: .75rem;
}
.confirm-wrap p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: .5rem;
}
.confirm-note strong { color: var(--green); }

@media (max-width: 520px) {
  .booking-card { padding: 1.6rem 1.2rem; }
  .bstep-line { width: 30px; }
  .time-options { flex-direction: column; }
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: .8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--cream-dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }
  .hero-photo-wrap { order: -1; }
  .hero-body { max-width: 100%; }
  .hero-badge { display: block; }
  .three-cols { grid-template-columns: 1fr; }
  .col-center { border: none; border-top: 1px solid var(--cream-dark); border-bottom: 1px solid var(--cream-dark); }
  .goal-inner { grid-template-columns: 1fr; text-align: center; }
  .goal-left { justify-content: center; }
  .contact-bar { flex-direction: column; align-items: flex-start; padding-left: 2rem; }
}
