/* ===== Design Tokens ===== */
:root {
  --color-black: #141414;
  --color-cream: #F5F2EA;
  --color-gold: #C9A961;
  --color-gold-light: #D4AF37;
  --color-charcoal: #2A2A2A;
  --font-headline: 'Playfair Display', serif;
  --font-script: 'Alex Brush', cursive;
  --font-body: 'Montserrat', sans-serif;
  --container-width: 1400px;
  --space-section: 6rem;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-charcoal);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-headline);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.script-accent {
  font-family: var(--font-script);
  text-transform: none;
  letter-spacing: normal;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-gold);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Section bands ===== */
.section-black, .section-cream {
  padding: var(--space-section) 0;
}
.section-black {
  background: var(--color-black);
  color: var(--color-cream);
}
.section-cream {
  background: var(--color-cream);
  color: var(--color-charcoal);
}
.section-black h1, .section-black h2, .section-black h3 { color: var(--color-gold); }
.section-cream h1, .section-cream h2, .section-cream h3 { color: var(--color-black); }

.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading .script-accent { display: block; margin-bottom: 0.5rem; }

/* ===== Divider ===== */
.divider { display: flex; justify-content: center; margin: 2rem 0; }
.divider svg { width: 120px; height: 20px; }

/* ===== Leaf accent ===== */
.leaf-accent { display: flex; justify-content: center; opacity: 0.85; }
.leaf-accent svg { width: 60px; height: 32px; }

/* ===== Hero / title bands with background photo ===== */
.hero-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.55) 0%, rgba(20,20,20,0.35) 50%, rgba(20,20,20,0.60) 100%);
  z-index: -1;
}

/* ===== Hero with looping background video ===== */
.hero-video { position: relative; overflow: hidden; isolation: isolate; }
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.55) 0%, rgba(20,20,20,0.35) 50%, rgba(20,20,20,0.60) 100%);
  z-index: -1;
}

/* ===== Hover lift ===== */
.card, .testimonial-card, .before-after-card, .gallery-photo-card, .video-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); }
.testimonial-card:hover, .before-after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.gallery-photo-card:hover .gallery-photo,
.video-card:hover video {
  transform: scale(1.03);
}
.gallery-photo, .video-card video { transition: transform 0.4s ease; }
.before-after-images img { transition: transform 0.4s ease; }
.before-after-images > div:hover img { transform: scale(1.05); }
.before-after-images > div { overflow: hidden; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Buttons ===== */
.btn-gold {
  display: inline-block;
  background: var(--color-gold-light);
  color: var(--color-black);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-gold:hover { background: var(--color-gold); transform: translateY(-2px); }

/* ===== Logo badge ===== */
.logo-badge { width: 64px; height: 64px; }
.logo-badge .badge-text {
  font-family: var(--font-headline);
  font-weight: 700;
  fill: var(--color-gold);
}
.logo-badge circle, .logo-badge path { stroke: var(--color-gold); fill: none; }

/* ===== Header / Nav ===== */
.site-header {
  background: var(--color-black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--color-cream); }
.brand-name {
  font-family: var(--font-headline);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  font-weight: 700;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.75rem; }
.nav-links a {
  color: var(--color-cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--color-gold); }
.nav-phone { color: var(--color-gold-light); font-weight: 600; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-gold);
  border-radius: 2px;
  color: var(--color-gold);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  background: var(--color-black);
  color: var(--color-cream);
  text-align: center;
  padding: 7rem 0;
}
.hero .logo-badge { width: 96px; height: 96px; margin: 0 auto 1.5rem; }
.hero h1 { color: var(--color-gold); margin-bottom: 1rem; }
.hero .subline { max-width: 560px; margin: 1.5rem auto 2.5rem; font-size: 1.05rem; color: var(--color-cream); }

/* ===== Icon circle ===== */
.icon-circle {
  width: 64px;
  height: 64px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.icon-circle i {
  color: var(--color-gold);
  font-size: 28px;
}

/* ===== Cards / grids ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}
.card { text-align: center; padding: 1.5rem; }
.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 0.95rem; }
.card .btn-gold { margin-top: 1rem; }

.checklist { text-align: left; margin: 1.25rem 0; }
.checklist li { display: flex; gap: 0.6rem; margin-bottom: 0.5rem; font-size: 0.95rem; }
.checklist li::before { content: "\2713"; color: var(--color-gold); font-weight: 700; }

/* Centered content column for service sections */
.service-col {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ===== CTA band ===== */
.cta-band { text-align: center; }
.cta-band p { max-width: 480px; margin: 0 auto 1.5rem; }

/* ===== Testimonials ===== */
.testimonial-card {
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.stars { color: var(--color-gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.2em; }
.testimonial-card p { font-style: italic; margin-bottom: 1rem; }
.testimonial-card .attribution { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-gold); }

/* ===== Gallery placeholders ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.gallery-placeholder {
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
}
.gallery-placeholder.video { aspect-ratio: 16 / 9; }

.gallery-photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.gallery-photo-card {
  background: var(--color-black);
  border-radius: 16px;
  overflow: hidden;
  padding: 0.6rem;
  text-align: center;
}
.gallery-photo-card figcaption {
  margin-top: 0.6rem;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
}

/* ===== Before / After cards ===== */
.before-after-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 2.5rem; align-items: start; }
.before-after-card {
  background: var(--color-black);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 16px;
  overflow: hidden;
}
.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-gold);
}
.before-after-images > div { position: relative; }
.before-after-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.ba-label {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--color-gold-light);
  color: var(--color-black);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.before-after-card h3 {
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--color-cream);
}
.before-after-card.single img { width: 100%; height: 260px; object-fit: cover; display: block; }

