/* ============================================================
   Harrogate Waxing — style.css
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum-deep:   #432545;
  --plum-mid:    #5C335F;
  --plum-bright: #6E2D73;
  --pink:        #C3558B;
  --pink-light:  #DCB6DC;
  --cream:       #F6F1E8;
  --cream-warm:  #F2E5CD;
  --white:       #ffffff;
  --text-dark:   #2a1a2e;
  --font-display: 'Cormorant Garamond', serif;
  --font-ui:      'Open Sans Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  font-weight: 300;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--plum-deep);
}

.section-title em {
  font-style: italic;
  color: var(--pink);
}

/* ── TOP BAR ── */
#topbar {
  background: var(--plum-deep);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream-warm);
}

#topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

#topbar a { color: var(--pink-light); text-decoration: none; transition: color .2s; }
#topbar a:hover { color: var(--white); }
#topbar .pipe { color: var(--plum-mid); margin: 0 8px; }

/* ── NAV ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--pink-light);
  transition: box-shadow .3s;
}

#navbar.scrolled { box-shadow: 0 4px 20px rgba(67,37,69,.15); }

#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-logo img { height: 60px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum-deep);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  transition: background .2s, color .2s;
}

.nav-links a:hover { background: var(--plum-deep); color: var(--cream); }

.nav-links a.cta-btn {
  background: var(--pink);
  color: var(--white);
}

.nav-links a.cta-btn:hover { background: var(--plum-bright); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--plum-deep);
  transition: all .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-bright) 55%, #a03580 100%);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(195,85,139,.25) 0%, transparent 60%);
}

.hero-text {
  padding: 80px 60px 80px 0;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp .7s .35s forwards;
}

.hero-heading em {
  font-style: italic;
  color: var(--pink-light);
  display: block;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--cream-warm);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .7s .5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .65s forwards;
}

.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background .25s, transform .2s;
}

.btn-primary:hover { background: #a8447a; transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--pink-light);
  color: var(--pink-light);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 2px;
  transition: background .25s, color .25s, transform .2s;
}

.btn-outline:hover { background: var(--pink-light); color: var(--plum-deep); transform: translateY(-2px); }

.hero-image {
  height: 100%;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  animation: fadeIn 1s .4s forwards;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--plum-deep) 0%, transparent 30%);
}

.hero-badges {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp .7s .8s forwards;
}

.hero-badge { text-align: center; }

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--pink-light);
  line-height: 1;
}

.hero-badge span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-warm);
  opacity: .7;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── INTRO STRIP ── */
#intro-strip {
  background: var(--pink);
  padding: 20px 0;
}

#intro-strip .container {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

#intro-strip p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--white);
  text-align: center;
}

#intro-strip .strip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  flex-shrink: 0;
}

/* ── SERVICES ── */
#services {
  padding: 90px 0;
  background: var(--cream);
}

#services .intro {
  text-align: center;
  margin-bottom: 60px;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-top: 3px solid var(--pink);
  overflow: hidden;
}

/* Image portion */
.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}

.service-card:hover .service-image img { transform: scale(1.03); }

.service-image-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(67,37,69,.85) 0%, transparent 100%);
  padding: 28px 28px 22px;
}

.service-tag {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-light);
  display: block;
  margin-bottom: 6px;
}

.service-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2rem;
  color: var(--white);
  line-height: 1.1;
}

.service-name em { font-style: italic; color: var(--pink-light); }

/* Prices portion */
.service-prices {
  padding: 28px 28px 24px;
  background: var(--white);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.price-table tr {
  border-bottom: 1px solid rgba(67,37,69,.08);
}

.price-table tr:last-child { border-bottom: none; }

.price-table td {
  padding: 9px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #4a3a4d;
  line-height: 1.3;
}

.price-table td.price {
  text-align: right;
  font-weight: 600;
  color: var(--pink);
  white-space: nowrap;
  padding-left: 16px;
  font-size: 1rem;
}

.service-book-btn {
  display: inline-block;
  background: var(--plum-deep);
  color: var(--cream);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  transition: background .2s;
}

.service-book-btn:hover { background: var(--pink); }

.services-note {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: #7a6a7d;
  font-size: 1rem;
  margin-top: 32px;
}

/* ── ABOUT ── */
#about {
  padding: 100px 0;
  background: var(--white);
}

#about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-visual { position: relative; }

.about-visual img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 160px; height: 160px;
  background: var(--pink);
  opacity: .15;
  z-index: -1;
}

.about-accent2 {
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  border: 3px solid var(--pink-light);
  z-index: -1;
}

.about-text p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.75;
  color: #4a3a4d;
  margin-bottom: 20px;
}

.about-text p:first-of-type::first-letter {
  font-size: 3.5em;
  float: left;
  line-height: .8;
  margin: 4px 10px 0 0;
  color: var(--pink);
  font-family: var(--font-display);
}

.about-highlight {
  background: var(--cream);
  border-left: 4px solid var(--pink);
  padding: 18px 22px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--plum-deep);
}

.perron-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  padding: 12px 20px;
  border-radius: 2px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--plum-deep);
}

.perron-badge::before { content: '✦'; color: var(--pink); font-size: 16px; }

/* ── WHY US ── */
#why {
  padding: 90px 0;
  background: var(--plum-deep);
}

