:root {
  --forest: #173d2b;
  --forest-2: #24563c;
  --leaf: #6f8f69;
  --sage: #aebfa6;
  --sand: #e9dfca;
  --cream: #f8f4eb;
  --paper: #fffdf8;
  --earth: #8a6747;
  --ink: #1b241e;
  --muted: #667269;
  --line: rgba(23, 61, 43, 0.12);
  --shadow: 0 24px 60px rgba(35, 51, 40, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(174, 191, 166, 0.22), transparent 28%),
    var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 235, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 61, 43, 0.07);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 61, 43, 0.18);
  border-radius: 50%;
  color: var(--forest);
  background: var(--paper);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: -2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav > a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.93rem;
  color: #34443a;
  transition: 0.25s ease;
}

.main-nav > a:hover { background: rgba(23, 61, 43, 0.07); }
.main-nav .nav-cta {
  background: var(--forest);
  color: white;
  padding-inline: 18px;
}
.main-nav .nav-cta:hover { background: var(--forest-2); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(23,61,43,.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest);
  margin: 4px auto;
  transition: 0.25s ease;
}

.section-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 80px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--earth);
}

.hero h1,
.section-heading h2,
.profile-copy h2,
.statement h2,
.contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--forest);
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  letter-spacing: 0.03em;
  line-height: 0.92;
  margin: 24px 0 18px;
}

.hero-subtitle {
  margin: 0 0 26px;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  color: #53635a;
  max-width: 590px;
}

.professional-card.compact {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 32px rgba(35, 51, 40, 0.07);
}

.professional-card strong { color: var(--forest); font-size: 1.03rem; }
.professional-card span:last-child { color: var(--muted); font-size: 0.94rem; }
.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--earth);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.94rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 14px 30px rgba(23, 61, 43, 0.18);
}
.btn-primary:hover { background: var(--forest-2); }
.btn-ghost {
  border: 1px solid rgba(23, 61, 43, 0.18);
  background: rgba(255,255,255,.35);
  color: var(--forest);
}
.btn-large { min-height: 60px; padding-inline: 28px; }

.hero-visual {
  min-height: 490px;
  display: grid;
  place-items: center;
  position: relative;
}

.visual-card {
  width: min(420px, 100%);
  aspect-ratio: 0.86;
  border-radius: 180px 180px 46px 46px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.44), rgba(255,255,255,.1)),
    linear-gradient(160deg, #dce7d7 0%, #a8bea1 45%, #7a9b75 100%);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.5);
  overflow: hidden;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: inherit;
}

.center-symbol {
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(23,61,43,.25);
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 4.4rem;
  background: rgba(255,255,255,.28);
  position: relative;
  z-index: 3;
}

.visual-name {
  position: relative;
  z-index: 3;
  margin-top: 24px;
  font-family: Georgia, serif;
  letter-spacing: .15em;
  color: var(--forest);
  font-size: 1rem;
}
.visual-tagline {
  position: relative;
  z-index: 3;
  font-size: .8rem;
  color: #34503b;
  margin-top: 5px;
}

.leaf {
  position: absolute;
  width: 120px;
  height: 52px;
  border-radius: 100% 0 100% 0;
  border: 1px solid rgba(23,61,43,.3);
  background: rgba(255,255,255,.15);
}
.leaf-a { top: 95px; left: 40px; transform: rotate(-30deg); }
.leaf-b { right: 40px; bottom: 120px; transform: rotate(22deg) scale(.9); }
.leaf-c { left: 90px; bottom: 55px; transform: rotate(8deg) scale(.65); }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.orb-back {
  width: 350px;
  height: 350px;
  background: rgba(233, 223, 202, .72);
  right: -50px;
  bottom: 10px;
  z-index: -1;
}

.decor { position: absolute; border-radius: 50%; }
.decor-one {
  width: 360px;
  height: 360px;
  background: rgba(174,191,166,.22);
  top: -130px;
  left: -140px;
}
.decor-two {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(23,61,43,.08);
  right: 4vw;
  top: 70px;
}

.section { padding: 100px 0; }
.section-heading { max-width: 620px; margin-bottom: 42px; }
.section-heading h2 { font-size: clamp(2.6rem, 5vw, 4.6rem); margin: 12px 0 6px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.1rem; }

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

