:root {
  --ivory: #f6f2ea;
  --paper: #fbfaf6;
  --ink: #28292a;
  --muted: #70685f;
  --soft: #8a8178;
  --gold: #b79b67;
  --gold-dark: #8a6f43;
  --line: rgba(183, 155, 103, 0.34);
  --shadow: rgba(37, 35, 31, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 3%, rgba(255,255,255,.62), transparent 26%),
    linear-gradient(180deg, var(--ivory), #f1eadf 100%);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.lang {
  display: none;
}

body[data-lang="en"] .lang-en {
  display: inline;
}

body[data-lang="pl"] .lang-pl {
  display: inline;
}

.site-header {
  min-height: 112px;
  padding: 24px 5vw;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 234, 0.88);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
}

.brand-main {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 49px;
  line-height: .78;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.brand-line {
  width: 68px;
  height: 1px;
  background: var(--gold);
  margin: 13px 0 7px;
  position: relative;
}

.brand-line::after {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--gold);
  position: absolute;
  left: 25px;
  top: -1px;
}

.brand-sub {
  font-family: "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 15px;
  color: var(--muted);
}

.brand-est {
  margin-top: 1px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  height: 1px;
  width: 0;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -7px;
  transition: width .25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .12em;
  white-space: nowrap;
}

.lang-toggle {
  border: 0;
  background: transparent;
  color: #9a8360;
  cursor: pointer;
  font: inherit;
  letter-spacing: .12em;
  padding: 5px 0;
  opacity: .55;
}

.lang-toggle.is-active {
  opacity: 1;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 13px 22px;
  color: var(--gold-dark);
  letter-spacing: .04em;
  font-size: 13px;
  transition: background .25s ease, color .25s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .9fr);
  min-height: 720px;
  border-bottom: 1px solid var(--line);
  max-width: 1520px;
  margin: 0 auto;
}

.hero-copy {
  padding: 112px 7vw 76px;
  max-width: 800px;
}

.eyebrow,
.section-kicker {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  font-weight: 600;
  margin: 0 0 23px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.03;
  margin: 0;
}

h1 {
  font-size: clamp(58px, 7vw, 98px);
  letter-spacing: -0.038em;
  max-width: 780px;
}

h2 {
  font-size: clamp(40px, 4vw, 64px);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 29px;
}

.gold-rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 34px 0 28px;
}

.lead,
.lead-soft {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 18px;
}

.lead-soft,
.muted {
  color: var(--soft);
  font-size: 15px;
}

.hero-tags {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
}

.hero-tags span:not(:last-child)::after {
  content: "·";
  margin-left: 14px;
  color: var(--gold);
}

body[data-lang="en"] .hero-tags .lang-pl,
body[data-lang="pl"] .hero-tags .lang-en {
  display: none;
}

.hero-visual {
  border-left: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  background: linear-gradient(120deg, #ede4d6, #b9aa96);
}

.quiet-room {
  width: 100%;
  min-height: 100%;
  position: relative;
  background:
    linear-gradient(90deg, rgba(246,242,234,1) 0%, rgba(246,242,234,.35) 22%, rgba(246,242,234,0) 45%),
    linear-gradient(135deg, rgba(255,255,255,.42), transparent 46%),
    #cfc3b3;
}

.quiet-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(58,52,44,.07) 0 1px, transparent 1px 118px),
    repeating-linear-gradient(0deg, rgba(58,52,44,.05) 0 1px, transparent 1px 118px);
  opacity: .56;
}

.wall-frame {
  position: absolute;
  right: 7%;
  top: 18%;
  width: 330px;
  height: 300px;
  border: 1px solid rgba(71,61,48,.35);
  box-shadow: inset 0 0 0 21px rgba(255,255,255,.14);
}

.window-panel {
  position: absolute;
  top: 0;
  left: 16%;
  width: 210px;
  height: 76%;
  border: 2px solid rgba(255,255,255,.5);
  border-bottom: 0;
  border-radius: 120px 120px 0 0;
  box-shadow: inset 0 0 0 18px rgba(255,255,255,.15);
}

.stone-column {
  position: absolute;
  top: 0;
  left: 38%;
  width: 96px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(80,68,55,.11), rgba(255,255,255,.14));
  border-left: 1px solid rgba(255,255,255,.28);
  border-right: 1px solid rgba(78,67,55,.14);
}

.desk {
  position: absolute;
  right: 0;
  bottom: 12%;
  width: 72%;
  height: 98px;
  background: linear-gradient(90deg, #5e4c38, #322a22);
  opacity: .72;
}

.book {
  position: absolute;
  bottom: 25%;
  height: 10px;
  background: rgba(246,242,234,.7);
  right: 24%;
}

.book.one { width: 110px; }
.book.two { width: 72px; bottom: 23%; right: 34%; }

.lamp {
  position: absolute;
  right: 18%;
  bottom: 28%;
  width: 36px;
  height: 68px;
  border-left: 2px solid rgba(70,56,36,.6);
}

.lamp::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -19px;
  width: 42px;
  height: 18px;
  background: rgba(40,35,30,.52);
  border-radius: 50% 50% 0 0;
}

.light-band {
  position: absolute;
  left: -12%;
  width: 140%;
  height: 2px;
  background: rgba(255,255,255,.38);
  transform: rotate(-19deg);
}

.light-band.a { top: 32%; }
.light-band.b { top: 38%; opacity: .5; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 98px 5vw;
}

.mandate {
  max-width: 1280px;
}

.mandate-card {
  border: 1px solid var(--line);
  background: rgba(251,250,246,.55);
  padding: clamp(38px, 6vw, 76px);
  box-shadow: 0 22px 70px rgba(37,35,31,.04);
}