#why .intro { text-align: center; margin-bottom: 60px; }
#why .section-title { color: var(--cream); }
#why .section-label { color: var(--pink-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.why-card {
  background: rgba(255,255,255,.05);
  padding: 40px 32px;
  text-align: center;
  transition: background .3s;
}

.why-card:hover { background: rgba(255,255,255,.1); }

.why-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }

.why-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--pink-light);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-warm);
  line-height: 1.65;
  opacity: .85;
}

/* ── ETIQUETTE / FAQ ── */
#etiquette {
  padding: 90px 0;
  background: var(--cream-warm);
}

#etiquette .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.etiquette-sticky {
  position: sticky;
  top: 100px;
}

.etiquette-sticky p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a4a5d;
  margin-top: 20px;
}

.faq-item { border-bottom: 1px solid rgba(67,37,69,.15); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--plum-deep);
  transition: color .2s;
}

.faq-question:hover { color: var(--pink); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--pink);
  transition: background .2s, transform .3s;
}

.faq-item.open .faq-icon { background: var(--pink); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .3s;
}

.faq-answer-inner {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a4a5d;
  padding-bottom: 20px;
}

.faq-item.open .faq-answer { max-height: 500px; }

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 90px 0;
  background: var(--white);
}

#testimonials .intro { text-align: center; margin-bottom: 60px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--cream);
  padding: 36px 32px;
  position: relative;
  border-top: 3px solid var(--pink);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--pink-light);
  position: absolute;
  top: 10px; left: 24px;
  opacity: .4;
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--plum-deep);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
}

.testimonial-stars { color: var(--pink); font-size: 14px; margin-bottom: 12px; }

.testimonial-card.featured {
  background: var(--plum-deep);
  border-top-color: var(--pink-light);
  grid-column: span 2;
}

.testimonial-card.featured .testimonial-text { color: var(--cream); }
.testimonial-card.featured .testimonial-author { color: var(--pink-light); }
.testimonial-card.featured::before { color: var(--pink); opacity: .3; }

/* Google reviews CTA */
.google-reviews-cta {
  text-align: center;
  margin-top: 48px;
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid #dadce0;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  transition: border-color .2s, box-shadow .2s;
}

.google-reviews-link:hover {
  border-color: #4285F4;
  box-shadow: 0 2px 12px rgba(66,133,244,.15);
}

.google-reviews-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.google-reviews-stars {
  font-size: 1.2rem;
  color: #FBBC05;
  letter-spacing: 2px;
}

.google-reviews-text {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--plum-deep);
}

.google-reviews-arrow {
  font-size: 16px;
  color: #4285F4;
  font-weight: bold;
  transition: transform .2s;
}

.google-reviews-link:hover .google-reviews-arrow { transform: translateX(4px); }

/* ── CONTACT ── */
#contact {
  padding: 90px 0;
  background: var(--plum-deep);
}

#contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

#contact .section-title { color: var(--cream); }
#contact .section-label { color: var(--pink-light); }

.contact-info-block { margin-top: 36px; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.07);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.5;
}

.contact-detail a:hover { color: var(--pink-light); }

.contact-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-warm);
  opacity: .7;
  margin-top: 2px;
  display: block;
}

/* Contact Form */
.form-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream-warm);
  margin-bottom: 28px;
  opacity: .85;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(246,241,232,.2);
  padding: 13px 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  outline: none;
  transition: border-color .2s, background .2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group select option { background: var(--plum-deep); color: var(--cream); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(246,241,232,.35); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 15px 32px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background .25s;
}

.form-submit:hover { background: #a8447a; }

.form-message {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
}

.form-message.success {
  background: rgba(195,85,139,.15);
  border-left: 3px solid var(--pink);
  color: var(--cream-warm);
}

.form-message.error {
  background: rgba(220,80,80,.15);
  border-left: 3px solid #e05050;
  color: #ffcccc;
}

/* ── MAP STRIP ── */
#map-strip {
  background: var(--plum-mid);
  padding: 60px 0;
}

#map-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.map-iframe {
  width: 100%;
  height: 280px;
  border: none;
  filter: saturate(.6) contrast(1.1);
}

.map-directions h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.map-directions p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream-warm);
  line-height: 1.7;
  opacity: .85;
}

.map-directions address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--pink-light);
  line-height: 1.6;
  margin: 16px 0;
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  padding: 30px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(246,241,232,.45);
  letter-spacing: 0.04em;
}

footer a { color: rgba(246,241,232,.6); text-decoration: none; }
footer a:hover { color: var(--pink-light); }
footer .pipe { margin: 0 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .hero-text { padding: 70px 0 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  #about .container { grid-template-columns: 1fr; gap: 40px; }
  .about-visual img { height: 300px; }
  .why-grid { grid-template-columns: 1fr; }
  #etiquette .container { grid-template-columns: 1fr; }
  .etiquette-sticky { position: static; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { grid-column: span 1; }
  #contact .container { grid-template-columns: 1fr; }
  #map-strip .container { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--pink-light);
    padding: 16px 24px;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .nav-toggle { display: flex; }
  #navbar .container { flex-wrap: wrap; position: relative; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-badges { display: none; }
  .hero-heading { font-size: 2.5rem; }
}
