@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Montserrat:wght@300;400;500;600&display=swap");
:root {
  --gold: #d7ac5e;
  --gold-deep: #c29441;
  --gold-soft: #f2dfb9;
  --ink: #090909;
  --charcoal: #151515;
  --ivory: #fbf8f1;
  --paper: #ffffff;
  --muted: #6e6a63;
  --line: rgba(215, 172, 94, 0.3);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

.elementor-page .elementor,
.elementor-page .e-con,
.elementor-page .e-con-inner,
.elementor-widget-html,
.elementor-widget-html > .elementor-widget-container {
  width: 100%;
  max-width: none;
}

.elementor-page .elementor-element {
  --widgets-spacing: 0;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  border-bottom: 1px solid rgba(215, 172, 94, 0.2);
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 174px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.nav-cta {
  min-width: 112px;
  padding: 12px 22px;
  border-radius: 99px;
  background: linear-gradient(135deg, #edc878, var(--gold-deep));
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.button-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(215, 172, 94, 0.22);
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 82px;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.98) 0%, rgba(9, 9, 9, 0.94) 46%, rgba(9, 9, 9, 0.54) 100%),
    radial-gradient(circle at 76% 44%, rgba(215, 172, 94, 0.17), transparent 40%),
    var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(215, 172, 94, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 172, 94, 0.15) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, transparent 12%, black 75%);
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: 22%;
  border-radius: 50%;
  background: rgba(215, 172, 94, 0.14);
  filter: blur(100px);
}

