:root {
  --bg: #f5efe7;
  --bg-soft: #ebe1d5;
  --paper: #fffaf4;
  --ink: #202020;
  --muted: #68615a;
  --gold: #a78b5e;
  --gold-dark: #806844;
  --line: rgba(32, 32, 32, 0.12);
  --shadow: 0 24px 70px rgba(55, 44, 33, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.8), transparent 35%),
    linear-gradient(135deg, #f8f3ed 0%, var(--bg) 55%, #e7dccf 100%);
  line-height: 1.6;
}

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

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

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

.narrow {
  max-width: 820px;
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(245, 239, 231, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 148px;
  border-radius: 18px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  transition: background 180ms ease, color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(167, 139, 94, 0.13);
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  border-radius: 14px;
  padding: 11px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.hero {
  padding-top: clamp(52px, 8vw, 92px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.72fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.1rem, 9vw, 7rem);
  letter-spacing: -0.045em;
  max-width: 820px;
}

h2 {
  font-size: clamp(2.35rem, 5.8vw, 4.7rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.lead {
  margin: 26px 0 0;
  color: var(--muted);
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 34px rgba(32,32,32,0.18);
}

.secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.48);
}

.hero-card,
.card,
.contact-card {
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255, 250, 244, 0.62);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-card {
  padding: clamp(22px, 4vw, 38px);
}

.hero-logo {
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(55, 44, 33, 0.10);
}

.card-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.card-list span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.42);
  font-weight: 600;
}

.intro {
  padding-top: 0;
}

.intro p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0;
  color: #2d2b29;
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: clamp(24px, 3vw, 34px);
}

.card p,
.text-block p,
.contact p,
.steps span {
  color: var(--muted);
}

.split {
  background: rgba(255,255,255,0.34);
  border-block: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(30px, 8vw, 90px);
}

.text-block {
  font-size: 1.08rem;
}

.process {
  padding-bottom: 72px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  counter-increment: step;
  padding: 26px;
  border-top: 1px solid var(--line);
}

.steps li::before {
  content: "0" counter(step);
  display: block;
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 64px);
  padding: clamp(26px, 5vw, 56px);
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,0.74);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(167,139,94,0.22);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

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

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

  .cards,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 118px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    inset: 74px 16px auto 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    background: rgba(255,250,244,0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.98) translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .nav-menu a {
    width: 100%;
    justify-content: center;
    padding: 13px 14px;
  }

  .hero-actions,
  .footer-grid,
  .footer-links {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
