/* ===========================
   Variables — Raw Terrain v7
   =========================== */
:root {
  --earth: #1A2218;
  --forest: #2E4A28;
  --olive: #5C7A4E;
  --stone: #E8E2D6;
  --sand: #F2EDE4;
  --rust: #C4622D;
  --rust-light: #D4784A;
  --text-dark: #1A2218;
  --text-mid: #6B7668;
  --text-dim: #9FA99C;
  --border: #DDD8CC;
  --bg-card: #FFFFFF;
  --utility-height: 40px;
  --nav-height: 80px;
  --total-header: 120px;
  --max-width: 1200px;
  --radius: 6px;
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.28s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--sand);
  color: var(--text-mid);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.1;
}
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: 'Manrope', sans-serif; font-size: inherit; border: none; outline: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }

/* Scroll Progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--rust); z-index: 1200; width: 0; transition: none;
}

/* ===========================
   Scroll Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   Utility Bar
   =========================== */
.header-utility {
  height: var(--utility-height);
  background: var(--earth);
  display: flex; align-items: center;
  position: relative; z-index: 1001;
}
.utility-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 48px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.utility-left, .utility-right {
  display: flex; align-items: center; gap: 24px;
}
.utility-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem; color: rgba(255,255,255,0.45); font-family: 'Manrope', sans-serif;
}
.utility-item a { color: rgba(255,255,255,0.45); transition: color 0.25s ease; }
.utility-item a:hover { color: rgba(255,255,255,0.85); }
.utility-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rust); }

/* ===========================
   Header — Two-row, Logo Centered
   =========================== */
.header-main {
  position: sticky; top: 0; height: var(--nav-height);
  z-index: 1000; transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header-main.scrolled {
  background: rgba(242, 237, 228, 0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.header-main.scrolled .nav-left a,
.header-main.scrolled .nav-right-links a { color: var(--text-mid); }
.header-main.scrolled .nav-left a:hover,
.header-main.scrolled .nav-right-links a:hover { color: var(--rust); }
.header-main.scrolled .logo-center { color: var(--text-dark); }
.header-main.scrolled .logo-center .dot { color: var(--rust); }
.header-main.scrolled .mobile-toggle span { background: var(--text-dark); }

/* header-solid: sub-pages */
.header-main.header-solid {
  background: rgba(242, 237, 228, 0.98);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.header-main.header-solid .nav-left a,
.header-main.header-solid .nav-right-links a { color: var(--text-mid); }
.header-main.header-solid .nav-left a:hover,
.header-main.header-solid .nav-right-links a:hover { color: var(--rust); }
.header-main.header-solid .logo-center { color: var(--text-dark); }
.header-main.header-solid .logo-center .dot { color: var(--rust); }
.header-main.header-solid .mobile-toggle span { background: var(--text-dark); }

.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 48px;
  width: 100%; height: 100%; display: flex; align-items: center;
  position: relative;
}

.logo-center {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: #fff;
  letter-spacing: -0.5px;
  position: absolute; left: 50%; transform: translateX(-50%);
  transition: color 0.35s ease; white-space: nowrap;
}
.logo-center .dot { color: var(--rust); }

.nav-left { display: flex; gap: 36px; }
.nav-left a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.75);
  position: relative; transition: color var(--transition-fast);
}
.nav-left a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--rust); transition: width 0.35s ease;
}
.nav-left a:hover, .nav-left a.active { color: #fff; }
.nav-left a:hover::after, .nav-left a.active::after { width: 100%; }
.header-main.scrolled .nav-left a.active,
.header-main.header-solid .nav-left a.active { color: var(--rust); }

.nav-right-links { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav-right-links a {
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color var(--transition-fast);
}
.btn-shop {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; font-family: 'Manrope', sans-serif;
  background: var(--rust); color: #fff; border: 2px solid var(--rust);
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-shop:hover { background: var(--rust-light); border-color: var(--rust-light); transform: translateY(-1px); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: var(--transition); border-radius: 2px; }

/* ===========================
   Hero — Right-aligned text
   =========================== */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 26s ease forwards;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,18,8,0.2) 0%, rgba(10,18,8,0.35) 40%, rgba(10,18,8,0.7) 100%);
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }

