:root {
  --ivory: #f5f0e7;
  --paper: #fffdf8;
  --ink: #191919;
  --charcoal: #262626;
  --gray: #6f6c67;
  --line: rgba(25, 25, 25, 0.14);
  --gold: #b89a5d;
  --gold-light: #d8c08a;
  --shadow: 0 24px 60px rgba(18, 18, 18, 0.12);
  --radius: 2px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, select { font: inherit; }

button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--ivory);
  border-radius: 50%;
  padding: 5px;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 1.08rem;
  letter-spacing: .01em;
}

.brand small {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .68rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
}

.main-nav > a {
  position: relative;
  padding: 12px 0;
}

.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 9px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-dark {
  background: var(--ink);
  color: white;
}

.button-gold {
  background: var(--gold);
  color: #111;
}

.button-ghost {
  border-color: rgba(255,255,255,.45);
  color: white;
}

.button-outline {
  border-color: var(--line);
  background: transparent;
}

.button-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: #171717;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 32%, rgba(184,154,93,.22), transparent 22%),
    linear-gradient(120deg, rgba(255,255,255,.05), transparent 35%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -120px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid rgba(216,192,138,.23);
}

.hero-pattern::before,
.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 70px;
  border: 1px solid rgba(216,192,138,.18);
}

.hero-pattern::after { inset: 140px; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 90px;
  align-items: center;
  padding: 110px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .75rem;
  font-weight: 700;
}

.hero h1,
.section h2,
.booking-dialog h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.03rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-note {
  margin: 22px 0 0;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
}

.hero-card {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  padding: 36px;
  box-shadow: var(--shadow);
}

.hero-card-mark {
  width: 112px;
  height: 112px;
  background: var(--ivory);
  padding: 8px;
  border-radius: 50%;
  margin-bottom: 30px;
}

.hero-card p {
  margin: 0 0 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
}

.hero-card > a {
  display: block;
  font-size: 1.05rem;
  margin: 7px 0;
}

.rating-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.rating-row > span:first-child {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 2.2rem;
}

.stars {
  color: var(--gold-light);
  letter-spacing: .12em;
}

.rating-row small {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.54);
}

.trust-strip {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 2px;
}

.trust-grid > div:first-child { border-left: 1px solid var(--line); }

.trust-grid strong { font-size: .95rem; }

.trust-grid span { color: var(--gray); font-size: .78rem; }

.section { padding: 120px 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.section h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
}

.section-heading > p {
  margin: 0;
  color: var(--gray);
  font-size: 1.02rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background .25s ease, transform .25s ease;
}

.service-card:hover {
  background: var(--ivory);
  transform: translateY(-4px);
}

.service-card > span {
  display: inline-block;
  color: var(--gold);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 56px;
}

.service-card h3 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.12;
  margin: 0 0 18px;
}

.service-card p {
  color: var(--gray);
  margin: 0;
  font-size: .94rem;
}

.section-dark {
  color: white;
  background: var(--charcoal);
}

.split-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.brand-panel {
  min-height: 500px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(184,154,93,.24), transparent 35%),
    var(--ivory);
  border: 1px solid rgba(255,255,255,.08);
}

.brand-panel img {
  width: min(70%, 360px);
  mix-blend-mode: multiply;
}

.content-panel p {
  color: rgba(255,255,255,.68);
  max-width: 720px;
  font-size: 1.05rem;
}

.content-panel h2 {
  margin-bottom: 34px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 24px;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(216,192,138,.5);
  padding-bottom: 5px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid li {
  min-height: 320px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  margin-bottom: 72px;
}

.process-grid h3 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  margin: 0 0 14px;
}

.process-grid p {
  color: var(--gray);
  font-size: .92rem;
  margin: 0;
}

.contact-section { background: var(--ivory); }

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.contact-grid > div > p:not(.eyebrow) {
  color: var(--gray);
  max-width: 560px;
}

.contact-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.contact-list > * {
  display: grid;
  gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--gray);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-list strong { font-size: .98rem; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 38px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: .84rem;
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 0;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,154,93,.12);
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 400;
  color: var(--gray);
  gap: 10px;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.contact-form .button + .button { margin-top: 10px; }

