:root {
  --ink: #241c18;
  --brown: #6d402d;
  --brown-deep: #352019;
  --gold: #ddb248;
  --gold-light: #f4d980;
  --cream: #f8f5ee;
  --paper: #fffdf9;
  --accent: #74452e;
  --line: rgba(70, 46, 31, .18);
  --font-sans: "Manrope", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { min-width: 320px; margin: 0; color: var(--ink); background: var(--cream); font-family: var(--font-sans); font-size: 16px; line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: .6rem .8rem; color: #fff; background: var(--accent); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; z-index: 20; top: 0; left: 0; width: 100%; color: #fff; border-bottom: 1px solid rgba(255,255,255,.24); }
.header__inner { display: flex; min-height: 98px; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; min-width: 0; align-items: center; gap: .85rem; }
.brand__logo { display: grid; flex: 0 0 auto; place-items: center; width: 74px; height: 74px; padding: 2px; overflow: hidden; background: #fff; border: 1px solid var(--gold-light); }
.brand__logo img { width: 100%; height: 100%; object-fit: contain; }
.brand__name { display: grid; line-height: 1.1; }
.brand__name strong { font-family: var(--font-display); font-size: 29px; font-weight: 600; }
.brand__name small { margin-top: .25rem; font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 1.75rem; font-size: 13px; font-weight: 800; }
.main-nav a { position: relative; padding: .4rem 0; }
.main-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; content: ""; background: var(--gold-light); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.header-link { display: inline-flex; align-items: center; gap: .5rem; padding: .72rem .85rem; border: 1px solid rgba(255,255,255,.62); font-size: 12px; font-weight: 900; white-space: nowrap; }
.header-link svg { width: 16px; height: 16px; color: var(--gold-light); }
.menu-toggle { display: none; }

.hero { position: relative; display: grid; min-height: 755px; overflow: hidden; color: #fff; background: var(--brown-deep); }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__veil { position: absolute; inset: 0; background: rgba(31, 20, 16, .58); }
.hero__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 180px 0 125px; }
.eyebrow { display: flex; align-items: center; gap: .65rem; margin: 0 0 1rem; color: var(--brown); font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 34px; height: 2px; background: var(--gold); }
.eyebrow--light { color: var(--gold-light); }
.hero h1, h2, h3, p { margin-top: 0; }
.hero h1 { max-width: 780px; margin-bottom: 1.5rem; font-family: var(--font-display); font-size: clamp(56px, 6vw, 88px); font-weight: 500; letter-spacing: 0; line-height: .98; }
.hero h1 em { color: var(--gold-light); font-weight: 500; }
.hero__lead { max-width: 575px; margin-bottom: 2rem; font-size: 20px; font-weight: 500; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: .7rem; padding: .75rem 1rem; border: 1px solid transparent; font-size: 13px; font-weight: 900; transition: background .18s ease, color .18s ease, border-color .18s ease; }
.button svg { width: 17px; height: 17px; }
.button--gold { color: var(--brown-deep); background: var(--gold); }
.button--gold:hover { color: #fff; background: var(--accent); }
.button--brown { color: #fff; background: var(--brown); }
.button--brown:hover { background: var(--accent); }
.button--outline { color: var(--brown-deep); border-color: var(--brown); background: transparent; }
.button--outline:hover { color: #fff; background: var(--brown); }
.text-link { display: inline-flex; align-items: center; gap: .5rem; font-size: 14px; font-weight: 900; }
.text-link svg { width: 17px; height: 17px; }
.text-link--light { color: #fff; }
.hero__motto { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: center; gap: 1.1rem; min-height: 55px; padding: .75rem 2rem; border-top: 1px solid rgba(255,255,255,.27); background: rgba(116, 69, 46, .94); color: #fff; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.hero__motto i { width: 5px; height: 5px; background: var(--gold-light); transform: rotate(45deg); }

.section-space { padding: 118px 0; }
.vision { background: var(--paper); }
.vision__grid { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(340px, 1fr); align-items: center; gap: clamp(3rem, 8vw, 9rem); }
.vision__image-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #d4cbc1; }
.vision__image-wrap::before { position: absolute; z-index: 1; top: 0; left: 0; width: 44%; height: 6px; content: ""; background: var(--gold); }
.vision__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.92) contrast(1.03); }
.vision__stamp { position: absolute; z-index: 2; right: -25px; bottom: 38px; display: grid; width: 82px; height: 82px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--brown-deep); background: var(--gold-light); font-family: var(--font-mono); font-size: 14px; font-weight: 500; line-height: 1.1; text-align: center; }
.vision__copy h2, .section-heading h2, .socle h2, .contact-band h2 { margin-bottom: 1.5rem; color: var(--brown-deep); font-family: var(--font-display); font-size: clamp(39px, 4vw, 58px); font-weight: 500; letter-spacing: 0; line-height: 1.04; }
.vision__copy > p:not(.eyebrow):not(.vision__line) { max-width: 565px; margin-bottom: 1rem; color: #55473f; font-size: 17px; }
.vision__line { display: flex; gap: .8rem; align-items: flex-start; max-width: 500px; margin: 2rem 0 0; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--brown); font-size: 15px; font-weight: 800; }
.vision__line span { flex: 0 0 auto; width: 8px; height: 8px; margin-top: .45rem; background: var(--gold); transform: rotate(45deg); }

.univers { background: #eee7dc; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 420px; margin-bottom: .35rem; color: #544a43; font-size: 16px; }
.universe-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.universe-card { position: relative; display: flex; min-height: 520px; align-items: end; overflow: hidden; background: var(--brown-deep); color: #fff; }
.universe-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.universe-card--caps img { object-position: center 60%; }
.universe-card--mobility img { object-position: 62% center; }
.universe-card--homes img { object-position: 58% center; }
.universe-card:hover img { transform: scale(1.04); }
.universe-card__overlay { position: absolute; inset: 0; background: rgba(31, 22, 17, .55); }
.universe-card__content { position: relative; z-index: 1; width: 100%; padding: 1.5rem; }
.universe-card__content p { margin-bottom: .65rem; color: var(--gold-light); font-family: var(--font-mono); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.universe-card h3 { margin-bottom: .8rem; font-family: var(--font-display); font-size: 35px; font-weight: 500; line-height: 1; }
.universe-card__content > span { display: block; min-height: 69px; margin-bottom: 1.3rem; font-size: 14px; line-height: 1.55; }
.universe-card__content a { display: inline-flex; align-items: center; gap: .5rem; padding-bottom: .25rem; border-bottom: 1px solid var(--gold); color: #fff; font-size: 13px; font-weight: 900; }
.universe-card__content a svg { width: 16px; height: 16px; color: var(--gold-light); }

.pathways { color: #fff; background: var(--accent); }
.pathways__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.2rem 0; }
.pathways p { margin: 0; font-family: var(--font-display); font-size: 30px; }
.pathways__inner > div { display: flex; flex-wrap: wrap; gap: .7rem; }
.pathways .button--brown { color: var(--brown-deep); background: var(--gold); }
.pathways .button--outline { border-color: rgba(255,255,255,.7); color: #fff; }
.pathways .button--outline:hover { color: var(--brown-deep); background: #fff; }

.socle { background: var(--cream); }
.socle__grid { display: grid; grid-template-columns: minmax(280px, .7fr) 1fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.socle__intro p:not(.eyebrow) { max-width: 430px; color: #554a43; font-size: 17px; }
.values { display: grid; }
.values article { display: grid; grid-template-columns: 70px 1fr; column-gap: 1.25rem; padding: 1.25rem 0; border-top: 1px solid var(--line); }
.values article:last-child { border-bottom: 1px solid var(--line); }
.values span { grid-row: span 2; color: var(--gold); font-family: var(--font-mono); font-size: 13px; }
.values h3 { margin: 0 0 .45rem; color: var(--brown); font-family: var(--font-display); font-size: 30px; font-weight: 500; line-height: 1; }
.values p { margin: 0; color: #5a4e47; font-size: 14px; }

.contact-band { color: #fff; background: var(--brown-deep); }
.contact-band__inner { display: flex; min-height: 320px; align-items: center; justify-content: space-between; gap: 3rem; }
.contact-band h2 { max-width: 620px; margin: 0; color: #fff; }
.contact-email { display: inline-flex; align-items: center; gap: .7rem; padding: 1rem; border: 1px solid rgba(255,255,255,.45); color: var(--gold-light); font-size: 17px; font-weight: 800; white-space: nowrap; }
.contact-email svg { width: 20px; height: 20px; }
.contact-email svg:last-child { color: #fff; }
.contact-email:hover { color: var(--brown-deep); background: var(--gold); border-color: var(--gold); }
.contact-email:hover svg:last-child { color: var(--brown-deep); }

.site-footer { color: rgba(255,255,255,.78); background: #211714; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.5rem 0; }
.brand--footer .brand__name strong { color: var(--gold-light); }
.brand--footer .brand__name small { color: #fff; }
.footer__inner > p { margin: 0; font-family: var(--font-display); font-size: 22px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: 13px; font-weight: 800; }
.footer__links a:hover { color: var(--gold-light); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.14); font-family: var(--font-mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }

@media (max-width: 1060px) {
  .main-nav { gap: 1rem; }
  .header-link span { display: none; }
  .vision__grid, .socle__grid { gap: 4rem; }
  .universe-card { min-height: 480px; }
  .universe-card h3 { font-size: 31px; }
  .contact-band__inner { padding: 4.5rem 0; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 44px, 1180px); }
  .site-header { background: rgba(53, 32, 25, .96); }
  .header__inner { min-height: 78px; }
  .brand__logo { width: 58px; height: 58px; }
  .brand__name strong { font-size: 24px; }
  .brand__name small { font-size: 8px; }
  .menu-toggle { display: grid; place-content: center; gap: 5px; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.45); color: #fff; background: transparent; }
  .menu-toggle span { display: block; width: 20px; height: 2px; background: var(--gold-light); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 22px 1.25rem; background: var(--brown-deep); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 15px; }
  .main-nav a::after { display: none; }
  .header-link { margin-left: auto; }
  .hero { min-height: 690px; }
  .hero__content { padding: 170px 0 112px; }
  .vision__grid, .socle__grid { grid-template-columns: 1fr; gap: 3rem; }
  .vision__image-wrap { width: min(100%, 440px); }
  .vision__copy { max-width: 650px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 1.1rem; }
  .universe-grid { grid-template-columns: 1fr; }
  .universe-card { min-height: 430px; }
  .universe-card__content > span { min-height: 0; }
  .pathways__inner, .contact-band__inner { align-items: flex-start; flex-direction: column; }
  .contact-band__inner { min-height: 0; }
  .footer__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 32px, 1180px); }
  .header__inner { gap: .65rem; }
  .brand { gap: .6rem; }
  .brand__logo { width: 52px; height: 52px; }
  .brand__name strong { font-size: 21px; }
  .header-link { display: none; }
  .hero { min-height: 650px; }
  .hero__image { object-position: 62% center; }
  .hero__veil { background: rgba(31, 20, 16, .68); }
  .hero__content { padding: 148px 0 86px; }
  .hero h1 { font-size: clamp(48px, 14vw, 62px); }
  .hero__lead { margin-bottom: 1.7rem; font-size: 16px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .hero__motto { justify-content: flex-start; gap: .75rem; padding: .75rem 16px; font-size: 9px; }
  .section-space { padding: 72px 0; }
  .vision__grid, .socle__grid { gap: 2.3rem; }
  .vision__image-wrap { aspect-ratio: 1 / 1.15; }
  .vision__stamp { right: 16px; bottom: 16px; width: 65px; height: 65px; font-size: 11px; }
  .vision__copy h2, .section-heading h2, .socle h2, .contact-band h2 { font-size: clamp(36px, 10vw, 46px); }
  .vision__copy > p:not(.eyebrow):not(.vision__line), .socle__intro p:not(.eyebrow) { font-size: 16px; }
  .universe-card { min-height: 385px; }
  .universe-card__content { padding: 1.2rem; }
  .universe-card h3 { font-size: 32px; }
  .pathways__inner { padding: 2rem 0; }
  .pathways p { font-size: 26px; line-height: 1.15; }
  .pathways__inner > div { display: grid; width: 100%; grid-template-columns: 1fr; }
  .pathways .button { width: 100%; }
  .values article { grid-template-columns: 46px 1fr; column-gap: .65rem; }
  .values h3 { font-size: 27px; }
  .contact-band__inner { gap: 2rem; padding: 4rem 0; }
  .contact-email { width: 100%; justify-content: space-between; font-size: 14px; }
  .footer__inner { gap: 1.4rem; padding: 2rem 0; }
  .footer__inner > p { font-size: 20px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; font-size: 9px; }
}