.hero-content-wrap {
  position: relative; z-index: 2; width: 100%;
}
.hero-text {
  text-align: right; max-width: 640px; margin-left: auto;
  padding-right: 0;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
  color: var(--rust); margin-bottom: 20px;
  opacity: 0; animation: fadeIn 0.7s ease 0.15s forwards;
}
.hero-label::after {
  content: ''; display: block; width: 32px; height: 2px; background: var(--rust);
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 5.6rem; font-weight: 800; color: var(--sand);
  letter-spacing: -2.5px; line-height: 0.95; margin-bottom: 28px;
  opacity: 0; animation: slideUp 0.9s cubic-bezier(0.23,1,0.32,1) 0.25s forwards;
}
.hero h1 mark {
  background: rgba(196, 98, 45, 0.22); color: #F0A882;
  border-radius: 4px; padding: 0 8px; font-style: normal;
}
.hero-sub {
  font-size: 1rem; color: rgba(242,237,228,0.6); line-height: 1.85;
  margin-bottom: 36px; max-width: 440px; margin-left: auto;
  opacity: 0; animation: slideUp 0.9s cubic-bezier(0.23,1,0.32,1) 0.38s forwards;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: flex-end;
  opacity: 0; animation: fadeIn 0.7s ease 0.52s forwards;
}

/* Left vertical decoration */
.hero-vert {
  position: absolute; left: 48px; bottom: 80px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0; animation: fadeIn 0.7s ease 0.7s forwards;
}
.hero-vert span {
  font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 4px;
  color: rgba(242,237,228,0.3); writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero-vert-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(196,98,45,0.6));
}

@keyframes slideUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; font-size: 0.84rem; font-weight: 600;
  font-family: 'Manrope', sans-serif; border-radius: var(--radius);
  cursor: pointer; transition: all 0.3s ease;
}
.btn-rust { background: var(--rust); color: #fff; }
.btn-rust:hover { background: var(--rust-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,98,45,0.35); }
.btn-outline-sand { background: transparent; color: var(--sand); border: 1.5px solid rgba(242,237,228,0.4); }
.btn-outline-sand:hover { border-color: var(--sand); background: rgba(242,237,228,0.1); transform: translateY(-2px); }
.btn-earth { background: var(--earth); color: #fff; }
.btn-earth:hover { background: #263421; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text-dark); border: 1.5px solid var(--border); border-radius: var(--radius); }
.btn-ghost:hover { border-color: var(--rust); color: var(--rust); transform: translateY(-2px); }

/* ===========================
   Sections
   =========================== */
.section { padding: 120px 0; }
.section-stone { background: var(--stone); }
.section-earth { background: var(--earth); }
.section-forest { background: var(--forest); }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
  color: var(--rust); margin-bottom: 14px; font-family: 'Manrope', sans-serif;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--rust); border-radius: 1px;
}
.section-label.light { color: #C4895A; }
.section-label.light::before { background: #C4895A; }
.section-label.on-dark { color: var(--rust-light); }
.section-label.on-dark::before { background: var(--rust-light); }

.section-title { font-size: 2.8rem; letter-spacing: -1.2px; }
.section-title.light { color: #fff; }
.section-sub { font-size: 0.95rem; line-height: 1.85; margin-top: 14px; max-width: 520px; color: var(--text-mid); }

.section-head { margin-bottom: 64px; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 64px; }

/* ===========================
   Products — Hover Reveal Cards
   =========================== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }

.reveal-card {
  position: relative; height: 480px; overflow: hidden;
  cursor: pointer;
}
.reveal-card-img {
  position: absolute; inset: 0;
}
.reveal-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-card:hover .reveal-card-img img { transform: scale(1.02); }

/* Permanent gradient at bottom */
.reveal-card-base {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,34,24,0.85) 0%, transparent 50%);
  padding: 24px 28px;
  transition: opacity 0.4s ease;
}
.reveal-card:hover .reveal-card-base { opacity: 0; }

.reveal-card-base-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: #fff;
}

/* Reveal overlay */
.reveal-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,34,24,0.97) 0%, rgba(26,34,24,0.75) 60%, transparent 100%);
  padding: 32px 28px 28px;
  transform: translateY(30px); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
}
.reveal-card:hover .reveal-overlay { transform: translateY(0); opacity: 1; }

.reveal-badge {
  display: inline-block; padding: 3px 12px; margin-bottom: 12px;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  background: var(--rust); color: #fff; border-radius: 100px;
}
.reveal-cat {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(196,98,45,0.9); margin-bottom: 8px;
}
.reveal-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: #fff;
  letter-spacing: -0.3px; margin-bottom: 8px;
}
.reveal-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 14px;
}
.reveal-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--sand);
}