.hero-grid {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 670px;
  padding: 74px 0 100px;
  animation: enter-left 800ms ease both;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 650px;
  margin: 24px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(58px, 6.6vw, 92px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero h1 em,
.section-heading h2 em {
  color: var(--gold);
  font-weight: 500;
}

.hero-copy > p {
  max-width: 570px;
  margin: 27px 0 0;
  color: rgba(251, 248, 241, 0.7);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-highlight {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 30px;
  padding: 10px 0 10px 20px;
  border-left: 2px solid var(--gold);
}

.hero-highlight strong {
  color: var(--gold-soft);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

.hero-highlight span {
  color: rgba(251, 248, 241, 0.58);
  font-size: 11px;
  letter-spacing: 0.05em;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 29px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 180ms ease;
}

.button-gold {
  background: linear-gradient(135deg, #edc878, var(--gold-deep));
  color: var(--ink);
}

.button-outline {
  border: 1px solid rgba(215, 172, 94, 0.62);
  color: var(--gold-soft);
}

.button-outline:hover {
  background: var(--gold);
  color: var(--ink);
}

.hero-portrait {
  align-self: end;
  height: calc(100vh - 82px);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: enter-right 900ms 120ms ease both;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: auto 6% 0;
  height: 28%;
  background: linear-gradient(to top, var(--ink), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-portrait img {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 88%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(215, 172, 94, 0.32);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.portrait-ring {
  position: absolute;
  width: 510px;
  height: 510px;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(215, 172, 94, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -48%);
}

.portrait-ring::before,
.portrait-ring::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(215, 172, 94, 0.14);
  border-radius: inherit;
}

.portrait-ring::after {
  inset: -22px;
  border-style: dashed;
}

.portrait-stamp {
  position: absolute;
  right: -10px;
  bottom: 13%;
  z-index: 4;
  min-width: 188px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.82);
  backdrop-filter: blur(12px);
}

.portrait-stamp small,
.portrait-stamp strong {
  display: block;
}

.portrait-stamp small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.portrait-stamp strong {
  margin-top: 5px;
  color: var(--gold-soft);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 30px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  color: var(--gold);
  font-size: 19px;
  font-style: normal;
}

.section {
  padding: 120px 0;
}

.section-light {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.about-visual {
  position: relative;
}

.photo-frame {
  position: relative;
  width: 100%;
  height: 660px;
  overflow: hidden;
  border: 1px solid rgba(194, 148, 65, 0.55);
}

.photo-frame::before {
  display: none;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.85);
  transform: scale(1.075);
  transform-origin: center top;
}

.experience-card {
  position: absolute;
  right: -36px;
  bottom: 44px;
  width: 180px;
  padding: 24px;
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.experience-card strong,
.experience-card span {
  display: block;
}

.experience-card strong {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
}

.experience-card span {
  margin-top: 7px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.about-copy h2,
.section-heading h2 {
  margin: 12px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(44px, 4.5vw, 66px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.about-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.about-copy > p strong {
  color: var(--ink);
}

blockquote {
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  color: #34312c;
  font-family: var(--font-serif);
  font-size: 23px;
  font-style: italic;
  line-height: 1.35;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.credential-grid > div {
  min-height: 100px;
  padding: 21px;
  border: 1px solid rgba(194, 148, 65, 0.28);
  background: rgba(255, 255, 255, 0.52);
  transition: border 180ms ease, transform 180ms ease;
}

.credential-grid > div:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.credential-grid span,
.credential-grid strong {
  display: block;
}

.credential-grid span {
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.credential-grid strong {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
}

.specialties {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

.specialties::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(215, 172, 94, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 172, 94, 0.5) 1px, transparent 1px);
  background-size: 90px 90px;
}

.specialty-aura {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(215, 172, 94, 0.15);
  filter: blur(120px);
}

.specialty-aura-one {
  left: -270px;
  top: -180px;
}

.specialty-aura-two {
  right: -250px;
  bottom: -220px;
}

.specialties .container {
  position: relative;
  z-index: 2;
}

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

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

.section-heading p {
  max-width: 600px;
  margin: 22px auto 0;
  color: rgba(251, 248, 241, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.specialty-card {
  grid-column: span 2;
  min-height: 280px;
  position: relative;
  padding: 30px;
  border: 1px solid rgba(215, 172, 94, 0.2);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  transition: transform 200ms ease, border 200ms ease, background 200ms ease;
}

.specialty-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.specialty-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 172, 94, 0.8);
  background: rgba(215, 172, 94, 0.07);
}

.card-number {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.specialty-card h3 {
  margin: 44px 0 0;
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 600;
}

.specialty-card p {
  margin: 13px 0 0;
  color: rgba(251, 248, 241, 0.58);
  font-size: 12px;
  line-height: 1.75;
}

.specialty-card a {
  position: absolute;
  left: 30px;
  bottom: 28px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.specialty-card a span {
  margin-left: 5px;
}

.center-action {
  margin-top: 44px;
  text-align: center;
}

.consultations {
  background:
    radial-gradient(circle at 8% 10%, rgba(215, 172, 94, 0.12), transparent 28%),
    var(--ivory);
}

.consultation-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  max-width: none;
  gap: 80px;
}

.consultation-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -58px;
}

.consultation-heading h2 {
  font-size: clamp(46px, 5vw, 70px);
}

.consultation-heading p {
  margin: 0 0 8px;
  color: var(--muted);
}

.consultation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.consultation-card {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.consultation-card::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -150px;
  top: -170px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
}

.consultation-card-dark {
  background: var(--ink);
  color: var(--ivory);
}

.consultation-card-gold {
  background: linear-gradient(145deg, #edc97f, var(--gold-deep));
  color: var(--ink);
}

.consultation-index {
  font-family: var(--font-serif);
  font-size: 18px;
}

.consultation-card-dark .consultation-index,
.consultation-card-dark small,
.consultation-card-dark a {
  color: var(--gold);
}

.consultation-card small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.consultation-card h3 {
  margin: 9px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 600;
  line-height: 1;
}

.consultation-card p {
  max-width: 430px;
  margin: 20px 0 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.66;
}

.consultation-card > a {
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 600;
}

.prevention {
  padding: 90px 0;
  background: var(--paper);
  border-block: 1px solid rgba(194, 148, 65, 0.18);
}

.prevention-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 90px;
}

.prevention-title h2 {
  margin: 13px 0 0;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.prevention-title h2 em {
  color: var(--gold-deep);
}

.prevention-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(194, 148, 65, 0.25);
  border-left: 1px solid rgba(194, 148, 65, 0.25);
}

.prevention-list li {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-right: 1px solid rgba(194, 148, 65, 0.25);
  border-bottom: 1px solid rgba(194, 148, 65, 0.25);
}

.prevention-list span {
  color: var(--gold-deep);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.prevention-list strong {
  max-width: 220px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-section {
  position: relative;
  background: #f2ede4;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0 0 0 50%;
  background: rgba(255, 255, 255, 0.35);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 2;
}

.testimonial-photo {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(194, 148, 65, 0.5);
}

.testimonial-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(0.18);
}

.testimonial-photo > div {
  position: absolute;
  right: -36px;
  bottom: 38px;
  min-width: 190px;
  padding: 20px;
  background: var(--ink);
  color: var(--ivory);
}

.testimonial-photo strong,
.testimonial-photo span {
  display: block;
}

.testimonial-photo strong {
  font-family: var(--font-serif);
  font-size: 20px;
}

.testimonial-photo span {
  margin-top: 3px;
  color: var(--gold);
  font-size: 10px;
}

.testimonial-copy {
  position: relative;
}

.quote-mark {
  position: absolute;
  right: 0;
  top: -38px;
  color: rgba(194, 148, 65, 0.22);
  font-family: var(--font-serif);
  font-size: 190px;
  line-height: 1;
}

.testimonial-copy blockquote {
  max-width: 760px;
  margin: 34px 0 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.28;
}

.testimonial-copy > p {
  max-width: 660px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.rating {
  margin-top: 24px;
  color: var(--gold-deep);
  font-size: 14px;
  letter-spacing: 0.22em;
}

.journal {
  background: var(--ivory);
}

.journal-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.journal-heading h2,
.faq-intro h2,
.contact-grid h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
}

.journal-note {
  padding-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.article-card {
  border: 1px solid rgba(194, 148, 65, 0.24);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(32, 26, 17, 0.08);
}

.article-image {
  height: 290px;
  position: relative;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.article-card:hover .article-image img {
  transform: scale(1.045);
}

.article-image span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 13px;
  background: rgba(9, 9, 9, 0.82);
  color: var(--gold-soft);
  font-size: 9px;
  backdrop-filter: blur(10px);
}

.article-content {
  padding: 28px;
}

.article-content small {
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-content h3 {
  margin: 13px 0 0;
  font-family: var(--font-serif);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.05;
}

.article-content p {
  min-height: 70px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.article-content > a {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  font-size: 10px;
  font-weight: 600;
}

.faq-section {
  background: var(--ink);
  color: var(--ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 122px;
}

.faq-intro p {
  max-width: 410px;
  margin: 24px 0 30px;
  color: rgba(251, 248, 241, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.faq-list {
  border-top: 1px solid rgba(215, 172, 94, 0.28);
}

.faq-list details {
  border-bottom: 1px solid rgba(215, 172, 94, 0.28);
}

.faq-list summary {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -8px 50px 28px 0;
  color: rgba(251, 248, 241, 0.58);
  font-size: 12px;
  line-height: 1.8;
}

.contact-section {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  background: #111;
  color: var(--ivory);
  border-top: 1px solid rgba(215, 172, 94, 0.2);
}

.contact-aura {
  position: absolute;
  width: 680px;
  height: 680px;
  left: -300px;
  bottom: -410px;
  border-radius: 50%;
  background: rgba(215, 172, 94, 0.18);
  filter: blur(120px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 110px;
  position: relative;
  z-index: 2;
}

.contact-grid > div > p {
  max-width: 610px;
  margin: 24px 0 32px;
  color: rgba(251, 248, 241, 0.62);
  font-size: 13px;
  line-height: 1.8;
}

.contact-grid address {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(215, 172, 94, 0.25);
  border-left: 1px solid rgba(215, 172, 94, 0.25);
  font-style: normal;
}

.contact-grid address > div {
  min-height: 145px;
  padding: 26px;
  border-right: 1px solid rgba(215, 172, 94, 0.25);
  border-bottom: 1px solid rgba(215, 172, 94, 0.25);
}

.contact-grid address span,
.contact-grid address strong,
.contact-grid address small,
.contact-grid address a {
  display: block;
}

.contact-grid address span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-grid address strong,
.contact-grid address a {
  margin-top: 13px;
  overflow-wrap: anywhere;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-grid address small {
  margin-top: 5px;
  color: rgba(251, 248, 241, 0.48);
  font-size: 10px;
}

footer {
  padding: 70px 0 30px;
  background: #090909;
  color: var(--ivory);
  border-top: 1px solid rgba(215, 172, 94, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.footer-brand img {
  width: 188px;
}

.footer-grid > p {
  max-width: 340px;
  color: rgba(251, 248, 241, 0.5);
  font-size: 11px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}

.footer-links a {
  color: rgba(251, 248, 241, 0.58);
  font-size: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(215, 172, 94, 0.14);
  color: rgba(251, 248, 241, 0.38);
  font-size: 9px;
  letter-spacing: 0.05em;
}

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

@keyframes enter-left {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
}

@keyframes enter-right {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
  }

  .portrait-stamp {
    right: 0;
  }

  .about-grid {
    gap: 60px;
  }

  .consultation-heading,
  .contact-grid {
    gap: 60px;
  }

  .testimonial-grid,
  .faq-grid {
    gap: 64px;
  }
}

@media (max-width: 780px) {
  .container,
  .nav-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    height: 72px;
  }

  .brand img {
    width: 144px;
  }

  .nav-cta {
    min-width: auto;
    padding: 11px 18px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    padding: 76px 0 22px;
    position: relative;
    z-index: 4;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 70px);
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-portrait {
    width: 100%;
    height: 530px;
    margin-top: -30px;
  }

  .hero-portrait img {
    max-height: 100%;
  }

  .portrait-ring {
    width: 380px;
    height: 380px;
  }

  .portrait-stamp {
    right: -4px;
    bottom: 12%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .photo-frame {
    height: 580px;
  }

  .experience-card {
    right: -8px;
  }

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

  .specialty-card,
  .specialty-card:nth-child(4) {
    grid-column: auto;
  }

  .consultation-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .consultation-heading .section-kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

  .consultation-heading p {
    margin-top: 0;
  }

  .consultation-grid,
  .prevention-grid,
  .testimonial-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .prevention-grid {
    gap: 48px;
  }

  .testimonial-section::before {
    display: none;
  }

  .testimonial-photo {
    width: min(500px, 90%);
    margin-inline: auto;
  }

  .testimonial-copy {
    text-align: center;
  }

  .testimonial-copy blockquote,
  .testimonial-copy > p {
    margin-inline: auto;
  }

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

  .article-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    margin-inline: auto;
  }

  .faq-intro {
    position: static;
  }

  .contact-grid {
    gap: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .footer-brand img,
  .footer-grid > p {
    margin-inline: auto;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .eyebrow {
    align-items: flex-start;
    line-height: 1.5;
  }

  .eyebrow span {
    margin-top: 7px;
    flex: 0 0 28px;
  }

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

  .button {
    width: 100%;
  }

  .hero-portrait {
    height: 450px;
  }

  .portrait-ring {
    width: 300px;
    height: 300px;
  }

  .portrait-stamp {
    min-width: 156px;
    padding: 14px;
  }

  .portrait-stamp strong {
    font-size: 15px;
  }

  .photo-frame {
    height: 500px;
  }

  .photo-frame::before {
    inset: -10px 10px 10px -10px;
  }

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

  .about-copy h2,
  .section-heading h2 {
    font-size: 43px;
  }

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

  .consultation-card {
    min-height: 380px;
    padding: 30px;
  }

  .prevention {
    padding: 72px 0;
  }

  .prevention-title h2 {
    font-size: 42px;
  }

  .prevention-list {
    grid-template-columns: 1fr;
  }

  .testimonial-photo {
    width: calc(100% - 12px);
  }

  .testimonial-photo > div {
    right: -12px;
  }

  .testimonial-copy {
    text-align: left;
  }

  .testimonial-copy blockquote {
    font-size: 26px;
  }

  .quote-mark {
    top: -24px;
    font-size: 130px;
  }

  .journal-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .article-image {
    height: 320px;
  }

  .article-content p {
    min-height: auto;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 19px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .contact-section {
    padding: 94px 0;
  }

  .contact-grid address {
    grid-template-columns: 1fr;
  }

  .contact-grid h2,
  .journal-heading h2,
  .faq-intro h2 {
    font-size: 43px;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

/* Paleta final da FAQ: sem texto branco e com contraste alto */
.faq-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 166, 82, 0.2), transparent 36%),
    linear-gradient(145deg, #d8d1c6, #c8c0b4) !important;
  color: #2f322e !important;
  border-top: 1px solid rgba(126, 91, 34, 0.32);
}

.faq-section .section-kicker {
  color: #8d611e;
}

.faq-intro h2,
.faq-list summary {
  color: #2f322e !important;
}

.faq-intro p,
.faq-list details p {
  color: #4a4d47 !important;
}

.faq-list,
.faq-list details {
  border-color: rgba(110, 83, 42, 0.34) !important;
}

.faq-list summary i {
  color: #946619;
  font-weight: 500;
}

.faq-intro .button-gold {
  background: linear-gradient(135deg, #d8ad58, #b98736);
  color: #242721;
  box-shadow: 0 10px 28px rgba(101, 73, 27, 0.13);
}

/* Correções de contraste, espaçamento e destaque do cabeçalho */
.site-header {
  height: 92px;
}

.brand img {
  width: 212px;
  filter: none;
}

.desktop-nav {
  gap: 28px;
}

.desktop-nav a {
  color: #353832;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.desktop-nav a:hover {
  color: #9a6c22;
}

.nav-cta {
  min-width: 120px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  padding-top: 92px;
}

.hero-grid {
  min-height: calc(100vh - 92px);
}

.hero-portrait {
  height: calc(100vh - 92px);
}

.journal {
  position: relative;
  z-index: 2;
  padding-bottom: 180px;
}

.article-grid {
  align-items: stretch;
}

.article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.article-content p {
  min-height: 0;
}

.article-content > a {
  margin-top: auto;
  padding-top: 24px;
  align-self: flex-start;
}

.faq-section {
  position: relative;
  z-index: 3;
  margin-top: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 166, 82, 0.14), transparent 34%),
    linear-gradient(145deg, #53544f, #41423e);
  color: #fffdf8;
  border-top: 1px solid rgba(232, 197, 126, 0.32);
}

.faq-intro h2,
.faq-list summary {
  color: #fffdf8;
}

.faq-intro p,
.faq-list details p {
  color: rgba(255, 255, 255, 0.82);
}

.faq-list,
.faq-list details {
  border-color: rgba(232, 197, 126, 0.34);
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  min-height: 96px;
  line-height: 1.25;
  padding: 18px 0;
}

.faq-list details p {
  margin-top: 0;
  padding-bottom: 8px;
}

@media (max-width: 900px) {
  .site-header {
    height: 84px;
  }

  .brand img {
    width: 188px;
  }

  .hero {
    padding-top: 84px;
  }

  .journal {
    padding-bottom: 130px;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 172px;
  }

  .journal {
    padding-bottom: 110px;
  }

  .faq-list summary {
    min-height: 84px;
    font-size: 22px;
  }
}

/* Identidade clara inspirada no site anterior da Alana */
:root {
  --gold: #d4a652;
  --gold-deep: #b88935;
  --gold-soft: #f1dfb7;
  --ink: #30342f;
  --charcoal: #4c4942;
  --ivory: #fbfaf6;
  --paper: #ffffff;
  --muted: #716f69;
  --line: rgba(212, 166, 82, 0.32);
}

.site-header {
  border-bottom-color: rgba(212, 166, 82, 0.24);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 8px 30px rgba(94, 76, 44, 0.07);
}

.brand img,
.footer-brand img {
  filter: drop-shadow(0 1px 0 rgba(74, 57, 29, 0.35));
}

.desktop-nav a {
  color: rgba(48, 52, 47, 0.76);
}

.desktop-nav a:hover {
  color: var(--gold-deep);
}

.nav-cta,
.button-gold {
  background: linear-gradient(135deg, #e9c675, #c89943);
  color: #30342f;
}

.hero {
  color: #30342f;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.98) 0%, rgba(251, 244, 227, 0.95) 48%, rgba(239, 215, 165, 0.68) 100%),
    radial-gradient(circle at 76% 44%, rgba(212, 166, 82, 0.23), transparent 43%),
    #f8f2e6;
}

.hero::after {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(184, 137, 53, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 137, 53, 0.12) 1px, transparent 1px);
  mask-image: linear-gradient(to right, transparent 8%, black 74%);
}

.hero-glow {
  background: rgba(212, 166, 82, 0.28);
}

.hero h1 {
  color: #30342f;
}

.hero-copy > p {
  color: rgba(48, 52, 47, 0.7);
}

.hero-highlight {
  border-left-color: var(--gold-deep);
}

.hero-highlight strong {
  color: #9d7026;
}

.hero-highlight span {
  color: rgba(48, 52, 47, 0.58);
}

.button-outline {
  border-color: rgba(184, 137, 53, 0.62);
  color: #75531d;
}

.button-outline:hover {
  background: #d4a652;
  color: #30342f;
}

.hero-portrait::after {
  background: linear-gradient(to top, rgba(238, 218, 176, 0.82), transparent);
}

.portrait-ring {
  border-color: rgba(184, 137, 53, 0.42);
}

.portrait-ring::before,
.portrait-ring::after {
  border-color: rgba(184, 137, 53, 0.2);
}

.portrait-stamp {
  border-color: rgba(212, 166, 82, 0.52);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 48px rgba(87, 67, 32, 0.16);
}

.portrait-stamp small {
  color: rgba(48, 52, 47, 0.56);
}

.portrait-stamp strong {
  color: #8c6423;
}

.scroll-cue {
  color: rgba(48, 52, 47, 0.45);
}

.specialties {
  background:
    radial-gradient(circle at 14% 8%, rgba(212, 166, 82, 0.16), transparent 28%),
    linear-gradient(145deg, #555650, #454641);
  color: #fffdf8;
}

.specialties::before {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(184, 137, 53, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 137, 53, 0.25) 1px, transparent 1px);
}

.specialty-aura {
  background: rgba(212, 166, 82, 0.2);
}

.section-heading p,
.specialty-card p {
  color: rgba(255, 255, 255, 0.78);
}

.specialty-card {
  border-color: rgba(232, 197, 126, 0.32);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 45px rgba(25, 25, 22, 0.09);
}

.specialty-card:hover {
  border-color: rgba(232, 197, 126, 0.82);
  background: rgba(255, 255, 255, 0.11);
}

.specialty-card h3,
.specialties .section-heading h2 {
  color: #fffdf8;
}

.consultation-card-dark {
  background: linear-gradient(145deg, #5a5b56, #484944);
  color: #fffdf8;
  border: 1px solid rgba(184, 137, 53, 0.34);
}

.consultation-card-dark .consultation-index,
.consultation-card-dark small,
.consultation-card-dark a {
  color: #edcf92;
}

.consultation-card-dark p {
  opacity: 0.82;
}

.consultation-card-gold {
  background: linear-gradient(145deg, #efd593, #d1a04b);
}

.testimonial-section {
  background: #fffdf9;
}

.faq-section {
  background: #f5f1e9;
}

.contact-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(212, 166, 82, 0.16), transparent 32%),
    linear-gradient(135deg, #595a55, #474843);
  color: #fffdf8;
}

.contact-grid > div > p,
.contact-grid address small {
  color: rgba(255, 255, 255, 0.74);
}

.contact-grid address {
  border-color: rgba(232, 197, 126, 0.3);
  background: rgba(255, 255, 255, 0.075);
}

.contact-grid address > div {
  border-color: rgba(232, 197, 126, 0.23);
}

.contact-grid address strong,
.contact-grid address a,
.contact-grid h2 {
  color: #fffdf8;
}

footer {
  background: #363832;
  color: var(--ivory);
}

.photo-frame {
  height: 680px;
  overflow: visible;
  border: 0;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  filter: none;
  transform: none;
}

.experience-card {
  right: 4px;
  bottom: 36px;
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(255, 253, 248, 0.97);
  }

  .hero {
    background:
      linear-gradient(180deg, #fffdf8 0%, #f7edd9 62%, #eed9ad 100%);
  }

  .photo-frame {
    height: 610px;
  }
}

@media (max-width: 520px) {
  .photo-frame {
    height: 520px;
  }

  .photo-frame img {
    object-position: center bottom;
  }
}

/* Escala tipográfica revisada para leitura confortável */
.desktop-nav a,
.nav-cta,
.button {
  font-size: 14px;
}

.eyebrow,
.section-kicker {
  font-size: 13px;
  line-height: 1.5;
}

.hero-copy > p {
  font-size: 18px;
  line-height: 1.75;
}

.hero-highlight span {
  font-size: 13px;
  line-height: 1.55;
}

.portrait-stamp small,
.scroll-cue span {
  font-size: 11px;
}

.about-copy > p,
.section-heading p,
.consultation-heading p {
  font-size: 16px;
  line-height: 1.8;
}

.experience-card span {
  font-size: 12px;
  line-height: 1.5;
}

.credential-grid span {
  font-size: 11px;
}

.credential-grid strong {
  font-size: 20px;
  line-height: 1.3;
}

.card-number,
.consultation-card small,
.consultation-index,
.prevention-list span {
  font-size: 12px;
}

.specialty-card h3 {
  font-size: 30px;
}

.specialty-card p {
  font-size: 15px;
  line-height: 1.75;
}

.specialty-card a,
.consultation-card > a {
  font-size: 13px;
}

.consultation-card p {
  font-size: 16px;
  line-height: 1.75;
}

.prevention-list strong {
  font-size: 21px;
  line-height: 1.3;
}

.testimonial-photo span {
  font-size: 12px;
}

.testimonial-copy > p {
  font-size: 16px;
  line-height: 1.75;
}

.rating {
  font-size: 17px;
}

.article-image span,
.article-content small {
  font-size: 11px;
}

.article-content p {
  min-height: 84px;
  font-size: 15px;
  line-height: 1.7;
}

.article-content > a {
  font-size: 13px;
}

.faq-intro p,
.faq-list details p {
  font-size: 16px;
  line-height: 1.75;
}

.faq-list summary {
  font-size: 24px;
}

.contact-grid > div > p {
  font-size: 16px;
  line-height: 1.75;
}

.contact-grid address span {
  font-size: 11px;
}

.contact-grid address strong,
.contact-grid address a {
  font-size: 19px;
  line-height: 1.35;
}

.contact-grid address small {
  font-size: 13px;
  line-height: 1.5;
}

.footer-grid > p,
.footer-links a {
  font-size: 14px;
  line-height: 1.65;
}

.footer-bottom {
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 520px) {
  .desktop-nav a,
  .nav-cta,
  .button {
    font-size: 14px;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .specialty-card p,
  .consultation-card p,
  .article-content p,
  .faq-intro p,
  .faq-list details p,
  .contact-grid > div > p {
    font-size: 16px;
  }
}
