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

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Jost', sans-serif;
  color: #2c2420;
  background: #faf7f4;
}

/* ─── Navigation ─── */
nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  background: #b5a594;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}

.nav-group:last-child {
  justify-content: flex-end;
}

.nav-group a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f5f0eb;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-group a:hover {
  opacity: 0.7;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #f5f0eb;
  text-decoration: none;
}

.nav-logo span {
  font-size: 16px;
  vertical-align: middle;
  margin: 0 2px;
}

.btn-nav {
  border: 1px solid rgba(245, 240, 235, 0.6) !important;
  padding: 10px 20px;
}

.btn-nav:hover {
  background: rgba(245, 240, 235, 0.1);
  border-color: #f5f0eb !important;
}

/* ─── Page Hero ─── */
.page-hero {
  background: #b5a594 url('subpage-hero.png') 25% 65% / cover no-repeat;
  padding: 140px 24px 100px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(140, 125, 110, 0.35);
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #f5f0eb;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.8);
  position: relative;
  z-index: 1;
}

/* ─── Sections ─── */
.section {
  padding: 80px 24px;
}

.section-warm {
  background: #f0ebe5;
}

.content-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.content-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.center-text {
  text-align: center;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #2c2420;
  margin-bottom: 28px;
  text-align: center;
}

.section p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #4a3f38;
  margin-bottom: 20px;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f5f0eb;
  text-decoration: none;
  background: #b5a594;
  border: 1px solid #b5a594;
  padding: 16px 40px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: #a3917f;
  border-color: #a3917f;
}

.cta-group {
  margin-top: 40px;
}

/* ─── Team Grid ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #d4c8bc;
  margin: 0 auto 20px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #2c2420;
  margin-bottom: 6px;
}

.team-role {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a7b6d;
}

.team-contact {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-contact a {
  font-size: 13px;
  font-weight: 300;
  color: #6b5e53;
  text-decoration: none;
  transition: color 0.3s ease;
}

.team-contact a:hover {
  color: #2c2420;
}

/* ─── Booking Page ─── */
.book-intro {
  font-size: 16px;
  font-weight: 300;
  color: #6b5e53;
  margin-bottom: 56px;
  font-style: italic;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

.book-card {
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 32px 20px;
  background: #fff;
  border: 1px solid #ede7e0;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(44, 36, 32, 0.08);
  border-color: #b5a594;
}

.book-card .team-photo {
  transition: transform 0.4s ease;
}

.book-card:hover .team-photo {
  transform: scale(1.05);
}

.book-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #2c2420;
  margin-bottom: 6px;
}

.book-card .team-role {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a7b6d;
  margin-bottom: 20px;
}

.book-link {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b5a594;
  margin-top: auto;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.book-card:hover .book-link {
  color: #8a7b6d;
  letter-spacing: 3px;
}

/* book-card is a <button> — reset native styling */
button.book-card {
  width: 100%;
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* ─── Booking modal ─── */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.book-modal.is-open {
  display: flex;
}

.book-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 32, 0.45);
  backdrop-filter: blur(2px);
  animation: bookFade 0.3s ease;
}

.book-modal__panel {
  position: relative;
  background: #fff;
  border: 1px solid #ede7e0;
  box-shadow: 0 24px 70px rgba(44, 36, 32, 0.18);
  padding: 48px 44px 44px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: bookRise 0.35s ease;
}

.book-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #b5a594;
  cursor: pointer;
  transition: color 0.3s ease;
}

.book-modal__close:hover {
  color: #2c2420;
}

.book-modal__eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b5a594;
  margin-bottom: 8px;
}

.book-modal__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #2c2420;
  margin-bottom: 18px;
}

.book-modal__prompt {
  font-size: 14px;
  font-weight: 300;
  color: #6b5e53;
  margin-bottom: 32px;
  font-style: italic;
}

.book-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.book-modal__btn {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 20px;
  border: 1px solid #2c2420;
  background: #2c2420;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}

.book-modal__btn:hover {
  background: #fff;
  color: #2c2420;
}

.book-modal__btn--ig {
  background: #fff;
  color: #2c2420;
  border-color: #b5a594;
}

.book-modal__btn--ig:hover {
  background: #f7f3ee;
  border-color: #2c2420;
}

@keyframes bookFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bookRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Services ─── */
.service-block {
  padding: 48px 0;
  border-bottom: 1px solid #e8e0d8;
}

.service-block:first-child {
  padding-top: 0;
}

.service-block:last-child {
  border-bottom: none;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: #2c2420;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #6b5e53;
  margin-bottom: 24px;
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ede7e0;
  font-size: 14px;
  font-weight: 300;
  color: #4a3f38;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span:last-child {
  font-weight: 400;
  color: #2c2420;
}

/* ─── Bridal ─── */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.expect-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: #2c2420;
  margin-bottom: 12px;
}

