@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --base: #EEECE0;
  --gold: #C19D44;
  --gold-soft: #d4b35b;
  --gold-deep: #9d7a22;
  --blue: #262421;
  --ink: #262421;
  --paper: #F8F8F8;
  --muted: #6d675f;
  --line: rgba(193, 157, 68, 0.35);
  --line-dark: rgba(38, 36, 33, 0.12);
  --shadow: 0 24px 70px rgba(38, 36, 33, 0.10);
  --soft-shadow: 0 14px 42px rgba(38, 36, 33, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 88px;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Montserrat', Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 0%, rgba(193, 157, 68, 0.16), transparent 24rem),
    radial-gradient(circle at 93% 8%, rgba(38, 36, 33, 0.08), transparent 22rem),
    linear-gradient(180deg, #f8f8f8 0%, var(--base) 44%, #f8f8f8 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(193, 157, 68, 0.34);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--ink);
  color: var(--paper);
  padding: .8rem 1rem;
  border-radius: 999px;
  z-index: 999;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background:
    linear-gradient(180deg, rgba(248, 248, 248, 0.94), rgba(238, 236, 224, 0.88));
  border-bottom: 1px solid rgba(193, 157, 68, 0.38);
  box-shadow: 0 10px 34px rgba(38, 36, 33, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 1.25rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: .82rem;
  min-width: 250px;
  position: relative;
}

.brand-mark {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  position: relative;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgba(38, 36, 33, .08));
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 157, 68, .13), transparent 70%);
  z-index: -1;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(.98rem, 1.12vw, 1.2rem);
  letter-spacing: .055em;
  white-space: nowrap;
  color: var(--ink);
}

