:root {
  --bg: #ffffff;
  --bg-soft: #faf9f7;
  --surface: #ffffff;
  --surface-soft: #f8f6f2;
  --text: #181818;
  --muted: #66625d;
  --line: rgba(24,24,24,0.11);
  --line-soft: rgba(24,24,24,0.06);
  --accent: #6e6255;
  --max: 1180px;
  --copy-max: 920px;
  --radius: 28px;
  --shadow: 0 24px 60px rgba(24,24,24,0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.site-layout {
  position: relative;
  z-index: 1;
  padding-top: 76px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line-soft);
}

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

.brand {
  display: grid;
  gap: 2px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.brand strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand span {
  color: var(--muted);
  font-size: 14px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.mobile-menu-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(24,24,24,0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-layout {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  justify-content: flex-end;
  background: transparent;
}

.menu-layout.open {
  display: flex;
}

@media (max-width: 640px) {
  .site-layout {
    padding-top: 70px;
  }

  .menu-layout {
    background: #FF9900;
  }
}

#menu-topbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 61;
  background: transparent;
  border-bottom: 0;
  height: 76px;
}

#menu-topbar .container {
  width: min(var(--max), calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
  min-height: 76px;
  justify-content: flex-end;
  align-items: center;
}

#menu-topbar .mobile-menu-close {
  margin-right: 0;
  margin-top: 0;
  position: relative;
  right: 0;
  top: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  line-height: 1;
  padding: 0;
  opacity: 0.92;
  background: transparent;
  border: 0;
  box-shadow: none;
  appearance: none;
  display: inline;
  width: auto;
  align-self: center;
  transform: translateY(0);
}

@media (max-width: 640px) {
  #menu-topbar {
    width: 100%;
    min-width: 0;
    height: 70px;
  }
  #menu-topbar .container {
    width: 100%;
    max-width: none;
    min-height: 70px;
    padding: 0 16px;
    align-items: center;
  }
  #menu-options {
    width: 100%;
    margin-left: 0;
    min-width: 0;
    grid-column: auto;
    background: transparent;
  }
  #menu-topbar .mobile-menu-close {
    margin-right: 0;
    margin-top: 0;
    align-self: center;
    transform: translateY(0);
  }
}

#menu-options {
  position: relative;
  grid-column: 2;
  min-height: 100dvh;
  background: #FF9900;
  color: #f5f5f2;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px 24px 36px;
  font-family: Georgia, "Times New Roman", serif;
  text-align: left;
  width: min(42vw, 620px);
  margin-left: auto;
}

@media (max-width: 640px) {
  #menu-options {
    width: 100%;
    margin-left: 0;
    min-width: 0;
    grid-column: auto;
    background: transparent;
  }
}

#menu-options a {
  color: #f5f5f2;
  font-size: 48px;
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-decoration: none;
}

@media (max-width: 980px) {
  .mobile-menu-shell {
    width: min(var(--max, 1180px), calc(100% - 40px));
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 70px;
  }
  .brand strong {
    font-size: 1.15rem;
  }
  .brand span {
    font-size: 12px;
  }
  #menu-options {
    padding: 24px 24px 28px;
    padding-top: 72px;
    gap: 12px;
  }
  #menu-options a {
    font-size: 32px;
  }
}

.hero {
  padding: 104px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 64px;
  align-items: center;
}

.hero-left,
.hero-right {
  min-width: 0;
}

.hero-main {
  display: grid;
  gap: 24px;
  align-content: center;
  max-width: var(--copy-max);
}

h1 {
  margin: 0;
  color: #FF9900;
  font-size: 48px;
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -0.045em;
  max-width: var(--copy-max);
  text-wrap: normal;
}

