:root {
  --green: #143f2b;
  --green-dark: #0b2c1d;
  --gold: #f6a623;
  --cream: #fff7e8;
  --paper: #fffaf0;
  --ink: #24160d;
  --muted: #705d4f;
  --line: rgba(36, 22, 13, .12);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.nxt-info-body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

.top-promo {
  background: var(--gold);
  color: #1e130c;
  min-height: 36px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(20, 63, 43, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.info-nav {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .18));
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-name {
  color: var(--cream);
  font-family: "Noto Serif", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
}

.info-links {
  margin-left: auto;
  display: flex;
  gap: 22px;
  align-items: center;
}

.info-links a {
  color: rgba(255, 253, 248, .82);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-links a:hover {
  color: var(--gold);
}

.order-btn {
  border-radius: var(--radius);
  background: var(--gold);
  color: #1e130c;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 900;
}

.info-page-main {
  background:
    linear-gradient(rgba(20, 63, 43, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 63, 43, .04) 1px, transparent 1px),
    var(--paper);
  background-size: 18px 18px;
}

.info-article {
  width: var(--container);
  margin: 0 auto;
  padding: 62px 0 78px;
}

.info-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 46px;
}

.info-eyebrow,
.guide-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.info-hero h1,
.info-section h2,
.policy-section h2 {
  margin: 8px 0 16px;
  color: var(--green-dark);
  font-family: "Noto Serif", "Lora", serif;
  font-weight: 900;
  line-height: .98;
}

.info-hero h1 {
  font-size: clamp(46px, 7vw, 86px);
}

.info-hero p,
.info-section p,
.policy-section p,
.policy-section li,
.guide-card p,
.guide-card li,
.guide-step p,
.guide-step li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.info-hero-media,
.guide-card-media,
.policy-callout {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(50, 31, 16, .12);
}

.info-hero-media img,
.guide-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-hero-media {
  aspect-ratio: 1.1 / .82;
}

.guide-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 46px;
}

.guide-summary div,
.guide-step,
.policy-card {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.guide-summary strong {
  display: block;
  color: var(--green-dark);
  font-size: 18px;
  margin-bottom: 5px;
}

.guide-summary span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.info-section {
  margin-top: 54px;
}

.info-section a,
.policy-callout a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-callout a {
  color: var(--gold);
}

.info-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 34px rgba(50, 31, 16, .08);
}

.info-section th,
.info-section td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.info-section th {
  background: rgba(20, 63, 43, .08);
  color: var(--green-dark);
  font-weight: 900;
}

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

.info-section h3 {
  margin: 22px 0 8px;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.25;
}

.info-section ol,
.info-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 22px;
}

.info-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.info-article > .guide-label {
  display: inline-flex;
  margin: -22px 0 12px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(246, 166, 35, .14);
  color: var(--green-dark);
  letter-spacing: 0;
  text-transform: none;
}

.info-section h2,
.policy-section h2 {
  font-size: clamp(32px, 4.6vw, 54px);
}

.guide-grid {
  display: grid;
  gap: 22px;
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.guide-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
}

.guide-card:nth-child(even) .guide-card-media {
  order: 2;
}

.guide-card-media {
  min-height: 280px;
}

.guide-card-body {
  padding: 12px 12px 10px;
}

.guide-card h3,
.guide-step h3,
.policy-card h3 {
  margin: 4px 0 12px;
  color: var(--green-dark);
  font-family: "Noto Serif", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.06;
}

.guide-card ul,
.guide-step ul,
.policy-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.guide-card li + li,
.guide-step li + li,
.policy-section li + li {
  margin-top: 9px;
}

.guide-steps,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.guide-step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 12px;
}

.policy-callout {
  background: var(--green);
  color: var(--cream);
  padding: 26px;
  margin: 28px 0;
}

.policy-callout strong {
  display: block;
  color: var(--gold);
  font-family: "Noto Serif", serif;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.policy-callout p {
  color: rgba(255, 253, 248, .82);
  margin: 0;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 8%, rgba(246, 166, 35, .18), transparent 34%),
    linear-gradient(135deg, #1d120c 0%, #10281d 100%);
  color: rgba(255, 253, 248, .82);
  padding: 56px 0 22px;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(170px, .75fr));
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 620px;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .22));
}

.footer-brand strong {
  color: var(--gold);
  font-family: "Noto Serif", serif;
  font-size: clamp(30px, 2.65vw, 40px);
  line-height: .95;
  white-space: nowrap;
}

.footer-brand p,
.footer-note,
.footer-bottom {
  margin: 0;
  line-height: 1.75;
  font-size: 13px;
}

.footer-hotline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-hotline a,
.footer-pill {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 10px 12px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-hotline a {
  background: var(--gold);
  color: #1f140c;
  border-color: transparent;
}

.footer-col {
  display: grid;
  gap: 12px;
}

.footer-col h3 {
  margin: 0;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 253, 248, .76);
  font-size: 13px;
  line-height: 1.45;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  width: var(--container);
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 253, 248, .62);
}

.mfp-hide,
#main-menu.mfp-hide,
.mobile-sidebar.mfp-hide {
  display: none !important;
}

@media (max-width: 960px) {
  .info-nav,
  .info-links {
    gap: 14px;
  }

  .info-links {
    display: none;
  }

  .info-hero,
  .guide-card,
  .guide-card:nth-child(even),
  .guide-summary,
  .guide-steps,
  .policy-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .guide-card:nth-child(even) .guide-card-media {
    order: 0;
  }

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

@media (max-width: 560px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .top-promo {
    font-size: 10px;
  }

  .info-nav {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .order-btn {
    display: none;
  }

  .info-article {
    padding: 42px 0 56px;
  }

  .info-hero-media,
  .guide-card-media {
    min-height: 220px;
  }
}
