:root {
  --bg: #f6f5f0;
  --surface: #ffffff;
  --surface-soft: #f0efe9;
  --ink: #1e2e44;
  --ink-soft: #4b5a69;
  --green: #6e8265;
  --line: rgba(30, 46, 68, 0.12);
  --shadow: 0 22px 70px rgba(30, 46, 68, 0.08);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #fbfaf7 0%, #f5f3ed 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 0% 18%, rgba(110,130,101,0.10), transparent 20rem),
    radial-gradient(circle at 100% 0%, rgba(30,46,68,0.08), transparent 26rem);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30,46,68,0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}








.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background: #ffffff;
  border: 1px solid rgba(30,46,68,0.10);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(30,46,68,0.08);
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 310px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 15px;
}

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


.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  border-radius: 999px;
}

.language-switch {
  min-width: 42px;
  padding: 7px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 800;
  cursor: pointer;
}

.language-switch.is-active {
  background: var(--ink);
  color: #fff;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section { padding: 88px 0; }
.eyebrow, .section-kicker {
  margin: 0 0 16px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 12px;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 54px;
  align-items: center;
}

.hero-copy h1,
.sticky-title h2,
.section-heading h2,
.founder-copy h2,
.story-panel h2,
.contact-copy h2,
.founder-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 84px);
}

.hero-copy h1 span {
  color: var(--green);
}

.hero-text,
.content-column p,
.focus-card p,
.founder-copy p,
.story-panel p,
.contact-copy p,
.founder-card p,
.value-item span {
  color: var(--ink-soft);
  font-size: 18px;
}

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

.btn {
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
}

.hero-points {
  display: grid;
  gap: 14px;
}

.point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}

.point span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(110,130,101,0.12);
  color: var(--green);
  font-weight: 800;
}

.point p { margin: 0; font-weight: 600; }

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: end;
  gap: 18px;
}

.portrait-stage,
.founder-card,
.value-grid,
.focus-card,
.quote-card,
.story-panel,
.contact-panel,
.mini-cards article,
.contact-box {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.portrait-stage {
  min-height: 620px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.93), rgba(243,241,235,0.92)),
    radial-gradient(circle at 50% 90%, rgba(110,130,101,0.10), transparent 40%);
}

.portrait-stage::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: 20px;
  width: 70%;
  height: 220px;
  background: linear-gradient(180deg, rgba(30,46,68,0.03), rgba(30,46,68,0.08));
  clip-path: polygon(0 100%, 20% 58%, 28% 65%, 43% 40%, 50% 60%, 67% 28%, 73% 49%, 100% 0, 100% 100%);
  opacity: 0.6;
}

.portrait-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 30%, rgba(30,46,68,0.03) 30% 68%, transparent 68%);
}

.city-card {
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 180px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(30,46,68,0.04));
}

.portrait-image {
  position: absolute;
  right: 12px;
  bottom: 0;
  width: min(82%, 460px);
  z-index: 2;
}

.founder-card {
  padding: 26px;
  position: relative;
  z-index: 3;
  margin-bottom: 34px;
}

.icon-circle {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(110,130,101,0.10);
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 26px;
  margin-bottom: 18px;
}

.card-label {
  margin: 0 0 8px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 11px;
}

.founder-card h2 {
  margin-bottom: 14px;
  font-size: 42px;
}

.signature {
  margin-top: 18px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  color: var(--ink);
  font-size: 38px;
}

.value-strip { padding: 0 0 24px; }

.value-grid {
  padding: 30px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.value-grid h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1.1;
}

.value-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 28px;
}

.two-col,
.founder-layout,
.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.sticky-title h2,
.section-heading h2,
.founder-copy h2,
.story-panel h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
}

.content-column { max-width: 760px; }

.mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.mini-cards article { padding: 24px; }
.mini-cards h3,
.focus-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 28px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

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

.focus-card {
  padding: 28px;
}

.focus-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}

.quote-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(110,130,101,0.12), rgba(255,255,255,0.82));
}

.quote-mark {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 84px;
  line-height: 0.8;
  color: var(--green);
}

blockquote {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.25;
}

.quote-author {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--green);
  font-size: 22px;
  line-height: 1;
}