.brand-subtitle {
  margin-top: .22rem;
  color: rgba(38, 36, 33, .72);
  font-family: var(--font-display);
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.nav-wrapper {
  display: contents;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .12rem;
  grid-column: 2;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .35rem .58rem;
  border-radius: 999px;
  color: rgba(38, 36, 33, .76);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .015em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--ink);
  background: rgba(193, 157, 68, 0.10);
  outline: none;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .38rem;
  height: 1px;
  background: var(--gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .66rem 1.02rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  background: rgba(248, 248, 248, .35);
  justify-self: end;
  grid-column: 3;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  background: rgba(193, 157, 68, 0.10);
  box-shadow: 0 8px 20px rgba(193, 157, 68, 0.14);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(193, 157, 68, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  margin: 5px auto;
  transition: transform .2s ease, opacity .2s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


.page-hero,
.home-hero {
  position: relative;
  padding: clamp(2.8rem, 4.8vw, 4.8rem) 0 clamp(2.3rem, 4vw, 3.6rem);
}

.home-hero::before,
.page-hero::before,
.decorated-section::before {
  content: '';
  position: absolute;
  inset: auto auto 8% -8%;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(193, 157, 68, .18);
  border-radius: 50%;
  pointer-events: none;
}

.home-hero::after,
.page-hero::after {
  content: '';
  position: absolute;
  inset: 12% -4rem auto auto;
  width: 14rem;
  height: 14rem;
  background: linear-gradient(135deg, rgba(38, 36, 33, .06), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .7fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}

.hero-grid-home {
  grid-template-columns: minmax(0, 1fr);
  max-width: 820px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 1rem;
}

.kicker::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
h4,
.display-title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 4.1vw, 3.7rem);
  letter-spacing: .015em;
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  letter-spacing: .018em;
}

h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
}

.lead {
  color: var(--muted);
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
  max-width: 680px;
  margin: 1rem 0 0;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .85rem 1.18rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary {
  background:
    linear-gradient(135deg, #262421 0%, #12110f 100%);
  color: var(--paper);
  border-color: var(--gold);
  box-shadow: 0 16px 30px rgba(38, 36, 33, 0.18), inset 0 0 0 1px rgba(193, 157, 68, .22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(38, 36, 33, 0.22);
  outline: none;
}

.btn-secondary {
  background: rgba(248, 248, 248, .38);
  color: var(--ink);
  border-color: rgba(193, 157, 68, 0.88);
  box-shadow: inset 0 0 0 1px rgba(193, 157, 68, .18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(193, 157, 68, 0.10);
  outline: none;
}

.btn-text {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: .94rem;
}

.btn-text::after {
  content: '→';
  transition: transform .2s ease;
}

.btn-text:hover::after,
.btn-text:focus-visible::after {
  transform: translateX(4px);
}


.section {
  position: relative;
  padding: clamp(3rem, 5vw, 4.8rem) 0;
}


.section-header {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(280px, .62fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.6rem);
}

.section-header.single {
  display: block;
  max-width: 860px;
}

.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  margin-bottom: .85rem;
}

.section-description {
  color: var(--muted);
  margin: 0;
  font-size: 1.02rem;
}

.bg-paper {
  background:
    linear-gradient(180deg, rgba(248, 248, 248, .96), rgba(238, 236, 224, .42));
}

.bg-blue {
  background:
    radial-gradient(circle at 12% 0%, rgba(193, 157, 68, .2), transparent 25rem),
    linear-gradient(145deg, #262421 0%, #141311 68%, #0b0b0a 100%);
  color: var(--paper);
  border-block: 1px solid rgba(193, 157, 68, .36);
}

.bg-blue h2,
.bg-blue h3,
.bg-blue .section-eyebrow,
.bg-blue .kicker {
  color: var(--paper);
}

.bg-blue .section-description,
.bg-blue p,
.bg-blue li {
  color: rgba(248, 248, 248, .76);
}
.bg-blue .btn-secondary,
.feature-panel.dark .btn-secondary,
.contact-card .btn-secondary {
  background: rgba(248, 248, 248, .38);
  color: var(--ink);
  border-color: rgba(193, 157, 68, 0.88);
  box-shadow: inset 0 0 0 1px rgba(193, 157, 68, .18);
}

.bg-blue .btn-secondary:hover,
.bg-blue .btn-secondary:focus-visible,
.feature-panel.dark .btn-secondary:hover,
.feature-panel.dark .btn-secondary:focus-visible,
.contact-card .btn-secondary:hover,
.contact-card .btn-secondary:focus-visible {
  background: rgba(193, 157, 68, 0.12);
}

.bg-blue .process-line {
  background: rgba(248, 248, 248, .06);
  border-color: rgba(193, 157, 68, .28);
}

.bg-blue .process-step {
  border-right-color: rgba(193, 157, 68, .25);
}

.bg-blue .process-step p {
  color: rgba(248, 248, 248, .76);
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(248, 248, 248, 0.86), rgba(238, 236, 224, 0.42));
  border: 1px solid rgba(193, 157, 68, .24);
  border-radius: var(--radius-md);
  padding: clamp(1.3rem, 2vw, 1.7rem);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .52) inset, 0 14px 32px rgba(38, 36, 33, .045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 157, 68, 0.68);
  box-shadow: 0 18px 46px rgba(38, 36, 33, .09);
  background:
    linear-gradient(180deg, rgba(248, 248, 248, .96), rgba(238, 236, 224, .54));
}

.card::before {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 1.4rem;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(193, 157, 68, .12));
}

.card h3,
.card h4 {
  margin-top: 1.55rem;
}

.card p {
  color: var(--muted);
  margin: .85rem 0 0;
}

.card-number {
  color: rgba(193, 157, 68, .9);
  font-family: var(--font-display);
  font-size: 1rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.quote-box {
  border-left: 1px solid var(--gold);
  padding-left: clamp(1.3rem, 2.5vw, 2.3rem);
}

.quote-box p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.32;
  margin: 0;
}

.quote-box span {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
}

.text-block p {
  color: var(--muted);
  font-size: 1.02rem;
}

.text-block p:first-child {
  margin-top: 0;
}


.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(248, 248, 248, .58);
}

.process-step {
  padding: 1.5rem;
  min-height: 190px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: var(--gold);
  font-family: var(--font-display);
}

.process-step h3 {
  margin-top: 1.4rem;
  font-size: 1.3rem;
}

.process-step p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-panel {
  padding: clamp(2rem, 4vw, 3.4rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(38, 36, 33, .03), rgba(193, 157, 68, .08)),
    rgba(248, 248, 248, .72);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.feature-panel.dark {
  background:
    radial-gradient(circle at 18% 0%, rgba(193, 157, 68, .18), transparent 22rem),
    linear-gradient(145deg, #262421, #0f0f0f);
  color: var(--paper);
  border-color: rgba(193, 157, 68, .42);
  box-shadow: 0 24px 70px rgba(38, 36, 33, .18);
}

.feature-panel.dark h2,
.feature-panel.dark h3 {
  color: var(--paper);
}

.feature-panel.dark p,
.feature-panel.dark li,
.feature-panel.dark .muted {
  color: rgba(248, 248, 248, .76);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.badge-list li {
  padding: .55rem .75rem;
  border: 1px solid rgba(193, 157, 68, .46);
  border-radius: 999px;
  color: var(--muted);
  font-size: .88rem;
  background: rgba(248, 248, 248, .46);
}

.bg-blue .badge-list li,
.feature-panel.dark .badge-list li {
  color: rgba(248, 248, 248, .78);
  background: rgba(248, 248, 248, .08);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.article-card {
  background: rgba(248, 248, 248, .78);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(193, 157, 68, .55);
  box-shadow: var(--soft-shadow);
}

.article-top {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.25rem;
}

.article-label {
  color: var(--gold);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.article-card h2,
.article-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.article-card p {
  color: var(--muted);
}

.article-action {
  display: flex;
  align-items: center;
  gap: .6rem;
  justify-self: end;
}

.article-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(193, 157, 68, .55);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.article-toggle:hover,
.article-toggle:focus-visible {
  background: rgba(193, 157, 68, .10);
  border-color: rgba(193, 157, 68, .75);
  outline: none;
}

.article-toggle::before {
  content: '+';
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .22s ease;
}

.article-card.open .article-toggle::before {
  content: '+';
  transform: rotate(45deg);
}

.article-summary {
  display: none;
  padding: 0 1.25rem 1.35rem calc(160px + 2.45rem);
  color: var(--muted);
}

.article-card.open .article-summary {
  display: block;
}

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

.faq-item {
  background: rgba(248, 248, 248, .78);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.faq-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.faq-question:hover .faq-icon,
.faq-question:focus-visible .faq-icon {
  background: rgba(193, 157, 68, .10);
  border-color: rgba(193, 157, 68, .62);
}

.faq-icon::before {
  content: '+';
  display: block;
  transition: transform .22s ease;
}

.faq-item.open .faq-icon::before {
  content: '+';
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.35rem 1.3rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-card {
  background:
    radial-gradient(circle at 15% 0%, rgba(193, 157, 68, .18), transparent 22rem),
    linear-gradient(145deg, #262421, #0f0f0f);
  color: var(--paper);
  border: 1px solid rgba(193, 157, 68, .42);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.contact-card h2,
.contact-card h3 {
  color: var(--paper);
}

.contact-card p,
.contact-card li {
  color: rgba(248, 248, 248, .76);
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.contact-card li {
  padding: .85rem 0;
  border-bottom: 1px solid rgba(193, 157, 68, .24);
}

.form-card {
  background: rgba(248, 248, 248, .82);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--soft-shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .42rem;
}

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

label {
  color: var(--muted);
  font-size: .86rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(38, 36, 33, .16);
  background: rgba(255, 255, 255, .62);
  border-radius: 14px;
  padding: .95rem 1rem;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(193, 157, 68, .14);
  background: #fff;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.form-status {
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 600;
  min-height: 1.4rem;
}

.breadcrumb {
  display: flex;
  gap: .55rem;
  align-items: center;
  color: var(--muted);
  font-size: .86rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--gold);
}

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



.compact-copy > .kicker,
.compact-copy > h1,
.compact-copy > .lead {
  max-width: 760px;
}

.home-hero .hero-actions {
  margin-top: 1.7rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.05rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: .42rem .68rem;
  border: 1px solid rgba(193, 157, 68, .34);
  border-radius: 999px;
  background: rgba(248, 248, 248, .46);
  color: rgba(38, 36, 33, .68);
  font-size: .76rem;
  letter-spacing: .02em;
}


@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(224px, .72fr) minmax(380px, 1.28fr) minmax(116px, .34fr);
    gap: .65rem;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .brand-name {
    font-size: .96rem;
  }

  .brand-subtitle {
    font-size: .56rem;
    letter-spacing: .13em;
  }

  .nav-link {
    padding-inline: .38rem;
    font-size: .69rem;
  }

  .header-cta {
    font-size: .6rem;
    padding-inline: .72rem;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand-link {
    min-width: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrapper {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    min-height: calc(100vh - var(--header-height));
    background:
      radial-gradient(circle at 20% 0%, rgba(193, 157, 68, .14), transparent 18rem),
      rgba(248, 248, 248, .985);
    border-top: 1px solid var(--line);
    padding: 1rem 1.4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
  }

  body.menu-open .nav-wrapper {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-nav {
    display: grid;
    justify-content: stretch;
    grid-column: auto;
    gap: .32rem;
  }

  .nav-link {
    justify-content: center;
    min-height: 48px;
    font-size: .9rem;
    padding-inline: .85rem;
  }

  .header-cta {
    display: inline-flex;
    width: 100%;
    justify-self: stretch;
    grid-column: auto;
    margin-top: .5rem;
  }

  .hero-grid,
  .section-header,
  .split,
  .contact-grid,
  .footer-compact-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(1),
  .process-step:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .article-top {
    grid-template-columns: 1fr auto;
  }

  .article-label {
    grid-column: 1 / -1;
  }

  .article-summary {
    padding-left: 1.25rem;
  }

  .contact-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: .84rem;
    letter-spacing: .04em;
  }

  .brand-subtitle {
    display: block;
    font-size: .48rem;
    letter-spacing: .11em;
  }

  .home-hero,
  .page-hero {
    padding-top: 2.35rem;
    padding-bottom: 2.1rem;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(1.8rem, 8.6vw, 2.45rem);
  }

  h2 {
    font-size: clamp(1.42rem, 6vw, 2rem);
  }

  .lead {
    font-size: .98rem;
  }

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

  .btn {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .process-line,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .article-top {
    grid-template-columns: 1fr;
  }

  .article-action {
    justify-self: start;
  }

  .footer-bottom {
    display: block;
  }
}




/* Sobre — seção editorial com retrato */
.about-editorial-section {
  position: relative;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: center;
}

.about-portrait-card {
  position: relative;
  margin: 0;
  padding: .95rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(248, 248, 248, .98), rgba(238, 236, 224, .78));
  border: 1px solid rgba(193, 157, 68, .34);
  box-shadow: 0 22px 54px rgba(38, 36, 33, .10);
  overflow: hidden;
}

.about-portrait-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(193, 157, 68, .16), transparent 34%),
    linear-gradient(135deg, transparent 0 72%, rgba(193, 157, 68, .12) 72% 100%);
  pointer-events: none;
}

.about-portrait-card::after {
  content: '';
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 5.8rem;
  height: 5.8rem;
  border-right: 1px solid rgba(193, 157, 68, .55);
  border-bottom: 1px solid rgba(193, 157, 68, .55);
  border-radius: 0 0 22px 0;
  pointer-events: none;
  z-index: 2;
}

.about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 26px;
  position: relative;
  z-index: 1;
  filter: saturate(.94) contrast(1.03);
}

.about-editorial-copy {
  max-width: 760px;
}

.about-editorial-copy h2 {
  max-width: 720px;
}

.about-editorial-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
  margin: 1rem 0 0;
}

.about-credentials-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(193, 157, 68, .32);
}

.about-credentials-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .7rem;
  border: 1px solid rgba(193, 157, 68, .34);
  border-radius: 999px;
  background: rgba(248, 248, 248, .58);
  color: rgba(38, 36, 33, .72);
  font-size: .76rem;
  letter-spacing: .02em;
}

/* Rodapé compacto */
.site-footer {
  background:
    radial-gradient(circle at top left, rgba(193, 157, 68, .14), transparent 22rem),
    linear-gradient(145deg, #262421 0%, #151412 100%);
  color: var(--paper);
  padding: clamp(2.4rem, 4vw, 3.6rem) 0 1.35rem;
  border-top: 1px solid rgba(193, 157, 68, .42);
}

.footer-compact-grid {
  display: grid;
  grid-template-columns: minmax(220px, .95fr) minmax(210px, .75fr) minmax(190px, .62fr) minmax(210px, .75fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}

.footer-col p {
  margin: .65rem 0 0;
  color: rgba(248, 248, 248, .68);
  font-size: .88rem;
  line-height: 1.65;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  letter-spacing: .05em;
  color: var(--paper);
}

.footer-title {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  margin-bottom: .82rem;
}

.footer-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
}

.footer-links a,
.footer-contact-list a {
  color: rgba(248, 248, 248, .72);
  font-size: .84rem;
  transition: color .18s ease, transform .18s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: var(--paper);
  outline: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: .55rem;
  align-items: center;
}

.footer-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(193, 157, 68, .38);
  border-radius: 50%;
  color: var(--gold);
  font-size: .78rem;
  line-height: 1;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .95rem;
  min-height: 40px;
  padding: .62rem .9rem;
  border: 1px solid rgba(193, 157, 68, .72);
  border-radius: 999px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: .66rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  background: rgba(193, 157, 68, .08);
  transition: transform .2s ease, background .2s ease;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  transform: translateY(-1px);
  background: rgba(193, 157, 68, .16);
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(193, 157, 68, .24);
  color: rgba(248, 248, 248, .55);
  font-size: .76rem;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(240px, 1fr) auto minmax(135px, .55fr);
  }

  .nav-link {
    padding-inline: .4rem;
    font-size: .7rem;
  }
}

@media (max-width: 930px) {
  .about-editorial-grid,
  .footer-compact-grid {
    grid-template-columns: 1fr;
  }

  .about-portrait-card {
    max-width: 560px;
  }

  .footer-bottom {
    display: grid;
    gap: .45rem;
  }
}