.identity-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(35,51,40,.06);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.identity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.identity-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(174,191,166,.22);
  right: -70px;
  top: -60px;
}
.identity-number {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: .74rem;
  font-weight: 800;
  color: var(--earth);
  letter-spacing: .1em;
}
.identity-icon {
  position: relative;
  z-index: 1;
  font-size: 3.2rem;
  color: var(--forest-2);
  margin-bottom: 34px;
}
.identity-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--forest);
}

.section-profile {
  background: linear-gradient(180deg, rgba(255,253,248,.5), rgba(255,253,248,.88));
  border-block: 1px solid rgba(23,61,43,.07);
}
.profile-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.profile-art {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}
.profile-monogram {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: white;
  font-family: Georgia, serif;
  font-size: 4.2rem;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.profile-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(23,61,43,.14);
}
.ring-one { width: 330px; height: 330px; }
.ring-two { width: 420px; height: 420px; border-style: dashed; opacity: .5; }
.profile-copy h2 { font-size: clamp(2.8rem, 5.8vw, 5.2rem); margin: 12px 0; line-height: 1; }
.profile-degree { font-size: 1.25rem; color: var(--earth); margin: 0; }
.profile-line { width: 110px; height: 1px; background: rgba(23,61,43,.2); margin: 32px 0; }
.profile-brand { font-family: Georgia, serif; letter-spacing: .13em; color: var(--forest); margin: 0; }
.profile-tagline { color: var(--muted); margin: 4px 0 0; }

.statement {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(174,191,166,.18), transparent 25%),
    var(--forest);
  color: white;
}
.statement-inner { text-align: center; max-width: 880px; }
.statement-mark { display: inline-block; font-size: 2.2rem; color: var(--sand); margin-bottom: 10px; }
.statement-small { margin: 0; letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; color: #dbe5d9; }
.statement h2 { color: white; font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: 1.03; margin: 18px 0 30px; }
.statement-person { display: inline-flex; flex-direction: column; gap: 2px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); }
.statement-person span { color: #cbd8cd; }

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(30px, 5vw, 60px);
  border-radius: var(--radius-xl);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact h2 { margin: 10px 0 0; font-size: clamp(2.4rem, 5vw, 4.8rem); }
.contact-number { font-size: 1.25rem; color: var(--muted); margin: 4px 0 0; letter-spacing: .05em; }

.site-footer {
  padding: 36px 0;
  background: #102b1e;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer-grid > div { display: flex; flex-direction: column; gap: 2px; }
.footer-grid strong { font-family: Georgia, serif; font-size: 1rem; }
.footer-grid span, .footer-grid a { color: #c9d5cb; font-size: .86rem; }
.footer-grid a:hover { color: white; }

.floating-whatsapp {
  position: fixed;
  width: 58px;
  height: 58px;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1e7d4c;
  box-shadow: 0 16px 35px rgba(20,70,43,.28);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.02); }
.floating-whatsapp svg { width: 29px; height: 29px; fill: white; }

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  animation: revealIn .65s ease both;
}
@keyframes revealIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 82px 18px auto 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(255,253,248,.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px) scale(.98);
    pointer-events: none;
    transition: .24s ease;
  }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav > a { padding: 13px 14px; }
  .hero { padding-top: 55px; min-height: auto; }
  .hero-grid, .profile-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-subtitle { margin-inline: auto; }
  .professional-card.compact { text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 420px; }
  .visual-card { width: min(360px, 88vw); }
  .identity-grid { grid-template-columns: 1fr; }
  .identity-card { min-height: 220px; }
  .profile-grid { text-align: center; }
  .profile-line { margin-inline: auto; }
  .profile-art { min-height: 350px; }
  .ring-one { width: 290px; height: 290px; }
  .ring-two { width: 350px; height: 350px; }
  .contact-card { flex-direction: column; align-items: flex-start; }
  .contact-card .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 72px; }
  .brand small { display: none; }
  .main-nav { inset: 72px 12px auto 12px; }
  .hero { padding: 44px 0 64px; }
  .hero h1 { font-size: clamp(3rem, 18vw, 4.7rem); }
  .hero-subtitle { font-size: 1.08rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 360px; }
  .visual-card { width: 300px; max-width: 92vw; }
  .center-symbol { width: 105px; height: 105px; font-size: 3.6rem; }
  .section { padding: 72px 0; }
  .profile-monogram { width: 170px; height: 170px; font-size: 3.5rem; }
  .ring-one { width: 240px; height: 240px; }
  .ring-two { width: 300px; height: 300px; }
  .statement { padding: 80px 0; }
  .contact-card { padding: 28px 22px; border-radius: 24px; }
  .floating-whatsapp { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}