.story-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
}

.contact-panel {
  align-items: stretch;
}

.contact-box {
  padding: 26px;
  display: grid;
  gap: 14px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-row:first-child { border-top: 0; padding-top: 0; }
.contact-row span {
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
}

.contact-row a,
.contact-row strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  text-align: right;
}

.site-footer {
  padding: 28px 0 42px;
  color: var(--ink-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .value-grid,
  .two-col,
  .founder-layout,
  .story-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .founder-card {
    margin: -34px 24px 0;
  }
}

@media (max-width: 860px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute;
    inset: 88px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .language-switcher { align-self: flex-start; }
  .focus-grid,
  .mini-cards { grid-template-columns: 1fr; }
  .portrait-stage {
    min-height: 520px;
  }
  .portrait-image {
    width: min(90%, 380px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 560px) {
  .header-inner { min-height: 82px; }
  .brand-logo-shell { width: 146px; height: 62px; padding: 4px 10px; }
  .brand-logo { width: 130px; height: 98px; }
  .hero-copy h1 { font-size: 46px; }
  .section { padding: 72px 0; }
  .portrait-stage {
    min-height: 420px;
    padding: 14px;
  }
  .portrait-image {
    width: min(86%, 300px);
  }
  .founder-card {
    margin: -24px 10px 0;
    padding: 22px;
  }
  .founder-card h2 { font-size: 34px; }
  blockquote { font-size: 28px; }
  .value-grid,
  .quote-card,
  .story-panel,
  .contact-box,
  .focus-card,
  .mini-cards article,
  .founder-card { border-radius: 22px; }
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-row a,
  .contact-row strong {
    text-align: left;
    font-size: 18px;
  }
  .footer-inner { flex-direction: column; }
}


@media (max-width: 860px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .brand-logo-shell {
    max-width: calc(100vw - 96px);
    padding: 5px 8px;
    border-radius: 12px;
  }
  .brand-logo {
    width: min(270px, calc(100vw - 116px));
    height: 52px;
  }
  .header-inner { min-height: 76px; }
  .nav { inset: 76px 14px auto 14px; }
}
@media (max-width: 480px) {
  .brand-logo { width: min(220px, calc(100vw - 108px)); height: 44px; }
  .portrait-stage { min-height: 390px; }
  .portrait-image { width: min(82%, 280px); }
}


/* Final brand header and mobile spacing */
.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(30,46,68,.10);
}
.header-inner { min-height: 88px; }
.brand-logo-shell {
  width: auto;
  height: auto;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.brand-logo {
  width: 430px;
  height: auto;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}
.mobile-header-tools {
  display: none;
  align-items: center;
  gap: 10px;
}
.mobile-language {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.mobile-language select {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 3px 18px 3px 2px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 9px) 52%, calc(100% - 5px) 52%;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}
.contact-panel { padding: 38px; }
.contact-copy { min-width: 0; }
.contact-copy p { max-width: 680px; }

@media (max-width: 1080px) {
  .brand-logo { width: 350px; max-height: 58px; }
}

@media (max-width: 860px) {
  .header-inner { min-height: 78px; gap: 12px; }
  .brand { min-width: 0; flex: 1 1 auto; }
  .brand-logo { width: min(330px, calc(100vw - 170px)); height: auto; max-height: 52px; }
  .mobile-header-tools { display: inline-flex; flex-shrink: 0; }
  .nav-toggle { display: inline-block; }
  .nav { inset: 78px 14px auto 14px; }
  .contact-panel { padding: 30px; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 32px); }
  .header-inner { min-height: 72px; }
  .brand-logo { width: min(245px, calc(100vw - 150px)); max-height: 46px; }
  .mobile-header-tools { gap: 6px; }
  .mobile-language { font-size: 12px; }
  .mobile-language span { display: none; }
  .mobile-language select { padding-right: 15px; }
  .nav-toggle { width: 40px; height: 40px; padding: 8px; }
  .contact { padding-left: 0; padding-right: 0; }
  .contact .container { width: calc(100% - 32px); }
  .contact-panel {
    padding: 26px 22px;
    border-radius: 24px;
    gap: 26px;
  }
  .contact-copy h2 {
    font-size: clamp(32px, 10vw, 42px);
    overflow-wrap: anywhere;
  }
  .contact-copy p { font-size: 16px; }
  .contact-box { padding: 20px; }
}

@media (max-width: 390px) {
  .brand-logo { width: min(205px, calc(100vw - 138px)); }
  .contact .container { width: calc(100% - 24px); }
  .contact-panel { padding: 22px 18px; }
}


/* Refined desktop founder composition */
.hero-visual {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(270px, 320px);
  gap: 24px;
  align-items: center;
  justify-content: end;
}

.portrait-stage {
  position: relative;
  min-height: 0;
  height: 540px;
  padding: 0;
  overflow: hidden;
  background: #e9e6df;
}

.portrait-stage::before,
.portrait-stage::after,
.city-card { display: none; }

.portrait-image {
  position: static;
  width: 100%;
  height: 100%;
  transform: none;
  object-fit: cover;
  object-position: center 20%;
}

.portrait-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30,46,68,.10);
  box-shadow: 0 12px 32px rgba(30,46,68,.12);
}
.portrait-caption strong { font-family: Georgia, serif; font-size: 22px; }
.portrait-caption span { color: var(--ink-soft); font-size: 13px; }

