:root {
  --ink: #000000;
  --coal: #000000;
  --deep: #000000;
  --pine: #000000;
  --jade: #ff0000;
  --copper: #ff4000;
  --gold: #c7a56b;
  --cream: #f6f1e8;
  --paper: #fffcf6;
  --mist: #eef4f1;
  --sky: #dbe9ee;
  --line: rgba(16, 20, 23, .12);
  --line2: rgba(255, 255, 255, .22);
  --w: rgba(255, 255, 255, .82);
  --b: rgba(16, 20, 23, .62);
  --sh: 0 24px 70px rgba(16, 20, 23, .18);
  --sh2: 0 10px 30px rgba(16, 20, 23, .12);
  --r: 8px;
  --r2: 6px;
  --mx: 1200px;
  --fast: 180ms ease;
  --slow: 760ms cubic-bezier(.19, 1, .22, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(247, 241, 230, .95), rgba(238, 244, 241, .95) 38%, rgba(255, 252, 246, .98) 70%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  color: transparent;
  background: linear-gradient(135deg, rgba(16, 20, 23, .12), rgba(14, 106, 93, .12));
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--paper);
  background: var(--copper);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--copper), var(--pine));
  border: 2px solid var(--cream);
}

.sk {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--r2);
  transform: translateY(-120%);
  transition: transform var(--fast);
}

.sk:focus {
  transform: translateY(0);
}

.hd {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px;
  transition: padding var(--fast), background var(--fast), box-shadow var(--fast);
}

.hd.sc {
  padding: 10px 18px;
  background: rgba(255, 252, 246, .82);
  box-shadow: 0 10px 35px rgba(16, 20, 23, .12);
  backdrop-filter: blur(18px);
}

  width: 18px;
  height: 18px;
  object-fit: contain;   
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  flex-shrink: 0;      
}

.nav-icon {
  width: 18px;
  height: 18px;

  object-fit: contain; 
  flex-shrink: 0;      

  display: inline-block;
}

.nv {
  width: min(100%, 1360px);
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  background: rgba(16, 20, 23, .42);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.hd.sc .nv {
  color: var(--ink);
  background: rgba(255, 252, 246, .9);
  border-color: rgba(16, 20, 23, .1);
}

.br {
  display: inline-grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bm {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--copper), var(--pine));
  border-radius: var(--r2);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 22px rgba(183, 96, 66, .28);
}

.bt {
  font-size: .98rem;
  font-weight: 850;
  white-space: nowrap;
}

.nl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.nl a {
  padding: 10px 12px;
  border-radius: var(--r2);
  font-size: .9rem;
  font-weight: 760;
  opacity: .92;
  transition: background var(--fast), color var(--fast), transform var(--fast);
}

.nl a:hover,
.nl a:focus-visible {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-1px);
}

.hd.sc .nl a:hover,
.hd.sc .nl a:focus-visible {
  background: rgba(16, 20, 23, .07);
}

.lg {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r2);
}

.hd.sc .lg {
  background: rgba(16, 20, 23, .05);
  border-color: rgba(16, 20, 23, .1);
}

.lb {
  min-width: 40px;
  height: 34px;
  padding: 0 9px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: var(--r2);
  font-size: .8rem;
  font-weight: 850;
}

.lb.is {
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--sh2);
}

.hd.sc .lb.is {
  color: var(--paper);
  background: var(--ink);
}

.qa,
.btp,
.bts {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  border-radius: var(--r2);
  font-weight: 850;
  line-height: 1.1;
  transition: transform var(--fast), box-shadow var(--fast), background var(--fast), border-color var(--fast);
}

.qa {
  padding: 12px 18px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--copper), var(--pine));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.qa:hover,
.qa:focus-visible,
.btp:hover,
.btp:focus-visible,
.bts:hover,
.bts:focus-visible {
  transform: translateY(-2px);
}

.mb {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r2);
  color: inherit;
  background: rgba(255, 255, 255, .1);
}

.mb span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform var(--fast), opacity var(--fast);
}

.hr {
  position: relative;
  min-height: 94svh;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 128px 20px 118px;
  color: var(--paper);
  overflow: hidden;
}