/* ===========================
   Cinematic Story Section
   =========================== */
.cinematic-section {
  position: relative; height: 620px; overflow: hidden;
  display: flex; align-items: center;
}
.cinematic-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.cinematic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,34,24,0.92) 0%, rgba(26,34,24,0.7) 45%, rgba(26,34,24,0.1) 100%);
}
.cinematic-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max-width); margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.cinematic-text { max-width: 520px; }
.cinematic-text .section-label { display: inline-flex; }
.cinematic-text h2 { font-size: 2.8rem; color: #fff; margin-bottom: 20px; letter-spacing: -1px; }
.cinematic-text p { color: rgba(242,237,228,0.6); font-size: 0.92rem; line-height: 1.9; margin-bottom: 14px; }
.cinematic-text .btn { margin-top: 12px; }

.cinematic-stats {
  display: flex; flex-direction: column; gap: 32px;
  flex-shrink: 0;
}
.cstat {
  text-align: right;
}
.cstat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1;
}
.cstat-num em { font-style: normal; color: var(--rust-light); }
.cstat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(242,237,228,0.35); margin-top: 4px; font-weight: 600; }

/* ===========================
   Features Flow — Horizontal
   =========================== */
.features-flow { display: flex; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-flow-item {
  flex: 1; padding: 52px 40px;
  border-right: 1px solid var(--border);
  transition: background 0.3s ease;
}
.feature-flow-item:last-child { border-right: none; }
.feature-flow-item:hover { background: rgba(196,98,45,0.04); }
.feature-flow-num {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 800; color: var(--text-dim);
  letter-spacing: 1px; margin-bottom: 20px;
  transition: color 0.3s ease;
}
.feature-flow-item:hover .feature-flow-num { color: var(--rust); }
.feature-flow-icon { font-size: 1.6rem; margin-bottom: 16px; }
.feature-flow-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.2px; }
.feature-flow-item p { font-size: 0.83rem; line-height: 1.85; }

/* ===========================
   Promise Strip — Dark
   =========================== */
