:root {
  --cream: #f6f1e5;
  --cream-2: #fbf8f0;
  --paper: #fffdf7;
  --forest: #33472f;
  --forest-deep: #22331f;
  --sage: #87987a;
  --sage-soft: #dfe7d7;
  --sage-pale: #edf1e8;
  --gold: #e4cc3f;
  --ink: #2c352a;
  --muted: #687061;
  --line: rgba(51, 71, 47, .16);
  --shadow: 0 24px 80px rgba(40, 56, 35, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 8%, rgba(228, 204, 63, .12), transparent 28rem),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.site-shell { overflow: hidden; }

.hero {
  position: relative;
  max-width: 1280px;
  min-height: 710px;
  margin: 0 auto;
  padding: 64px 54px 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  gap: 78px;
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.brand {
  display: block;
  width: min(480px, 85%);
  height: auto;
  margin-bottom: 58px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}
.hero h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 6vw, 6.3rem);
  line-height: .9;
}
.hero h1 span {
  color: var(--forest);
  position: relative;
  display: inline-block;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  left: 3%;
  right: -4%;
  bottom: -.14em;
  height: .18em;
  border-bottom: 3px solid rgba(228, 204, 63, .9);
  border-radius: 50%;
  transform: rotate(-1.3deg);
}
.lead {
  max-width: 620px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 1.11rem;
  line-height: 1.75;
}
.lead strong { color: var(--forest); }
.status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, .72);
  color: var(--forest);
  font-size: .91rem;
  font-weight: 700;
}
.status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(228, 204, 63, .2);
}

.hero__portrait-wrap {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(100%, 520px);
}
.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 46% 54% 48% 52% / 37% 42% 58% 63%;
  background: var(--sage-soft);
  box-shadow: var(--shadow);
  transform: rotate(1.1deg);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: inherit;
  pointer-events: none;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.06);
}
.portrait-note {
  position: absolute;
  right: -24px;
  bottom: 46px;
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 16px 19px 16px 15px;
  background: rgba(255, 253, 247, .96);
  border: 1px solid rgba(51,71,47,.11);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(39,55,34,.14);
  transform: rotate(-2deg);
}
.portrait-note__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 1.2rem;
}
.portrait-note strong,
.portrait-note span { display: block; }
.portrait-note strong {
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}
.portrait-note div > span { margin-top: 3px; color: var(--muted); font-size: .82rem; }

.hero__decor { position: absolute; pointer-events: none; }
.hero__decor--one {
  width: 360px;
  height: 270px;
  right: 4%;
  top: 6%;
  border: 1px solid rgba(51,71,47,.15);
  border-radius: 48% 52% 59% 41% / 44% 37% 63% 56%;
  transform: rotate(12deg);
}
.hero__decor--two {
  width: 170px;
  height: 170px;
  left: 3%;
  bottom: 4%;
  background: rgba(135,152,122,.08);
  border-radius: 62% 38% 47% 53% / 40% 55% 45% 60%;
  transform: rotate(-18deg);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 72px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 92px;
  padding: 62px 70px;
  background: var(--forest);
  border-radius: 52px 18px 52px 18px;
  color: #f5f2e9;
  box-shadow: 0 22px 65px rgba(34,51,31,.17);
}
.contact::before {
  content: "✦";
  position: absolute;
  top: 30px;
  left: 34px;
  color: var(--gold);
  opacity: .9;
  font-size: 1.3rem;
}
.contact .eyebrow { color: #cfd9c7; }
.contact h2 {
  color: #fffdf7;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: .98;
}
.contact__intro > p:last-child {
  max-width: 470px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
  font-size: 1.02rem;
}
.contact__card {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 16px 50px rgba(19,30,17,.2);
}
.contact__row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
  padding: 8px 0 21px;
}
.contact__row + .contact__row {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.contact__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px 12px 15px 12px;
  background: var(--sage-pale);
  color: var(--forest);
  font-size: 1.05rem;
}
.contact__row div > * { display: block; }
.contact__label {
  margin-bottom: 5px;
  color: var(--sage);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact__row strong { margin-bottom: 4px; color: var(--forest-deep); font-size: 1.03rem; }
.contact__row div > span:last-child { color: var(--muted); line-height: 1.55; }
.contact__row a { color: var(--forest); font-size: 1.17rem; font-weight: 800; text-decoration: none; }
.contact__row a:hover { text-decoration: underline; text-underline-offset: 4px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 4px;
  padding: 15px 21px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest-deep);
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(55,70,40,.14); }

.footer {
  padding: 0 24px 30px;
  color: var(--muted);
  font-size: .86rem;
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer nav { display: flex; gap: 20px; }
.footer a { color: var(--forest); text-decoration: none; }
.footer a:hover { text-decoration: underline; text-underline-offset: 4px; }

.legal-page { min-height: 100vh; }
.legal {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 72px;
}
.legal__logo { width: min(330px, 72%); display: block; margin: 44px 0 48px; }
.legal h1 { font-size: clamp(3rem, 7vw, 5.4rem); line-height: .95; }
.legal__card {
  margin-top: 36px;
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255,253,247,.9);
  border: 1px solid var(--line);
  border-radius: 32px 14px 32px 14px;
  box-shadow: var(--shadow);
}
.legal__card h2 {
  margin-top: 32px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0;
  font-weight: 800;
}
.legal__card h2:first-child { margin-top: 0; }
.legal__card p { color: var(--muted); line-height: 1.75; }
.legal__card a { color: var(--forest); font-weight: 700; }
.back { color: var(--forest); text-decoration: none; font-weight: 800; }
.back:hover { text-decoration: underline; text-underline-offset: 4px; }
.legal__note { padding: 18px 20px; background: var(--sage-pale); border-radius: 16px; color: var(--forest) !important; }

@media (max-width: 950px) {
  .hero {
    min-height: auto;
    padding: 44px 28px 72px;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .brand { width: min(440px, 78%); margin-bottom: 44px; }
  .hero__portrait-wrap { width: min(82vw, 520px); }
  .contact {
    margin-inline: 22px;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 54px 44px;
  }
}

@media (max-width: 620px) {
  .hero { padding: 30px 20px 58px; gap: 34px; }
  .brand { width: min(420px, 92%); margin-bottom: 38px; }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 4.6rem); line-height: .9; }
  .lead { margin-top: 30px; font-size: 1rem; line-height: 1.65; }
  .status { align-items: flex-start; border-radius: 18px; line-height: 1.4; }
  .status__dot { margin-top: 5px; flex: 0 0 auto; }
  .hero__portrait-wrap { width: min(92vw, 470px); padding-right: 7px; }
  .portrait-frame { aspect-ratio: 1 / 1.16; }
  .portrait-note { right: -4px; bottom: 20px; max-width: 88%; padding: 13px 14px; }
  .portrait-note__mark { width: 36px; height: 36px; }
  .contact {
    margin: 0 12px 54px;
    padding: 46px 20px 22px;
    border-radius: 34px 12px 34px 12px;
  }
  .contact::before { top: 20px; left: 20px; }
  .contact h2 { font-size: 2.8rem; }
  .contact__card { padding: 20px; border-radius: 22px; }
  .contact__row { grid-template-columns: 42px 1fr; }
  .footer__inner { align-items: flex-start; flex-direction: column; }
  .footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
