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

:root {
  --cream: #F7F3EE;
  --cream-dark: #EDE8E1;
  --cream-light: #FDFBF9;
  --warm-white: #FFFDF9;
  --black: #1C1C1C;
  --black-soft: #242323;
  --white: #FFFFFF;
  --gray-text: #3a3837;
  --gray-light: #4e4c4b;
  --accent: #8C6E63;
  --accent-light: #B89E94;
  --gold: #C4A265;
  --gold-light: #D4B97E;
  --gold-dark: #A8893E;
  --rule: #D6CFC8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.2rem;
  -webkit-font-smoothing: antialiased;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  font-size: 0.875rem;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── NAV ── */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(247, 243, 238, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  z-index: 1000;
}
nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
}
.nav-logo img {
  height: 70px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--black-soft);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--gold); }

.nav-book-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  border: 1px solid var(--black);
}
.nav-book-btn:hover,
.nav-book-btn:focus-visible {
  background: transparent;
  color: var(--black) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--black);
  margin: 5px 0;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.flower-decoration { margin-bottom: 1.5rem; }
.flower-decoration img {
  width: 120px;
  height: auto;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 2.8rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.35s, color 0.35s;
  border: 1px solid var(--black);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: transparent;
  color: var(--black);
}

.hero-hours {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--gray-light);
  letter-spacing: 0.08em;
}

/* ── SECTIONS SHARED ── */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 920px; margin: 0 auto; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.section-subtitle {
  text-align: center;
  color: var(--gray-light);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* Divider */
.rose-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.rose-divider .line {
  width: 100px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.rose-icon {
  display: none;
}
.rose-divider .line:first-child { order: 0; }
.rose-divider .line:last-child { order: 2; }
.rose-divider::after {
  content: '';
  display: block;
  width: 45px; height: 45px;
  background: url('assets/logos/bow-short.png') no-repeat center/contain;
  flex-shrink: 0;
  order: 1;
}

/* ── ABOUT ── */
.about { background: var(--warm-white); }
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.about-image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-light);
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 6px var(--gold-light);
  overflow: hidden;
}

.about-text {
  text-align: center;
  max-width: 800px;
  padding-top: 2rem;
}
.about-text p {
  color: var(--gray-text);
  font-size: 1.2rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── SERVICES ── */
.services { background: var(--cream); }

.accordion-group { max-width: 640px; margin: 0 auto; }
.accordion-item {
  background: transparent;
  margin-bottom: 0;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.accordion-item:first-child {
  border-top: 1px solid var(--rule);
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  text-align: left;
  transition: color 0.25s;
}
.accordion-btn:hover { color: var(--gold); }
.accordion-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.accordion-icon {
  width: 18px; height: 18px;
  transition: transform 0.35s ease;
  flex-shrink: 0;
  color: var(--gray-light);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-panel-inner { padding: 0 0.5rem 1.2rem; }
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
}
.service-row + .service-row {
  border-top: 1px dotted var(--rule);
}
.service-name { font-size: 1.2rem; color: var(--gray-text); }
.service-price { font-size: 1.2rem; font-weight: 400; color: var(--black); white-space: nowrap; }

/* ── STYLISTS ── */
.stylists { background: var(--warm-white); }
.stylist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stylist-card {
  text-align: center;
  background: var(--cream);
  padding: 2.2rem 1.5rem 1.8rem;
  border: 1px solid var(--rule);
  position: relative;
  transition: transform 0.3s;
}
/* ── Bow Corner Decorations (single image, CSS-flipped) ── */
.stylist-card,
.join-card,
.form-card {
  position: relative;
}
/* Top-left (original) */
.stylist-card::before,
.join-card::before,
.form-card::before {
  content: '';
  position: absolute;
  top: 10px; left: 10px;
  width: 70px; height: 70px;
  background: url('assets/logos/Bow-top-left.png') no-repeat center/contain;
  pointer-events: none;
}
/* Bottom-right (rotated 180deg) */
.stylist-card::after,
.join-card::after,
.form-card::after {
  content: '';
  position: absolute;
  bottom: 10px; right: 10px;
  width: 70px; height: 70px;
  background: url('assets/logos/Bow-top-left.png') no-repeat center/contain;
  transform: rotate(180deg);
  pointer-events: none;
}
/* Extra corners via .bow-corners span */
.bow-corners {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
/* Top-right (flipped horizontal) */
.bow-corners::before {
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  width: 70px; height: 70px;
  background: url('assets/logos/Bow-top-left.png') no-repeat center/contain;
  transform: scaleX(-1);
}
/* Bottom-left (flipped horizontal + rotated 180) */
.bow-corners::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 10px;
  width: 70px; height: 70px;
  background: url('assets/logos/Bow-top-left.png') no-repeat center/contain;
  transform: scaleX(-1) rotate(180deg);
}

/* ── Bow accent on hero ── */
.hero::before {
  content: '';
  position: absolute;
  top: 100px; left: 20px;
  width: 180px; height: 180px;
  background: url('assets/logos/Bow-top-left.png') no-repeat center/contain;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 30px; right: 20px;
  width: 180px; height: 180px;
  background: url('assets/logos/Bow-top-left.png') no-repeat center/contain;
  transform: rotate(180deg);
  pointer-events: none;
  z-index: 0;
}

.stylist-card:hover {
  transform: translateY(-3px);
}
.stylist-photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--cream-dark);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-light);
  border: 2px solid var(--gold-light);
  overflow: hidden;
}