.hi,
.ho {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hi {
  background:
    linear-gradient(120deg, rgba(16, 20, 23, .25), rgba(16, 20, 23, .08)),
    url("../../xyz1.jpg") center / cover no-repeat;
  transform: scale(1.04);
  will-change: transform;
}

.ho {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 20, 23, .92), rgba(36, 49, 47, .65) 42%, rgba(16, 20, 23, .2)),
    linear-gradient(180deg, rgba(16, 20, 23, .35), rgba(16, 20, 23, .82));
}

.hc {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-top: 36px;
}

.ey {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hr .ey {
  color: #f4c78a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: 4.7rem;
  line-height: .98;
  letter-spacing: 0;
  font-weight: 920;
}

h2 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hp {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 1.14rem;
  color: rgba(255, 252, 246, .86);
}

.ha {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btp {
  padding: 14px 22px;
  color: var(--paper);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--copper), var(--pine));
  box-shadow: 0 18px 36px rgba(16, 20, 23, .22);
}

.bts {
  padding: 14px 22px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.bts:hover,
.bts:focus-visible {
  background: rgba(255, 255, 255, .16);
}

.hs {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(calc(100% - 40px), 1180px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.hs div {
  padding: 18px 20px;
  background: rgba(16, 20, 23, .2);
}

.hs strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: #f4c78a;
}

.hs span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 252, 246, .82);
  font-size: .86rem;
}

.sb,
.sv,
.in,
.fq,
.ct {
  background: var(--paper);
}

.ow,
.st,
.nw {
  background:
    linear-gradient(135deg, rgba(238, 244, 241, .95), rgba(246, 241, 232, .9)),
    var(--mist);
}

.fx,
.rt,
.pr {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(16, 20, 23, .98), rgba(36, 49, 47, .96) 58%, rgba(255, 255, 255, 0.88)),
    var(--ink);
}

.wr {
  width: min(calc(100% - 40px), var(--mx));
  margin: 0 auto;
}

section {
  position: relative;
  padding: 96px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.two,
.split,
.own,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.cp p,
.oc p,
.vc p,
.sh p,
.ci p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(16, 20, 23, .74);
}

.fx .vc p,
.rt .sh p,
.pr .sh p {
  color: rgba(255, 252, 246, .78);
}

.ph,
.op {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r);
  box-shadow: var(--sh);
  background: var(--deep);
}

.ph img,
.op img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  min-height: 520px;
  transition: transform 900ms cubic-bezier(.19, 1, .22, 1);
}

.ph:hover img,
.op:hover img,
.cd:hover img,
.na:hover img {
  transform: scale(1.04);
}

figcaption {
  padding: 16px 18px;
  color: rgba(255, 252, 246, .78);
  background: rgba(16, 20, 23, .9);
  font-size: .9rem;
}

.sg {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sg span,
.tlx span,
.ck span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--r2);
  font-size: .9rem;
  font-weight: 780;
}

.sg span {
  color: var(--ink);
  background: rgba(14, 106, 93, .1);
  border: 1px solid rgba(14, 106, 93, .18);
}

.own {
  grid-template-columns: .85fr 1.15fr;
}

.op img {
  aspect-ratio: 1 / 1.12;
}

.dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
}

.dl div {
  padding: 18px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line);
  box-shadow: var(--sh2);
}

.dl dt {
  color: var(--copper);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dl dd {
  margin: 8px 0 0;
  font-weight: 820;
}

.sh {
  max-width: 870px;
  margin-bottom: 38px;
}

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

.cd {
  overflow: hidden;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  box-shadow: var(--sh2);
  transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast);
}

.cd:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 96, 66, .35);
  box-shadow: var(--sh);
}

.cd img {
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  transition: transform var(--slow);
}

.cd div {
  padding: 24px;
}

.ic {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--copper), var(--pine));
  border-radius: var(--r2);
  font-weight: 900;
}

.cd p,
.ix p,
.ps p,
.na p,
.tq p {
  margin: 12px 0 0;
  color: rgba(16, 20, 23, .72);
}

.cd ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cd li {
  position: relative;
  padding-left: 18px;
  color: rgba(16, 20, 23, .78);
  font-size: .93rem;
}