.expect-item p {
  font-size: 15px;
  color: #6b5e53;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-detail {
  margin-bottom: 28px;
}

.contact-detail h3 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a7b6d;
  margin-bottom: 8px;
}

.contact-detail a,
.contact-detail p {
  font-size: 16px;
  font-weight: 300;
  color: #2c2420;
  text-decoration: none;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: #b5a594;
}

.contact-detail p.contact-note {
  font-size: 13px;
  font-style: italic;
  color: #8a7b6d;
  margin-top: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8a7b6d;
}

.form-group input,
.form-group textarea {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 12px 16px;
  border: 1px solid #ddd5cc;
  background: #fff;
  color: #2c2420;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b5a594;
}

.form-group textarea {
  resize: vertical;
}

/* ─── FAQ ─── */
.faq-item {
  padding: 36px 0;
  border-bottom: 1px solid #e8e0d8;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: #2c2420;
  margin-bottom: 14px;
}

.faq-item p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #4a3f38;
}

.faq-item a {
  color: #b5a594;
  text-decoration: none;
}

.faq-item a:hover {
  color: #8a7b6d;
}

/* ─── Footer ─── */
footer {
  background: #2c2420;
  padding: 60px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #f5f0eb;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 28px;
}

.footer-logo span {
  font-size: 20px;
  vertical-align: middle;
  margin: 0 2px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f5f0eb;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.4);
  letter-spacing: 1px;
}

/* ─── Page Transition ─── */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #b5a594;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

body.page-entering {
  animation: pageEnter 0.5s ease forwards;
}

@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── Footer Social ─── */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 235, 0.3);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: #f5f0eb;
  background: rgba(245, 240, 235, 0.08);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(245, 240, 235, 0.7);
  transition: fill 0.3s ease;
}

.footer-social a:hover svg {
  fill: #f5f0eb;
}

/* ─── Animations ─── */

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* Page hero entrance */
.page-hero .page-title {
  animation: heroFadeDown 1s ease both;
}

.page-hero .page-subtitle {
  animation: heroFadeDown 1s ease 0.2s both;
}

@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover lifts */
.team-card {
  transition: transform 0.4s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-photo {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-block {
  transition: background 0.3s ease;
}

.service-block:hover {
  background: rgba(240, 235, 229, 0.3);
}

.faq-item {
  transition: padding-left 0.3s ease;
}

.faq-item:hover {
  padding-left: 12px;
}

/* Button hover shine */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

/* Nav link underline animation */
.nav-group a {
  position: relative;
}

.nav-group a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #f5f0eb;
  transition: width 0.3s ease;
}

.nav-group a:not(.btn-nav):hover::after {
  width: 100%;
}

/* Footer link underline */
.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(245, 240, 235, 0.4);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Form input focus glow */
.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(181, 165, 148, 0.15);
}

/* Contact detail hover */
.contact-detail a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.contact-detail a:hover {
  padding-left: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .fade-in-stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.testimonial-card {
  text-align: center;
  padding: 24px 16px;
}

.testimonial-stars {
  color: #b5a594;
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: #4a3f38;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8a7b6d;
}

/* ─── Review carousel ─── */
.review-carousel {
  position: relative;
  max-width: 720px;
  margin: 20px auto 0;
}

.review-track {
  position: relative;
  display: grid;
}

.review-slide {
  grid-area: 1 / 1;
  margin: 0;
  text-align: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0s linear 0.7s;
  pointer-events: none;
}

.review-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: auto;
}

.review-slide blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: #4a3f38;
  margin: 0 0 24px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #b5a594;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.review-dot:hover {
  background: #d9cec1;
}

.review-dot.is-active {
  background: #8a7b6d;
  border-color: #8a7b6d;
  transform: scale(1.15);
}

.review-source {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: #a2937f;
  margin-top: 22px;
}

/* ─── Active Nav ─── */
.nav-group a.active::after {
  width: 100%;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  nav {
    padding: 20px 24px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .nav-group {
    gap: 20px;
    flex: 0 1 auto;
    justify-content: center;
  }

  .nav-group:last-child {
    justify-content: center;
  }

  .nav-group a {
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .nav-logo {
    order: -1;
    width: 100%;
    text-align: center;
    font-size: 20px;
  }

  .btn-nav {
    display: none !important;
  }

  .page-title {
    font-size: 38px;
  }

  .page-hero {
    padding: 60px 24px 48px;
    background-position: 25% center;
  }

  .section {
    padding: 60px 24px;
  }

  .section-heading {
    font-size: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-name {
    font-size: 26px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .nav-group {
    gap: 14px;
  }

  .nav-group a {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .page-title {
    font-size: 32px;
  }

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

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

  .footer-links {
    gap: 20px;
  }
}
