@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #10241e;
  --forest: #16372d;
  --forest-2: #1e493c;
  --lime: #dce846;
  --lime-soft: #f1f5bd;
  --paper: #f5f3eb;
  --white: #ffffff;
  --sand: #e7decf;
  --muted: #64736d;
  --line: rgba(16, 36, 30, 0.14);
  --shadow: 0 24px 64px rgba(16, 36, 30, 0.13);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: 'Manrope', Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  margin-bottom: 0.75rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.section-sm {
  padding: clamp(48px, 6vw, 78px) 0;
}

.section-dark {
  color: var(--white);
  background: var(--forest);
}

.section-white {
  background: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
  color: var(--forest-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--lime);
  content: '';
}

.section-dark .eyebrow {
  color: var(--lime);
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.section-dark .lede {
  color: rgba(255, 255, 255, 0.7);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #e8f25c;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  color: var(--white);
  background: var(--forest);
}

.button-dark:hover {
  background: var(--forest-2);
}

.button-outline-dark {
  border: 1px solid rgba(19, 48, 40, 0.22);
  color: var(--forest);
  background: transparent;
}

.button-outline-dark:hover {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.stripe-button::after {
  content: '↗';
}

.checkout-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.checkout-note a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 3px;
}

.checkout-note-dark {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link::after {
  content: '↗';
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(7, 22, 17, 0.65), transparent);
}

.site-header::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(11, 32, 25, 0.72);
  backdrop-filter: blur(18px);
  content: '';
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand-logo {
  gap: 0;
  padding: 0;
}

.brand-logo img {
  width: auto;
  height: 38px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.28));
}

.brand-copy {
  display: grid;
  line-height: 0.96;
}

.brand-copy strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.main-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  padding: 10px 17px !important;
  color: var(--ink) !important;
  background: var(--lime) !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: '';
  transition: 180ms ease;
}

.menu-button[aria-expanded='true'] span {
  opacity: 0;
}

.menu-button[aria-expanded='true']::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded='true']::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 810px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #0b1d18;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(5, 18, 14, 0.86) 0%, rgba(5, 18, 14, 0.54) 36%, rgba(5, 18, 14, 0.08) 72%), linear-gradient(to top, rgba(5, 18, 14, 0.62), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 730px;
  padding: 190px 0 90px;
}

.hero h1 {
  max-width: 700px;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-copy {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-note span {
  width: 36px;
  height: 1px;
  background: var(--lime);
}

.metric-bar {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: var(--white);
  background: var(--forest);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  position: relative;
  padding: 30px 24px;
}

.metric + .metric::before {
  position: absolute;
  top: 30%;
  bottom: 30%;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  content: '';
}

.metric strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.metric span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: clamp(38px, 6vw, 68px);
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-head p {
  max-width: 390px;
  color: var(--muted);
}

.adventure-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.adventure-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.adventure-card:first-child {
  min-height: 520px;
  background: url('images/adventure-hero.png') 72% center / cover;
}

.adventure-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 22, 16, 0.87), rgba(5, 22, 16, 0.04) 68%);
  content: '';
}

.adventure-card:nth-child(2)::before,
.adventure-card:nth-child(3)::before {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(220, 232, 70, 0.3);
  border-radius: 50%;
  content: '';
}

.adventure-card:nth-child(2)::before {
  top: -80px;
  right: -50px;
  box-shadow: 0 0 0 38px rgba(220, 232, 70, 0.04), 0 0 0 74px rgba(220, 232, 70, 0.03);
}

.adventure-card:nth-child(3) {
  color: var(--ink);
  background: var(--lime);
}

.adventure-card:nth-child(3)::before {
  right: -90px;
  bottom: -50px;
  border-color: rgba(16, 36, 30, 0.18);
}

.adventure-card:nth-child(3)::after {
  display: none;
}

.adventure-card-content {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.card-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.adventure-card:nth-child(3) .card-number {
  color: var(--forest);
}

.adventure-card h3 {
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
}

.adventure-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.adventure-card:nth-child(3) p {
  color: rgba(16, 36, 30, 0.7);
}

.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(35px, 6vw, 74px);
  overflow: hidden;
  background: #e9e7dd;
}

.product-visual::before {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(16, 36, 30, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.23), 0 0 0 100px rgba(255, 255, 255, 0.16);
  content: '';
}

