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

:root {
  --bg: #100f0b;
  --bg-light: #1a1915;
  --bg-card: #1f1e19;
  --gold: #b9a066;
  --gold-light: #d4bc82;
  --gold-dark: #8a7549;
  --text: #e8dcc8;
  --text-muted: #9a8e77;
  --font-display: Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ---------- TYPOGRAPHY ---------- */
.hero h1 {
  font-family: 'Cinzel', Georgia, serif;
}

/* ---------- ORNAMENTAL DIVIDER ---------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem auto;
  max-width: 400px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark));
}

.section-divider::after {
  background: linear-gradient(to left, transparent, var(--gold-dark));
}

.section-divider span {
  color: var(--gold);
  font-size: 1.3rem;
}

/* ---------- HEADER / NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 15, 11, 0.97);
  border-bottom: 1px solid var(--gold-dark);
  backdrop-filter: blur(6px);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-text .brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav-logo-text .tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--bg) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern,
.hero-noise {
  display: none;
}

.hero-fleur {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1.5rem;
  letter-spacing: 1.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.hero h1 span {
  color: var(--text);
  font-weight: 400;
  font-size: 0.72em;
  display: block;
  letter-spacing: 0.18em;
  margin-top: 0.2em;
  text-transform: uppercase;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 1rem auto 2.5rem;
  letter-spacing: 0.02em;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-phone {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-family: var(--font-display);
}

.hero-phone a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-phone a:hover {
  color: var(--gold-light);
}


/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background 0.2s, border-color 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gold-dark);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ---------- SECTION SHARED ---------- */
section {
  padding: 5rem 1.5rem;
  position: relative;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-title p {
  color: var(--text-muted);
  font-style: italic;
  font-size: 1.05rem;
}



/* ---------- ABOUT ---------- */
#about {
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-text .big-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  border-left: 3px solid var(--gold-dark);
  padding-left: 1.1rem;
  margin: 1.5rem 0;
  line-height: 1.7;
}

.about-cta-phone {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

.about-cta-phone a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.about-cta-phone a:hover {
  color: var(--gold-light);
}

/* Double-border image frame */
.about-img-frame {
  position: relative;
  display: inline-block;
  max-width: 420px;
  width: 100%;
}

.about-img-frame img {
  width: 100%;
  display: block;
  border: 1px solid var(--gold-dark);
  position: relative;
  z-index: 1;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(185,160,102,0.25);
  z-index: 0;
  pointer-events: none;
}

.about-img-frame::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(185,160,102,0.12);
  z-index: 0;
  pointer-events: none;
}

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

.about-fleur-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  color: var(--gold-dark);
  font-size: 1.4rem;
}

/* ---------- SERVICES ---------- */
#services {
  background: var(--bg);
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(185,160,102,0.15);
  padding: 2rem 1.5rem;
  text-align: center;
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin: 0 auto 1rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-card--ask {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-card--ask p {
  font-style: italic;
}

/* ---------- BEFORE / AFTER SLIDER ---------- */
#gallery {
  background: var(--bg);
}

.slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.comparison-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--gold-dark);
  aspect-ratio: 16/9;
  background: #000;
}

.comparison-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-after {
  clip-path: inset(0 50% 0 0);
}

.comparison-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--gold);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 2px 14px rgba(0,0,0,0.6);
}

.comparison-handle::before,
.comparison-handle::after {
  content: '';
  border: 6px solid transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.comparison-handle::before {
  border-right-color: var(--bg);
  right: calc(50% + 5px);
}

.comparison-handle::after {
  border-left-color: var(--bg);
  left: calc(50% + 5px);
}

.comparison-label {
  position: absolute;
  bottom: 12px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(16,15,11,0.8);
  color: var(--gold);
  padding: 4px 12px;
  z-index: 4;
  pointer-events: none;
}

.label-before { left: 14px; }
.label-after  { right: 14px; }

.slider-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.85rem;
  font-style: italic;
}

/* ---------- REVIEWS ---------- */
#reviews {
  background: var(--bg);
  padding: 5rem 0;
  z-index: 1;
}

#reviews .section-title {
  padding: 0 1.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(185,160,102,0.15);
  padding: 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.12em;
}

.review-text {
  color: var(--text);
  font-size: 0.93rem;
  font-style: italic;
  margin-bottom: 0.85rem;
  line-height: 1.65;
  flex: 1;
}

.review-author {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(185,160,102,0.2);
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
}

.footer-fleur {
  font-size: 1.6rem;
  color: var(--gold-dark);
  letter-spacing: 1.4rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.footer-tagline {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-phone a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-phone a:hover {
  color: var(--gold-light);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 2rem;
  letter-spacing: 0.06em;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 700px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(16, 15, 11, 0.99);
    flex-direction: column;
    padding: 0.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--gold-dark);
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(185,160,102,0.08);
    font-size: 0.78rem;
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.75rem !important;
    border-bottom: none !important;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
  }

  .hero-fleur {
    letter-spacing: 0.8rem;
    font-size: 1.6rem;
  }

  #about, #gallery {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.8rem 1.4rem;
    font-size: 0.78rem;
  }
}
