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

:root {
  --gold: #C9A96E;
  --gold-light: #DBBF8C;
  --gold-glow: rgba(201, 169, 110, 0.25);
  --gold-soft: rgba(201, 169, 110, 0.08);
  --bg-deep: #080604;
  --bg-dark: #0D0B08;
  --bg-card: #13110D;
  --bg-card-hover: #1A1710;
  --text-cream: #F0E6D3;
  --text-light: #C8B99A;
  --text-muted: #8A7D6B;
  --warm-overlay: rgba(30, 20, 8, 0.6);
  --serif: 'Playfair Display', Georgia, serif;
  --serif-alt: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Raleway', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-light);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--gold-light); }

/* =================== AMBIENT BG EFFECTS =================== */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  top: -200px; left: -100px;
  background: radial-gradient(circle, #C9A96E, transparent 70%);
}
.glow-2 {
  top: 50%; right: -200px;
  background: radial-gradient(circle, #8B6914, transparent 70%);
}
.glow-3 {
  bottom: 10%; left: 20%;
  background: radial-gradient(circle, #C9A96E, transparent 70%);
  opacity: 0.05;
}

/* =================== NAVIGATION =================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}
nav.scrolled {
  padding: 0.8rem 0;
  background: rgba(8, 6, 4, 0.92);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(201,169,110,0.06);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-cream);
  letter-spacing: 0.06em;
}
.logo span {
  font-family: var(--serif-alt);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 0.6rem 1.8rem !important;
  border: 1px solid rgba(201,169,110,0.4) !important;
  border-radius: 30px !important;
  color: var(--gold) !important;
  transition: all 0.4s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg-deep) !important;
  box-shadow: 0 0 25px rgba(201,169,110,0.3) !important;
}
.nav-blog {
  color: var(--text-muted);
}
.nav-blog:hover {
  color: var(--gold);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.burger span {
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.7) contrast(1.1);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 50%, rgba(201,169,110,0.06) 0%, transparent 70%),
    linear-gradient(to right, rgba(8,6,4,0.85) 0%, rgba(8,6,4,0.4) 50%, rgba(8,6,4,0.7) 100%),
    linear-gradient(to top, var(--bg-deep) 0%, transparent 30%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
}
.hero-text { padding-right: 3rem; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.hero-label::before {
  content: '';
  width: 35px;
  height: 1px;
  background: var(--gold);
}
.hero-label span {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text-cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--serif-alt);
  font-weight: 300;
}
.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 1rem; align-items: center; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.4s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.35);
  color: var(--bg-deep);
}
.btn-gold svg { width: 16px; height: 16px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.4s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero floating image */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-frame {
  position: relative;
  width: 380px;
  height: 500px;
  border-radius: 200px 200px 30px 30px;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.15);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(201,169,110,0.08),
    inset 0 0 80px rgba(201,169,110,0.03);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.85);
}
.hero-img-ring {
  position: absolute;
  width: 420px;
  height: 540px;
  border-radius: 220px 220px 40px 40px;
  border: 1px solid rgba(201,169,110,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-float-badge {
  position: absolute;
  bottom: 60px;
  right: -30px;
  background: rgba(13,11,8,0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.float-badge-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-badge-icon svg { width: 20px; height: 20px; fill: var(--bg-deep); }
.float-badge-text span { display: block; }
.float-badge-text .fbt-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.float-badge-text .fbt-value {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text-cream);
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-down span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(201,169,110,0.3);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: mouseScroll 2s infinite;
}
@keyframes mouseScroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* =================== SECTION STYLES =================== */
.section-pad {
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--text-cream);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 550px;
  line-height: 1.8;
}
.gold-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* =================== WELCOME =================== */
.welcome {
  background: var(--bg-dark);
  border-top: 1px solid rgba(201,169,110,0.04);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.welcome-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.welcome-img {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.08);
}
.welcome-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  transition: all 0.6s;
}
.welcome-img:hover img {
  filter: brightness(0.8) saturate(0.9);
  transform: scale(1.03);
}
.welcome-img:first-child {
  height: 320px;
  border-radius: 20px 20px 20px 8px;
}
.welcome-img:nth-child(2) {
  height: 320px;
  margin-top: 3rem;
  border-radius: 20px 20px 8px 20px;
}
.welcome-stat {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,11,8,0.92);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 16px;
  padding: 1rem 2rem;
  display: flex;
  gap: 2.5rem;
  z-index: 2;
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
}
.stat-item .stat-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.welcome-text .section-desc { margin-bottom: 2rem; }

/* =================== SERVICES =================== */
.services-section {
  background: var(--bg-deep);
}
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }
.services-header .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.services-header .section-desc {
  margin: 0 auto;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.service-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 440px;
  cursor: pointer;
  border: 1px solid rgba(201,169,110,0.06);
  transition: all 0.5s;
  display: block;
}
.service-card:hover {
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,169,110,0.06);
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.7);
  transition: all 0.8s;
}
.service-card:hover img {
  filter: brightness(0.3) saturate(0.5);
  transform: scale(1.06);
}
.service-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(8,6,4,0.92) 0%, rgba(8,6,4,0.3) 50%, transparent 100%);
}
.sc-number {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold);
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-cream);
  margin-bottom: 0.5rem;
}
.service-card .sc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.service-card:hover .sc-desc {
  max-height: 100px;
  opacity: 1;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s 0.1s;
}
.service-card:hover .sc-link {
  opacity: 1;
  transform: translateY(0);
}
.sc-link-arrow {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.3s;
}
.sc-link-arrow::after {
  content: '';
  position: absolute;
  right: -1px; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* =================== QUOTE =================== */
.quote-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--bg-dark);
}
.quote-bg-img {
  position: absolute;
  inset: 0;
}
.quote-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.15) saturate(0.5);
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.04), transparent 70%);
}
.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: -1.5rem;
}
.quote-content blockquote {
  font-family: var(--serif-alt);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-cream);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.quote-content cite {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* =================== EXPERIENCE / FEATURES =================== */
.experience-section {
  background: var(--bg-deep);
}
.experience-header {
  text-align: center;
  margin-bottom: 4rem;
}
.experience-header .section-label { justify-content: center; }
.experience-header .section-label::before { display: none; }
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.06);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  border-color: rgba(201,169,110,0.12);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.feature-card:hover::before { opacity: 1; }
.fc-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.fc-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-cream);
  margin-bottom: 0.8rem;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =================== CTA =================== */
