@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&display=swap');

:root {
  --pink:        #d0768a;
  --pink-dark:   #b05a6e;
  --pink-light:  #fdf0f3;
  --pink-mid:    #f0c8d2;

  --sage:        #7a9e82;
  --sage-dark:   #567a5e;
  --sage-light:  #eef5ee;
  --sage-mid:    #b8d4ba;

  --text:        #2d2d2d;
  --text-muted:  #777777;
  --bg:          #fafafa;
  --white:       #ffffff;
  --border:      #e4e4e4;
  --shadow:      0 2px 16px rgba(0,0,0,0.06);
  --shadow-h:    0 8px 32px rgba(0,0,0,0.10);
  --nav-h:       68px;
  --max:         1140px;
  --pad:         clamp(16px, 5vw, 60px);
  --r:           14px;
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --body:        'Inter', sans-serif;
  --serif:       'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--body); background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ── SCROLLBAR — sage to pink gradient ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--sage-mid), var(--pink-mid));
  border-radius: 4px;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,250,250,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 var(--pad);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav-inner {
  width: 100%; max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--body); font-size: .95rem; font-weight: 500; color: var(--text);
}
.nav-logo .heart { color: var(--pink); font-size: 1rem; }
.nav-logo .cursive { font-family: var(--serif); font-style: italic; color: var(--sage-dark); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .8rem; font-weight: 500; letter-spacing: .04em;
  color: var(--text-muted); transition: color .2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a.active { color: var(--sage-dark); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 24px; cursor: pointer; padding: 4px 0;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--text); transition: .3s; border-radius: 2px; }

/* ── MOBILE NAV — pink to sage gradient bg ── */
#mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: linear-gradient(160deg, var(--pink-light) 0%, var(--sage-light) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  pointer-events: none;
}
#mobile-nav.open { transform: translateX(0); pointer-events: all; }
#mobile-nav a {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--text); transition: color .2s;
}
#mobile-nav a:nth-child(odd):hover  { color: var(--sage-dark); }
#mobile-nav a:nth-child(even):hover { color: var(--pink-dark); }

/* ── SECTION LABEL ── */
.sec-label {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: .7rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 48px;
}
/* left spark = sage, right spark = pink */
.sec-label .spark:first-child { color: var(--sage); font-size: .9rem; }
.sec-label .spark:last-child  { color: var(--pink); font-size: .9rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-size: .85rem; font-weight: 500; letter-spacing: .02em;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
}
/* Primary — sage/pink gradient */
.btn-pink {
  background: linear-gradient(135deg, var(--sage) 0%, var(--pink) 100%);
  color: var(--white);
}
.btn-pink:hover {
  opacity: .88; transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
/* Outline — sage left border, pink right border illusion via gradient */
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 1.5px var(--sage-mid);
}
.btn-outline:hover {
  box-shadow: 0 0 0 1.5px var(--pink-mid);
  color: var(--pink-dark);
  background: var(--pink-light);
}

/* ── FOOTER — diagonal split ── */
footer {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--white) 50%, var(--pink-light) 100%);
  border-top: 1px solid var(--border);
  padding: 48px var(--pad) 28px;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px;
  margin-bottom: 24px;
}
.footer-logo {
  display: flex; align-items: center; gap: 6px;
  font-size: .9rem; font-weight: 500;
}
.footer-logo .heart { color: var(--pink); }
.footer-logo .cursive { font-family: var(--serif); font-style: italic; color: var(--sage-dark); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: .8rem; color: var(--text-muted); transition: color .2s; }
.footer-links a:nth-child(odd):hover  { color: var(--sage-dark); }
.footer-links a:nth-child(even):hover { color: var(--pink-dark); }
.footer-icons { display: flex; gap: 14px; }
.footer-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--text-muted);
  transition: border-color .2s, color .2s;
}
.footer-icon:first-child:hover { border-color: var(--pink); color: var(--pink-dark); }
.footer-icon:last-child:hover  { border-color: var(--sage); color: var(--sage-dark); }
.footer-copy {
  max-width: var(--max); margin: 0 auto;
  text-align: center; font-size: .75rem; color: var(--text-muted);
  padding-top: 20px; border-top: 1px solid var(--border);
}