.product-visual img {
  position: relative;
  z-index: 1;
  width: min(580px, 100%);
  filter: drop-shadow(0 30px 28px rgba(16, 36, 30, 0.18));
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 90px);
}

.product-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-2);
  font-weight: 600;
}

.feature-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  content: '✓';
  font-size: 0.75rem;
  font-weight: 900;
}

.campaign-section {
  overflow: hidden;
  background: #e8e5da;
}

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

.campaign-card {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 18px 48px rgba(16, 36, 30, 0.14);
}

.campaign-card img,
.campaign-card-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.campaign-card img {
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1);
}

.campaign-card:first-child img {
  object-position: 63% center;
}

.campaign-card:last-child img {
  object-position: 42% center;
}

.campaign-card:hover img {
  transform: scale(1.025);
}

.campaign-card-overlay {
  background: linear-gradient(to top, rgba(5, 20, 15, 0.94) 0%, rgba(5, 20, 15, 0.48) 43%, rgba(5, 20, 15, 0.03) 72%);
}

.campaign-card-copy {
  position: absolute;
  z-index: 1;
  right: clamp(25px, 4vw, 44px);
  bottom: clamp(28px, 4vw, 44px);
  left: clamp(25px, 4vw, 44px);
}

.campaign-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.campaign-card h3 {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.campaign-card p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.campaign-action {
  margin-top: 28px;
  text-align: right;
}

.rental-banner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 40px;
  padding: clamp(40px, 6vw, 70px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--forest);
}

.rental-banner h2 {
  max-width: 690px;
}

.rental-price {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.rental-price strong {
  display: block;
  color: var(--lime);
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.rental-price span {
  color: rgba(255, 255, 255, 0.66);
}

.page-hero {
  position: relative;
  min-height: 620px;
  padding: 200px 0 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  border: 1px solid rgba(220, 232, 70, 0.2);
  border-radius: 50%;
  content: '';
}

.page-hero::before {
  top: -260px;
  right: -150px;
  width: 640px;
  height: 640px;
  box-shadow: 0 0 0 90px rgba(220, 232, 70, 0.035), 0 0 0 180px rgba(220, 232, 70, 0.025);
}

.page-hero::after {
  right: 30%;
  bottom: -300px;
  width: 430px;
  height: 430px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 970px;
  margin-bottom: 1.4rem;
}

.page-hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.page-hero .lede {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-product {
  min-height: 700px;
}

.page-hero-product .container {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 50px;
}

.page-hero-product img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 40px 42px rgba(0, 0, 0, 0.3));
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 1.7rem 0 0.9rem;
}

.hero-price span,
.hero-price small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-price strong {
  color: var(--lime);
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.product-price-compact {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 1.6rem;
}

.product-price-compact strong {
  color: var(--forest);
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.product-price-compact span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solar-product-section {
  background: #e6e2d6;
}

.solar-product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.solar-product-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--forest);
}

.solar-product-lifestyle {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.solar-product-shot {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(210px, 38%);
  padding: 16px 16px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(16, 36, 30, 0.22);
  backdrop-filter: blur(10px);
}

.solar-product-shot img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.solar-product-shot span {
  margin-top: 8px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.solar-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 78px);
}

.solar-product-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.solar-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 1.8rem 0;
}

.solar-price strong {
  color: var(--forest);
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.solar-price span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solar-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solar-highlights div {
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solar-highlights strong,
.solar-highlights span {
  display: block;
}

.solar-highlights strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.solar-highlights span {
  color: var(--muted);
  font-size: 0.73rem;
}

.solar-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 22px;
  margin-top: 1.3rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.split-media {
  position: relative;
  min-height: 610px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media-tag {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(16, 36, 30, 0.82);
  backdrop-filter: blur(12px);
  font-size: 0.85rem;
  font-weight: 700;
}

.principle-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.principle-card,
.feature-card,
.contact-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
}

.principle-card span,
.feature-card span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 3.8rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
}

.principle-card p,
.feature-card p,
.contact-card p {
  color: var(--muted);
}

.sustainability-section {
  background: #e8eadf;
}

.sustainability-panel {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid rgba(19, 48, 40, 0.1);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(19, 48, 40, 0.1);
}

.sustainability-member {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #12382d 0%, #0a241d 100%);
}

.sustainability-member::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border: 58px solid rgba(199, 241, 91, 0.11);
  border-radius: 50%;
  content: '';
}

