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

:root {
  --charcoal: #2C2520;
  --cream: #FAF7F2;
  --gold: #B8975A;
  --taupe: #8B7A68;
  --gold-light: rgba(184, 151, 90, 0.12);
  --gold-border: rgba(184, 151, 90, 0.35);
}

body { background: var(--cream); color: var(--charcoal); font-family: 'Jost', sans-serif; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  border-bottom: 1px solid var(--gold-border);
}

.nav-logo { display: flex; flex-direction: column; gap: 2px; color: inherit; }
.nav-logo-primary { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: var(--gold); letter-spacing: 0.04em; }
.nav-logo-sub { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); }

.nav-back { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--charcoal); transition: color 0.2s; }
.nav-back:hover { color: var(--gold); }

.nav-cta { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 10px 24px; background: none; cursor: pointer; transition: all 0.3s; }
.nav-cta:hover { background: var(--gold); color: var(--charcoal); }

/* HERO */
.service-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 100px;
  background: var(--charcoal);
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 37, 32, 0.88) 0%,
    rgba(44, 37, 32, 0.45) 45%,
    rgba(44, 37, 32, 0.12) 100%
  );
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.service-hero-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.service-hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 20px;
}

.service-hero-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 242, 0.7);
  font-style: italic;
}

/* BODY */
.service-body {
  background: var(--cream);
  padding: 100px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.gold-rule { width: 48px; height: 1px; background: var(--gold); margin-bottom: 40px; }

.service-body-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.service-body-detail {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--taupe);
  margin-bottom: 48px;
}

.btn-gold {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: opacity 0.3s;
  display: inline-block;
}

.btn-gold:hover { opacity: 0.85; }

.view-all {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.2s;
}
.view-all:hover { color: var(--gold); }

/* FOOTER */
.service-footer {
  background: var(--charcoal);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.service-footer-links { display: flex; gap: 32px; }
.service-footer-links a { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,247,242,0.6); transition: color 0.2s; }
.service-footer-links a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 767px) {
  .nav { padding: 0 24px; height: 68px; }
  .nav-back { display: none; }
  .nav-logo-sub { display: none; }
  .service-hero { padding: 0 24px 60px; min-height: 65vh; }
  .service-hero-name { font-size: clamp(38px, 10vw, 60px); }
  .service-body { padding: 60px 24px; }
  .service-footer { padding: 40px 24px; flex-direction: column; gap: 24px; text-align: center; }
  .service-footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
}