.cd li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pine);
}

.split {
  align-items: stretch;
}

.vc {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.vc h2 {
  font-size: 2.25rem;
}

.ck,
.tlx {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.ck span,
.tlx span {
  color: var(--paper);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
}

.ck span::before,
.tlx span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: #f4c78a;
  box-shadow: 0 0 0 4px rgba(244, 199, 138, .16);
  flex: 0 0 auto;
}

.mg {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mc {
  min-height: 210px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--r);
  background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(238, 244, 241, .86));
  border: 1px solid rgba(16, 20, 23, .1);
  box-shadow: var(--sh2);
}

.mc strong {
  color: var(--pine);
  font-size: 3rem;
  line-height: 1;
  font-weight: 940;
}

.mc span {
  color: rgba(16, 20, 23, .75);
  font-weight: 760;
}

.mp {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    radial-gradient(circle at 24% 42%, rgba(199, 165, 107, .2), transparent 23%),
    radial-gradient(circle at 64% 56%, rgba(19, 160, 133, .18), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
  background-size: 80px 80px, 80px 80px, auto, auto, auto;
  box-shadow: 0 28px 86px rgba(0, 0, 0, .26);
}

.mr {
  position: absolute;
  width: 220px;
  max-width: calc(100% - 32px);
  padding: 14px;
  border-radius: var(--r);
  background: rgba(255, 252, 246, .9);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
  z-index: 3;
}

.mr strong {
  display: block;
  color: var(--pine);
  font-size: 1rem;
}

.mr span {
  display: block;
  margin-top: 4px;
  font-size: .84rem;
  color: rgba(16, 20, 23, .72);
}

.mr.a {
  left: 9%;
  top: 16%;
}

.mr.b {
  left: 44%;
  top: 43%;
}

.mr.c {
  right: 10%;
  top: 20%;
}

.mr.d {
  right: 15%;
  bottom: 14%;
}

.mr.e {
  left: 9%;
  bottom: 12%;
}

.ln {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6e0404, var(--jade), transparent);
  transform-origin: left center;
  opacity: .88;
  z-index: 2;
}

.l1 {
  left: 26%;
  top: 30%;
  width: 47%;
  transform: rotate(10deg);
}

.l2 {
  left: 29%;
  top: 56%;
  width: 43%;
  transform: rotate(-24deg);
}

.l3 {
  left: 27%;
  top: 67%;
  width: 52%;
  transform: rotate(19deg);
}

.ig {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ix {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .62)),
    var(--paper);
  box-shadow: var(--sh2);
  transition: transform var(--fast), border-color var(--fast);
}

.ix:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 106, 93, .3);
}

.tm {
  background:
    linear-gradient(135deg, rgba(247, 241, 230, .94), rgba(219, 233, 238, .7)),
    var(--cream);
}

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

.tq {
  margin: 0;
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(16, 20, 23, .1);
  border-radius: var(--r);
  background: rgba(255, 252, 246, .78);
  box-shadow: var(--sh2);
}

.tq p {
  margin-top: 0;
  font-size: 1.03rem;
}

.tq cite {
  display: block;
  margin-top: 22px;
  color: var(--copper);
  font-style: normal;
  font-weight: 850;
}

.pg {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ps {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.ps span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--ink);
  background: #f4c78a;
  border-radius: var(--r2);
  font-weight: 940;
}

.ps p {
  color: rgba(255, 252, 246, .76);
}

.fg {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.fd {
  border: 1px solid rgba(16, 20, 23, .1);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--sh2);
  overflow: hidden;
}

.fd summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 880;
}

.fd summary::-webkit-details-marker {
  display: none;
}

.fd summary::after {
  content: "+";
  float: right;
  color: var(--copper);
  font-weight: 900;
}

.fd[open] summary::after {
  content: "−";
}

.fd p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(16, 20, 23, .72);
}

