@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --forest: #1c2b1e;
  --forest2: #243027;
  --forest3: #2e3d31;
  --copper: #c4784a;
  --copper-light: #d9956d;
  --copper-pale: #e8b99a;
  --ivory: #f7f3ec;
  --ivory2: #ede8df;
  --ivory3: #e2dbd0;
  --text: #1e1e1e;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--copper);
  color: var(--copper);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--white); }
.btn span, .btn i { position: relative; z-index: 1; }

.btn-solid {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn-solid::before { background: var(--forest); }
.btn-solid:hover { color: var(--white); border-color: var(--forest); }

.btn-ivory {
  border-color: var(--ivory);
  color: var(--ivory);
}
.btn-ivory::before { background: var(--ivory); }
.btn-ivory:hover { color: var(--forest); }

.btn-dark {
  background: var(--forest);
  color: var(--copper-light);
  border-color: var(--forest);
}
.btn-dark::before { background: var(--copper); }
.btn-dark:hover { color: var(--white); border-color: var(--copper); }

.hero {
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 64px;
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -1px; bottom: 0;
  width: 120px;
  background: var(--forest);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 3;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroImgReveal 1.6s 0.2s var(--ease) forwards;
}
@keyframes heroImgReveal {
  to { transform: scale(1); }
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,43,30,0.4) 0%, transparent 50%);
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 36px;
  opacity: 0;
  animation: slideUp 0.8s 0.4s forwards;
}
.hero-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--copper);
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.02;
  margin-bottom: 32px;
  opacity: 0;
  animation: slideUp 0.9s 0.6s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--copper-light);
  display: block;
}
.hero-sub {
  font-size: 0.88rem;
  color: rgba(247,243,236,0.55);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 48px;
  opacity: 0;
  animation: slideUp 0.9s 0.8s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.9s 1s forwards;
}
.hero-counter {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 4;
  display: flex;
  gap: 40px;
  opacity: 0;
  animation: slideUp 0.9s 1.2s forwards;
}
.hero-counter-item { text-align: right; }
.hero-counter-item .n {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1;
}
.hero-counter-item .n sup { font-size: 1.2rem; color: var(--copper-light); }
.hero-counter-item .l {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.38);
  margin-top: 4px;
}
.hero-scroll-line {
  position: absolute;
  left: 64px;
  bottom: 0;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--copper));
  z-index: 5;
  animation: lineGrow 1s 1.4s forwards;
  transform-origin: top;
  transform: scaleY(0);
}
@keyframes lineGrow { to { transform: scaleY(1); } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--copper);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}
.marquee-inner span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 40px;
}
.marquee-inner span::after {
  content: '·';
  margin-left: 40px;
  opacity: 0.5;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── MANIFESTO ── */
.manifesto {
  padding: 140px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: 'GTS';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 28vw;
  font-weight: 700;
  color: rgba(196,120,74,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 120px;
  align-items: center;
}
.manifesto-left .section-label { margin-bottom: 20px; }
.manifesto-left .section-title { margin-bottom: 32px; }
.manifesto-left p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 18px;
}
.manifesto-right {
  position: relative;
}
.manifesto-img-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
}
.manifesto-img-float {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 220px;
  height: 280px;
  object-fit: cover;
  border: 6px solid var(--ivory);
}
.manifesto-badge {
  position: absolute;
  top: 40px;
  right: -24px;
  width: 120px; height: 120px;
  background: var(--copper);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.manifesto-badge .n {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.manifesto-badge .l {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* ── ROUTES MOSAIC ── */
.routes-section {
  padding: 0;
  background: var(--forest);
}
.routes-header {
  padding: 100px 0 60px;
}
.routes-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.routes-header .section-title.light em { color: var(--copper-light); }
.routes-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 480px 320px;
  gap: 3px;
}
.mosaic-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mosaic-item:first-child {
  grid-row: 1 / 3;
}
.mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.mosaic-item:hover img { transform: scale(1.07); }
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,43,30,0.92) 0%, rgba(28,43,30,0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: var(--transition);
}
.mosaic-overlay .tag { margin-bottom: 12px; }
.mosaic-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 10px;
}
.mosaic-item:first-child .mosaic-overlay h3 { font-size: 2.2rem; }
.mosaic-overlay p {
  font-size: 0.8rem;
  color: rgba(247,243,236,0.6);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.mosaic-item:hover .mosaic-overlay p { max-height: 100px; opacity: 1; }
.mosaic-overlay .route-meta {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(196,120,74,0.25);
}
.mosaic-overlay .route-meta span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mosaic-overlay .route-meta i { color: var(--copper-light); }

/* ── PILLARS ── */
.pillars {
  padding: 140px 0;
  background: var(--white);
}
.pillars-header { text-align: center; margin-bottom: 80px; }
.pillars-header .section-label { justify-content: center; }
.pillars-header .section-label::before { display: none; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--ivory3);
}
.pillar {
  padding: 52px 40px;
  border-right: 1px solid var(--ivory3);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { background: var(--ivory); }
.pillar-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  color: rgba(196,120,74,0.1);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s;
}
.pillar:hover .pillar-num { color: rgba(196,120,74,0.2); }
.pillar-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(196,120,74,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 1rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.pillar:hover .pillar-icon { background: var(--copper); color: var(--white); border-color: var(--copper); }
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.pillar p { font-size: 0.8rem; color: var(--text-light); line-height: 1.8; }

/* ── JOURNAL STRIP ── */
.journal-section {
  padding: 140px 0;
  background: var(--ivory);
}
.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.journal-scroll {
  display: flex;
  gap: 3px;
  overflow: hidden;
}
.journal-item {
  flex: 0 0 calc(33.333% - 2px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.journal-item img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.journal-item:hover img { transform: scale(1.05); }
.journal-item-body {
  padding: 28px 0 0;
}
.journal-item-body .tag { margin-bottom: 12px; }
.journal-item-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}
.journal-item-body p { font-size: 0.8rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.journal-item-body .read-link {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.journal-item:hover .read-link { gap: 14px; }

/* ── EXPERIENCE BAND ── */
.experience-band {
  background: var(--forest);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.exp-visual {
  position: relative;
  overflow: hidden;
}
.exp-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.exp-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--forest) 100%);
}
.exp-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 60px;
}
.exp-content .section-label { color: var(--copper-light); }
.exp-content .section-label::before { background: var(--copper-light); }
.exp-content .section-title { color: var(--ivory); margin-bottom: 28px; }
.exp-content .section-title em { color: var(--copper-light); }
.exp-content p { font-size: 0.88rem; color: rgba(247,243,236,0.55); line-height: 1.9; margin-bottom: 40px; max-width: 420px; }
.exp-list { margin-bottom: 48px; }
.exp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(196,120,74,0.12);
}
.exp-list-item:first-child { border-top: 1px solid rgba(196,120,74,0.12); }
.exp-list-item i { color: var(--copper); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.exp-list-item span { font-size: 0.82rem; color: rgba(247,243,236,0.65); line-height: 1.6; }

/* ── DESTINATIONS GRID ── */
.destinations-section {
  padding: 140px 0;
  background: var(--white);
}
.destinations-header { margin-bottom: 64px; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 300px 220px;
  gap: 3px;
}
.dest-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.dest-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.dest-tile:nth-child(2) { grid-column: span 2; }
.dest-tile:nth-child(3) { grid-column: span 2; }
.dest-tile:nth-child(4) { grid-column: span 1; }
.dest-tile:nth-child(5) { grid-column: span 1; }
.dest-tile:nth-child(6) { grid-column: span 2; }
.dest-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.dest-tile:hover img { transform: scale(1.08); }
.dest-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,43,30,0.85) 0%, rgba(28,43,30,0.05) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.dest-tile-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
}
.dest-tile:nth-child(1) .dest-tile-overlay h4 { font-size: 2rem; }
.dest-tile-overlay span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-top: 4px;
}