.cta-section {
  padding: 6rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner .section-label { justify-content: center; }
.cta-inner .section-label::before { display: none; }
.cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--text-cream);
  margin-bottom: 1rem;
}
.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* =================== FOOTER =================== */
footer {
  padding: 4rem 0 2rem;
  background: var(--bg-deep);
  border-top: 1px solid rgba(201,169,110,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 340px;
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-cream);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.83rem;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

/* =================== ANIMATIONS =================== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.35s; }

/* =================== RESPONSIVE (main page) =================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; min-height: auto; padding-top: 10rem; padding-bottom: 5rem; }
  .hero-text { padding-right: 0; }
  .hero-label { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
  .scroll-down { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { height: 380px; }
  .service-card .sc-desc { max-height: none; opacity: 1; }
  .sc-link { opacity: 1; transform: none; }
  .welcome-grid { grid-template-columns: 1fr; gap: 3rem; }
  .welcome-images { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: rgba(13,11,8,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.4s;
    border-left: 1px solid rgba(201,169,110,0.06);
  }
  .nav-links.open { right: 0; }
  .features-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .welcome-stat { gap: 1.5rem; padding: 0.8rem 1.2rem; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 340px; }
  .hero-buttons { flex-direction: column; }
}

/* =================== PAGE HEADER (inner pages) =================== */
.page-header {
  position: relative;
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.page-header-bg {
  position: absolute;
  inset: 0;
}
.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.6);
}
.page-header-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201,169,110,0.04), transparent 60%),
    linear-gradient(to top, var(--bg-deep) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(8,6,4,0.6) 0%, transparent 30%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-header-content .breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.page-header-content .breadcrumb a { color: var(--text-muted); }
.page-header-content .breadcrumb a:hover { color: var(--gold); }
.page-header-content .breadcrumb .sep { margin: 0 0.5rem; color: rgba(201,169,110,0.3); }
.page-header-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--text-cream);
  margin-bottom: 0.8rem;
}
.page-header-content h1 em {
  color: var(--gold);
  font-family: var(--serif-alt);
  font-weight: 300;
  font-style: italic;
}
.page-header-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* =================== SERVICE DETAIL =================== */
.service-detail { padding: 5rem 0; background: var(--bg-dark); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.sd-image { border-radius: 20px; overflow: hidden; border: 1px solid rgba(201,169,110,0.08); }
.sd-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
}
.sd-text h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-cream);
  margin-bottom: 1rem;
}
.sd-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
}
.sd-text h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-cream);
  margin: 2rem 0 1rem;
}
.sd-list {
  list-style: none;
  margin-bottom: 2rem;
}
.sd-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.06);
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.sd-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.sd-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.sd-info-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.06);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}
.sd-info-card .sd-ic-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.sd-info-card .sd-ic-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
}

