:root {
  --onyx: #14100b;
  --onyx-soft: #1c1611;
  --ivory: #f7f2e9;
  --gold: #c6a15b;
  --gold-light: #f3d99b;
  --bronze: #8c6239;
  --espresso: #3b2a1e;
  --ink: #221b14;
  --line: rgba(198, 161, 91, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Jost', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; margin: 0 0 .4em; color: var(--onyx); }
p { margin: 0 0 1em; max-width: 62ch; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
  margin: 0 0 .3em;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(20, 16, 11, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--ivory); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-weight: 600;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--ivory); font-size: .95rem; opacity: .88; }
.site-nav a:hover { opacity: 1; color: var(--gold-light); }
.site-nav .nav-login {
  border: 1px solid var(--gold); padding: 8px 16px; border-radius: 2px; opacity: 1;
}

/* Hero */
.hero {
  background-size: cover; background-position: center;
  min-height: 88vh; display: flex; align-items: center;
  color: var(--ivory);
}
.hero-inner { max-width: 640px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--ivory); line-height: 1.1; }
.hero-lede { color: #e7ddc9; font-size: 1.08rem; max-width: 46ch; }
.hero-cta { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.btn-gold, .btn-ghost {
  display: inline-block; padding: 13px 26px; font-size: .95rem; border-radius: 2px;
  font-family: 'Jost', sans-serif;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--onyx); font-weight: 600; }
.btn-ghost { border: 1px solid var(--gold); color: var(--ivory); }
.btn-gold:hover { filter: brightness(1.06); }
.btn-ghost:hover { background: rgba(198,161,91,.12); }

/* Strip */
.strip { background: var(--onyx); color: var(--ivory); border-bottom: 1px solid var(--line); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-grid > div {
  padding: 26px 20px; text-align: center; border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.strip-grid > div:first-child { border-left: none; }
.strip-grid strong { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--gold-light); }
.strip-grid span { font-size: .82rem; color: #cfc4ab; }

/* Sections */
.section { padding: 88px 0; }
.section.alt { background: var(--onyx-soft); }
.section.alt h2, .section.alt .about-panel h3 { color: var(--ivory); }
.section.alt p, .section.alt li { color: #d8cdb6; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); max-width: 24ch; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); margin-top: 40px; }
.service-card { background: var(--ivory); padding: 34px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: .5em; }
.service-card p { color: #4a3f30; }

.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.about-list { list-style: none; padding: 0; margin: 20px 0 0; }
.about-list li { padding: 10px 0; border-top: 1px solid var(--line); color: #d8cdb6; }
.about-list li:first-child { border-top: none; }
.about-panel {
  border: 1px solid var(--gold); padding: 30px; background: rgba(198,161,91,.06);
}
.about-panel p { color: #d8cdb6; margin-bottom: .3em; }

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.contact-line { font-size: 1.05rem; margin-bottom: .6em; }
.pwa-box { border: 1px solid var(--bronze); padding: 30px; background: #fbf7ef; }
.pwa-box h3 { font-size: 1.2rem; }
.pwa-box .btn-gold, .pwa-box .btn-ghost { color: var(--onyx); border-color: var(--bronze); margin-top: 10px; margin-right: 10px; }
.pwa-box .btn-ghost { color: var(--onyx); }

.site-footer { background: var(--onyx); color: #9c8f74; padding: 26px 0; font-size: .85rem; text-align: center; }

/* iOS modal */
.ios-modal {
  position: fixed; inset: 0; background: rgba(10,8,5,.7);
  display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px;
}
.ios-modal.open { display: flex; }
.ios-modal-card {
  background: var(--ivory); padding: 30px; max-width: 380px; border-top: 3px solid var(--gold);
}
.ios-modal-card ol { padding-left: 20px; }
.ios-modal-card li { margin-bottom: 10px; }

@media (max-width: 860px) {
  .site-nav a:not(.nav-login) { display: none; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid > div:nth-child(3) { border-left: none; }
  .service-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
}
