:root {
  --bg-deep: #0a0b0d;
  --bg-raised: #12141a;
  --bg-card: #181b24;
  --border: rgba(235, 230, 215, 0.12);
  --text: #e8e4dc;
  --text-muted: #9a958b;
  --accent: #c4a574;
  --accent-soft: rgba(196, 165, 116, 0.15);
  --white: #faf8f3;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 4px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --maxw: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--accent);
  color: var(--bg-deep);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(var(--maxw), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 13, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}

.logo:hover {
  text-decoration: none;
}

.logo-accent {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: var(--white);
  text-decoration: none;
}

.nav-cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--accent-soft);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.5rem;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--border);
    gap: 0;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?w=1600&q=80&auto=format&fit=crop")
    center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 13, 0.55) 0%,
    rgba(10, 11, 13, 0.85) 45%,
    var(--bg-deep) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-deep);
}

.btn-primary:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(235, 230, 215, 0.35);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.btn-block {
  width: 100%;
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-tone {
  background: var(--bg-raised);
}

.section-head {
  margin-bottom: 2.75rem;
}

.section-head-center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto 0;
}

.section-head-center.section-head {
  margin-bottom: 2.25rem;
  margin-inline: auto;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.section-lead {
  margin: 0;
  color: var(--text-muted);
  max-width: 40rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
}

.tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tile-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.tile-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.tile-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
  color: var(--white);
  font-weight: 600;
}

.tile-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.split-text h2 {
  margin-top: 0;
}

.split-text p {
  color: var(--text-muted);
}

.split-media {
  margin: 0;
}

.split-media img {
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.checklist {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 1px;
}

/* Masonry showcase */
.masonry-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .masonry-2 {
    grid-template-columns: 1fr;
  }
}

.showcase {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.showcase img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.showcase figcaption {
  padding: 1rem 1.15rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Trust */
.trust-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .trust-split {
    grid-template-columns: 1fr;
  }
}

.trust-figure {
  margin: 0;
}

.trust-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.trust-split .trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 520px) {
  .trust-split .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.trust-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Process */
.process-with-image {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .process-with-image {
    grid-template-columns: 1fr;
  }
}

.process-photo {
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 1.15rem 0 1.15rem 3rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.steps li:last-child {
  border-bottom: none;
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
}

.steps strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

/* Location */
.location-address {
  font-style: normal;
  line-height: 1.7;
  color: var(--white);
}

.muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact */
.section-contact {
  padding-bottom: 5.5rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.contact-visual {
  margin: 0;
  min-height: 100%;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 2.5rem 2.5rem 0;
}

@media (max-width: 768px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-visual img {
    min-height: 220px;
    max-height: 280px;
  }

  .contact-right {
    padding: 0 1.5rem 1.5rem;
  }
}

.contact-intro h2 {
  margin-top: 0;
}

.contact-intro p {
  color: var(--text-muted);
}

.contact-direct {
  margin-top: 1.5rem;
  line-height: 1.8;
}

.contact-direct a {
  color: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-deep);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0;
  min-height: 1.25em;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  margin: 0;
  color: var(--white);
}

.footer-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