.promise-dark { background: var(--earth); padding: 52px 0; }
.promise-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.promise-cell {
  display: flex; align-items: center; gap: 20px; padding: 20px 48px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.promise-cell:last-child { border-right: none; }
.promise-icon { font-size: 1.6rem; flex-shrink: 0; opacity: 0.7; }
.promise-cell h4 { font-size: 0.82rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.promise-cell p { font-size: 0.74rem; color: rgba(255,255,255,0.35); }

/* ===========================
   Footer
   =========================== */
.footer-top { background: var(--forest); padding: 72px 0 56px; }
.footer-top-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand-col .logo-footer {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 800; color: var(--sand);
  display: inline-block; margin-bottom: 16px; letter-spacing: -0.3px;
}
.logo-footer .dot { color: var(--rust-light); }
.footer-brand-col p { font-size: 0.82rem; color: rgba(242,237,228,0.35); line-height: 1.9; }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(242,237,228,0.5); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.82rem; color: rgba(242,237,228,0.3);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-col ul li a:hover { color: var(--sand); padding-left: 4px; }

.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-row .ico { color: var(--rust-light); font-size: 0.82rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-row span { font-size: 0.82rem; color: rgba(242,237,228,0.3); line-height: 1.6; }

.footer-bottom {
  background: var(--earth); padding: 24px 0;
}
.footer-bottom-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.footer-bottom-inner p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color 0.25s ease; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===========================
   Page Hero (sub-pages) — Split Layout
   =========================== */
.page-hero-outdoor {
  display: grid; grid-template-columns: 1fr 0.7fr;
  min-height: 480px; overflow: hidden;
  margin-top: 0;
}
.page-hero-text {
  background: var(--stone); padding: 100px 64px 80px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.page-hero-text .section-label { display: inline-flex; margin-bottom: 16px; }
.page-hero-text h1 { font-size: 3rem; letter-spacing: -1.5px; margin-bottom: 18px; line-height: 1.05; }
.page-hero-text p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; max-width: 420px; }
.page-hero-data { display: flex; gap: 32px; margin-top: 32px; }
.hero-badge {
  padding: 8px 18px; background: rgba(196,98,45,0.12);
  border: 1px solid rgba(196,98,45,0.25); border-radius: var(--radius);
  font-size: 0.75rem; font-weight: 600; color: var(--rust);
}
.page-hero-img { overflow: hidden; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   About — Origin Section
   =========================== */
.origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.origin-img { height: 520px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.origin-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.origin-img:hover img { transform: scale(1.04); }
.origin-text .section-label { display: inline-flex; margin-bottom: 14px; }
.origin-text h2 { font-size: 2.4rem; letter-spacing: -1px; margin-bottom: 20px; }
.origin-text p { font-size: 0.9rem; line-height: 1.95; margin-bottom: 14px; }

blockquote {
  border-left: 3px solid var(--rust); padding-left: 20px; margin: 24px 0;
  font-style: italic; font-size: 1rem; color: var(--text-dark);
  line-height: 1.7;
}
blockquote cite { display: block; font-size: 0.78rem; font-style: normal; color: var(--text-dim); margin-top: 8px; font-weight: 600; }

/* ===========================
   Values — 4 Column
   =========================== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
.value-cell {
  background: var(--bg-card); padding: 48px 32px;
  transition: background 0.3s ease;
}
.value-cell:hover { background: var(--sand); }
.value-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem; font-weight: 800; color: var(--rust);
  opacity: 0.18; line-height: 1; margin-bottom: 20px;
  transition: opacity 0.3s ease;
}
.value-cell:hover .value-num { opacity: 0.35; }
.value-cell h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.value-cell p { font-size: 0.83rem; line-height: 1.85; }

/* ===========================
   Testimonials — Dark
   =========================== */
.testimonials-dark { background: var(--earth); padding: 100px 0; }
.testimonials-grid-dark { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card-dark {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 40px 32px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.t-card-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(196,98,45,0.3); }
.stars-rust { color: var(--rust-light); letter-spacing: 2px; margin-bottom: 18px; font-size: 0.9rem; }
.t-quote-dark { font-size: 0.88rem; color: rgba(242,237,228,0.55); line-height: 1.9; margin-bottom: 24px; font-style: italic; }
.t-author-dark { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--sand); }
.t-location-dark { font-size: 0.75rem; color: rgba(242,237,228,0.3); margin-top: 3px; }

/* ===========================
   Contact — Three Column
   =========================== */
.contact-three-col {
  display: grid; grid-template-columns: 280px 1fr 280px; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.contact-left {
  background: var(--earth); padding: 52px 36px;
}
.contact-left .section-label { display: inline-flex; }
.contact-left h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; color: #fff; margin: 12px 0 32px; }
.c-info-block { margin-bottom: 28px; }
.c-info-block h4 { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.c-info-block p { font-size: 0.85rem; color: rgba(242,237,228,0.55); line-height: 1.7; }
.c-info-block a { color: var(--rust-light); }
.c-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 24px 0; }

.contact-center { background: var(--bg-card); padding: 52px 48px; }
.contact-center h2 { font-size: 1.5rem; letter-spacing: -0.5px; margin-bottom: 32px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dark); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px; font-size: 0.9rem; color: var(--text-dark);
  background: var(--sand); border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rust); box-shadow: 0 0 0 3px rgba(196,98,45,0.1); }
.form-group textarea { height: 150px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-center .btn { width: 100%; justify-content: center; margin-top: 8px; }

.contact-right { background: var(--forest); padding: 52px 36px; }
.contact-right .section-label { display: inline-flex; }
.contact-right h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; color: #fff; margin: 12px 0 24px; }
.why-item { display: flex; gap: 12px; margin-bottom: 20px; }
.why-icon { color: var(--rust-light); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.why-text h4 { font-size: 0.82rem; font-weight: 700; color: var(--sand); margin-bottom: 4px; }
.why-text p { font-size: 0.78rem; color: rgba(242,237,228,0.4); line-height: 1.7; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-card {
  background: var(--bg-card); border-radius: var(--radius); padding: 32px 28px;
  border-left: 3px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-card:hover { border-left-color: var(--rust); box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }
.faq-card h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 10px; }
.faq-card p { font-size: 0.84rem; line-height: 1.85; }

/* ===========================
   Privacy — Chapter Number Decoration
   =========================== */
.privacy-intro-band {
  background: var(--stone); padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.privacy-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  max-width: var(--max-width); margin: 0 auto; padding: 0 48px;
}
.privacy-intro-text h2 { font-size: 1.5rem; letter-spacing: -0.5px; margin-bottom: 10px; }
.privacy-intro-text p { font-size: 0.88rem; line-height: 1.85; }
.privacy-intro-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pmeta-item {
  padding: 14px 18px; background: rgba(196,98,45,0.08);
  border: 1px solid rgba(196,98,45,0.15); border-radius: var(--radius);
}
.pmeta-item h4 { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--rust); margin-bottom: 4px; }
.pmeta-item p { font-size: 0.8rem; color: var(--text-dark); font-weight: 500; }

.privacy-body { max-width: 800px; margin: 0 auto; padding: 80px 48px 120px; }
.privacy-chapter {
  position: relative; padding-left: 0;
  margin-bottom: 64px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.privacy-chapter:first-child { border-top: none; padding-top: 0; }
.chapter-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem; font-weight: 800; color: var(--rust);
  opacity: 0.12; position: absolute; top: 16px; right: 0;
  line-height: 1; pointer-events: none; user-select: none;
}
.privacy-chapter:first-child .chapter-num { top: -8px; }
.privacy-chapter h2 { font-size: 1.35rem; letter-spacing: -0.3px; margin-bottom: 16px; }
.privacy-chapter h3 { font-size: 0.95rem; font-weight: 700; margin-top: 24px; margin-bottom: 8px; }
.privacy-chapter p { font-size: 0.88rem; line-height: 1.95; margin-bottom: 12px; }
.privacy-chapter ul { margin-bottom: 14px; }
.privacy-chapter ul li {
  font-size: 0.88rem; line-height: 1.85; margin-bottom: 8px;
  padding-left: 18px; position: relative; color: var(--text-mid);
}
.privacy-chapter ul li::before {
  content: ''; position: absolute; left: 0; top: 0.65em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--rust);
}
.privacy-date {
  display: inline-block; margin-bottom: 48px; padding: 10px 16px;
  background: rgba(196,98,45,0.08); border-left: 3px solid var(--rust);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.8rem; color: var(--rust); font-weight: 600;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .utility-inner { padding: 0 32px; }
  .footer-bottom-inner { padding: 0 32px; }
  .hero h1 { font-size: 4.2rem; }
  .cinematic-stats { display: none; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-three-col { grid-template-columns: 1fr; }
  .privacy-body { padding: 60px 32px 80px; }
  .privacy-intro-grid { padding: 0 32px; }
}

@media (max-width: 768px) {
  .header-utility { display: none; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .footer-bottom-inner { padding: 0 24px; }
  .nav-left { display: none; }
  .nav-right-links { display: none; }
  .nav-left.open {
    display: flex; flex-direction: column; gap: 6px;
    position: fixed; top: var(--nav-height); left: 0; width: 100%;
    background: rgba(242,237,228,0.98); backdrop-filter: blur(20px);
    padding: 24px; border-bottom: 1px solid var(--border); z-index: 999;
  }
  .nav-left.open a { color: var(--text-mid); font-size: 1rem; padding: 6px 0; }
  .mobile-toggle { display: flex; }
  .hero h1 { font-size: 2.8rem; letter-spacing: -1px; }
  .hero-text { max-width: 100%; }
  .hero-vert { display: none; }
  .section { padding: 72px 0; }
  .products-grid { grid-template-columns: 1fr; gap: 3px; }
  .reveal-card { height: 360px; }
  .cinematic-section { height: auto; padding: 80px 0; background-attachment: scroll; }
  .cinematic-bg { background-attachment: scroll; }
  .features-flow { flex-direction: column; }
  .feature-flow-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-flow-item:last-child { border-bottom: none; }
  .promise-row { grid-template-columns: 1fr; }
  .promise-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 20px 24px; }
  .promise-cell:last-child { border-bottom: none; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .page-hero-outdoor { grid-template-columns: 1fr; }
  .page-hero-img { height: 240px; }
  .page-hero-text { padding: 80px 24px 48px; }
  .origin-grid { grid-template-columns: 1fr; gap: 40px; }
  .origin-img { height: 280px; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid-dark { grid-template-columns: 1fr; }
  .contact-right { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .privacy-intro-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .privacy-body { padding: 48px 24px 72px; }
  .section-head-row { flex-direction: column; gap: 16px; }
}
