* {
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --panel: rgba(17, 17, 17, 0.92);
  --panel-solid: #101010;
  --text: #f3efe7;
  --muted: #b9aea0;
  --line: rgba(201, 169, 97, 0.16);
  --line-strong: rgba(201, 169, 97, 0.3);
  --primary: #c9a961;
  --primary-strong: #e2c98d;
  --accent: #8b7355;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 169, 97, 0.08), transparent 28%),
    linear-gradient(180deg, #030303 0%, #080808 42%, #040404 100%);
  line-height: 1.68;
  letter-spacing: 0.01em;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #a8833c, #e2c98d);
  color: #0c0c0c;
  box-shadow: 0 16px 40px rgba(201, 169, 97, 0.18);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
}

.brand-text-wrap {
  display: grid;
  gap: 0.1rem;
}

.brand-text {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtext {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.nav a {
  color: var(--muted);
  font-weight: 500;
  transition: 0.25s ease;
}

.nav a:hover,
.footer-grid a:hover,
.mobile-menu a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  font-size: 1.3rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 1rem 1rem;
  gap: 0.9rem;
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: flex;
}

.hero {
  position: relative;
  overflow: hidden;
}

.luxury-hero {
  padding: 8rem 0 5.5rem;
}

.hero-grid,
.contact-grid,
.legal-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--primary-strong);
  font-weight: 700;
}

.hero h1,
.section h2,
.page-hero h1,
.contact-copy h1,
.legal-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.98;
  margin: 1rem 0 1.2rem;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.hero p,
.section-heading p,
.lead,
.contact-copy p,
.legal-copy p,
.legal-copy li,
.service-card p,
.process-card p,
.info-card p,
.footer-grid p,
.footer-bottom p,
.quote-signoff span {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #121212;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 16px 40px rgba(201, 169, 97, 0.16);
}

.btn-secondary,
.btn-outline {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.01);
  color: var(--text);
}

.refined-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.refined-points span {
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(201, 169, 97, 0.03);
  font-size: 0.92rem;
}

.luxury-panel,
.service-card,
.process-card,
.quote-card,
.cta-card,
.contact-card,
.info-card,
.legal-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.luxury-panel {
  border-radius: 28px;
  padding: 2rem;
  position: relative;
}

.panel-label,
.statement-kicker,
.card-index {
  display: inline-block;
  color: var(--primary-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.luxury-panel h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.05;
  margin: 0.8rem 0 1rem;
  font-weight: 600;
}

.panel-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin: 1.25rem 0;
}

.panel-list {
  display: grid;
  gap: 1.1rem;
}

.panel-list strong,
.service-card h3,
.process-card h3,
.info-card h3,
.contact-card h3,
.footer-grid h3,
.footer-grid h4,
.legal-card h2 {
  display: block;
  margin: 0 0 0.45rem;
}

.hero-line {
  position: absolute;
  top: 110px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 169, 97, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-line-left {
  left: -80px;
}

.hero-line-right {
  right: -80px;
}

.section {
  padding: 5.25rem 0;
}

.section-alt,
.statement-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.025), rgba(255,255,255,0.01));
}

.statement-strip {
  padding: 1.25rem 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.statement-grid div {
  padding: 1rem 0.25rem;
  text-align: center;
}

.statement-grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading.narrow {
  max-width: 860px;
}

.services-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.service-card,
.process-card,
.quote-card,
.contact-card,
.info-card,
.legal-card {
  border-radius: 22px;
  padding: 1.5rem;
}

.luxury-card,
.luxury-process {
  position: relative;
}

.luxury-card::before,
.luxury-process::before,
.luxury-panel::before,
.cta-card::before,
.contact-card::before,
.info-card::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(226, 201, 141, 0.18), rgba(255,255,255,0.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.14;
  margin: 0 0 1.3rem;
  font-weight: 600;
}

.quote-signoff {
  display: grid;
  gap: 0.22rem;
}

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

.cta-card {
  position: relative;
  padding: 2rem;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.8fr;
  gap: 1.5rem;
}

.footer-bottom {
  padding: 1.25rem 0 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: 5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.04), transparent);
}

.contact-grid,
.legal-layout {
  padding: 3rem 0 5rem;
}

.contact-card form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(201, 169, 97, 0.28);
  border-color: rgba(201, 169, 97, 0.4);
}

.form-note,
.small-text {
  color: var(--muted);
  font-size: 0.92rem;
}

.alert {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.alert-success {
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.22);
}

.alert-error {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.info-stack {
  display: grid;
  gap: 1rem;
}

.info-card a,
.form-note a,
.footer-grid a,
.legal-copy a {
  color: var(--primary-strong);
}

.legal-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

@media (max-width: 1080px) {
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .services-grid,
  .process-grid,
  .editorial-grid,
  .cta-card,
  .footer-grid,
  .contact-grid,
  .legal-layout,
  .statement-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .luxury-hero {
    padding-top: 6rem;
  }
}

@media (max-width: 640px) {
  .hero h1,
  .section h2,
  .page-hero h1,
  .contact-copy h1,
  .legal-copy h1,
  .quote {
    letter-spacing: -0.02em;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .luxury-panel,
  .service-card,
  .process-card,
  .quote-card,
  .cta-card,
  .contact-card,
  .info-card,
  .legal-card {
    padding: 1.2rem;
  }
}
