/* =========================================================
   BRAIDS BY PORTIA — Main Stylesheet
   ========================================================= */

:root {
  /* Light warm theme */
  --black:       #faf8f5;     /* page background — warm white */
  --black-warm:  #f5f0e8;     /* alternating section */
  --black-card:  #ffffff;     /* card surfaces */
  --black-deep:  #eee8d8;     /* deeper warm sections / footer */
  --gold:        #c49b30;     /* slightly deeper gold for contrast on white */
  --gold-light:  #d4af37;
  --gold-dark:   #7a5e1a;
  --gold-mid:    #a88028;
  --cream:       #1c1208;     /* primary text — deep espresso */
  --cream-75:    rgba(28,18,8,0.72);
  --cream-45:    rgba(28,18,8,0.45);
  --cream-20:    rgba(28,18,8,0.12);
  --gold-border: rgba(196,155,48,0.28);
  --gold-glow:   rgba(196,155,48,0.50);
  --shadow-sm:   0 2px 14px rgba(28,18,8,0.06);
  --shadow-md:   0 8px 32px rgba(28,18,8,0.09);
  --shadow-lg:   0 20px 60px rgba(28,18,8,0.13);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* -------- TYPOGRAPHY -------- */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 700; }

/* -------- BUTTONS -------- */
.btn-gold {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #1c1208;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(196,155,48,0.30);
  white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,155,48,0.42); }

.btn-gold.btn-large { padding: 1.1rem 2.8rem; font-size: 1rem; }

.btn-gold-sm {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #1c1208;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-gold-sm:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(196,155,48,0.35); }

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(28,18,8,0.35);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(196,155,48,0.08); color: var(--gold); }

.btn-outline-gold {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }

/* -------- SECTION HEADER -------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1.25rem;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
}
.section-sub {
  max-width: 580px;
  margin-inline: auto;
  color: var(--cream-75);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.35rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 14px rgba(28,18,8,0.08);
  padding: 0.9rem 0;
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  transition: height var(--transition);
}
.site-header.scrolled .nav-logo img { height: 38px; width: 38px; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 2rem; align-items: center; }
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-75);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--cream); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active::after { background: var(--gold); }

.btn-book-nav {
  display: inline-block;
  padding: 0.5rem 1.35rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #1c1208;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-book-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(196,155,48,0.38); }

.nav-book-mobile { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.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-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Collage background tiles */
.collage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
}
.braid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-repeat: repeat;
  background-size: 240px 120px;
  mix-blend-mode: multiply;
  opacity: 0.35;
}
.overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(18, 10, 4, 0.58);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 1.5rem 6rem;
  animation: fadeUp 1s ease-out;
}
.hero-logo {
  width: clamp(120px, 20vw, 190px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 32px rgba(212,175,55,0.32));
  margin-bottom: 1.75rem;
}
.hero-content h1 {
  color: #faf8f5;
  margin: 0.5rem 0 1rem;
}
.hero-content h1 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.05em;
}
.hero-sub {
  max-width: 540px;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: rgba(250,248,245,0.80);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-ctas .btn-outline {
  border-color: rgba(250,248,245,0.55);
  color: #faf8f5;
}
.hero-ctas .btn-outline:hover {
  border-color: var(--gold);
  background: rgba(196,155,48,0.15);
  color: var(--gold);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--black-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 1.25rem;
  border-right: 1px solid var(--gold-border);
}
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.trust-text { display: flex; flex-direction: column; gap: 0.25rem; }
.trust-label { font-size: 0.85rem; font-weight: 600; color: var(--cream); }
.trust-sub { font-size: 0.76rem; color: var(--cream-45); font-weight: 300; }

/* =========================================================
   HOME — SIGNATURE STYLES CARDS
   ========================================================= */
.home-services {
  padding: 6rem 0;
  background: var(--black-warm);
}
.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.sh-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: left;
}
.sh-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196,155,48,0.55);
  box-shadow: 0 16px 44px rgba(28,18,8,0.13);
}
.sh-card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.sh-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.75));
}