/* ── PAGE WRAPPER ── */
.page { padding-top: var(--nav-h); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ── HERO / ABOUT SNIPPET ── */
#hero {
  padding: 80px var(--pad);
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  align-items: center; gap: 60px;
}
.hero-img-wrap {
  aspect-ratio: 4/5; border-radius: var(--r);
  /* left half sage, right half pink */
  background: linear-gradient(135deg, var(--sage-mid) 0%, var(--pink-mid) 100%);
  overflow: hidden; position: relative;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: .5;
}
.hero-eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--sage-dark);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 20px;
}
.hero-title .name { color: var(--pink); font-style: italic; }
.hero-desc { font-size: .92rem; color: var(--text-muted); margin-bottom: 16px; max-width: 46ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

/* ── PORTFOLIO — sage-tinted background ── */
#portfolio {
  padding: 80px var(--pad);
  background: var(--sage-light);
  margin: 0 0 0 0;
}
.portfolio-wrap { max-width: var(--max); margin: 0 auto; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.p-item {
  position: relative; overflow: hidden;
  border-radius: var(--r); aspect-ratio: 3/4;
  cursor: pointer;
}
/* odd items = sage, even items = pink */
.p-item:nth-child(odd)  { background: var(--sage-mid); }
.p-item:nth-child(even) { background: var(--pink-mid); }
.p-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.p-item:hover img { transform: scale(1.04); }
.p-item .p-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
  color: #fff; font-size: .8rem; font-weight: 500;
  transform: translateY(100%); transition: transform .3s var(--ease);
}
.p-item:hover .p-label { transform: translateY(0); }
.p-item-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; opacity: .5;
}
.p-item:nth-child(odd)  .p-item-placeholder { color: var(--sage-dark); }
.p-item:nth-child(even) .p-item-placeholder { color: var(--pink-dark); }

/* ── TESTIMONIALS — pink-tinted background ── */
#testimonials {
  padding: 80px var(--pad);
  background: var(--pink-light);
}
.testimonials-wrap { max-width: var(--max); margin: 0 auto; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.t-card {
  background: var(--white); border-radius: var(--r); padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
/* alternating card left border accents */
.t-card:nth-child(1) { border: 1.5px solid var(--sage-mid); border-left: 4px solid var(--sage); }
.t-card:nth-child(2) { border: 1.5px solid var(--pink-mid); border-left: 4px solid var(--pink); }
.t-card:nth-child(3) { border: 1.5px solid var(--sage-mid); border-left: 4px solid var(--sage); }
.t-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }
.t-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.t-text { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 500; color: var(--text); }
.t-card:nth-child(odd)  .t-author .heart { color: var(--sage-dark); }
.t-card:nth-child(even) .t-author .heart { color: var(--pink); }

/* ── CTA — split diagonal ── */
#cta { padding: 80px var(--pad); }
.cta-box {
  max-width: var(--max); margin: 0 auto;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--white) 50%, var(--pink-light) 100%);
  border: 1.5px solid var(--border);
  border-radius: 24px; padding: 64px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box .cta-heart {
  position: absolute; top: 24px; right: 32px;
  color: var(--pink-mid); font-size: 2.5rem; line-height: 1;
}
.cta-box .cta-leaf {
  position: absolute; top: 24px; left: 32px;
  color: var(--sage-mid); font-size: 2rem; line-height: 1;
}
.cta-box h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.25; margin-bottom: 14px;
}
.cta-box h2 .accent-sage { font-style: italic; color: var(--sage-dark); }
.cta-box h2 .accent-pink { font-style: italic; color: var(--pink); }
.cta-box p { font-size: .9rem; color: var(--text-muted); margin-bottom: 32px; max-width: 40ch; margin-left: auto; margin-right: auto; }

/* ── ABOUT PAGE ── */
#about-hero {
  padding: 72px var(--pad) 48px;
  max-width: var(--max); margin: 0 auto;
}
.about-hero-inner {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 56px; align-items: center;
}
.about-photo-wrap {
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--sage-mid) 0%, var(--pink-mid) 100%);
  box-shadow: 0 12px 48px rgba(0,0,0,.12);
  border: 3px solid var(--white);
  outline: 1.5px solid var(--sage-mid);
}
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-hero-text { text-align: left; }
#about-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin-bottom: 16px; }
#about-hero p { font-size: .95rem; color: var(--text-muted); max-width: 52ch; }

#specialties { padding: 48px var(--pad) 80px; max-width: var(--max); margin: 0 auto; }
.specialties-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.spec-card {
  background: var(--white); border-radius: var(--r); padding: 32px 24px; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
/* alternating sage and pink */
.spec-card:nth-child(odd)  { border: 1.5px solid var(--sage-mid); }
.spec-card:nth-child(even) { border: 1.5px solid var(--pink-mid); }
.spec-card:nth-child(odd):hover  { box-shadow: 0 8px 32px rgba(122,158,130,.15); transform: translateY(-3px); border-color: var(--sage); }
.spec-card:nth-child(even):hover { box-shadow: 0 8px 32px rgba(208,118,138,.15); transform: translateY(-3px); border-color: var(--pink); }
.spec-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 16px;
}
.spec-card:nth-child(odd)  .spec-icon { background: var(--sage-light);  color: var(--sage-dark); }
.spec-card:nth-child(even) .spec-icon { background: var(--pink-light); color: var(--pink-dark); }
.spec-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.spec-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* ── GALLERY PAGE ── */
#gallery-section { padding: 72px var(--pad) 80px; max-width: var(--max); margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.g-item {
  position: relative; overflow: hidden; border-radius: var(--r);
  aspect-ratio: 3/4; cursor: pointer;
}
.g-item:nth-child(odd)  { background: var(--sage-mid); }
.g-item:nth-child(even) { background: var(--pink-mid); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); display: block; }
.g-item:hover img { transform: scale(1.04); }
.g-item .g-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
  color: #fff; font-size: .8rem; font-weight: 500;
  transform: translateY(100%); transition: transform .3s var(--ease);
}
.g-item:hover .g-label { transform: translateY(0); }
.g-item-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: .5; }
.g-item:nth-child(odd)  .g-item-ph { color: var(--sage-dark); }
.g-item:nth-child(even) .g-item-ph { color: var(--pink-dark); }

