* {
  box-sizing: border-box;
}

:root {
  --green: #075a4f;
  --green-dark: #043f38;
  --green-deep: #03362f;
  --gold: #c49a5a;
  --gold-soft: #d6b880;
  --text: #1f2d2f;
  --muted: #687678;
  --line: #e7e2d8;
  --paper: #fbfaf7;
  --white: #ffffff;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(110deg, rgba(196,154,90,.035) 0 1px, transparent 1px 58px),
    linear-gradient(70deg, rgba(7,90,79,.025) 0 1px, transparent 1px 74px),
    #fbfaf7;
}

.hero {
  flex: 1;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 53% 47%;
  direction: ltr;
  overflow: hidden;
}

.brand-panel {
  direction: rtl;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 720px;
  padding: 48px 70px 54px;
  background:
    linear-gradient(rgba(251,250,247,.88), rgba(251,250,247,.92)),
    repeating-linear-gradient(90deg, rgba(7,90,79,.03) 0 1px, transparent 1px 80px);
}

.brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 95%, rgba(196,154,90,.14), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.35));
  pointer-events: none;
}

.brand-panel::after {
  content: "";
  position: absolute;
  top: -8%;
  right: -18px;
  height: 116%;
  width: 44px;
  transform: rotate(4deg);
  background: linear-gradient(90deg, var(--gold) 0 4px, var(--green) 4px 38px, var(--green-dark) 38px 44px);
  box-shadow: 0 0 30px rgba(0,0,0,.08);
}

.brand-inner {
  width: min(680px, 100%);
  text-align: center;
  position: relative;
  z-index: 1;
}

.logo {
  display: block;
  width: clamp(160px, 16vw, 235px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.94);
}

h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(38px, 4.4vw, 72px);
  line-height: 1.25;
  font-weight: 800;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 10px;
}

.gold-divider span {
  width: 98px;
  height: 1px;
  background: var(--gold);
}

.gold-divider i {
  display: block;
  width: 11px;
  height: 11px;
  background: var(--gold);
  transform: rotate(45deg);
}

.english-name {
  margin: 0;
  color: #606768;
  letter-spacing: .24em;
  font-size: clamp(15px, 1.5vw, 23px);
}

.construction-block {
  margin-top: 46px;
}

.helmet-icon {
  width: 58px;
  height: 42px;
  margin: 0 auto 8px;
  position: relative;
  color: transparent;
}

.helmet-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 5px;
  height: 24px;
  border: 3px solid var(--gold);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
}

.helmet-icon::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 0;
  height: 6px;
  border: 3px solid var(--gold);
  border-radius: 7px;
}

.construction-block h2 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.15;
}

.construction-block h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 2px;
  background: var(--gold);
  margin: 22px auto;
}

.construction-block p {
  margin: 6px 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 20px);
}

.construction-block .soon {
  font-size: clamp(15px, 1.3vw, 19px);
}

.info-panel {
  direction: rtl;
  display: flex;
  align-items: center;
  min-height: 720px;
  padding: 54px 54px 54px 62px;
  background:
    radial-gradient(circle at 100% 0, rgba(7,90,79,.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f5 100%);
}

.info-card {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(7,90,79,.08);
  border-radius: 28px;
  padding: 12px 30px;
  box-shadow: 0 24px 70px rgba(29, 46, 45, .11);
}

.info-section {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: center;
  padding: 27px 4px;
  border-bottom: 1px dashed #d8dad6;
}

.info-section:last-child {
  border-bottom: 0;
}

.icon-circle {
  width: 58px;
  height: 58px;
  justify-self: center;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 20px rgba(7,90,79,.14);
}

.icon-circle svg {
  width: 29px;
  height: 29px;
  fill: #f4ddb0;
}

.section-copy {
  position: relative;
  padding-right: 18px;
  border-right: 2px solid rgba(196,154,90,.75);
}

.section-copy h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 800;
}

.section-copy p {
  margin: 6px 0;
  line-height: 1.7;
  font-size: clamp(16px, 1.3vw, 20px);
  color: #222d2f;
}

.section-copy .label {
  font-size: .94em;
  color: #303b3d;
}

.section-copy a {
  text-decoration: none;
  border-bottom: 1px dotted rgba(7,90,79,.35);
}

.section-copy a:hover {
  color: var(--green);
}

.footer {
  min-height: 72px;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-dark));
  border-top: 3px solid var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 24px;
  direction: ltr;
}

.footer p {
  margin: 0;
  font-size: 17px;
  letter-spacing: .03em;
}

.diamond {
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Tablet */
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .brand-panel::after {
    display: none;
  }

  .brand-panel,
  .info-panel {
    min-height: auto;
  }

  .brand-panel {
    padding: 52px 28px 58px;
  }

  .info-panel {
    padding: 45px 24px 54px;
  }

  .info-card {
    max-width: 800px;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .brand-panel {
    padding: 38px 18px 42px;
  }

  .logo {
    width: 145px;
    border-radius: 20px;
  }

  h1 {
    font-size: 38px;
  }

  .english-name {
    font-size: 13px;
    letter-spacing: .13em;
  }

  .construction-block {
    margin-top: 35px;
  }

  .construction-block h2 {
    font-size: 31px;
  }

  .info-panel {
    padding: 28px 14px 38px;
  }

  .info-card {
    padding: 8px 14px;
    border-radius: 22px;
  }

  .info-section {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 24px 2px;
  }

  .section-copy {
    border-right: 0;
    padding-right: 0;
  }

  .section-copy h3 {
    font-size: 25px;
  }

  .section-copy p {
    font-size: 16px;
  }

  .footer {
    min-height: 62px;
  }
}