.sh-card-body {
  padding: 1.25rem 1.5rem 1.4rem;
}
.sh-card-body h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
  transition: color var(--transition);
}
.sh-card:hover .sh-card-body h3 { color: var(--gold-light); }
.sh-card-desc {
  font-size: 0.82rem;
  color: var(--cream-45);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 0.6rem;
}
.sh-from {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.home-services-cta { text-align: center; }

/* =========================================================
   HOME — GALLERY TEASER
   ========================================================= */
.home-gallery {
  padding: 6rem 0;
  background: var(--black-deep);
}
.gallery-cta { text-align: center; }

/* =========================================================
   HOME — WHY CHOOSE US
   ========================================================= */
.why-us {
  padding: 6rem 0;
  background: var(--black-card);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: 2rem 1.25rem;
  background: var(--black-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(196,155,48,0.10);
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.why-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.why-item p { font-size: 0.8rem; color: var(--cream-45); font-weight: 300; line-height: 1.6; }

/* =========================================================
   HOME — TESTIMONIALS
   ========================================================= */
.testimonials {
  padding: 6rem 0 4rem;
  background: var(--black-warm);
  overflow: hidden;
}

/* Scrolling marquee track */
.testi-track-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
  padding: 0.5rem 0;
}
.testi-track-wrap::before,
.testi-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.testi-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--black-warm), transparent);
}
.testi-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--black-warm), transparent);
}
.testi-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: testi-scroll 55s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }

@keyframes testi-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 320px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  color: var(--cream-75);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testi-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testi-source { font-weight: 400; color: var(--cream-45); text-transform: none; letter-spacing: 0; }
.testi-footer {
  text-align: center;
  margin-top: 2.5rem;
}
.testi-all-link {
  font-size: 0.8rem;
  color: var(--cream-45);
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.testi-all-link:hover { color: var(--gold); border-color: var(--gold); }

/* =========================================================
   HOME — CTA BANNER
   ========================================================= */
.cta-banner {
  padding: 5.5rem 0;
  background: #2a1a08;
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}
.cta-banner h2 { color: #faf8f5; margin-bottom: 0.6rem; }
.cta-banner p  { color: rgba(250,248,245,0.70); font-weight: 300; max-width: 540px; font-size: 0.95rem; line-height: 1.7; }

/* =========================================================
   SERVICES PAGE — IMAGE BANNER PER BLOCK
   ========================================================= */
.svc-block-img {
  height: 150px;
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
  overflow: hidden;
  position: relative;
}
.svc-block-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.45));
}

/* =========================================================
   SERVICE DETAIL MODAL
   ========================================================= */
.svc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.svc-modal.open { display: flex; }
.svc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.svc-modal-panel {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.22s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.svc-modal-hero {
  height: 220px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.svc-modal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(10,10,10,0.7));
}
.svc-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition);
  line-height: 1;
}
.svc-modal-close:hover { background: rgba(212,175,55,0.25); }
.svc-modal-body {
  padding: 1.75rem 2rem 2.25rem;
}
.svc-modal-body h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.modal-desc {
  font-size: 0.92rem;
  color: var(--cream-75);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.modal-pricing-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.modal-pricing { margin-bottom: 1.75rem; }
.svc-modal-cta { text-align: center; }
.svc-modal-cta .btn-gold { min-width: 200px; }

/* =========================================================
   PAGE BANNER (inner pages — header is fixed so 7.5rem clears it)
   ========================================================= */
.page-banner {
  background: var(--black-deep);
  padding: 7.5rem 0 3.5rem;
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
}
.page-banner h1 { color: var(--cream); margin: 0.4rem 0 0.75rem; }
.page-banner p  { color: var(--cream-75); font-size: 0.95rem; font-weight: 300; max-width: 520px; margin-inline: auto; }
.page-banner-sm { padding: 5.5rem 0 2rem; }

/* Utility */
.hidden { display: none !important; }

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  padding: 3rem 0 6rem;
  background: var(--black-warm);
}

.service-block {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-block:hover { border-color: var(--gold-glow); border-left-color: var(--gold); box-shadow: var(--shadow-md); }

.service-block-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.service-cat-name {
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.service-cat-desc {
  font-size: 0.9rem;
  color: var(--cream-75);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.6;
}
.service-cat-desc em { color: var(--cream-45); font-style: normal; }

/* Quick styles grid */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.qs-card {
  background: rgba(28,18,8,0.03);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background var(--transition), border-color var(--transition);
}
.qs-card:hover { background: rgba(196,155,48,0.08); border-color: rgba(196,155,48,0.40); }
.qs-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.qs-name { font-size: 0.88rem; font-weight: 500; color: var(--cream); flex: 1; }
.qs-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); font-weight: 700; white-space: nowrap; }
.qs-duration { font-size: 0.76rem; color: var(--cream-45); letter-spacing: 0.05em; }

/* Simple 3-column table (stitch, tribal, locs) */
.simple-table { border-radius: var(--radius); overflow: hidden; }
.st-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(28,18,8,0.07);
  align-items: center;
  font-size: 0.9rem;
}
.st-row:last-child { border-bottom: none; }
.st-row.st-head {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-45);
  background: rgba(28,18,8,0.04);
  padding: 0.5rem 1rem;
}
.st-row > span:nth-child(2) { color: var(--cream-45); text-align: right; }
.st-price { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); font-weight: 700; text-align: right; }