.mandate-text {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.mandate-text p,
.principle-grid p,
.asset-card p,
.contact-copy p {
  color: var(--muted);
}

.centered,
.centered-title {
  text-align: center;
}

.centered-title {
  max-width: 760px;
  margin: 0 auto 60px;
}

.principles {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle-grid article {
  padding: 36px 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 342px;
  background: rgba(255,255,255,.14);
}

.index {
  display: inline-block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  margin-bottom: 30px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 58px;
}

.asset-grid {
  display: grid;
  gap: 26px;
}

.asset-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--line);
  background: rgba(251,250,246,.42);
  min-height: 278px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(37,35,31,.035);
}

.asset-media {
  position: relative;
  background: #cfc3b3;
  min-height: 278px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.asset-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.38), transparent 42%),
    repeating-linear-gradient(90deg, rgba(40,34,28,.08) 0 1px, transparent 1px 68px);
}

.media-real-estate {
  background:
    linear-gradient(180deg, rgba(70,61,50,.06), rgba(70,61,50,.22)),
    linear-gradient(90deg, #e6ded1, #b9aa96);
}

.media-real-estate::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 20%;
  height: 60%;
  border: 2px solid rgba(255,255,255,.45);
  box-shadow:
    0 42px 0 -38px rgba(70,61,50,.28),
    inset 0 0 0 24px rgba(255,255,255,.08);
}

.media-markets {
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.38), transparent 28%),
    linear-gradient(135deg, #d7cabb, #a89883);
}

.media-markets::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 22%;
  height: 56%;
  border: 1px solid rgba(61,51,41,.35);
  border-radius: 50%;
  box-shadow:
    26px 26px 0 rgba(255,255,255,.12),
    -26px -20px 0 rgba(255,255,255,.08);
}

.media-corporate {
  background:
    linear-gradient(135deg, #e1d7c9, #aa9a86);
}

.media-corporate::after {
  content: "";
  position: absolute;
  left: 24%;
  top: 21%;
  width: 52%;
  height: 58%;
  border: 1px solid rgba(61,51,41,.34);
  border-radius: 110px 110px 0 0;
  box-shadow: inset 0 0 0 22px rgba(255,255,255,.1);
}

.asset-body {
  padding: 44px 48px;
}

.asset-number {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}

.asset-body h3 {
  margin: 18px 0 18px;
}

.quote-section {
  padding: 90px 5vw;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.08));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-section p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;
  max-width: 920px;
  margin: 0 auto 24px;
}

.quote-section > span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 70px;
  align-items: start;
}

.registry {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.registry strong {
  color: var(--ink);
}

.registry a {
  color: var(--gold-dark);
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 38px;
  box-shadow: 0 18px 52px var(--shadow);
}

.contact-form label {
  display: block;
  color: #6d6258;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 13px;
  border: 1px solid rgba(183,155,103,.38);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183,155,103,.12);
}

.contact-form button {
  width: 100%;
  border: 0;
  background: var(--gold);
  color: #fff;
  padding: 16px 22px;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: .16em;
  cursor: pointer;
  transition: filter .25s ease;
}

.contact-form button:hover {
  filter: brightness(.94);
}

.form-note {
  font-size: 12px;
  color: #91887e;
  margin-bottom: 0;
}

.hidden {
  display: none;
}

.site-footer {
  padding: 28px 5vw 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.success-box {
  max-width: 620px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px var(--shadow);
  padding: 56px 42px;
  text-align: center;
}

.centered-brand {
  align-items: center;
  margin: 0 auto 34px;
}

.success-box h1 {
  font-size: 62px;
  margin-bottom: 18px;
}

.success-box .nav-cta {
  display: inline-block;
  margin-top: 24px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 220px 1fr;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .nav {
    justify-content: flex-end;
    gap: 24px;
  }

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    position: static;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .contact,
  .mandate-text {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .asset-card {
    grid-template-columns: 1fr;
  }

  .asset-media {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 22px 6vw;
  }

  .brand-main {
    font-size: 40px;
  }

  .header-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-cta {
    padding: 11px 14px;
    font-size: 12px;
  }

  .hero-copy {
    padding: 72px 6vw 54px;
  }

  h1 {
    font-size: 52px;
  }

  .section {
    padding: 68px 6vw;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article {
    min-height: auto;
  }

  .asset-body {
    padding: 34px 28px;
  }

  .contact-form {
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
  }
}




/* v6 hero refinement */
.hero {
  align-items: stretch;
}

.hero-visual {
  display: block;
  background: linear-gradient(120deg, #eee6da 0%, #d6cabb 100%);
}

.quiet-room {
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(246,242,234,.92) 0%, rgba(246,242,234,.18) 18%, rgba(246,242,234,0) 34%),
    linear-gradient(135deg, rgba(255,255,255,.34), transparent 46%),
    #d4c8b8;
}

.wall-frame {
  right: 11%;
  top: 17%;
  width: 290px;
  height: 270px;
}

.window-panel {
  left: 26%;
  width: 200px;
  height: 82%;
}

.stone-column {
  left: 50%;
  width: 82px;
}

.desk {
  right: 0;
  bottom: 13%;
  width: 58%;
  height: 88px;
}

.book { right: 17%; }
.book.two { right: 26%; }
.lamp { right: 12%; }
.light-band { left: -2%; width: 112%; }

.mission-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.26);
}

.mission-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 5vw;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: start;
}

.mission-label {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  font-weight: 600;
  padding-top: 4px;
}

.mission-band p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
  color: var(--ink);
  max-width: 920px;
}

@media (max-width: 920px) {
  .mission-band-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .window-panel {
    left: 18%;
    width: 180px;
  }

  .stone-column {
    left: 48%;
  }
}