.form-note {
  margin: 14px 0 0;
  color: var(--gray);
  font-size: .75rem;
}

.site-footer {
  background: #111;
  color: white;
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--ivory);
  border-radius: 50%;
  padding: 6px;
}

.footer-brand div { display: grid; gap: 5px; }

.footer-brand strong {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 1.2rem;
}

.footer-brand span { color: rgba(255,255,255,.48); font-size: .8rem; }

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid > div:not(.footer-brand) > span {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  margin-bottom: 7px;
}

.footer-grid a {
  color: rgba(255,255,255,.68);
  font-size: .88rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 44px;
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.42);
  font-size: .76rem;
}

.assistant-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 18px 8px 8px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}

.assistant-launcher > span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 1.1rem;
}

.assistant-launcher-copy {
  display: grid;
  text-align: left;
}

.assistant-launcher-copy strong { font-size: .84rem; }
.assistant-launcher-copy small { color: rgba(255,255,255,.58); font-size: .68rem; }

.assistant-panel {
  position: fixed;
  right: 24px;
  bottom: 94px;
  z-index: 130;
  width: min(390px, calc(100vw - 32px));
  height: min(610px, calc(100vh - 130px));
  display: none;
  grid-template-rows: auto 1fr auto auto;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.assistant-panel.open { display: grid; }

.assistant-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--ink);
  color: white;
}

.assistant-panel header > div { display: grid; }
.assistant-panel header span { color: rgba(255,255,255,.55); font-size: .74rem; }

.assistant-panel header button {
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.7rem;
}

.assistant-messages {
  padding: 20px;
  overflow-y: auto;
  background: #f7f3eb;
}

.message {
  max-width: 86%;
  margin-bottom: 10px;
  padding: 12px 14px;
  font-size: .85rem;
  line-height: 1.45;
}

.assistant-message {
  background: white;
  border: 1px solid var(--line);
}

.assistant-message.notice {
  color: var(--gray);
  font-size: .74rem;
}

.user-message {
  margin-left: auto;
  background: var(--ink);
  color: white;
}

.assistant-quick-actions {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.assistant-quick-actions button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: white;
  padding: 8px 10px;
  font-size: .75rem;
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.assistant-form input {
  min-height: 44px;
  margin: 0;
}

.assistant-form button {
  width: 44px;
  border: 0;
  background: var(--gold);
  font-size: 1.2rem;
}

.booking-dialog {
  width: min(560px, calc(100% - 32px));
  border: 0;
  padding: 42px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-dialog::backdrop {
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
}

.booking-dialog h2 { font-size: 2.7rem; }

.booking-dialog > p:not(.eyebrow):not(.dialog-note) { color: var(--gray); }

.dialog-actions {
  display: grid;
  gap: 10px;
  margin: 26px 0 18px;
}

.dialog-note {
  color: var(--gray);
  font-size: .76rem;
}

@media (max-width: 980px) {
  .menu-button { display: block; }

  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 26px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open { display: flex; }
  .main-nav > a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav .button { margin-top: 16px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-card { max-width: 520px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .brand-panel { min-height: 390px; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }

  .header-inner { min-height: 74px; }
  .main-nav { top: 74px; }

  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: .94rem; }
  .brand small { font-size: .58rem; }

  .hero { min-height: auto; }
  .hero-grid { padding: 86px 0 70px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-card { padding: 28px; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div,
  .trust-grid > div:first-child { border-left: 0; border-right: 0; }

  .section { padding: 82px 0; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .section h2 { font-size: clamp(2.35rem, 11vw, 3.4rem); }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card { min-height: auto; }
  .service-card > span { margin-bottom: 34px; }

  .split-layout { gap: 50px; }
  .brand-panel { min-height: 300px; }

  .process-grid li { min-height: auto; }
  .process-grid li > span { margin-bottom: 36px; }

  .contact-grid { gap: 50px; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }

  .assistant-launcher {
    right: 14px;
    bottom: 14px;
  }

  .assistant-panel {
    right: 16px;
    bottom: 82px;
  }

  .booking-dialog { padding: 32px 24px; }
}