/* ── BOOKING PAGE ── */
#booking-section { padding: 72px var(--pad) 80px; max-width: 760px; margin: 0 auto; }
.booking-info {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--sage-light), var(--pink-light));
  border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 20px;
  font-size: .82rem; color: var(--text-muted);
  margin-bottom: 48px;
}
.booking-info .spark:first-child { color: var(--sage); }
.booking-info .spark:last-child  { color: var(--pink); }

.slots-heading { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; text-align: center; margin-bottom: 8px; }
.slots-sub { text-align: center; font-size: .85rem; color: var(--text-muted); margin-bottom: 28px; }
.slots-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; margin-bottom: 48px; }
.slot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 8px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--white);
  cursor: pointer; transition: border-color .2s, background .2s, color .2s;
  font-size: .75rem; color: var(--text-muted);
}
.slot svg { width: 18px; height: 18px; stroke: var(--text-muted); fill: none; stroke-width: 1.5; transition: stroke .2s; }
/* odd slots hover = sage, even = pink */
.slot:nth-child(odd):hover  { border-color: var(--sage); color: var(--sage-dark); background: var(--sage-light); }
.slot:nth-child(odd):hover svg { stroke: var(--sage); }
.slot:nth-child(even):hover { border-color: var(--pink); color: var(--pink-dark); background: var(--pink-light); }
.slot:nth-child(even):hover svg { stroke: var(--pink); }
.slot.selected { background: linear-gradient(135deg, var(--sage-light), var(--pink-light)); border-color: var(--sage); color: var(--sage-dark); }
.slot.selected svg { stroke: var(--sage); }

.booking-form-wrap {
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: 20px; padding: 36px 32px;
  box-shadow: 0 0 0 1.5px var(--sage-mid), inset 0 0 0 1.5px transparent;
  position: relative;
}
.booking-form-wrap::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--pink));
  border-radius: 0 0 18px 18px;
}