/* ── QUOTE ── */
.quote-section {
  padding: 120px 0;
  background: var(--ivory2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 40vw;
  color: rgba(196,120,74,0.04);
  line-height: 1;
  pointer-events: none;
}
.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  max-width: 900px;
  margin: 0 auto 28px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.quote-section cite {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* ── CTA FINAL ── */
.cta-final {
  background: var(--forest2);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.cta-final-img {
  position: relative;
  overflow: hidden;
}
.cta-final-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.cta-final-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--forest2) 100%);
}
.cta-final-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.cta-final-content .section-label { color: var(--copper-light); }
.cta-final-content .section-label::before { background: var(--copper-light); }
.cta-final-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-final-content h2 em { font-style: italic; color: var(--copper-light); }
.cta-final-content p { font-size: 0.88rem; color: rgba(247,243,236,0.5); line-height: 1.85; margin-bottom: 40px; max-width: 380px; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 40px 80px; min-height: 100vh; }
  .hero-left::after { display: none; }
  .hero-counter { position: static; margin-top: 60px; justify-content: flex-start; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 60px; }
  .manifesto-img-float { display: none; }
  .manifesto-badge { right: 20px; }
  .routes-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-item:first-child { grid-row: auto; grid-column: span 2; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillar { border-bottom: 1px solid var(--ivory3); }
  .experience-band { grid-template-columns: 1fr; }
  .exp-visual { height: 400px; }
  .exp-content { padding: 60px 40px; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .dest-tile:nth-child(1) { grid-column: span 2; grid-row: auto; }
  .dest-tile:nth-child(n) { grid-column: span 1; }
  .cta-final { grid-template-columns: 1fr; }
  .cta-final-img { height: 300px; }
  .cta-final-content { padding: 60px 40px; }
}
@media (max-width: 768px) {
  .hero-left { padding: 100px 24px 60px; }
  .hero-h1 { font-size: 3rem; }
  .routes-mosaic { grid-template-columns: 1fr; }
  .mosaic-item:first-child { grid-column: span 1; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  .journal-scroll { flex-direction: column; }
  .journal-item { flex: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-tile:nth-child(n) { grid-column: span 1; }
  .manifesto { padding: 80px 0; }
  .routes-header { padding: 80px 0 40px; }
  .routes-header-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .journal-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .exp-content { padding: 48px 24px; }
  .cta-final-content { padding: 48px 24px; }
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--copper);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--copper); }
.section-title.light { color: var(--white); }

.divider { width: 48px; height: 1px; background: var(--copper); margin: 28px 0; }

.tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(196,120,74,0.12);
  border: 1px solid rgba(196,120,74,0.3);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
}

