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

:root {
  --ink:   #080808;
  --ink-2: #404040;
  --ink-3: #787878;
  --ink-4: #b0b0b0;
  --gold:  #B8933A;
  --bg:    #FAFAF8;
  --line:  rgba(0,0,0,0.08);
  --line2: rgba(0,0,0,0.13);
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'DM Sans', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ── PAGE GRID ── */
.page {
  height: 100dvh;
  display: grid;
  grid-template-rows: 56px 1fr 46px;
  overflow: hidden;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.3px;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

.nav-mid {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .03em;
}

.live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.3; transform:scale(.65); }
}

.nav-svc {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-3);
  text-decoration: none;
  border-bottom: 1px solid var(--line2);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.nav-svc:hover { color: var(--gold); border-color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bg);
  background: var(--ink);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity .2s;
}
.nav-cta:hover { opacity: .78; }

/* ── MAIN ── */
.main {
  display: grid;
  grid-template-columns: 54fr 46fr;
  overflow: hidden;
}

/* ── LEFT ── */
.left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 52px 44px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.index-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(44px, 5.6vw, 82px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: var(--ink);
}
.headline em {
  font-style: italic;
  color: var(--gold);
}

.sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 24px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  padding: 13px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .01em;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.btn-main:hover { background: #9e7d2e; transform: translateY(-1px); }

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
}
.stars { color: var(--gold); letter-spacing: 1px; font-size: 12px; }

/* ── RIGHT ── */
.right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 52px 44px;
  overflow: hidden;
}

.r-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line2);
}

.eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.svc-all-label {
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: .02em;
}

/* ── SERVICES GRID ── */
.svc-grid {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
  padding: 4px 0;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .2s;
  cursor: default;
}
.svc-item:last-child { border-bottom: none; }
.svc-item:hover { padding-left: 5px; }
.svc-item:hover .sn { color: var(--gold); }

.sn {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-4);
  letter-spacing: .04em;
  flex-shrink: 0;
  width: 18px;
  transition: color .2s;
}

.sname {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: -.1px;
}

/* ── RIGHT FOOTER ── */
.r-foot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line2);
}

.r-note {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.65;
}

.trust-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--ink-3);
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 11px;
}
.chip svg { color: var(--gold); }

/* ── FOOTER STRIP ── */
.foot {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 0 52px;
  gap: 0;
}

.foot-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex: 1;
  justify-content: center;
  font-size: 11.5px;
  color: var(--ink-3);
}
.foot-stat strong {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.3px;
}
.plus { font-size: 13px; color: var(--gold); margin-right: 3px; }
.gold-star { color: var(--gold); font-size: 12px; margin-right: 3px; }

.foot-div {
  width: 1px;
  height: 18px;
  background: var(--line2);
  flex-shrink: 0;
}

.foot-copy {
  font-size: 10.5px;
  color: var(--ink-4);
  letter-spacing: .06em;
  flex: 1;
  text-align: right;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  html, body { overflow: auto; }
  .page { height: auto; grid-template-rows: 56px auto 46px; }
  .main { grid-template-columns: 1fr; }
  .left { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 24px; }
  .right { padding: 32px 24px; }
  .nav { padding: 0 24px; }
  .nav-mid { display: none; }
  .foot { padding: 0 24px; gap: 0; }
  .foot-copy { display: none; }
  .headline { font-size: clamp(40px, 10vw, 64px); }
}

@media (max-width: 480px) {
  .headline { font-size: 36px; letter-spacing: -1px; }
  .actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .svc-grid { gap: 0; }
}
