:root {
  --rt-bg: #09100c;
  --rt-paper: #efe5d6;
  --rt-paper-ink: #2b2a23;
  --rt-moss: #97a36b;
  --rt-light: #f5efe4;
  --rt-shadow: 0 24px 80px rgba(0, 0, 0, .24);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--rt-bg); color: var(--rt-light); font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }

.rt-shell { width: min(1220px, calc(100% - 56px)); margin-inline: auto; }

/* Hero */
.rt-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #07100b url('/assets/images/wild-expedition/hero-background.png') center center / cover no-repeat;
}
.rt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4,8,6,.92) 0%, rgba(4,8,6,.84) 27%, rgba(4,8,6,.48) 43%, rgba(4,8,6,.12) 62%, rgba(4,8,6,.03) 78%, rgba(4,8,6,.16) 100%),
    linear-gradient(180deg, rgba(4,8,6,.22) 0%, rgba(4,8,6,.02) 45%, rgba(4,8,6,.22) 100%);
}
.rt-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  min-height: 88px;
  padding-top: 20px;
}
.rt-logo {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 160px;
  height: 70px;
  overflow: hidden;
}
.rt-logo img {
  width: 168px;
  max-width: none;
  height: auto;
  display: block;
  transform: translate(-2px, -22px) scale(1.17);
  transform-origin: top left;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.35));
}
.rt-nav {
  position: absolute;
  top: 31px;
  left: 50%;
  display: flex;
  justify-content: center;
  gap: 32px;
  width: max-content;
  transform: translateX(-50%);
  color: rgba(245,239,228,.94);
  font-size: 14px;
  line-height: 1;
}
.rt-nav a { padding-block: 6px; opacity: .95; }
.rt-nav a:hover,
.rt-section-link:hover,
.rt-inline-link:hover,
.rt-footer a:hover { color: #fff; opacity: 1; }
.rt-header-actions { margin-left: auto; }
.rt-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  height: 46px;
  padding-inline: 20px;
  border: 1px solid rgba(225,215,188,.08);
  border-radius: 7px;
  background: linear-gradient(180deg, #70804b, #5d6d3d);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
}
.rt-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 700px);
  align-items: center;
  justify-content: start;
  min-height: 660px;
  padding: 60px 0 54px;
}
.rt-hero-copy { position: relative; z-index: 2; padding-top: 10px; }
.rt-kicker,
.rt-section-kicker { margin: 0 0 18px; color: var(--rt-moss); text-transform: uppercase; letter-spacing: .16em; }
.rt-kicker { font-size: 17px; }
.rt-hero-copy h1 {
  max-width: 100%;
  margin: 0;
  color: #f6efdf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.9rem, 5.15vw, 5.15rem);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.04em;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0,0,0,.34);
}
.rt-divider { width: 54px; height: 2px; margin: 28px 0 22px; background: rgba(164,170,116,.92); }
.rt-lede { max-width: 430px; margin: 0; color: rgba(246,239,223,.92); font-size: 17px; line-height: 1.5; text-shadow: 0 2px 16px rgba(0,0,0,.42); }
.rt-hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.rt-btn { display: inline-flex; align-items: center; justify-content: center; height: 56px; padding: 0 28px; border: 1px solid rgba(244,237,223,.22); border-radius: 8px; font-size: 16px; font-weight: 600; backdrop-filter: blur(2px); }
.rt-btn-primary { background: linear-gradient(180deg, #97a36b, #7f8d57); color: #fff; }
.rt-btn-primary::after { content: "\2192"; margin-left: 12px; }
.rt-btn-secondary { background: rgba(8,10,8,.24); color: #fff; }
.rt-hero-art { display: none; }
.rt-hero-tear { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 4; height: 64px; pointer-events: none; background: url('/assets/images/wild-expedition/tear-divider-v2.png') center bottom / 100% 64px no-repeat; }

/* Shared parchment sections */
.rt-paper {
  position: relative;
  color: var(--rt-paper-ink);
  background:
    linear-gradient(rgba(246,239,226,.76), rgba(238,227,210,.76)),
    url('/assets/images/wild-expedition/paper-texture.png') center top / cover repeat-y;
}
.rt-paper::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 8% 12%, rgba(121,130,94,.08), transparent 20rem), radial-gradient(circle at 92% 75%, rgba(195,173,137,.08), transparent 18rem); }
.rt-products .rt-shell,
.rt-principles .rt-shell,
.rt-updates .rt-shell { position: relative; z-index: 1; }
.rt-section-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.rt-section-top--with-rule { padding-top: 8px; border-top: 0; }
.rt-section-kicker { display: flex; align-items: center; gap: 10px; color: #473f32; font-size: 13px; font-weight: 600; letter-spacing: .12em; }
.rt-section-kicker::before { content: "❧"; color: #78905b; font-size: 13px; }
.rt-section-link { color: #50493d; font-size: 14px; }
.rt-section-link::after,
.rt-inline-link::after { content: " \2192"; }
.rt-card-grid { display: grid; gap: 18px; }
.rt-card-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.rt-card-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }

/* Products */
.rt-products { padding: 30px 0 34px; }
.rt-product-card { position: relative; min-height: 386px; overflow: hidden; border: 1px solid rgba(29,24,18,.18); border-radius: 10px; background: #1a1c16; box-shadow: var(--rt-shadow); }
.rt-product-card--hokime { background: url('/assets/images/wild-expedition/hokime-card-art.png') center / cover no-repeat; }
.rt-product-card--npw { background: url('/assets/images/wild-expedition/numberplate-card-art-v2.png') center / cover no-repeat; }
.rt-product-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,14,11,.82) 0%, rgba(11,14,11,.78) 34%, rgba(11,14,11,.06) 64%, rgba(11,14,11,.16) 100%); }
.rt-product-content { position: relative; display: flex; flex-direction: column; justify-content: space-between; height: 100%; padding: 24px 24px 18px; color: #f4efe3; }
.rt-product-label { margin: 0 0 10px; color: #9baa72; text-transform: uppercase; letter-spacing: .13em; font-size: 13px; }
.rt-product-card h2 { max-width: 360px; margin: 0 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 500; line-height: 1.16; }
.rt-product-card p { max-width: 330px; margin: 0 0 18px; color: rgba(244,239,227,.86); font-size: 16px; line-height: 1.42; }
.rt-inline-link { display: inline-block; margin-top: 2px; color: #fff; font-weight: 600; }
.rt-product-badge { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 14px; max-width: 310px; padding: 16px 18px; border: 1px solid rgba(225,216,195,.18); border-radius: 14px; background: rgba(9,12,9,.56); backdrop-filter: blur(6px); }
.rt-product-badge-icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(245,239,227,.35); border-radius: 10px; color: #f4efe3; font-weight: 700; }
.rt-product-badge strong { display: block; color: #f4efe3; font-size: 15px; font-weight: 600; }
.rt-product-badge span { display: block; color: rgba(244,239,227,.82); font-size: 14px; line-height: 1.35; }
.rt-product-badge small { grid-column: 2; display: block; margin-top: 4px; color: rgba(244,239,227,.68); font-size: 13px; }

/* Principles - single canonical implementation */
.rt-principles {
  position: relative;
  opacity: .99;
  overflow: hidden;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(73,65,49,.08);
  border-bottom: 1px solid rgba(73,65,49,.10);
  background:
    linear-gradient(rgba(245,238,225,.74), rgba(236,225,207,.76)),
    url('/assets/images/wild-expedition/paper-texture.png') center 42% / cover no-repeat;
}
.rt-principles::before,
.rt-principles::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  width: clamp(180px, 20vw, 290px);
  height: 170px;
  pointer-events: none;
  opacity: .28;
  background-repeat: no-repeat;
  background-size: contain;
  filter: sepia(.14) saturate(.72) contrast(.94);
}
.rt-principles::before { left: 0; background-image: url('/assets/images/wild-expedition/principles-forest-left.png'); background-position: left bottom; }
.rt-principles::after { right: 0; background-image: url('/assets/images/wild-expedition/principles-forest-right.png'); background-position: right bottom; }
.rt-principles .rt-section-top--with-rule { margin-bottom: 0; padding: 8px 0 14px; border-bottom: 1px solid rgba(73,65,49,.17); }
.rt-principles-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 0; background: transparent; }
.rt-principle { display: grid; grid-template-columns: 56px minmax(0,1fr); grid-template-rows: auto 1fr; grid-template-areas: "icon title" "icon copy"; column-gap: 14px; row-gap: 7px; min-height: 124px; padding: 24px 18px 18px; border-right: 1px solid rgba(73,65,49,.12); background: transparent; }
.rt-principle:last-child { border-right: 0; }
.rt-principle-icon { grid-area: icon; display: grid; place-items: start center; width: 48px; height: 48px; color: #403a30; font-size: 25px; line-height: 1; opacity: .92; }
.rt-principle h3 { grid-area: title; align-self: end; margin: 0; color: #2f2a23; font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 500; line-height: 1.18; }
.rt-principle p { grid-area: copy; max-width: 210px; margin: 0; color: #514b41; font-size: 14px; line-height: 1.48; }

/* Journal */
.rt-updates { padding: 24px 0 32px; }
.rt-journal-card { position: relative; min-height: 214px; overflow: hidden; border: 1px solid rgba(29,24,18,.14); border-radius: 8px; box-shadow: 0 14px 38px rgba(0,0,0,.12); }
.rt-journal-card--studio { background: url('/assets/images/wild-expedition/journal-studio.png') center / cover no-repeat; }
.rt-journal-card--product { background: url('/assets/images/wild-expedition/journal-product.png') center / cover no-repeat; }
.rt-journal-card--workshop { background: url('/assets/images/wild-expedition/journal-workshop.png') center / cover no-repeat; }
.rt-journal-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,14,12,.08), rgba(12,14,12,.8)); }
.rt-journal-content { position: absolute; right: 0; bottom: 0; left: 0; padding: 18px 20px; color: #fff; }
.rt-journal-content h3 { max-width: 260px; margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 500; line-height: 1.18; }
.rt-journal-content small { color: rgba(246,239,223,.85); font-size: 13px; }

/* Footer */
.rt-footer { padding-top: 22px; color: #e9e3d8; background: radial-gradient(circle at 12% 12%, rgba(121,131,91,.08), transparent 20rem), linear-gradient(180deg, #0a110d, #040705); }
.rt-footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr .7fr 1.2fr; align-items: start; gap: 28px; padding-bottom: 18px; }
.rt-footer h4 { margin: 0 0 16px; color: #d6caab; text-transform: uppercase; letter-spacing: .08em; font-size: 15px; font-weight: 600; }
.rt-footer a { display: block; margin: 0 0 10px; color: rgba(233,227,216,.92); }
.rt-footer-brand img { display: block; width: 132px; height: auto; margin-bottom: 16px; }
.rt-footer-brand p { max-width: 260px; margin: 0 0 18px; color: rgba(233,227,216,.78); font-size: 15px; line-height: 1.52; }
.rt-footer-socials { display: flex; align-items: center; gap: 16px; color: #e9e3d8; font-size: 26px; }
.rt-footer-newsletter { padding: 18px; border: 1px solid rgba(233,227,216,.14); border-radius: 12px; background: rgba(255,255,255,.02); }
.rt-footer-newsletter p { margin: 0 0 16px; color: rgba(233,227,216,.78); font-size: 15px; }
.rt-footer-newsletter form { display: flex; overflow: hidden; border: 1px solid rgba(233,227,216,.16); border-radius: 10px; background: rgba(255,255,255,.02); }
.rt-footer-newsletter input { width: 100%; height: 54px; padding: 0 16px; border: 0; background: transparent; color: #fff; font: inherit; }
.rt-footer-newsletter button { width: 58px; border: 0; background: linear-gradient(180deg, #6f7f4d, #5a6a3d); color: #fff; font-size: 18px; }
.rt-footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 14px 0 24px; border-top: 1px solid rgba(233,227,216,.1); color: rgba(233,227,216,.72); font-size: 14px; }
.rt-footer-bottom div { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 1100px) {
  .rt-nav { gap: 24px; }
  .rt-header-cta { min-width: 158px; }
  .rt-hero-copy h1 { font-size: clamp(3.7rem, 5.4vw, 4.75rem); }
  .rt-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .rt-footer-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .rt-header { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "logo cta" "nav nav"; min-height: 126px; row-gap: 8px; }
  .rt-logo { grid-area: logo; width: 142px; height: 62px; }
  .rt-logo img { width: 149px; transform: translate(-2px, -19px) scale(1.14); }
  .rt-nav { position: static; grid-area: nav; justify-content: flex-start; width: auto; transform: none; gap: 21px; }
  .rt-header-actions { grid-area: cta; }
  .rt-hero { background-position: 66% center; }
  .rt-hero-inner { grid-template-columns: 1fr; padding-top: 26px; }
  .rt-card-grid-2,
  .rt-card-grid-3,
  .rt-footer-grid { grid-template-columns: 1fr; }
  .rt-principles::before,
  .rt-principles::after { width: 190px; height: 130px; opacity: .20; }
  .rt-principles-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .rt-principle:nth-child(2) { border-right: 0; }
  .rt-principle:nth-child(-n+2) { border-bottom: 1px solid rgba(73,65,49,.12); }
}

@media (max-width: 640px) {
  .rt-shell { width: min(100% - 28px, 1220px); }
  .rt-header { grid-template-columns: 1fr; grid-template-areas: "logo" "nav"; min-height: 118px; padding-top: 18px; }
  .rt-header-actions { display: none; }
  .rt-nav { gap: 14px; overflow-x: auto; padding-bottom: 7px; font-size: 13px; }
  .rt-hero { min-height: auto; background-position: 68% center; }
  .rt-hero-inner { padding: 24px 0 18px; }
  .rt-hero-copy h1 { font-size: clamp(2.95rem, 12.5vw, 3.9rem); }
  .rt-kicker,
  .rt-section-kicker { font-size: 12px; }
  .rt-lede { font-size: 16px; }
  .rt-btn { width: 100%; height: 52px; }
  .rt-hero-tear { height: 38px; background-size: 100% 38px; }
  .rt-product-card { min-height: 420px; }
  .rt-product-overlay { background: linear-gradient(180deg, rgba(11,14,11,.76) 0%, rgba(11,14,11,.76) 56%, rgba(11,14,11,.3) 100%); }
  .rt-principles::before,
  .rt-principles::after { display: none; }
  .rt-principles-grid { grid-template-columns: 1fr; }
  .rt-principle,
  .rt-principle:nth-child(2) { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(73,65,49,.12); }
  .rt-principle:last-child { border-bottom: 0; }
  .rt-principle p { max-width: none; }
  .rt-footer-bottom { flex-direction: column; align-items: flex-start; }
}