.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
header.scrolled {
  background: rgba(28,43,30,0.97);
  backdrop-filter: blur(16px);
  height: 64px;
  border-bottom: 1px solid rgba(196,120,74,0.18);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.logo span {
  display: block;
  font-size: 0.52rem;
  font-family: var(--font-sans);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-top: 3px;
  font-weight: 500;
}

nav { display: flex; align-items: center; gap: 40px; }
nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width 0.35s;
}
nav a:hover, nav a.active { color: var(--copper-light); }
nav a:hover::after, nav a.active::after { width: 100%; }

.nav-cta {
  padding: 9px 22px;
  border: 1px solid rgba(196,120,74,0.6);
  color: var(--copper-light) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.18em !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--copper); color: var(--white) !important; border-color: var(--copper) !important; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 1px; background: var(--white); transition: var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--copper-light); }

footer {
  background: var(--forest);
  color: rgba(247,243,236,0.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(196,120,74,0.12);
}
.footer-brand .logo { color: var(--ivory); margin-bottom: 20px; }
.footer-brand p { font-size: 0.8rem; line-height: 1.8; color: rgba(247,243,236,0.45); max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 20px;
}
.footer-col a { display: block; font-size: 0.8rem; color: rgba(247,243,236,0.45); margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--copper-light); }

.footer-company { padding: 40px 0; border-top: 1px solid rgba(196,120,74,0.08); }
.footer-company-inner { display: flex; flex-wrap: wrap; gap: 32px 48px; align-items: flex-start; }
.footer-company-item { display: flex; flex-direction: column; gap: 4px; }
.footer-company-item .label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper-light); }
.footer-company-item .value { font-size: 0.76rem; color: rgba(247,243,236,0.5); }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(196,120,74,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(247,243,236,0.28); }

.footer-disclaimer {
  font-size: 0.68rem;
  color: rgba(247,243,236,0.22);
  padding: 20px 0;
  border-top: 1px solid rgba(196,120,74,0.05);
  line-height: 1.7;
}
.footer-disclaimer a { color: rgba(247,243,236,0.38); text-decoration: underline; }

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--ivory3);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--copper); }
.form-group textarea { resize: vertical; min-height: 140px; }

.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--copper); cursor: pointer; }
.checkbox-group label { font-size: 0.78rem; color: var(--text-light); cursor: pointer; text-transform: none; letter-spacing: 0; font-weight: 400; }
.checkbox-group label a { color: var(--copper); text-decoration: underline; }

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,43,30,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal { background: var(--white); max-width: 760px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: var(--forest);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.3s;
}
.modal-close:hover { background: var(--copper); }
.modal-img { width: 100%; height: 280px; object-fit: cover; }
.modal-body { padding: 40px; }
.modal-body .section-label { margin-bottom: 8px; }
.modal-body h2 { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; margin-bottom: 20px; line-height: 1.2; }
.modal-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--forest2);
  border-top: 1px solid rgba(196,120,74,0.25);
  padding: 20px 48px;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.78rem; color: rgba(247,243,236,0.7); max-width: 700px; }
.cookie-banner p a { color: var(--copper-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

.policy-content { max-width: 860px; margin: 0 auto; padding: 80px 40px; }
.policy-content h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; margin: 40px 0 16px; color: var(--text); }
.policy-content h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; margin: 28px 0 12px; color: var(--text); }
.policy-content p, .policy-content li { font-size: 0.88rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 12px; }
.policy-content ul { padding-left: 20px; }
.policy-content ul li { list-style: disc; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.card { position: relative; overflow: hidden; cursor: pointer; }
.card-img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card-img { transform: scale(1.06); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,43,30,0.9) 0%, rgba(28,43,30,0.05) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.card-overlay .tag { margin-bottom: 12px; }
.card-overlay h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--ivory); line-height: 1.2; margin-bottom: 8px; }
.card-overlay p { font-size: 0.78rem; color: rgba(247,243,236,0.6); line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.4s ease; opacity: 0; }
.card:hover .card-overlay p { max-height: 80px; opacity: 1; }

@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav { display: none; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-company-inner { flex-direction: column; gap: 20px; }
  .card-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .cookie-banner { padding: 16px 20px; }
  .policy-content { padding: 60px 20px; }
}