/* Other services nav */
.other-services {
  padding: 5rem 0;
  background: var(--bg-deep);
}
.other-services-header {
  text-align: center;
  margin-bottom: 3rem;
}
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.os-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  display: block;
  border: 1px solid rgba(201,169,110,0.06);
  transition: all 0.5s;
}
.os-card:hover {
  border-color: rgba(201,169,110,0.15);
  transform: translateY(-3px);
}
.os-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.6);
  transition: all 0.6s;
}
.os-card:hover img { filter: brightness(0.3); transform: scale(1.05); }
.os-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(8,6,4,0.9) 0%, transparent 60%);
}
.os-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text-cream);
  margin-bottom: 0.3rem;
}
.os-card .os-link {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =================== TARIFS PAGE =================== */
.tarifs-section { padding: 5rem 0; background: var(--bg-dark); }
.tarifs-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.tarifs-intro p {
  color: var(--text-muted);
  line-height: 1.8;
}
.tarif-category {
  margin-bottom: 3rem;
}
.tarif-category h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-cream);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.tarif-category h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.tarif-category h2 a:hover {
  color: var(--gold);
}
.tarif-name a {
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px dotted rgba(201,169,110,0.3);
  transition: all 0.3s;
}
.tarif-name a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tarif-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.04);
  align-items: center;
}
.tarif-row:last-child { border-bottom: none; }
.tarif-name {
  font-size: 0.95rem;
  color: var(--text-light);
}
.tarif-name span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.tarif-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.tarif-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  text-align: right;
  min-width: 80px;
}
.tarif-note {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}
.tarif-note p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
}
.tarif-note strong {
  color: var(--gold);
  font-weight: 400;
}

/* =================== CONTACT PAGE =================== */
.contact-section { padding: 5rem 0; background: var(--bg-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-cream);
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.92rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.06);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.contact-detail-text .cdt-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-detail-text .cdt-value {
  font-size: 0.95rem;
  color: var(--text-cream);
  margin-top: 0.2rem;
}
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: 24px;
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-cream);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 12px;
  color: var(--text-cream);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select option {
  background: var(--bg-card);
  color: var(--text-cream);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.btn-gold-full {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.4s;
  margin-top: 0.5rem;
  text-align: center;
}
.btn-gold-full:hover {
  box-shadow: 0 8px 30px rgba(201,169,110,0.35);
  transform: translateY(-2px);
}

/* =================== RESPONSIVE (inner pages) =================== */
@media (max-width: 1024px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .sd-info-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .other-services-grid { grid-template-columns: 1fr; }
  .tarif-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .tarif-price { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .sd-info-cards { grid-template-columns: 1fr; }
}