.stylist-card:nth-child(4) .stylist-photo img {
  object-position: 50% 25%;
}
.stylist-card:nth-child(2) .stylist-photo img {
  object-position: 50% 20%;
}

.stylist-photo img { width: 100%; height: 100%; object-fit: cover; }
.stylist-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  color: var(--black);
}

.stylist-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.stylist-card p.stylist-bio {
  font-size: 1.2rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--gray-light);
  font-size: 1.2rem;
  font-weight: 400;
  transition: color 0.25s;
}
.ig-link:hover,
.ig-link:focus-visible { color: var(--gold); }
.ig-link svg { width: 18px; height: 18px; }

/* ── GALLERY ── */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--cream-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-light);
  border: 1px solid var(--rule);
  transition: opacity 0.3s;
  cursor: pointer;
}
.gallery-item:hover { opacity: 0.85; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── CONTACT ── */
.contact { background: var(--warm-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: var(--black);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-detail svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-detail p {
  font-size: 1.2rem;
  color: var(--gray-text);
  line-height: 1.5;
}
.contact-detail a {
  color: var(--black);
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid var(--gold-light);
  transition: border-color 0.25s;
}
.contact-detail a:hover { border-color: var(--gold); }

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: var(--black);
}
.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--black);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 2.2rem;
  border: 1px solid var(--black);
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s, color 0.35s;
}
.contact-form button:hover,
.contact-form button:focus-visible {
  background: transparent;
  color: var(--black);
}

/* ── JOIN US ── */
.join-us { background: var(--cream); }
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.join-card {
  background: var(--warm-white);
  padding: 2.2rem 2rem;
  border: 1px solid var(--rule);
  text-align: center;
  position: relative;
}
.join-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--black);
}
.join-card p {
  font-size: 1.2rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.25s; }
footer a:hover { color: var(--white); }

/* Footer Social Icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--gold);
}
.footer-social svg {
  width: 30px; height: 30px;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.footer-social a:hover svg { color: var(--gold-light); }

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stylist-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 100%; }
}
@media (max-width: 700px) {
  .nav-logo img { height: 70px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 260px;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    border-left: 1px solid var(--rule);
    padding: 2rem;
    transition: right 0.35s ease;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: block; }
  .stylist-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 8rem 2.5rem 4rem; }
  .hero::before {
    width: 100px; height: 100px;
    top: 100px; left: 10px;
  }
  .hero::after {
    width: 100px; height: 100px;
    bottom: 20px; right: 10px;
  }
}

/* ══════════════════════════════════════════
   FORM PAGES (vendor-event, booth-rental)
   ══════════════════════════════════════════ */
.form-page {
  min-height: 100vh;
  padding: 8rem 1.5rem 5rem;
  background: var(--cream);
}
.form-container {
  max-width: 600px;
  margin: 0 auto;
}
.form-container h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.form-intro {
  text-align: center;
  color: var(--gray-text);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.form-card {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--rule);
  position: relative;
}
.form-card label {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  margin-bottom: 0.35rem;
}
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 1.2rem;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none;
  border-color: var(--black);
}
.form-card textarea {
  resize: vertical;
  min-height: 100px;
}
.form-card .optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}
.form-card button {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--black);
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s, color 0.35s;
  width: 100%;
  margin-top: 0.5rem;
}
.form-card button:hover,
.form-card button:focus-visible {
  background: transparent;
  color: var(--black);
}
.back-link {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gray-light);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  transition: color 0.25s;
}
.back-link:hover { color: var(--black); }

/* ══════════════════════════════════════════
   SUCCESS PAGE
   ══════════════════════════════════════════ */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  background: var(--cream);
}
.success-page .checkmark {
  width: 60px;
  height: 60px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.success-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.8rem;
}
.success-page p {
  color: var(--gray-text);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 420px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════════ */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  background: var(--cream);
}
.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 400;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-page h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 1rem;
}
.error-page p {
  color: var(--gray-text);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 400px;
}