:root {
  --bg: #f6f2ea;
  --surface: #fffdf8;
  --surface-strong: #101a23;
  --text: #171717;
  --muted: #625d55;
  --accent: #681727;
  --accent-strong: #351018;
  --navy: #101a23;
  --charcoal: #202224;
  --gold: #a98045;
  --border: #dfd5c5;
  --shadow: 0 18px 50px rgba(16, 26, 35, 0.09);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(169, 128, 69, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 520px);
  background-size: 88px 88px, auto;
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

::selection {
  background: rgba(104, 23, 39, 0.18);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

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

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  text-decoration: none;
  color: var(--text);
}

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: 0;
  font-weight: 700;
}

.brand-sub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -0.15rem;
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.site-nav a:not(.btn):hover {
  color: var(--accent);
}

.site-nav a.btn {
  color: #fffdfa;
}

.btn,
.btn-outline {
  display: inline-block;
  text-decoration: none;
  padding: 0.74rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1.2;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(93, 23, 37, 0.16);
}

.btn:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: rgba(104, 23, 39, 0.06);
  transform: translateY(-1px);
}

.btn.light {
  background: #fffdf8;
  color: var(--accent-strong);
  box-shadow: none;
}

.btn.light:hover {
  background: #eadfce;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

main > section {
  scroll-margin-top: 96px;
}

.hero {
  min-height: min(760px, calc(100vh - 82px));
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: clamp(3.25rem, 6vw, 5.5rem) 0;
}

.hero-editorial {
  background:
    radial-gradient(circle at 78% 18%, rgba(169, 128, 69, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(246, 242, 234, 0.9));
}

.hero-grid,
.two-col,
.contact-grid,
.option-grid,
.cards {
  display: grid;
  gap: 1.25rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.25rem);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  color: var(--text);
  margin: 0 0 0.85rem;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.65rem, 4.8vw, 4.55rem);
}

.hero h1 {
  max-width: 12.5ch;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
}

h3 {
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
}

p,
li {
  font-size: 1rem;
}

.muted {
  color: var(--muted);
}

.microcopy {
  max-width: 58ch;
  color: var(--muted);
  font-size: 0.83rem;
  margin-top: 0.9rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.45rem;
}

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

.cards .card,
.cards.three .card {
  min-height: 100%;
  box-shadow: none;
}

.cards .card h3,
.cards.three .card h2 {
  border-top: 2px solid var(--gold);
  padding-top: 0.9rem;
}

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

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.section-heading.compact {
  max-width: 620px;
}

.section-heading h2 {
  margin-bottom: 0.85rem;
}

.section-quiet {
  background: rgba(255, 253, 248, 0.58);
  border-block: 1px solid rgba(223, 213, 197, 0.72);
}

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

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

.trust-grid span {
  min-height: 70px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid span:last-child {
  border-right: 1px solid var(--border);
}

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

.service-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: 0 8px 28px rgba(16, 26, 35, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(169, 128, 69, 0.62);
  box-shadow: var(--shadow);
}

.card-index {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-card h3 {
  border-top: 1px solid var(--border);
  padding-top: 1.05rem;
  margin-top: auto;
}

.service-card p {
  margin-bottom: 0;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article {
  padding: 1.25rem 0 1.25rem 1.25rem;
  border-left: 2px solid var(--gold);
  border-bottom: 1px solid var(--border);
}

.feature-list h3 {
  margin-bottom: 0.35rem;
}

.feature-list p {
  margin: 0;
}

.process-grid {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-grid li {
  position: relative;
  min-height: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.process-grid li::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 2.5rem;
}

.process-grid span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.05;
}

.process-grid p {
  margin-bottom: 0;
}

.dark-feature {
  background: var(--navy);
  color: rgba(255, 253, 248, 0.82);
}

.dark-feature h2,
.dark-feature h3 {
  color: #fffdf8;
}

.dark-feature .kicker {
  color: #d8bd8a;
}

.bio-preview {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

.faq-list summary::marker {
  color: var(--gold);
}

.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.divider {
  border-top: 1px solid var(--border);
}

.list-tight {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
}

.list-tight li + li {
  margin-top: 0.3rem;
}

.cta-band {
  background: var(--surface-strong);
  color: #fffdfa;
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.final-cta {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.cta-band h2,
.cta-band .muted {
  color: #fffdfa;
}

.cta-band .btn {
  background: #fffdfa;
  color: var(--accent-strong);
  box-shadow: none;
}

.boutique-panel,
.profile-panel {
  position: relative;
  overflow: hidden;
  background: var(--surface-strong);
  color: #fffdfa;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: 0 22px 60px rgba(16, 24, 32, 0.18);
}

.hero-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.boutique-panel::before,
.profile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(169, 131, 73, 0.28), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255, 253, 250, 0.05) 0 1px, transparent 1px 28px);
  pointer-events: none;
}

.boutique-panel > *,
.profile-panel > * {
  position: relative;
}

.panel-label {
  color: #d9bf8f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-rule {
  width: 58px;
  height: 2px;
  background: var(--gold);
  margin: 0.85rem 0 1rem;
}

.panel-list {
  display: grid;
  gap: 0.7rem;
  margin: 0.9rem 0 0;
}

.panel-item {
  border-top: 1px solid rgba(255, 253, 250, 0.22);
  padding-top: 0.7rem;
}

.panel-item strong {
  display: block;
  color: #fffdfa;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.05;
  margin-bottom: 0.25rem;
}

.panel-item span,
.boutique-panel p,
.profile-panel p {
  color: rgba(255, 253, 250, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.intro-copy {
  max-width: 62ch;
  font-size: 1.08rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  background: #171717;
  color: rgba(255, 253, 250, 0.78);
}

.site-footer h3,
.site-footer a {
  color: #fffdfa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  padding: 2.4rem 0 1.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.6rem;
  font-size: 0.9rem;
  color: rgba(255, 253, 248, 0.62);
}

form {
  display: grid;
  gap: 0.85rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.62rem 0.68rem;
  border: 1px solid #d6d2c8;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(104, 23, 39, 0.13);
  outline-offset: 0;
}

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

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

.note {
  font-size: 0.93rem;
  color: var(--muted);
}

.warning {
  background: #fffdfa;
  border: 1px solid #e8e2d4;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .option-grid,
  .cards,
  .cards.three,
  .service-grid,
  .process-grid,
  .split-feature,
  .bio-preview,
  .faq-wrap,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr !important;
  }

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

  .mobile-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    right: 4%;
    top: 76px;
    width: min(280px, 92vw);
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.35rem, 14vw, 3.25rem);
  }

  .hero,
  .section {
    padding: 3.25rem 0;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn,
  .hero-actions .btn-outline,
  .final-cta .btn {
    width: 100%;
    text-align: center;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid span {
    min-height: 58px;
    padding: 0.5rem;
    font-size: 0.68rem;
  }

  .service-card,
  .process-grid li {
    min-height: auto;
  }

  .process-grid li::before {
    margin-bottom: 1.5rem;
  }

  .boutique-panel,
  .profile-panel {
    padding: 1.25rem;
  }
}
