/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:          #faf9f7;
  --bg-soft:     #f5f3f0;
  --card:        #ffffff;
  --text:        #111110;
  --muted:       #7a776f;
  --muted-light: #b0ada6;
  --line:        rgba(17,17,16,0.10);
  --line-strong: rgba(17,17,16,0.18);
  --accent:      #c5a882;
  --accent-dark: #a8895f;
  --white:       #ffffff;
  --shadow:      0 2px 12px rgba(17,17,16,0.06);
  --shadow-lg:   0 12px 48px rgba(17,17,16,0.10);
  --radius:      0px;
  --radius-lg:   0px;
  --max:         1200px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.015em;
  background: var(--bg);
  color: var(--text);
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  max-width: 14ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.serif-title {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--muted-light);
  flex-shrink: 0;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,249,247,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  z-index: 20;
}

.mobile-booking {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  z-index: 20;
}

.mobile-booking svg {
  width: 18px;
  height: 18px;
  display: block;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.15s ease;
}

.menu-toggle span    { top: 21px; }
.menu-toggle::before { top: 15px; }
.menu-toggle::after  { top: 27px; }

.menu-toggle.active span    { opacity: 0; }
.menu-toggle.active::before { transform: translateY(6px)  rotate(45deg); }
.menu-toggle.active::after  { transform: translateY(-6px) rotate(-45deg); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a,
.footer-links a,
.footer-social a,
.text-link {
  transition: color 0.18s ease;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-social a:hover,
.text-link:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}

.btn-primary {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}
.btn-primary:hover {
  background: #2a2a28;
  border-color: #2a2a28;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-secondary:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #1a1814;
}

/* Full-bleed image via <img> tag */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  z-index: 0;
  opacity: 0.88;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(12,11,10,0.10) 0%,
    rgba(12,11,10,0.28) 40%,
    rgba(12,11,10,0.70) 72%,
    rgba(12,11,10,0.90) 100%
  );
}

/* Content above image + overlay */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 92vh;
  padding-top: 100px;
  padding-bottom: 0;
}

.hero-copy {
  padding-bottom: 36px;
  max-width: 700px;
}

.eyebrow-light {
  color: rgba(255,255,255,0.50);
}
.eyebrow-light::before {
  background: rgba(255,255,255,0.28);
}

/* Override h1 for hero — more controlled size */
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.96;
  max-width: 12ch;
  color: var(--white);
}

.hero-copy p {
  max-width: 420px;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.60);
  margin: 22px 0 0;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

/* White-fill CTA on dark bg */
.btn-primary-light {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary-light:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

/* Ghost outline on dark bg */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.50);
}

/* Stat bar at bottom of hero */
.hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
}

.hero-stat {
  flex: 1;
  padding: 0 24px;
  text-align: center;
}
.hero-stat:first-child { padding-left: 24px; }

.hero-stat strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 3px;
}