.form-section-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400; margin-bottom: 28px;
}
.form-section-title .heart { color: var(--pink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .8rem; font-weight: 500; color: var(--text); }
.form-group label .req { color: var(--pink); }
.form-control {
  padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: .88rem; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,158,130,.12); background: var(--white); }
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.upload-area {
  border: 1.5px dashed var(--border); border-radius: 10px;
  padding: 20px; text-align: center;
  font-size: .82rem; color: var(--text-muted); cursor: pointer;
  transition: border-color .2s, color .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.upload-area:hover { border-color: var(--pink); color: var(--pink-dark); }
.btn-full { width: 100%; justify-content: center; margin-top: 8px; padding: 16px; font-size: .9rem; }

/* ── ADD-ONS ── */
.addons-grid { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.addon-card {
  border-radius: 14px; border: 1.5px solid var(--border);
  cursor: pointer; transition: border-color .2s, box-shadow .2s, background .2s;
  background: var(--white);
}
.addon-card input[type="checkbox"] { display: none; }
.addon-inner {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 12px; min-width: 0;
}
.addon-name { font-size: .82rem; font-weight: 500; flex: 1; color: var(--text); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.addon-price { font-size: .82rem; font-weight: 700; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.addon-icon { font-size: 1.1rem; flex-shrink: 0; }
/* checked states — odd=sage, even=pink */
#addon-color:has(input:checked)   { background: var(--sage-light); border-color: var(--sage); }
#addon-color:has(input:checked) .addon-price { color: var(--sage-dark); }
#addon-numbing:has(input:checked) { background: var(--pink-light); border-color: var(--pink); }
#addon-numbing:has(input:checked) .addon-price { color: var(--pink-dark); }
.addon-card:hover { box-shadow: var(--shadow); }

/* ── PRICING PAGE ── */
#pricing-section { padding: 72px var(--pad) 80px; max-width: var(--max); margin: 0 auto; }
.pricing-intro { text-align: center; max-width: 56ch; margin: 0 auto 36px; font-size: .92rem; color: var(--text-muted); }

/* Policy pills */
.pricing-policies { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.policy-pill { padding: 8px 20px; border-radius: 30px; font-size: .82rem; font-weight: 500; letter-spacing: .03em; }
.policy-pink { background: var(--pink-light); color: var(--pink-dark); border: 1.5px solid var(--pink-mid); }
.policy-sage { background: var(--sage-light); color: var(--sage-dark); border: 1.5px solid var(--sage-mid); }

/* Price cards grid */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.pc-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.pc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-h); }
/* top accent bar alternates sage / pink */
.pc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 16px 16px 0 0;
}
.pc-card:nth-child(odd)::before  { background: var(--sage); }
.pc-card:nth-child(even)::before { background: var(--pink); }
.pc-card:nth-child(odd)  { border-color: var(--sage-mid); }
.pc-card:nth-child(even) { border-color: var(--pink-mid); }
.pc-name {
  font-size: .9rem; font-weight: 600; color: var(--text);
  margin-bottom: 10px; letter-spacing: .01em;
}
.pc-size { font-size: .78rem; color: var(--text-muted); font-weight: 400; }
.pc-price {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
}
.pc-card:nth-child(odd)  .pc-price { color: var(--sage-dark); }
.pc-card:nth-child(even) .pc-price { color: var(--pink-dark); }

/* keep old card block from breaking compile */
.price-card {
  background: var(--white); border-radius: var(--r); padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
  position: relative; overflow: hidden;
}
/* top border bar alternates */
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.price-card:nth-child(odd)::before  { background: var(--sage); }
.price-card:nth-child(even)::before { background: var(--pink); }
.price-card:nth-child(odd)  { border: 1.5px solid var(--sage-mid); }
.price-card:nth-child(even) { border: 1.5px solid var(--pink-mid); }
.price-card:nth-child(odd):hover  { box-shadow: 0 8px 32px rgba(122,158,130,.15); transform: translateY(-2px); }
.price-card:nth-child(even):hover { box-shadow: 0 8px 32px rgba(208,118,138,.15); transform: translateY(-2px); }
.price-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.price-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.price-card .size { font-size: .8rem; color: var(--text-muted); }
.price-card:nth-child(odd)  .price-dash { color: var(--sage); }
.price-card:nth-child(even) .price-dash { color: var(--pink); }
.price-dash { font-size: 1.4rem; font-weight: 300; }
.price-card .desc { font-size: .88rem; color: var(--text-muted); }

.custom-quote-box {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--white) 50%, var(--pink-light) 100%);
  border: 1.5px solid var(--border);
  border-radius: 20px; padding: 48px; text-align: center;
}
.custom-quote-box .spark { font-size: 1.5rem; margin-bottom: 12px; display: block; }
.custom-quote-box h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 12px; }
.custom-quote-box p { font-size: .88rem; color: var(--text-muted); max-width: 44ch; margin: 0 auto 28px; }

/* ── CONTACT PAGE ── */
#contact-section { padding: 72px var(--pad) 80px; max-width: var(--max); margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-left h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 400; margin-bottom: 14px; }
.contact-left h2 .accent { font-style: italic; color: var(--pink); }
.contact-left p { font-size: .9rem; color: var(--text-muted); margin-bottom: 36px; max-width: 40ch; }
.contact-link {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: 14px;
  background: var(--white); margin-bottom: 12px; transition: border-color .2s, box-shadow .2s;
}
.contact-link:nth-child(1) { border: 1.5px solid var(--pink-mid); }
.contact-link:nth-child(2) { border: 1.5px solid var(--sage-mid); }
.contact-link:nth-child(1):hover { border-color: var(--pink); box-shadow: 0 4px 16px rgba(208,118,138,.12); }
.contact-link:nth-child(2):hover { border-color: var(--sage); box-shadow: 0 4px 16px rgba(122,158,130,.12); }
.contact-link-icon {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-link:nth-child(1) .contact-link-icon { color: var(--pink-dark); border-color: var(--pink-mid); }
.contact-link:nth-child(2) .contact-link-icon { color: var(--sage-dark); border-color: var(--sage-mid); }
.contact-link-body .label { font-size: .72rem; font-weight: 600; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 2px; }
.contact-link-body .value { font-size: .9rem; font-weight: 500; color: var(--text); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px; padding: 36px 32px;
  border: 1.5px solid var(--border);
  position: relative; overflow: hidden;
}
.contact-form-wrap::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--sage));
  border-radius: 0 0 18px 18px;
}
.contact-form-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400; margin-bottom: 28px;
}
.contact-form-title .heart { color: var(--pink); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  #hero { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 280px; margin: 0 auto; aspect-ratio: 1/1; }
  .about-hero-text { text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
  .booking-form-wrap { padding: 24px 18px; }
  .contact-form-wrap { padding: 24px 18px; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