.ng {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.na {
  overflow: hidden;
  border: 1px solid rgba(16, 20, 23, .1);
  border-radius: var(--r);
  background: rgba(255, 252, 246, .8);
  box-shadow: var(--sh2);
}

.na img {
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  transition: transform var(--slow);
}

.na div {
  padding: 24px;
}

.na time {
  display: block;
  margin-bottom: 10px;
  color: var(--copper);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact {
  align-items: start;
}

.ci {
  position: sticky;
  top: 120px;
}

.cl {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.cl a {
  padding: 14px 16px;
  border-radius: var(--r2);
  border: 1px solid rgba(16, 20, 23, .1);
  background: rgba(238, 244, 241, .72);
  color: var(--ink);
  font-weight: 820;
  transition: transform var(--fast), background var(--fast);
}

.cl a:hover,
.cl a:focus-visible {
  transform: translateX(4px);
  background: rgba(14, 106, 93, .11);
}

.cf {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--r);
  border: 1px solid rgba(16, 20, 23, .1);
  background: rgba(255, 255, 255, .62);
  box-shadow: var(--sh2);
}

.cf .bts {
  width: 100%;
  color: var(--paper);
  border-color: transparent;
  background: linear-gradient(135deg, var(--pine), var(--coal));
}

.fm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border-radius: var(--r);
  border: 1px solid rgba(16, 20, 23, .1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(238, 244, 241, .78)),
    var(--paper);
  box-shadow: var(--sh);
}

.fr {
  display: grid;
  gap: 8px;
}

.fr.wide,
.wide {
  grid-column: 1 / -1;
}

label {
  color: rgba(16, 20, 23, .78);
  font-size: .88rem;
  font-weight: 830;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 252, 246, .88);
  border: 1px solid rgba(16, 20, 23, .16);
  border-radius: var(--r2);
  outline: 0;
  transition: border-color var(--fast), box-shadow var(--fast), background var(--fast);
}

textarea {
  resize: vertical;
  min-height: 138px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pine);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 106, 93, .14);
}

.fm .btp {
  border: 0;
  min-height: 52px;
}

.fs {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--pine);
  font-weight: 820;
}

.fs.er {
  color: #a23d2d;
}

.ft {
  color: rgba(255, 252, 246, .82);
  background:
    linear-gradient(135deg, rgba(16, 20, 23, .98), rgba(36, 49, 47, .98)),
    var(--ink);
}

.foot {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, minmax(0, .8fr));
  gap: 32px;
  padding: 62px 0;
}

.foot .br {
  color: var(--paper);
}

.foot p {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255, 252, 246, .72);
}

.foot h2 {
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 1rem;
}

.foot a:not(.br) {
  display: block;
  margin-top: 9px;
  color: rgba(255, 252, 246, .72);
  transition: color var(--fast), transform var(--fast);
}

.foot a:not(.br):hover,
.foot a:not(.br):focus-visible {
  color: #f4c78a;
  transform: translateX(3px);
}

.fb {
  width: min(calc(100% - 40px), var(--mx));
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 252, 246, .62);
  font-size: .88rem;
}

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.19, 1, .22, 1);
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.ad {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(16, 20, 23, .98), rgba(36, 49, 47, .94) 55%, rgba(183, 96, 66, .84)),
    var(--ink);
  color: var(--paper);
}

.al {
  width: min(calc(100% - 32px), 460px);
  margin: 0 auto;
  padding: 90px 0 50px;
}

.abx {
  padding: 28px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
  backdrop-filter: blur(22px);
}

.abx h1 {
  font-size: 2.2rem;
}

.abx p {
  color: rgba(255, 252, 246, .76);
}

.af {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.af input {
  color: var(--paper);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
}

.af label {
  color: rgba(255, 252, 246, .84);
}

.af input:focus {
  background: rgba(255, 255, 255, .16);
  border-color: #f4c78a;
  box-shadow: 0 0 0 4px rgba(244, 199, 138, .14);
}

.aa {
  min-height: 100svh;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(238, 244, 241, .96), rgba(255, 252, 246, .98)),
    var(--paper);
}