.hero-stat span {
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.03em;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Hide old hero elements */
.hero-visual, .visual-card, .hero-frame,
.floating-card, .hero-note, .hero-shell { display: none; }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.section-head p {
  margin: 0;
  max-width: 380px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 400;
  flex-shrink: 0;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.editorial-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 2px;
}

.editorial-head h2,
.editorial-head .serif-title {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}

.editorial-head p {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 8px;
  font-weight: 400;
}

.service-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.service-item {
  display: flex;
  flex-direction: column;
  background: var(--card);
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-soft);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-item:hover .service-img {
  transform: scale(1.04);
}

.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: var(--text);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-content {
  padding: 18px 20px 22px;
  border: 1px solid var(--line);
  border-top: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-time {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.service-content h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.service-content p {
  font-size: 0.88rem;
  color: var(--text);
  margin: 0 0 18px;
  font-weight: 400;
  line-height: 1.65;
  flex: 1;
}

.service-link {
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.service-link:hover {
  color: var(--muted);
  border-color: var(--muted);
}

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 32px;
}

.icon {
  width: 32px;
  height: 1px;
  background: var(--text);
  margin-bottom: 28px;
}

.card h3 {
  margin: 0 0 10px;
}

.card p,
.contact-list li,
.hours li {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 400;
}

/* ─── GRIDS ──────────────────────────────────────────────── */
.service-grid { display: grid; gap: 2px; }
.trust-grid   { display: grid; gap: 2px; grid-template-columns: repeat(3, 1fr); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2px;
  align-items: stretch;
}

.service-card { min-height: 200px; }
.trust-card   { min-height: 200px; border-top: 2px solid var(--text); }

/* ─── HIRING ─────────────────────────────────────────────── */
.hiring-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--text);
  color: var(--white);
  padding: 64px 56px;
}

.hiring-band .eyebrow {
  color: rgba(255,255,255,0.45);
}
.hiring-band .eyebrow::before {
  background: rgba(255,255,255,0.25);
}

.hiring-band h2 {
  margin: 0 0 14px;
  color: var(--white);
}

.hiring-band p {
  margin: 0;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  font-size: 0.9rem;
  font-weight: 300;
}

.hiring-band .btn-secondary {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.hiring-band .btn-secondary:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.hiring-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.contact-list,
.hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.contact-list strong,
.hours strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list span,
.hours span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
}

.map-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.map-embed {
  flex: 1;
  min-height: 340px;
  overflow: hidden;
  background: var(--bg-soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 340px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line-strong);
  background: var(--bg);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: var(--muted);
  text-transform: uppercase;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  justify-content: flex-end;
}

.footer-links a:last-child { opacity: 0.65; }
.footer-links a:last-child:hover { opacity: 1; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-social svg {
  width: 14px;
  height: 14px;
}

/* ─── MODALS ─────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.modal.is-open { display: block; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,16,0.55);
  backdrop-filter: blur(3px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 760px);
  margin: min(6vh, 48px) auto 0;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  box-shadow: 0 32px 80px rgba(17,17,16,0.18);
  overflow: hidden;
  max-height: 88vh;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  padding: 48px 40px 40px;
  overflow: auto;
  max-height: 88vh;
}

.privacy-modal .modal-content,
.hiring-modal .modal-content { background: var(--bg); }

.hiring-modal .modal-dialog {
  width: min(92vw, 520px);
  margin: min(10vh, 70px) auto 0;
}

.hiring-modal .modal-content { text-align: center; }

.modal-eyebrow {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.modal h2, .modal h3 { margin: 0 0 10px; }
.modal h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.modal h3 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 28px; }

.modal p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 400;
}

.modal-meta {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.modal-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.modal-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.privacy-list {
  padding-left: 18px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 400;
}

.privacy-list li { margin-bottom: 8px; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .contact-grid { grid-template-columns: 1fr; }

  .hiring-band {
    grid-template-columns: 1fr;
    padding: 48px 36px;
    gap: 28px;
  }

  .service-editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid              { grid-template-columns: repeat(3, 1fr); }
  .hiring-actions          { justify-content: flex-start; }

  .hero-stat-row { flex-wrap: wrap; gap: 16px; }
  .hero-stat     { flex: 0 0 auto; padding: 0 20px; }
  .hero-stat:first-child { padding-left: 0; }
}

@media (max-width: 920px) {
  .menu-toggle    { display: inline-flex; }
  .mobile-booking { display: inline-flex; }

  .nav-wrap {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 12px;
  }

  .mobile-booking { grid-column: 1; justify-self: start; }
  .brand          { grid-column: 2; justify-self: center; justify-content: center; width: 100%; }
  .menu-toggle    { grid-column: 3; justify-self: end; }

  .nav {
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line-strong);
    padding: 16px 24px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    z-index: 999;
    gap: 0;
  }

  .nav.active { display: flex; }

  .nav-links,
  .nav-cta { flex-direction: column; align-items: stretch; }

  .nav-links { gap: 0; }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta { margin-top: 16px; gap: 8px; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  h1 { max-width: none; }

  .hero { min-height: 85vh; }
  .hero-inner { min-height: 85vh; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 24px)); }

  .nav-wrap { min-height: 60px; gap: 10px; grid-template-columns: 44px 1fr 44px; }

  .brand-logo { height: 44px; max-width: 150px; }

  .hero       { min-height: 100svh; }
  .hero-inner { min-height: 100svh; padding-top: 80px; }
  .section    { padding: 56px 0; }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px;
  }

  .section-head p { max-width: none; }

  .hero-actions,
  .hiring-actions { flex-direction: column; }

  .hero-actions .btn,
  .hiring-actions .btn,
  .btn-primary-light,
  .btn-ghost { width: 100%; justify-content: center; }

  .hero-stat-row {
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
  }

  .hero-stat         { padding: 0; }
  .hero-stat-divider { display: none; }

  .trust-grid  { grid-template-columns: 1fr; }

  .card        { padding: 22px; }
  .hiring-band { padding: 32px 22px; }

  .service-editorial-grid { grid-template-columns: 1fr; gap: 2px; }
  .editorial-head         { padding-bottom: 18px; margin-bottom: 2px; }

  .footer-shell  { flex-direction: column; align-items: flex-start; }
  .footer-right  { width: 100%; align-items: flex-start; }
  .footer-links,
  .footer-social { gap: 12px 16px; justify-content: flex-start; }

  .modal-dialog  { width: min(94vw, 760px); margin-top: 16px; }
  .modal-content { padding: 36px 20px 24px; }
}