/* Pricing matrix table */
.matrix-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}
.matrix-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.matrix-table thead tr {
  background: rgba(28,18,8,0.04);
}
.matrix-table th {
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-45);
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
}
.matrix-table th:first-child { text-align: left; }
.matrix-table td {
  padding: 0.65rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(28,18,8,0.07);
  color: var(--gold-dark);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
}
.matrix-table tbody tr:last-child td { border-bottom: none; }
.matrix-table tbody tr:hover td { background: rgba(212,175,55,0.05); }
.size-label {
  text-align: left !important;
  color: var(--cream) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
}
.matrix-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--cream-45);
  padding-inline: 0.25rem;
}

.services-cta {
  text-align: center;
  padding: 3rem 1rem 0;
  border-top: 1px solid var(--gold-border);
  margin-top: 1rem;
}
.services-cta p {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--cream-75);
  margin-bottom: 1.5rem;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section {
  padding: 6rem 0;
  background: var(--black-deep);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 8px;
  margin-bottom: 2.5rem;
}
.g-tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}
.g-tile:hover { transform: scale(1.02); }
.g-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(28,18,8,0.35));
}

/* Span first tile wider */
.g1 { grid-column: 1 / span 2; grid-row: 1; aspect-ratio: 2/1; }


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

/* =========================================================
   ABOUT
   ========================================================= */
.about-section {
  padding: 6rem 0;
  background: var(--black-warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  display: flex;
  justify-content: center;
}
.about-img-placeholder {
  width: clamp(220px, 38vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--gold-border);
  box-shadow: 0 0 60px rgba(212,175,55,0.12), 0 0 120px rgba(212,175,55,0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
}
.about-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content h2 {
  color: var(--cream);
  margin: 0.5rem 0 1.25rem;
}
.about-content p {
  font-size: 0.95rem;
  color: var(--cream-75);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
  padding-left: 0.25rem;
}
.about-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.av-icon { color: var(--gold); font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }
.about-value strong { display: block; font-size: 0.9rem; color: var(--cream); margin-bottom: 0.15rem; }
.about-value span { font-size: 0.82rem; color: var(--cream-45); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  padding: 6rem 0;
  background: var(--black-deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* --- Form card --- */
.contact-form-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.cf-intro {
  font-size: 0.9rem;
  color: var(--cream-75);
  font-weight: 300;
  margin-bottom: 1.75rem;
}
.cf-form { display: flex; flex-direction: column; gap: 0; }
.cf-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.cf-row label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-45);
}
.cf-req  { color: var(--gold); }
.cf-optional { font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--cream-20); font-size: 0.72rem; }
.cf-row input,
.cf-row textarea {
  background: rgba(28,18,8,0.04);
  border: 1px solid rgba(196,155,48,0.30);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  width: 100%;
  resize: vertical;
}
.cf-row input:focus,
.cf-row textarea:focus {
  border-color: var(--gold);
  background: rgba(28,18,8,0.02);
  box-shadow: 0 0 0 3px rgba(196,155,48,0.12);
}
.cf-row input.cf-error,
.cf-row textarea.cf-error { border-color: #c0392b; }
.cf-row input::placeholder,
.cf-row textarea::placeholder { color: var(--cream-20); }
.cf-err-msg {
  font-size: 0.75rem;
  color: #b03030;
  margin-top: 0.1rem;
}
.cf-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  min-width: 180px;
}

/* Success state */
.cf-success {
  text-align: center;
  padding: 2rem 1rem;
}
.cf-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(196,155,48,0.15);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 1.1rem;
}
.cf-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.cf-success p { font-size: 0.9rem; color: var(--cream-75); }

/* --- Sidebar --- */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { color: var(--gold); margin-bottom: 1rem; font-size: 1.1rem; }
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ci-item { display: flex; flex-direction: column; gap: 0.2rem; }
.ci-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.ci-value { font-size: 0.87rem; color: var(--cream-75); font-weight: 300; }