.at {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 20px;
  color: var(--paper);
  background: rgba(16, 20, 23, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ati {
  width: min(100%, 1480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.an {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.an button,
.lo {
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(255, 252, 246, .82);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r2);
  font-weight: 780;
}

.an button.is,
.an button:hover,
.lo:hover {
  color: var(--ink);
  background: #f4c78a;
}

.aw {
  width: min(calc(100% - 40px), 1480px);
  margin: 0 auto;
  padding: 32px 0 70px;
}

.ap {
  display: none;
}

.ap.is {
  display: block;
}

.ag {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.ak {
  padding: 20px;
  min-height: 142px;
  border: 1px solid rgba(16, 20, 23, .1);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--sh2);
}

.ak strong {
  display: block;
  color: var(--pine);
  font-size: 2.2rem;
  line-height: 1;
}

.ak span {
  display: block;
  margin-top: 12px;
  color: rgba(16, 20, 23, .7);
  font-weight: 800;
}

.tb {
  width: 100%;
  overflow: auto;
  border: 1px solid rgba(16, 20, 23, .1);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--sh2);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(16, 20, 23, .08);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

th {
  color: var(--copper);
  font-size: .8rem;
  text-transform: uppercase;
}

td {
  color: rgba(16, 20, 23, .78);
}

.pn {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.pb {
  padding: 22px;
  border: 1px solid rgba(16, 20, 23, .1);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--sh2);
}

.pb h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.pb form {
  display: grid;
  gap: 12px;
}

.pb textarea {
  min-height: 170px;
}

.pb button,
.tb button {
  min-height: 40px;
  padding: 8px 12px;
  border: 0;
  border-radius: var(--r2);
  color: var(--paper);
  background: linear-gradient(135deg, var(--copper), var(--pine));
  font-weight: 820;
}

.sr {
  margin-top: 12px;
  color: var(--pine);
  font-weight: 820;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .nv {
    grid-template-columns: auto auto 1fr auto;
  }

  .nl {
    justify-content: flex-end;
  }

  .qa {
    display: none;
  }

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

  .ig,
  .pg,
  .mg,
  .ag {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .hd {
    padding: 10px;
  }

  .nv {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mb {
    display: grid;
  }

  .nl,
  .lg,
  .qa {
    grid-column: 1 / -1;
    display: none;
  }

  .nv.on .nl,
  .nv.on .lg {
    display: flex;
  }

  .nv.on .nl {
    flex-direction: column;
    align-items: stretch;
  }

  .nl a {
    width: 100%;
  }

  .nv.on .mb span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nv.on .mb span:nth-child(2) {
    opacity: 0;
  }

  .nv.on .mb span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hr {
    padding-top: 116px;
    min-height: 92svh;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hp {
    font-size: 1.02rem;
  }

  .hs {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 1180px);
    margin: 34px auto 0;
    transform: none;
  }

  .two,
  .split,
  .own,
  .contact,
  .pn {
    grid-template-columns: 1fr;
  }

  .ci {
    position: static;
  }

  section {
    padding: 76px 0;
  }

  .ph img,
  .op img {
    min-height: 360px;
  }

  .mp {
    min-height: 650px;
  }

  .mr {
    position: relative;
    inset: auto;
    margin: 14px;
  }

  .ln {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .wr {
    width: min(calc(100% - 28px), var(--mx));
  }

  .bt {
    max-width: 168px;
    white-space: normal;
    line-height: 1.1;
  }

  .hr {
    padding: 108px 14px 42px;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.76rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .ha,
  .btp,
  .bts {
    width: 100%;
  }

  .hs,
  .gc,
  .tg,
  .ig,
  .pg,
  .mg,
  .ag,
  .dl {
    grid-template-columns: 1fr;
  }

  .hs div {
    padding: 14px;
  }

  .vc,
  .fm,
  .abx,
  .pb {
    padding: 20px;
  }

  .vc h2 {
    font-size: 1.58rem;
  }

  .fr,
  .fr.wide,
  .wide {
    grid-column: 1 / -1;
  }

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

  .foot {
    grid-template-columns: 1fr;
    padding: 46px 0;
  }

  .fb {
    width: min(calc(100% - 28px), var(--mx));
    flex-direction: column;
  }

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

  .an {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  th,
  td {
    padding: 12px;
  }
}

@media (min-width: 1600px) {
  :root {
    --mx: 1380px;
  }

  body {
    font-size: 17px;
  }

  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .hr {
    min-height: 92svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
  }
}