.member-label {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-bottom: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(199, 241, 91, 0.42);
  border-radius: 999px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.abri-logo-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 185px;
  padding: 30px;
  place-items: center;
  border-radius: 22px;
  background: #fff;
}

.abri-logo-wrap img {
  width: 100%;
  height: auto;
}

.sustainability-member p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.sustainability-copy {
  padding: clamp(42px, 6vw, 76px);
}

.sustainability-copy h2 {
  max-width: 650px;
}

.sustainability-copy > p:not(.lede) {
  max-width: 720px;
  color: var(--muted);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 42px 0 34px;
}

.commitment-item {
  padding-top: 20px;
  border-top: 2px solid var(--forest);
}

.commitment-item span {
  display: block;
  margin-bottom: 24px;
  color: #6d7b76;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.commitment-item h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.commitment-item p {
  color: var(--muted);
  font-size: 0.86rem;
}

.sustainability-link {
  color: var(--forest);
}

.strategy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(45px, 8vw, 100px);
  align-items: center;
}

.strategy-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.strategy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 36, 30, 0.56), transparent 55%);
  content: '';
}

.strategy-copy h2 {
  max-width: 720px;
}

.partnership-lockup {
  position: relative;
  margin-bottom: 2.4rem;
  padding: 28px 30px 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: #f7f5ef;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.partnership-lockup::after {
  position: absolute;
  right: -42px;
  bottom: -62px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(199, 241, 91, 0.28);
  content: '';
}

.partnership-label {
  display: block;
  margin-bottom: 22px;
  color: #476059;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.partnership-brands {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) auto minmax(210px, 1.2fr);
  gap: 24px;
  align-items: center;
}

.partnership-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.partnership-brand-yg {
  justify-content: flex-start;
}

.partnership-brand-yg img {
  width: min(100%, 230px);
  height: auto;
}

.partnership-divider {
  color: #8b9995;
  font-size: 1.55rem;
  font-weight: 400;
}

.partnership-brand-flinders {
  justify-content: flex-start;
  transition: opacity 180ms ease;
}

.partnership-brand-flinders:hover {
  opacity: 0.74;
}

.partnership-brand-flinders img {
  width: min(100%, 262px);
  height: auto;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.roadmap-item {
  position: relative;
  padding: 34px 30px 0 0;
}

.roadmap-item::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--forest);
  border-radius: 50%;
  background: var(--lime);
  content: '';
}

.roadmap-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--lime);
}

.roadmap-item p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2rem;
}

.spec-chip {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 320px);
  gap: 16px;
}

.product-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.product-gallery figure:first-child {
  grid-row: 1 / 3;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery figure:first-child img {
  object-fit: contain;
  padding: 38px;
}

.specs-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  align-items: start;
}

.specs-list {
  border-top: 1px solid var(--line);
}

.specs-list details {
  border-bottom: 1px solid var(--line);
}

.specs-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Manrope', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

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

.specs-list summary::after {
  position: absolute;
  top: 22px;
  right: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: '+';
  text-align: center;
  line-height: 28px;
}

.specs-list details[open] summary::after {
  content: '−';
}

.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  padding: 0 0 28px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.spec-row strong {
  color: var(--ink);
  text-align: right;
}

.rental-plans {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
}