.founder-card {
  margin: 0;
  min-height: 455px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-card h2 { font-size: clamp(36px, 3vw, 48px); }

/* Documents */
.documents-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  padding: 38px;
  background: linear-gradient(135deg, rgba(30,46,68,.97), rgba(43,64,91,.96));
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.documents-copy h2 {
  margin: 0 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
}
.documents-copy p:last-child { color: rgba(255,255,255,.75); font-size: 17px; }
.documents-list { display: grid; gap: 12px; }
.document-link {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .2s ease, background .2s ease;
}
.document-link:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); }
.document-type {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #c5953f;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.document-link strong { display: block; font-size: 16px; }
.document-link small { display: block; color: rgba(255,255,255,.58); margin-top: 3px; word-break: break-word; }

.status-link {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(110,130,101,.10);
  border: 1px solid rgba(110,130,101,.26);
  transition: transform .2s ease, background .2s ease;
}
.status-link:hover { transform: translateY(-2px); background: rgba(110,130,101,.16); }
.status-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}
.status-link strong { display: block; font-size: 16px; }
.status-link small { display: block; color: var(--ink-soft); margin-top: 2px; }
.status-arrow { font-size: 22px; color: var(--green); }

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-content: start; }
}

@media (max-width: 760px) {
  .hero-visual { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .portrait-stage { height: 500px; }
  .founder-card { min-height: 0; margin: 0; }
  .documents-panel { grid-template-columns: 1fr; gap: 26px; padding: 28px; }
}

@media (max-width: 560px) {
  .portrait-stage { height: 420px; border-radius: 22px; }
  .portrait-image { width: 100%; height: 100%; object-position: center 18%; }
  .portrait-caption { left: 12px; right: 12px; bottom: 12px; }
  .documents .container { width: calc(100% - 32px); }
  .documents-panel { padding: 24px 20px; border-radius: 24px; }
  .document-link { grid-template-columns: 48px minmax(0,1fr); padding: 13px; }
  .document-type { width: 48px; height: 48px; border-radius: 14px; }
  .contact-panel { margin-left: 0; margin-right: 0; }
  .status-link { grid-template-columns: 44px minmax(0,1fr) auto; padding: 14px; }
  .status-icon { width: 44px; height: 44px; }
}


/* Compact header refinements */
@media (min-width: 861px) {
  .header-inner { min-height: 76px; gap: 16px; }
  .brand-logo-shell { padding: 4px 8px; border-radius: 12px; }
  .brand-logo { width: 270px; height: 52px; max-height: 52px; }
  .nav { gap: 13px; font-size: 14px; }
  .language-switcher { padding: 3px; gap: 2px; }
  .language-switch { min-width: 36px; padding: 6px 7px; }
  .nav-cta { padding: 10px 15px; }
}
@media (max-width: 860px) {
  .header-inner { min-height: 70px; }
  .nav { inset: 70px 14px auto 14px; }
}