/* ===== Video grid ===== */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; align-items: start; }
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
.video-card figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
}

/* ===== Team / behind the scenes ===== */
.team-photo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.finishing-touches-grid { grid-template-columns: repeat(5, 1fr) !important; }
@media (max-width: 768px) { .finishing-touches-grid { grid-template-columns: repeat(2, 1fr) !important; } }

.team-photo-block > img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 97, 0.35);
}
.team-small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.team-small-photo {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media (max-width: 768px) {
  .team-photo-block { grid-template-columns: 1fr; }
  .before-after-images img { height: 200px; }
}

/* ===== Brand logo image ===== */
.logo-mark-img { width: 44px; height: 44px; border-radius: 50%; display: block; }
.hero .logo-mark-img, .site-footer .logo-mark-img { width: 90px; height: 90px; margin: 0 auto 1.5rem; }
.site-footer .logo-full-img { max-width: 300px; width: 100%; margin: 0 auto 1.5rem; display: block; }

/* ===== Forms ===== */
.contact-form-col { display: flex; flex-direction: column; }
.contact-form {
  display: grid;
  gap: 1.25rem;
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.contact-form[hidden] { display: none; }
.form-row { display: grid; gap: 0.4rem; }
.form-row label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-charcoal); opacity: 0.75; }
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 10px;
  background: var(--color-cream);
  color: var(--color-charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.honeypot-field { position: absolute; left: -9999px; }
.form-status { font-size: 0.9rem; margin-top: 0.5rem; }
.form-status.success { color: #2e7d32; }
.form-status.error { color: #c62828; }

/* ===== Owner bio block ===== */
.owner-bio-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: start;
}
.owner-photo-wrap {
  position: sticky;
  top: 2rem;
}
.owner-photo {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
  display: block;
}
.owner-bio-text { color: var(--color-cream); }
.owner-bio-text p { font-size: 0.97rem; line-height: 1.75; }
.owner-tagline {
  font-family: var(--font-headline);
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.owner-sig {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-cream);
  line-height: 1.6;
}
.owner-sig span { font-weight: 400; font-size: 0.85rem; opacity: 0.75; }
@media (max-width: 900px) {
  .owner-bio-block { grid-template-columns: 1fr; gap: 2rem; }
  .owner-photo-wrap { position: static; max-width: 360px; margin: 0 auto; }
}

/* ===== Contact details card ===== */
.contact-details-card {
  background: var(--color-black);
  color: var(--color-cream);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.contact-details-card h2 { color: var(--color-gold); font-size: 1.1rem; margin-bottom: 1.5rem; }
.contact-detail-row { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.contact-detail-row:last-child { margin-bottom: 0; }
.contact-detail-row .icon-circle { width: 44px; height: 44px; margin: 0; flex-shrink: 0; }
.contact-detail-row .icon-circle i { font-size: 18px; }
.contact-detail-row a { color: var(--color-cream); }
.contact-detail-row a:hover { color: var(--color-gold); }
.contact-tip {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,169,97,0.25);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(245,240,230,0.85);
}
.contact-no-judgment {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(201,169,97,0.08);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245,240,230,0.85);
}
.contact-no-judgment strong { color: var(--color-gold); }

/* ===== Footer ===== */
.site-footer {
  background: var(--color-black);
  color: var(--color-cream);
  padding: 4rem 0 2rem;
  text-align: center;
}
.site-footer .logo-badge { width: 80px; height: 80px; margin: 0 auto 1rem; }
.site-footer .script-accent { margin-bottom: 2rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links a:hover { color: var(--color-gold); }
.footer-contact { font-size: 0.9rem; margin-bottom: 2rem; }
.footer-contact a { color: var(--color-gold-light); }
.copyright { font-size: 0.75rem; opacity: 0.6; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-black);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.25);
  }
  :root { --space-section: 3.5rem; }
  .video-testimonial-block { grid-template-columns: 1fr; }
}

/* ===== Video popup card ===== */
.video-testimonial-block { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .video-testimonial-block { grid-template-columns: 1fr; } }
.mini-video-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}
.mini-video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.testimonial-stack { display: flex; flex-direction: column; gap: 0.85rem; justify-content: center; }
.testimonial-stack .testimonial-card { text-align: left; padding: 1rem 1.25rem; }
.testimonial-stack .stars { font-size: 0.85rem; margin-bottom: 0.4rem; }
.testimonial-stack .testimonial-card p { font-size: 0.85rem; margin-bottom: 0.4rem; line-height: 1.5; }
.testimonial-stack .attribution { font-size: 0.75rem; }

/* ===== Contact page two-column grid ===== */
.contact-grid { grid-template-columns: 1.4fr 1fr; align-items: start; gap: 2.5rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