.plan-card {
  padding: clamp(35px, 6vw, 60px);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.plan-card-featured {
  color: var(--white);
  background: var(--forest);
}

.plan-card .price {
  display: block;
  margin: 2rem 0 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}

.plan-card .price small {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.plan-card-featured .price {
  color: var(--lime);
}

.plan-card-featured p,
.plan-card-featured .feature-list li {
  color: rgba(255, 255, 255, 0.7);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.contact-card {
  background: var(--white);
}

.contact-card a {
  word-break: break-word;
  font-weight: 700;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form {
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #faf9f5;
}

.field input,
.field select {
  height: 54px;
  padding: 0 15px;
}

.field textarea {
  min-height: 160px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 3px rgba(30, 73, 60, 0.09);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.form-status {
  color: var(--muted);
  font-size: 0.84rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list summary {
  padding: 22px 35px 22px 0;
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
}

.faq-list p {
  padding-bottom: 22px;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer {
  padding: 70px 0 28px;
  color: var(--white);
  background: #0a211a;
}

.site-footer .brand-logo img {
  height: 46px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 70px;
  padding-bottom: 58px;
}

.footer-brand p {
  max-width: 400px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-title {
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    padding: 100px 28px 40px;
    visibility: hidden;
    opacity: 0;
    background: var(--forest);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    z-index: -1;
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    padding: 10px 0;
    border-radius: 0;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 8vw, 3.7rem);
    font-weight: 700;
    letter-spacing: -0.04em;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    color: var(--lime);
    background: none;
  }

  .nav-cta {
    margin-top: 15px;
    padding: 12px 18px !important;
    border-radius: 999px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 1rem !important;
    text-align: center;
  }

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

  .campaign-card {
    min-height: 500px;
  }

  .adventure-card:first-child {
    grid-column: 1 / -1;
  }

  .product-feature,
  .rental-banner,
  .split,
  .strategy,
  .sustainability-panel,
  .page-hero-product .container,
  .solar-product,
  .specs-layout,
  .rental-plans,
  .contact-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 480px;
  }

  .sustainability-member {
    min-height: 430px;
  }

  .page-hero-product img {
    max-height: 360px;
  }

  .solar-product-visual {
    min-height: 560px;
  }

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

  .roadmap {
    grid-template-columns: 1fr;
    border: 0;
  }

  .roadmap-item {
    padding: 20px 0 20px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .roadmap-item::before {
    top: 27px;
    left: -6px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .partnership-lockup {
    padding: 24px;
  }

  .partnership-brands {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partnership-divider {
    width: 100%;
    height: 1px;
    overflow: hidden;
    background: rgba(19, 48, 40, 0.14);
    font-size: 0;
  }

  .partnership-brand-flinders img {
    width: min(100%, 230px);
  }

  .sustainability-member {
    min-height: auto;
    padding: 36px 24px;
  }

  .member-label {
    margin-bottom: 26px;
  }

  .abri-logo-wrap {
    min-height: 145px;
    padding: 22px;
  }

  .sustainability-copy {
    padding: 42px 24px;
  }

  .site-header .brand-logo {
    padding: 0;
  }

  .site-header .brand-logo img {
    height: 33px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .hero-media img {
    object-position: 65% center;
  }

  .hero-overlay {
    background: linear-gradient(to top, rgba(5, 18, 14, 0.94) 0%, rgba(5, 18, 14, 0.53) 68%, rgba(5, 18, 14, 0.32));
  }

  .hero-content {
    padding: 160px 0 64px;
  }

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

  .metric:nth-child(3)::before {
    display: none;
  }

  .metric:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 1rem;
  }

  .adventure-grid,
  .campaign-grid,
  .principle-grid,
  .feature-grid,
  .contact-grid,
  .form-grid,
  .commitment-grid,
  .spec-table {
    grid-template-columns: 1fr;
  }

  .commitment-grid {
    gap: 18px;
  }

  .commitment-item span {
    margin-bottom: 14px;
  }

  .adventure-card:first-child {
    grid-column: auto;
  }

  .adventure-card,
  .adventure-card:first-child {
    min-height: 390px;
  }

  .campaign-card {
    min-height: 440px;
    border-radius: var(--radius);
  }

  .campaign-action {
    text-align: left;
  }

  .product-feature {
    border-radius: var(--radius);
  }

  .product-visual {
    min-height: 350px;
    padding: 34px 24px;
  }

  .product-copy {
    padding: 40px 24px;
  }

  .rental-banner {
    gap: 25px;
  }

  .page-hero {
    min-height: 570px;
    padding: 165px 0 65px;
  }

  .page-hero-product {
    min-height: 760px;
  }

  .page-hero-product img {
    order: -1;
    max-height: 280px;
  }

  .hero-price {
    flex-wrap: wrap;
  }

  .solar-product {
    border-radius: var(--radius);
  }

  .solar-product-visual {
    min-height: 470px;
  }

  .solar-product-shot {
    right: 14px;
    bottom: 14px;
    width: 150px;
    padding: 10px;
  }

  .solar-product-shot img {
    height: 130px;
  }

  .solar-product-copy {
    padding: 40px 24px;
  }

  .solar-specs {
    grid-template-columns: 1fr;
  }

  .split-media,
  .strategy-visual {
    min-height: 430px;
  }

  .principle-card span,
  .feature-card span {
    margin-bottom: 2.6rem;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 430px 260px 260px;
  }

  .product-gallery figure:first-child {
    grid-row: auto;
  }

  .form-footer,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