.contact-book-strip {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}
.contact-book-strip p {
  font-size: 0.9rem;
  color: var(--cream-75);
  font-weight: 300;
}
.booking-note {
  display: block;
  font-size: 0.74rem;
  color: var(--cream-20);
  letter-spacing: 0.04em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--black-deep);
  border-top: 1px solid var(--gold-border);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(28,18,8,0.10);
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--cream-45);
  font-weight: 300;
  max-width: 260px;
  line-height: 1.65;
}
.footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-links h4,
.footer-book h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--cream-45);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-book { display: flex; flex-direction: column; gap: 1rem; }
.footer-newsletter p {
  font-size: 0.8rem;
  color: var(--cream-45);
  margin: 0.35rem 0 0.85rem;
  font-weight: 300;
  line-height: 1.5;
}
.nl-form {
  display: flex;
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  overflow: hidden;
  background: rgba(28,18,8,0.04);
}
.nl-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 0.6rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: var(--cream);
  min-width: 0;
}
.nl-input::placeholder { color: var(--cream-20); }
.nl-btn {
  background: var(--gold);
  border: none;
  color: #1c1208;
  padding: 0 0.9rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0 50px 50px 0;
  transition: background var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.nl-btn:hover { background: var(--gold-light); }
.footer-bottom {
  text-align: center;
  padding: 1.25rem 0;
  font-size: 0.76rem;
  color: var(--cream-45);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { order: -1; }
  .about-img-placeholder { width: clamp(180px, 50vw, 280px); }

  .contact-grid { grid-template-columns: 1fr; }
  .cf-2col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gold-border); padding: 1.25rem 1rem; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--gold-border); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-track-wrap::before, .testi-track-wrap::after { width: 60px; }
  .footer-newsletter { grid-column: 1 / -1; }
}

/* =========================================================
   RESPONSIVE — MOBILE  (≤ 680px)
   ========================================================= */
@media (max-width: 680px) {
  /* ── Nav ── */
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,5,4,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99;
  }
  .main-nav.open { opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; gap: 1.75rem; text-align: center; }
  .nav-link { font-size: 1.1rem; letter-spacing: 0.15em; color: #faf8f5; }
  .nav-toggle { display: flex; z-index: 101; }
  .btn-book-nav { display: none; }
  .nav-book-mobile { display: inline-block; margin-top: 0.5rem; }

  /* ── Hero ── */
  .hero-content { padding: 88px 1.25rem 4rem; }
  .hero-logo { width: clamp(80px, 20vw, 120px); margin-bottom: 1.25rem; }
  .collage-bg { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(6, 1fr); }

  /* ── Section spacing ── */
  .home-services, .home-gallery, .why-us, .testimonials { padding: 3.5rem 0; }
  .cta-banner { padding: 3rem 0; }
  .page-banner-sm { padding: 3.5rem 0 2rem; }
  .gallery-section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 1.75rem; }

  /* ── Trust strip ── */
  .trust-item { padding: 1rem 0.85rem; gap: 0.75rem; }
  .trust-icon svg { width: 18px; height: 18px; }
  .trust-label { font-size: 0.8rem; }
  .trust-sub { font-size: 0.72rem; }

  /* ── Why Us — horizontal card layout ── */
  .why-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .why-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding: 1.25rem;
  }
  .why-icon { flex-shrink: 0; width: 44px; height: 44px; }
  .why-item h3 { font-size: 0.9rem; margin-bottom: 0.25rem; }
  .why-item p { font-size: 0.82rem; }

  /* ── Testimonials ── */
  .testi-card { width: 280px; padding: 1.25rem; }
  .testi-quote { font-size: 0.95rem; }

  /* ── Home service cards ── */
  .service-highlight-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .sh-card-img { height: 130px; }
  .sh-card-body { padding: 0.75rem 0.85rem; }
  .sh-card-name { font-size: 0.85rem; }
  .sh-card-from { font-size: 0.75rem; }

  /* ── CTA banner ── */
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner h2 { font-size: 1.65rem; }
  .cta-banner p { margin-inline: auto; font-size: 0.88rem; }

  /* ── Buttons ── */
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 300px; text-align: center; }

  /* ── Services page ── */
  .service-block { padding: 1.5rem 1.25rem; }
  .service-block-head { flex-direction: column; gap: 1rem; }
  .btn-gold-sm { align-self: flex-start; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .svc-block-img { height: 180px; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .g1 { grid-column: 1 / -1; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { font-size: 0.85rem; }

  /* ── Modal ── */
  .svc-modal-body { padding: 1.25rem 1.25rem 1.75rem; }
  .svc-modal-hero { height: 170px; }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ========================================================= */
@media (max-width: 480px) {
  /* Trust strip → single column */
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--gold-border); }
  .trust-item:nth-child(3) { border-bottom: 1px solid var(--gold-border); }
  .trust-item:last-child { border-bottom: none; }

  /* Page banner headings */
  .page-banner h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }

  /* Service highlight → single column so cards can breathe */
  .service-highlight-grid { grid-template-columns: 1fr; }
  .sh-card-img { height: 200px; }

  /* Quick services grid → single column */
  .quick-grid { grid-template-columns: 1fr; }

  /* Gallery → single column */
  .gallery-grid { grid-template-columns: 1fr; }
  .g1 { grid-column: 1; aspect-ratio: 4/3; }

  /* Testimonials - ensure full bleed */
  .testi-card { width: 260px; padding: 1rem; }
}

@media (max-width: 400px) {
  .hero-content { padding: 80px 1rem 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content { animation: none; }
  .scroll-line { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
