:root {
  --color-primary: #111111;
  --color-secondary: #77552d;
  --color-accent: #b28a53;
  --color-background: #f8f5f1;
  --color-text: #111111;
  --off-white: #f8f5f1;
  --white-soft: #fcfbf9;
  --gold: #b28a53;
  --gold-text: #77552d;
  --black: #111;
  --gray: #5c5c5c;
  --border: #e8e1d8;
}

* { box-sizing: border-box; }
html { scroll-padding-top: 90px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.section { padding-block: 96px; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--color-background) 82%, transparent);
  backdrop-filter: blur(18px);
}
.site-header > div {
  display: flex;
  height: 74px;
  max-width: 1440px;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 20px;
}
.brand { display: flex; width: max-content; flex-direction: column; }
.brand-logo {
  display: block;
  object-fit: contain;
  object-position: left center;
}
.brand-logo-header {
  width: min(220px, 42vw);
  height: 54px;
}
.brand-name {
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .1em;
}
.brand-tagline {
  margin-top: 2px;
  color: var(--gray);
  font-size: .56rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-header nav.hidden,
.site-header .button.hidden { display: none; }
.menu-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
}
.menu-button span { display: block; width: 22px; height: 1px; background: var(--black); }
.mobile-menu { max-height: 0; overflow: hidden; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 25px;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.button-secondary { border-color: var(--border); background: transparent; color: var(--black); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-text);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 1px; background: currentColor; content: ""; }

main > section:first-child {
  position: relative;
  overflow: hidden;
  padding-top: 112px;
}
main > section:first-child > .hero-glow {
  position: absolute;
  top: 6%;
  left: -14%;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(178,138,83,.12),transparent 70%);
}
main > section:first-child > div:not(.hero-glow) {
  max-width: 1440px;
  margin: auto;
  padding-right: 20px;
  padding-bottom: 80px;
  padding-left: 20px;
}
main > section:first-child h1 {
  max-width: 800px;
  margin: 24px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(3rem,6vw,4.8rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.035em;
}
main > section:first-child h1 em { color: var(--gold); font-style: italic; }

.hero-banner,
.analysis-banner,
.especialista-photo,
.speaking-photo {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 2px 80px 2px 2px;
  background: var(--border);
}
.hero-banner img,
.analysis-banner img,
.especialista-photo img,
.speaking-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.utility-hero {
  padding-top: 130px !important;
  border-bottom: 1px solid var(--border);
}
.utility-hero > div { padding-top: 20px; }
.utility-hero > div > div { display: grid; gap: 32px; margin-top: 28px; }
.utility-hero h1 { font-size: clamp(2.35rem,5vw,4.65rem); }

.contact-layout { display: grid; gap: 56px; }
.contact-form {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--white-soft);
}
.form-grid { display: grid; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-field label {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--black);
}
.form-field textarea { min-height: 132px; resize: vertical; }
.form-consent {
  display: flex;
  gap: 12px;
  color: var(--gray);
  font-size: .78rem;
  line-height: 1.6;
}
.form-consent a { color: var(--gold-text); text-decoration: underline; }
.contact-channels { border-top: 1px solid var(--border); }
.contact-channels article { padding: 30px 0; border-bottom: 1px solid var(--border); }

.status-page {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}
.status-page h1,
.legal-page h1 { font-family: Georgia, serif; }
.legal-header { display: flex; align-items: center; justify-content: space-between; padding: 28px 20px; }
.legal-page { max-width: 860px; margin: auto; padding: 90px 20px; }
.consent-banner {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 24px;
  background: #111;
  color: #fff;
}
.consent-banner[hidden],
.consent-modal[hidden] { display: none; }

@media (min-width: 640px) {
  .site-header > div { padding-right: 32px; padding-left: 32px; }
  .site-header .button.hidden { display: inline-flex; }
  main > section:first-child > div:not(.hero-glow) { padding-right: 32px; padding-left: 32px; }
  .form-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .form-field-full { grid-column: 1/-1; }
}

@media (min-width: 1024px) {
  .section { padding-block: 140px; }
  .site-header > div { height: 90px; padding-right: 48px; padding-left: 48px; }
  main > section:first-child { padding-top: 130px; }
  main > section:first-child > div:not(.hero-glow) {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    align-items: center;
    gap: 64px;
    padding-right: 48px;
    padding-bottom: 112px;
    padding-left: 48px;
  }
  .utility-hero { padding-top: 170px !important; }
  .utility-hero > div { display: block !important; }
  .utility-hero > div > div { grid-template-columns: .66fr .34fr; align-items: end; }
  .contact-layout { grid-template-columns: minmax(0,1.15fr) minmax(280px,.85fr); }
  .hero-banner,
  .analysis-banner,
  .especialista-photo,
  .speaking-photo,
  .hero-banner img,
  .analysis-banner img,
  .especialista-photo img,
  .speaking-photo img { min-height: 680px; }
}

@media (min-width: 1280px) {
  .site-header nav.hidden { display: flex; }
  .site-header .menu-button { display: none; }
}