.lead {
  margin: 0;
  max-width: var(--copy-max);
  color: var(--muted);
  font-size: 1rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.85;
  text-wrap: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.link-main {
  color: var(--text);
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
}

.link-muted {
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.visual-card {
  display: grid;
  gap: 18px;
  justify-items: center;
  align-content: center;
  max-width: 380px;
  margin-left: auto;
}

.photo-stage {
  width: min(100%, 300px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
}

.photo-circle {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-circle img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  filter: grayscale(0.08) saturate(0.9) contrast(1.02);
}

.visual-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

.visual-note strong {
  display: block;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

main > section {
  padding: 56px 0;
}

#contact-container {
  margin-bottom: 50px;
}

.panel {
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
  padding: 32px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.section-head h2 {
  margin: 0;
  color: #FF9900;
  font-size: clamp(2rem, 3.5vw, 40px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: none;
  width: 100%;
  text-wrap: normal;
}

.section-head p {
  margin: 0;
  max-width: none;
  width: 100%;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.75;
  text-wrap: normal;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
  margin: 0;
}

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

.cell {
  padding: 22px;
  border: 2px solid var(--line-soft);
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  display: grid;
  gap: 10px;
  align-content: start;
}

.mini-title {
  color: var(--accent);
  font-size: 0.76rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0;
}

.cell h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.18;
  font-weight: 500;
  text-wrap: normal;
}

.cell p {
  margin: 0;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.72;
  text-wrap: normal;
}

.cta {
  margin: 0;
}

.cta-inner {
  max-width: none;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 32px;
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
}

.cta h2 {
  margin: 0;
  color: #FF9900;
  font-size: clamp(2rem, 3.5vw, 40px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-wrap: normal;
}

.cta p {
  margin: 0;
  color: var(--muted);
  max-width: var(--copy-max);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.75;
  text-wrap: normal;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--text);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.legal-shell {
  position: relative;
  z-index: 1;
}

.legal-hero {
  display: grid;
  gap: 12px;
  max-width: none;
  width: 100%;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
}

.panel.legal-panel {
  margin-top: 28px;
}

.legal-shell .panel section {
  padding: 0;
}

.section-head + .content {
  margin-top: 0;
}

.content {
  display: grid;
  gap: 11px;
}

section:first-child {
  padding-top: 0;
}

section + section {
  margin-top: 12px;
}

.site-layout > section + section {
  margin-top: 50px;
}

h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p, li {
  margin: 0;
  color: #2b2b2b;
  max-width: none;
  width: 100%;
}

p + p {
  margin-top: 6px;
}

ul {
  margin: 6px 0 0;
  padding-left: 20px;
}

li + li { margin-top: 6px; }

.note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  padding: 22px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.footer-links a {
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-bottom-color: var(--text);
}

.section-kicker,
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
}

main.legal-shell {
  padding: 128px 0 24px;
}

.legal-shell .panel {
  margin-top: 14px;
  border-width: 1px;
  background: #fff;
  box-shadow: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .photo-stage { width: min(100%, 320px); }
  .panel,
  .cta-inner { padding: 22px; }
  .visual-card {
    max-width: none;
    margin-left: 0;
  }
  h1 {
    font-size: 38px;
    max-width: none;
  }
  .lead {
    max-width: none;
    font-size: 1rem;
  }
  .section-head h2,
  .cta h2 {
    font-size: 32px;
  }
  .mobile-menu-shell {
    width: min(var(--max), calc(100% - 40px));
    min-width: 0;
  }
  .legal-shell .panel { padding: 22px; }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }
  .hero {
    padding: 40px 0 32px;
  }
  .nav {
    min-height: 70px;
  }
  .brand strong {
    font-size: 1.15rem;
  }
  .brand span {
    font-size: 12px;
  }
  h1 {
    font-size: 32px;
    line-height: 1.05;
  }
  .section-head h2,
  .cta h2 {
    font-size: 28px;
  }
  .grid-2,
  .grid-3 {
    gap: 14px;
  }
  .panel,
  .cta-inner {
    gap: 14px;
  }
  .cell {
    padding: 18px;
  }
  .contact-links {
    gap: 12px;
    align-items: stretch;
  }
  .contact-chip {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }
  .menu-layout {
    width: 100%;
  }
  #menu-topbar,
  #menu-navigation {
    width: 100%;
    min-width: 0;
  }
  #menu-navigation {
    align-items: flex-start;
  }
  #menu-options {
    padding: 24px 24px 28px;
    padding-top: 72px;
    gap: 12px;
  }
  #menu-options a {
    font-size: 32px;
  }
  main.legal-shell { padding: 125px 0px 28px; }
  .legal-shell .panel {
    padding: 18px;
    margin-top: 12px;
  }
  .content { gap: 7px; }
  .cell { padding: 18px; }
}
