:root {
  --ink: #16161a;
  --ink-soft: #55565c;
  --paper: #ffffff;
  --paper-tint: #f6f5f3;
  --line: #e4e2de;
  --accent: #16161a;
  --radius: 999px;
  --max: 1120px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { opacity: 0.85; }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--paper-tint); }
.btn-small { padding: 9px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; border: none; padding: 15px; font-size: 1rem; margin-top: 8px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; }
.brand-mark { height: 34px; width: auto; }
.main-nav {
  display: flex;
  gap: 32px;
  margin: 0 auto 0 40px;
  font-size: 0.95rem;
}
.main-nav a { color: var(--ink-soft); }
.main-nav a:hover { color: var(--ink); }
.header-inner .btn { margin-left: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 12px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  width: 100%;
}

/* Hero */
.hero {
  padding: 110px 0 70px;
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(1.5rem, 4.4vw, 2.6rem);
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero video */
.hero-video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto 34px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-tint);
  aspect-ratio: 16 / 9;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.statement-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 30px;
}

/* Section shared */
section { padding: 90px 0; }
section:nth-of-type(even) { background: var(--paper-tint); }
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 50px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 10px; }
.section-head p { color: var(--ink-soft); margin: 0; }

.card-grid {
  display: grid;
  gap: 28px;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }

/* Services */
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 30px;
  text-align: left;
}
.glyph {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-tint);
  border-radius: 14px;
  margin-bottom: 22px;
}
.shape { display: block; background: var(--ink); }
.shape-square { width: 18px; height: 18px; }
.shape-circle { width: 18px; height: 18px; border-radius: 50%; }
.shape-triangle {
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid var(--ink);
  background: none;
}
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 0 0 6px;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p:last-child { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* Listings */
.listing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
}
.listing-art {
  background: var(--paper-tint);
  border-bottom: 1px solid var(--line);
}
.listing-body { padding: 24px 26px 28px; }
.listing-loc {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 0 0 6px;
}
.listing-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.listing-meta { color: var(--ink-soft); font-size: 0.88rem; margin: 0 0 10px; }
.listing-price { font-weight: 600; margin: 0; }
.listing-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin-top: 36px;
}

/* Process */
.steps { list-style: none; margin: 0 auto; padding: 0; max-width: 640px; }
.steps li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.15rem;
}
.steps li:last-child { border-bottom: none; }
.step-num {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Values */
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
}
.panel-label {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 20px;
}
.numbered { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.numbered li { margin-bottom: 12px; }
.panel-intro { color: var(--ink-soft); margin: 0 0 20px; }
.value-list { list-style: none; margin: 0; padding: 0; }
.value-list li { margin-bottom: 14px; color: var(--ink-soft); }
.value-list strong { color: var(--ink); }

/* Contact */
.contact-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-tint);
  color: var(--ink);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-status { text-align: center; font-size: 0.9rem; min-height: 1.4em; margin-top: 12px; }
.form-status.success { color: #1a7a3c; }
.form-status.error { color: #b3261e; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-inner a { font-weight: 500; }
.footer-inner p { margin: 4px 0 0; color: var(--ink-soft); font-size: 0.9rem; }
.copyright { color: var(--ink-soft); font-size: 0.85rem; }

/* Responsive */
@media (max-width: 860px) {
  .card-grid.three,
  .card-grid.two { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    margin: 0;
  }
  .main-nav.open { max-height: 260px; }
  .main-nav a { padding: 16px; width: 100%; text-align: center; border-top: 1px solid var(--line); }
  .header-inner .btn-small { margin-left: auto; }
  .nav-toggle { display: flex; }
  .hero { padding: 70px 0 50px; }
  section { padding: 60px 0; }
}
