:root {
  --bg: #141816;
  --bg-elev: #1A1F1D;
  --bg-soft: #202623;
  --panel: #1D2320;
  --text: #E7ECE6;
  --text-soft: #C0C8BF;
  --muted: #8F988F;
  --bronze: #B08D57;
  --green: #2F5D44;
  --line: rgba(231, 236, 239, 0.1);
  --line-bronze: rgba(176, 141, 87, 0.26);
  --ok: #2F5D44;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(circle at 20% 0%, rgba(196, 154, 74, 0.06), transparent 45%),
    linear-gradient(rgba(17, 20, 16, 0.84), rgba(17, 20, 16, 0.93)),
    url("../images/heroes/site-texture.jpg");
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.65;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--bronze);
  color: #090b08;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  z-index: 999;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

.skip-link:focus {
  top: 0;
}

a {
  color: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--bronze);
  opacity: 0.78;
  background: rgba(18, 22, 17, 0.92);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a {
  text-decoration: none;
  color: var(--bronze);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(239, 232, 216, 0.08);
  background: rgba(14, 17, 13, 0.9);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(14, 17, 13, 0.95);
  border-color: var(--line);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 90px;
}

.nav-col {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav-col.end {
  justify-content: flex-end;
}

.nav-link {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.62rem;
  color: rgba(239, 232, 216, 0.68);
}

.nav-link:hover {
  color: var(--text);
}

.nav__link--active,
.nav--editorial .nav__link--active,
.homepage .nav__link--active {
  color: var(--text);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.brand::before {
  content: "";
  position: absolute;
  inset: -0.9rem -1.2rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.12), rgba(176, 141, 87, 0) 70%);
  filter: blur(10px);
  z-index: -1;
}

.brand img {
  height: 74px;
  width: auto;
  object-fit: contain;
  opacity: 0.98;
  filter: brightness(1.25) contrast(1.06) drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 14px rgba(176, 141, 87, 0.08));
}

.btn,
.btn-primary,
.btn-outline {
  border: 1px solid rgba(231, 236, 239, 0.18);
  background: transparent;
  color: rgba(231, 236, 239, 0.84);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.62rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover,
.btn-outline:hover {
  color: #111410;
  border-color: var(--bronze);
  background: var(--bronze);
}

.btn-outline {
  background: transparent;
  color: rgba(231, 236, 239, 0.84);
  border-color: var(--bronze);
}

.btn-outline:hover {
  background: var(--bronze);
  color: #111410;
  border-color: var(--bronze);
}

.btn-primary {
  background: var(--bronze);
  color: #111410;
  border-color: var(--bronze);
}

.btn-primary:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: #111410;
  filter: brightness(1.12);
}

.btn-sm {
  padding: 0.72rem 1rem;
  font-size: 0.58rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: rgba(14, 17, 13, 0.92);
  border: 1px solid rgba(176, 141, 87, 0.24);
  color: var(--text);
  border-radius: 0;
  padding: 0.7rem 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.62rem;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(17, 21, 16, 0.98);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-links {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
}

.mobile-links a {
  text-decoration: none;
  color: var(--text-soft);
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(239, 232, 216, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 90vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  filter: brightness(0.56) saturate(0.68);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(11, 13, 14, 0.48) 0%, rgba(11, 13, 14, 0.22) 40%, rgba(11, 13, 14, 0.74) 100%);
}

.hero-content {
  max-width: 900px;
  padding: 8rem 0 6rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-hero {
  height: clamp(34rem, 68vh, 42rem);
  min-height: clamp(34rem, 68vh, 42rem);
}

.page-hero .hero-content {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8rem;
}

.page-hero .lead {
  text-align: center;
  max-width: 44rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.68rem;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.8rem, 10vw, 5.8rem);
  margin-bottom: 1.2rem;
  letter-spacing: -0.8px;
}

h2 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin-bottom: 1.2rem;
  letter-spacing: -0.6px;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--text-soft);
  max-width: 70ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(14, 18, 13, 0.9);
}

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

.stat {
  padding: 1.7rem 1.2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
}

.stat strong {
  display: block;
  color: var(--bronze);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.05rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  color: var(--muted);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section:nth-of-type(even) {
  background: rgba(20, 25, 20, 0.45);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-head p {
  color: var(--text-soft);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.cards--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .cards--2,
  .cards--4 {
    grid-template-columns: 1fr;
  }

  .card-link .card-body > .meta + p {
    max-height: none;
  }
}

.card {
  background: rgba(24, 31, 25, 0.96);
  border: 1px solid rgba(231, 236, 239, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.26);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-bronze);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.36);
}

.card-media {
  aspect-ratio: 16 / 11;
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  filter: brightness(0.74) saturate(0.78);
}

.card-media__img--cull {
  object-position: center 38%;
}

.card-media__img--norman,
.card-media__img--conor {
  transform: scale(1.3);
  object-position: center 35%;
}

.card-media__img--conor {
  transform: scale(1.9);
  object-position: center top;
}

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 18, 15, 0.9);
  border: 1.5px solid var(--bronze);
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.58rem;
  color: var(--bronze);
  font-weight: 500;
}

.card-body {
  padding: 1.6rem 1.5rem 1.8rem;
  display: grid;
  gap: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.card-link .card-body > h3 {
  margin: 0;
  line-height: 1.3;
  min-height: 2.6em;
}

.card-link .card-body > .meta {
  margin: 0;
  min-height: 1.2em;
}

.card-link .card-body > .meta + p {
  margin: 0;
  line-height: 1.6;
  min-height: 6.4em;
  max-height: 6.4em;
  overflow: hidden;
}

.list-check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.list-check li {
  color: var(--text-soft);
  font-size: 0.93rem;
  position: relative;
  padding-left: 1.15rem;
}

.list-check li::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--ok);
  position: absolute;
  left: 0;
  top: 0.53rem;
}

.price-row {
  margin-top: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  min-height: 96px;
}

.price {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  color: var(--bronze);
  line-height: 1;
}

.price small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  min-height: 2.2em;
}

.card .price small {
  min-height: 2.2em;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(22, 29, 23, 0.94);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.panel p {
  color: var(--text-soft);
}

.image-panel {
  min-height: 420px;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.74) saturate(0.78);
}

.guide-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.guide-item {
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(32, 38, 35, 0.72);
}

.guide-role {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.55rem;
  color: var(--muted);
}

.guide-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.sponsors {
  border-top: 1px solid var(--line-bronze);
  border-bottom: 1px solid var(--line-bronze);
  background: rgba(20, 25, 18, 0.95);
  min-height: 112px;
  padding: 14px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsors__label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  margin-right: 20px;
}

.sponsors__divider {
  width: 1px;
  height: 28px;
  background: rgba(239, 232, 216, 0.07);
  display: none;
}

.sponsors__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  gap: 52px;
}

.sponsors__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 18px;
  border: 1px solid rgba(196, 154, 74, 0.16);
  background: rgba(10, 12, 9, 0.26);
}

.sponsors__logo img {
  display: block;
  max-height: 100%;
  max-width: 375px;
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.sponsors-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.62rem;
}

.sponsor-name {
  color: var(--text-soft);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.8rem;
}

.gallery .g-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 170px;
}

.gallery .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.82);
}

.g-a { grid-column: span 4; }
.g-b { grid-column: span 4; }
.g-c { grid-column: span 4; }
.g-d { grid-column: span 6; }
.g-e { grid-column: span 3; }
.g-f { grid-column: span 3; }
.g-g { grid-column: span 4; }
.g-h { grid-column: span 4; }
.g-i { grid-column: span 4; }

.gallery-page .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .gallery-page .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-page .gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    padding: 0;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 2.2rem;
  }
}

.gallery-page .gallery .g-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(231, 236, 239, 0.08);
  background: #171B19;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-page .gallery .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.84);
  transition: transform 0.4s ease, filter 0.3s ease;
  display: block;
}

.gallery-page .gallery .g-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: linear-gradient(to top, rgba(8, 10, 8, 0.86), rgba(8, 10, 8, 0));
  pointer-events: none;
}

.gallery-page .gallery .g-item:hover {
  transform: translateY(-6px);
  border-color: var(--bronze);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.gallery-page .gallery .g-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.86) saturate(0.9);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2.8rem;
  cursor: pointer;
  padding: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 1001;
}

.lightbox-close:focus-visible {
  color: var(--bronze);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 24, 27, 0.76);
  border: 1px solid rgba(231, 236, 239, 0.16);
  color: var(--text);
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  z-index: 1001;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:focus-visible {
  background: rgba(20, 24, 27, 0.92);
  border-color: var(--bronze);
  color: var(--bronze);
}

@media (hover: hover) and (pointer: fine) {
  .lightbox-close:hover {
    color: var(--bronze);
  }

  .lightbox-nav:hover {
    background: rgba(20, 24, 27, 0.92);
    border-color: var(--bronze);
    color: var(--bronze);
  }
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.gallery-page .gallery .g-item {
  cursor: pointer;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.icon-card {
  background: linear-gradient(180deg, rgba(27, 33, 29, 0.96), rgba(22, 27, 24, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.icon-card h3 {
  margin-bottom: 0.55rem;
}

.icon-card p {
  margin: 0;
  color: var(--text-soft);
}

.icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-bronze);
  color: var(--bronze);
  margin-bottom: 0.95rem;
  background: radial-gradient(circle at 35% 30%, rgba(196, 154, 74, 0.18), rgba(20, 24, 21, 0.84));
  box-shadow: inset 0 0 0 1px rgba(176, 141, 87, 0.08), 0 8px 22px rgba(0, 0, 0, 0.26);
}

.icon svg {
  width: 1.24rem;
  height: 1.24rem;
  fill: currentColor;
}

.travel-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-color: rgba(196, 154, 74, 0.35);
  background: radial-gradient(circle at 32% 28%, rgba(196, 154, 74, 0.18), rgba(20, 24, 21, 0.88));
}

.travel-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 0.88rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.62rem;
  color: var(--muted);
  background: rgba(24, 31, 25, 0.92);
}

td {
  color: var(--text-soft);
  font-size: 0.92rem;
}

td.price-cell {
  color: var(--bronze);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(25, 30, 27, 0.88);
  transition: border-color 0.24s ease, background-color 0.24s ease;
}

.faq-item.is-open {
  background: rgba(23, 28, 25, 0.96);
  border-color: rgba(176, 141, 87, 0.28);
}

.faq-item:has(.faq-button:focus-visible) {
  border-color: rgba(196, 154, 74, 0.44);
}

.faq-button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: rgba(231, 236, 230, 0.92);
  padding: 1rem;
  font-size: 1rem;
  font-family: "Cormorant Garamond", serif;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  transition: background-color 0.24s ease;
}

.faq-button span:first-child {
  color: rgba(196, 154, 74, 0.9);
  transition: color 0.24s ease;
}

.faq-button:hover {
  background: rgba(239, 232, 216, 0.03);
}

.faq-button:hover span:first-child {
  color: rgba(214, 178, 108, 0.98);
}

.faq-button span:last-child {
  min-width: 1.1em;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: var(--bronze);
  transition: color 0.24s ease, transform 0.24s ease;
}

.faq-item.is-open .faq-button span:last-child {
  color: rgba(239, 232, 216, 0.86);
  transform: translateY(-1px);
}

.faq-item.is-open .faq-button span:first-child {
  color: #e3c38a;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 1px solid transparent;
  padding: 0 1rem;
  color: rgba(212, 220, 210, 0.9);
  line-height: 1.78;
  transition: max-height 0.46s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease, padding 0.32s ease, border-color 0.3s ease;
}

.faq-item.is-open .faq-content {
  max-height: 720px;
  opacity: 1;
  border-top-color: var(--line);
  padding: 0.95rem 1rem 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.6rem;
  color: var(--muted);
}

.wp-form-placeholder {
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(20, 25, 21, 0.94), rgba(16, 20, 18, 0.96));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  padding: 1.15rem;
  margin-top: 0.9rem;
}

.wp-form-placeholder__title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.63rem;
  color: var(--bronze);
}

.wp-form-placeholder__intro {
  margin: 0.55rem 0 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.wp-form-placeholder__submit {
  margin: 1rem 0 0;
}

.netlify-recaptcha-slot {
  margin-top: 0.8rem;
}

.wp-form-placeholder .btn-primary {
  min-width: 220px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(12, 16, 14, 0.78);
  border: 1px solid rgba(231, 236, 239, 0.16);
  border-radius: 8px;
  color: var(--text);
  padding: 0.85rem 0.95rem;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b08d57' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 16px 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--bronze);
  background: rgba(14, 18, 16, 0.92);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.18);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

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

.video-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.cta-banner {
  border: 1px solid var(--bronze);
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(29, 35, 31, 0.92), rgba(22, 27, 24, 0.96));
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.28);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner p {
  margin: 0;
  color: var(--text-soft);
}

.page-hero {
  height: clamp(34rem, 68vh, 42rem);
  min-height: clamp(34rem, 68vh, 42rem);
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  background: rgba(18, 22, 19, 0.96);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 2.2rem;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.footer-title {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-size: 0.58rem;
  font-family: "Inter", sans-serif;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links a,
.contact-list a,
.contact-list li {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.contact-actions {
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-action {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 0.85rem;
  align-items: center;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(196, 154, 74, 0.22);
  background: linear-gradient(145deg, rgba(29, 35, 32, 0.96), rgba(20, 26, 23, 0.96));
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: contactActionIn 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.contact-actions li:nth-child(1) .contact-action {
  animation-delay: 0.06s;
}

.contact-actions li:nth-child(2) .contact-action {
  animation-delay: 0.14s;
}

.contact-actions li:nth-child(3) .contact-action {
  animation-delay: 0.22s;
}

.contact-action:hover,
.contact-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 154, 74, 0.45);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  background: linear-gradient(145deg, rgba(35, 43, 39, 0.98), rgba(23, 29, 26, 0.98));
}

.contact-action__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  background: rgba(196, 154, 74, 0.11);
  border: 1px solid rgba(196, 154, 74, 0.35);
  grid-row: 1 / span 2;
}

.contact-action__icon svg {
  width: 22px;
  height: 22px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-action__label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-action__value {
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  line-height: 1.35;
  word-break: break-word;
}

.contact-action--wa .contact-action__icon {
  color: var(--bronze);
  background: rgba(196, 154, 74, 0.11);
  border-color: rgba(196, 154, 74, 0.35);
}

@keyframes contactActionIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-action {
    animation: none;
  }
}

.footer-meta {
  padding: 1rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  text-decoration: none;
}

.footer-brand img {
  height: 62px;
  width: auto;
  margin-bottom: 0.4rem;
  opacity: 0.95;
  filter: brightness(0.9) contrast(1.05) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.notice {
  border-left: 3px solid var(--bronze);
  background: rgba(24, 31, 25, 0.74);
  padding: 1.2rem 1.2rem;
  color: var(--text-soft);
  border-radius: 8px;
}

@media (max-width: 1100px) {
  .cards,
  .icon-grid,
  .video-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: none;
  }

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

  .gallery .g-a,
  .gallery .g-b,
  .gallery .g-c,
  .gallery .g-d,
  .gallery .g-e,
  .gallery .g-f,
  .gallery .g-g,
  .gallery .g-h,
  .gallery .g-i {
    grid-column: span 6;
  }
}

@media (max-width: 700px) {
  .contact-action {
    grid-template-columns: 40px 1fr;
    column-gap: 0.75rem;
    padding: 0.8rem 0.85rem;
  }

  .contact-action__icon {
    width: 40px;
    height: 40px;
  }

  .contact-action__icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-action__value {
    font-size: 0.93rem;
  }
}

@media (max-width: 780px) {
  body {
    background-attachment: scroll;
  }

  .topbar {
    display: none;
  }

  .nav {
    grid-template-columns: auto 1fr auto;
    min-height: 76px;
  }

  .nav-col.start,
  .nav-col.end {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand {
    justify-content: center;
  }

  .brand img {
    height: 60px;
  }

  .hero-content {
    padding: 5.2rem 0 4rem;
  }

  .page-hero {
    height: auto;
    min-height: 34rem;
  }

  .page-hero .hero-content {
    padding-top: 6.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(360px, 100%);
  }

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

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: none;
  }

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

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

  .gallery .g-a,
  .gallery .g-b,
  .gallery .g-c,
  .gallery .g-d,
  .gallery .g-e,
  .gallery .g-f,
  .gallery .g-g,
  .gallery .g-h,
  .gallery .g-i {
    grid-column: span 1;
    min-height: 170px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 0;
  }
}

body.homepage {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.homepage .hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.homepage .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.66) saturate(0.72);
  transform: scale(1.06);
  transition: transform 12s ease-out;
}

.homepage .hero__bg.loaded {
  transform: scale(1);
}

.homepage .hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9, 11, 8, 0.4) 0%, rgba(9, 11, 8, 0.08) 30%, rgba(9, 11, 8, 0.08) 55%, rgba(9, 11, 8, 0.58) 80%, rgba(9, 11, 8, 0.84) 100%),
    linear-gradient(to right, rgba(9, 11, 8, 0.14) 0%, transparent 40%);
}

.homepage .hero__content {
  position: relative;
  text-align: center;
  max-width: 1020px;
  padding: 72px 48px 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.homepage .hero__eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.homepage .hero__eyebrow::before,
.homepage .hero__eyebrow::after {
  content: "";
  width: 64px;
  height: 1px;
  background: rgba(196, 154, 74, 0.38);
}

.homepage .hero__logo {
  width: 220px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  opacity: 0.95;
  filter: brightness(1.45) contrast(1.06) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.5));
}

.homepage .hero__h {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(60px, 8.5vw, 100px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 22px;
}

.homepage .hero__h em {
  font-style: italic;
  color: rgba(239, 232, 216, 0.74);
}

.homepage .hero__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 300;
  color: rgba(239, 232, 216, 0.72);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 52px;
}

.homepage .hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

.homepage .btn-primary,
.homepage .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  min-height: 52px;
  padding: 17px 42px;
  text-decoration: none;
}

.homepage .hero__actions .btn-primary,
.homepage .hero__actions .btn-outline {
  min-width: 270px;
}

.homepage .btn-primary {
  background: var(--bronze);
  color: #090b08;
}

.homepage .btn-outline {
  color: rgba(239, 232, 216, 0.72);
  border: 1px solid rgba(239, 232, 216, 0.2);
}

.homepage .hero__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(239, 232, 216, 0.25);
  z-index: 1;
}

.homepage .scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(239, 232, 216, 0.28), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}

.homepage .stats {
  background: #101309;
  border-bottom: 1px solid rgba(239, 232, 216, 0.07);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.homepage .stat {
  padding: 42px 40px;
  text-align: center;
  border-right: 1px solid rgba(239, 232, 216, 0.07);
  position: relative;
}

.homepage .stat:last-child {
  border-right: none;
}

.homepage .stat__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  color: var(--bronze);
  margin-bottom: 9px;
}

.homepage .stat__lbl {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

.homepage .land-profile {
  position: relative;
  padding: 108px 60px;
  background:
    radial-gradient(1200px 420px at 10% 10%, rgba(196, 154, 74, 0.16), transparent 62%),
    radial-gradient(900px 380px at 92% 82%, rgba(119, 155, 104, 0.16), transparent 68%),
    linear-gradient(180deg, #10140f 0%, #141a13 100%);
  border-top: 1px solid rgba(239, 232, 216, 0.08);
  border-bottom: 1px solid rgba(239, 232, 216, 0.08);
  overflow: hidden;
}

.homepage .land-profile::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(239, 232, 216, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(239, 232, 216, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.35;
}

.homepage .land-profile__frame {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.homepage .land-profile__intro,
.homepage .land-card {
  border: 1px solid rgba(239, 232, 216, 0.12);
  background: rgba(13, 16, 9, 0.66);
  backdrop-filter: blur(8px);
}

.homepage .land-profile__intro {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.homepage .land-profile__intro h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5.8vw, 74px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--text);
}

.homepage .land-profile__intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(239, 232, 216, 0.8);
}

.homepage .land-profile__acre-tag {
  margin-top: 22px;
  align-self: flex-start;
  border: 1px solid rgba(196, 154, 74, 0.4);
  background: rgba(196, 154, 74, 0.1);
  color: rgba(239, 232, 216, 0.9);
  padding: 9px 14px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.homepage .land-profile__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.homepage .land-card {
  padding: 24px;
}

.homepage .land-card__kicker {
  margin: 0 0 16px;
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--bronze);
}

.homepage .land-card__stat-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.homepage .land-card__stat-grid--two {
  grid-template-columns: 1fr 1fr;
}

.homepage .land-card__stat-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homepage .land-stat {
  border: 1px solid rgba(239, 232, 216, 0.1);
  background: rgba(23, 28, 25, 0.82);
  padding: 12px 12px 11px;
}

.homepage .land-stat__value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 0.95;
  font-weight: 600;
  color: var(--bronze);
  margin-bottom: 4px;
}

.homepage .land-stat__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239, 232, 216, 0.76);
  line-height: 1.4;
}

.homepage .land-meter {
  border: 1px solid rgba(239, 232, 216, 0.14);
  height: 15px;
  display: flex;
  overflow: hidden;
  background: rgba(14, 17, 13, 0.85);
}

.homepage .land-meter__seg {
  height: 100%;
}

.homepage .land-meter__seg--plains {
  background: linear-gradient(90deg, #c49a4a 0%, #d8b66b 100%);
}

.homepage .land-meter__seg--hills {
  background: linear-gradient(90deg, #5f7650 0%, #7b9464 100%);
}

.homepage .land-meter__seg--fields {
  background: linear-gradient(90deg, #d2b06a 0%, #e0c17f 100%);
}

.homepage .land-meter__seg--forest {
  background: linear-gradient(90deg, #4f6844 0%, #64845a 100%);
}

.homepage .land-meter__seg--agri {
  background: linear-gradient(90deg, #7b8462 0%, #9da37b 100%);
}

.homepage .packages,
.homepage .sika-facts,
.homepage .travel,
.homepage .seasons,
.homepage .testimonial,
.homepage .cta-section,
.homepage .footer {
  padding-left: 60px;
  padding-right: 60px;
}

.homepage .packages {
  padding-top: 120px;
  padding-bottom: 120px;
}

.homepage .packages .cards-rail {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  outline: none;
}

.homepage .packages .cards-rail:focus-visible {
  box-shadow: 0 0 0 2px rgba(176, 141, 87, 0.38);
}

.homepage .packages .cards-rail::before,
.homepage .packages .cards-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 12px;
  width: 52px;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.24s ease;
}

.homepage .packages .cards-rail::before {
  left: 0;
  background: linear-gradient(to right, rgba(13, 16, 9, 0.98) 0%, rgba(13, 16, 9, 0.72) 46%, rgba(13, 16, 9, 0) 100%);
}

.homepage .packages .cards-rail::after {
  right: 0;
  background: linear-gradient(to left, rgba(13, 16, 9, 0.98) 0%, rgba(13, 16, 9, 0.72) 46%, rgba(13, 16, 9, 0) 100%);
}

.homepage .packages .cards-rail.at-start::before {
  opacity: 0.22;
}

.homepage .packages .cards-rail.at-end::after {
  opacity: 0.22;
}

.homepage .packages .card-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 39%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 16, 9, 0.78);
  border: 1px solid rgba(180, 151, 102, 0.45);
  color: rgba(239, 232, 216, 0.92);
  cursor: pointer;
  z-index: 10;
  opacity: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity 0.22s ease, transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  pointer-events: auto;
}

.homepage .packages .card-nav-btn--prev {
  left: 14px;
}

.homepage .packages .card-nav-btn--next {
  right: 14px;
}

.homepage .packages .card-nav-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.homepage .packages .cards-rail.at-start .card-nav-btn--prev {
  opacity: 0;
  pointer-events: none;
}

.homepage .packages .cards-rail.at-end .card-nav-btn--next {
  opacity: 0;
  pointer-events: none;
}

.homepage .packages .card-nav-btn:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(20, 24, 16, 0.9);
  border-color: rgba(180, 151, 102, 0.68);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.homepage .packages .card-nav-btn:active {
  transform: translateY(-50%) scale(0.97);
}

.homepage .packages .card-nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(176, 141, 87, 0.42), 0 12px 24px rgba(0, 0, 0, 0.4);
}



.homepage .packages .cards {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 14px;
  padding: 2px 14px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(176, 141, 87, 0.45) rgba(239, 232, 216, 0.08);
}

.homepage .packages .cards .card {
  flex: 0 0 min(86vw, 380px);
  min-width: min(86vw, 380px);
  scroll-snap-align: start;
}

@media (hover: none) {
  .homepage .packages .card-nav-btn:hover {
    transform: translateY(-50%);
    background: rgba(13, 16, 9, 0.78);
    border-color: rgba(180, 151, 102, 0.45);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage .packages .cards {
    scroll-behavior: auto;
  }

  .homepage .packages .card-nav-btn {
    transition: none;
  }
}

.homepage .packages .cards-hint {
  margin: 12px auto 0;
  max-width: 1160px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239, 232, 216, 0.52);
  text-align: right;
}

.homepage .packages .cards-hint .hint-mobile {
  display: none;
}

.homepage .section-head {
  text-align: center;
  margin-bottom: 70px;
  max-width: none;
}

.homepage .eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}

.homepage .section-head h2,
.homepage .territory h2,
.homepage .story__content h2,
.homepage .cta-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
}

.homepage .section-head p,
.homepage .territory p,
.homepage .story__content p,
.homepage .fact__body,
.homepage .travel-card__body,
.homepage .cta-section p {
  font-size: 15px;
  color: rgba(239, 232, 216, 0.7);
  line-height: 1.8;
}

.homepage .pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.homepage .pkg {
  background: #171C19;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.homepage .pkg-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.homepage .pkg:hover {
  transform: translateY(-6px);
}

.homepage .pkg__photo {
  height: 290px;
  position: relative;
  overflow: hidden;
}

.homepage .pkg__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.74);
  transition: transform 0.7s ease, filter 0.4s;
}

.homepage .pkg:hover .pkg__photo img {
  transform: scale(1.06);
  filter: brightness(0.84) saturate(0.84);
}

.homepage .pkg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(9, 11, 8, 0.76) 100%);
}

.homepage .pkg__badge,
.homepage .pkg__season-chip {
  position: absolute;
  top: 16px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(9, 11, 8, 0.65);
  backdrop-filter: blur(6px);
}

.homepage .pkg__badge {
  left: 16px;
  color: var(--bronze);
  border: 1px solid rgba(196, 154, 74, 0.38);
}

.homepage .pkg__season-chip {
  right: 16px;
  color: rgba(239, 232, 216, 0.6);
  border: 1px solid rgba(239, 232, 216, 0.07);
}

.homepage .pkg__body {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.homepage .pkg__title,
.homepage .travel-card__title {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
}

.homepage .pkg__title {
  font-size: 30px;
  margin-bottom: 6px;
}

.homepage .pkg__meta,
.homepage .t-stat__lbl,
.homepage .fact__title,
.homepage .testimonial__attr,
.homepage .footer__col-title {
  color: var(--muted);
}

.homepage .pkg__desc,
.homepage .pkg__include-item,
.homepage .footer__desc,
.homepage .footer__links a,
.homepage .footer__contact-item {
  color: rgba(239, 232, 216, 0.68);
}

.homepage .pkg__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(239, 232, 216, 0.07);
  padding-top: 22px;
}

.homepage .pkg__price,
.homepage .t-stat__val,
.homepage .fact__num,
.homepage .seasons td.price {
  font-family: "Cormorant Garamond", serif;
  color: var(--bronze);
}

.homepage .t-stat__val {
  font-size: 46px;
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 8px;
}

.homepage .t-stat__lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.homepage .pkg__price {
  font-size: 30px;
  font-weight: 600;
}

.homepage .pkg__cta {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(239, 232, 216, 0.7);
  text-decoration: none;
}

.homepage .story {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 620px;
}

.homepage .story__media,
.homepage .story__media img {
  width: 100%;
  height: 100%;
}

.homepage .story__media {
  position: relative;
  overflow: hidden;
}

.homepage .story__media img {
  object-fit: cover;
  filter: brightness(0.68) saturate(0.74);
}

.homepage .story__media-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, #0d1009 100%), linear-gradient(to bottom, transparent 60%, rgba(9, 11, 8, 0.5) 100%);
}

.homepage .story__badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(9, 11, 8, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 154, 74, 0.22);
  padding: 18px 24px;
}

.homepage .story__badge-stat {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--bronze);
}

.homepage .story__content {
  background: #171C19;
  padding: 90px 80px 90px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.homepage .guides,
.homepage .territory__stats,
.homepage .sika-facts__grid,
.homepage .travel__grid {
  display: grid;
}

.homepage .guides {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 38px;
}

.homepage .guide,
.homepage .t-stat,
.homepage .fact,
.homepage .travel-card {
  background: #171C19;
  border: 1px solid rgba(239, 232, 216, 0.07);
}

.homepage .guide {
  padding: 14px 18px;
}

.homepage .guide__name {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  color: rgba(239, 232, 216, 0.6);
  font-weight: 300;
  margin-top: 6px;
  line-height: 1.6;
}

.homepage .territory {
  background: #161B18;
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid rgba(239, 232, 216, 0.07);
  border-bottom: 1px solid rgba(239, 232, 216, 0.07);
}

.homepage .territory__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.homepage .terrain-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.homepage .terrain-bar__top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(239, 232, 216, 0.68);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.homepage .terrain-bar__track {
  height: 3px;
  background: rgba(239, 232, 216, 0.07);
}

.homepage .terrain-bar__fill {
  height: 100%;
  background: var(--bronze);
}

.homepage .territory__stats,
.homepage .sika-facts__grid,
.homepage .travel__grid {
  gap: 2px;
}

.homepage .territory__stats {
  grid-template-columns: 1fr 1fr;
}

.homepage .t-stat,
.homepage .fact,
.homepage .travel-card {
  padding: 34px;
}

.homepage .sika-facts {
  padding-top: 100px;
  padding-bottom: 100px;
}

.homepage .sika-facts__feature {
  max-width: 1160px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2px;
}

.homepage .sika-facts__panel,
.homepage .sika-facts__image {
  background: #171C19;
  border: 1px solid rgba(239, 232, 216, 0.07);
}

.homepage .sika-facts__panel {
  padding: 36px;
}

.homepage .sika-facts__panel h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 300;
  color: var(--text);
}

.homepage .sika-facts__chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.homepage .sika-facts__chips span {
  border: 1px solid rgba(196, 154, 74, 0.28);
  background: rgba(13, 16, 9, 0.7);
  color: rgba(239, 232, 216, 0.82);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
}

.homepage .sika-facts__image {
  min-height: 320px;
  overflow: hidden;
}

.homepage .sika-facts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.82);
}

.homepage .sika-facts__grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1160px;
  margin: 0 auto;
}

.homepage .testimonial {
  background: #1B211A;
  border-top: 1px solid rgba(196, 154, 74, 0.12);
  border-bottom: 1px solid rgba(196, 154, 74, 0.12);
  padding-top: 110px;
  padding-bottom: 110px;
  text-align: center;
}

.homepage .testimonial__stars {
  color: var(--bronze);
  font-size: 18px;
  letter-spacing: 6px;
  margin-bottom: 36px;
}

.homepage .testimonial__quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
  max-width: 860px;
  margin: 0 auto 30px;
}

.homepage .testimonial__feature-link {
  display: block;
  text-decoration: none;
}

.homepage .testimonial__feature-link .testimonial__attr {
  margin-top: -6px;
}

.homepage .testimonial__all {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.homepage .t-mini {
  background: rgba(20, 24, 21, 0.66);
  border: 1px solid rgba(239, 232, 216, 0.07);
  padding: 22px 28px;
  max-width: 320px;
  text-align: left;
}

.homepage .t-mini-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.homepage .t-mini__q {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  color: rgba(239, 232, 216, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}

.homepage .seasons {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #161B18;
  border-bottom: 1px solid rgba(239, 232, 216, 0.07);
}

.homepage .seasons table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 52px;
}

.homepage .seasons th {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(239, 232, 216, 0.07);
  text-align: left;
}

.homepage .seasons td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(239, 232, 216, 0.07);
  font-size: 14px;
  color: rgba(239, 232, 216, 0.68);
}

.homepage .season-chip {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border: 1px solid rgba(196, 154, 74, 0.22);
  color: var(--bronze);
}

.homepage .travel {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.homepage .travel-card__icon {
  font-size: 26px;
  margin-bottom: 18px;
  opacity: 0.65;
}

.homepage .cta-section {
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 140px;
  background: #0d1009;
  text-align: center;
}

.homepage .cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196, 154, 74, 0.07) 0%, transparent 68%);
}

.homepage .cta-logo {
  width: 140px;
  margin: 0 auto 36px;
  opacity: 0.2;
  filter: brightness(1.6) contrast(1.04);
}

.homepage .cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
  position: relative;
}

.homepage .cta-btns .btn-primary,
.homepage .cta-btns .btn-outline,
.homepage .cta-btns .btn {
  min-width: 270px;
  min-height: 52px;
}

.homepage .cta-contact {
  font-size: 14px;
  color: var(--muted);
  position: relative;
}

.homepage .cta-contact a {
  color: var(--bronze);
  text-decoration: none;
}

.homepage .footer {
  background: #141816;
  border-top: 1px solid rgba(239, 232, 216, 0.07);
  padding-top: 80px;
  padding-bottom: 40px;
  padding-left: 48px;
  padding-right: 48px;
}

.homepage .footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(239, 232, 216, 0.07);
}

.homepage .footer__logo {
  display: flex;
  justify-content: center;
}

.homepage .footer__logo img {
  height: 86px;
  width: auto;
  margin-bottom: 22px;
  display: block;
  opacity: 0.95;
  filter: invert(1) sepia(0.18) saturate(1.4) brightness(1.05) drop-shadow(0 2px 14px rgba(196, 154, 74, 0.22));
}

.homepage .footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.homepage .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.homepage .footer__copy {
  font-size: 12px;
  color: rgba(239, 232, 216, 0.2);
}

.homepage .footer__social {
  display: flex;
  gap: 24px;
}

.homepage .footer__social a {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(239, 232, 216, 0.32);
  text-decoration: none;
}

.homepage .footer__social a:hover {
  color: var(--bronze);
}

@media (max-width: 1240px) {
  .homepage .land-profile,
  .homepage .packages,
  .homepage .territory,
  .homepage .sika-facts,
  .homepage .testimonial,
  .homepage .seasons,
  .homepage .travel,
  .homepage .cta-section,
  .homepage .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 980px) {
  .homepage .land-profile__frame {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .homepage .land-profile__intro {
    padding: 30px 26px;
  }

  .homepage .land-card__stat-grid--three {
    grid-template-columns: 1fr;
  }

  .homepage .pkg-grid,
  .homepage .sika-facts__grid,
  .homepage .travel__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .homepage .sika-facts__feature {
    grid-template-columns: 1fr;
  }

  .homepage .story {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .homepage .story__content {
    padding: 56px 40px;
  }

  .homepage .territory__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .homepage .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-height: 860px) {
  .homepage .hero__scroll {
    display: none;
  }
}

@media (max-width: 768px) {
  .homepage .packages .container.cards {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .homepage .packages .cards-rail::before,
  .homepage .packages .cards-rail::after {
    width: 24px;
  }

  .homepage .packages .card-nav-btn {
    width: 38px;
    height: 38px;
  }

  .homepage .packages .card-nav-btn--prev {
    left: 6px;
  }

  .homepage .packages .card-nav-btn--next {
    right: 6px;
  }

  .homepage .packages .cards {
    scroll-padding-inline: 2px;
    padding: 2px 2px 10px;
    gap: 0.85rem;
  }

  .homepage .packages .cards .card {
    flex: 0 0 calc(100% - 4px);
    min-width: calc(100% - 4px);
    max-width: calc(100% - 4px);
  }

  .homepage .packages .card-body {
    padding: 1.25rem 1.1rem 1.3rem;
    gap: 0.8rem;
  }

  .homepage .packages .card-link .card-body > h3 {
    min-height: 0;
    font-size: 1.28rem;
    line-height: 1.2;
  }

  .homepage .packages .card-link .card-body > .meta {
    min-height: 0;
    font-size: 0.76rem;
  }

  .homepage .packages .card-link .card-body > .meta + p {
    min-height: 0;
    max-height: none;
    overflow: visible;
    line-height: 1.5;
    font-size: 0.94rem;
  }

  .homepage .packages .price-row {
    min-height: 0;
    gap: 0.6rem;
    align-items: flex-start;
  }

  .homepage .packages .price {
    font-size: 1.7rem;
  }

  .homepage .packages .price small,
  .homepage .packages .card .price small {
    min-height: 0;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .homepage .packages .price-row .btn-sm {
    padding: 0.72rem 0.95rem;
    white-space: nowrap;
  }

  .homepage .land-profile {
    padding: 76px 20px;
  }

  .homepage .land-profile__intro h2 {
    font-size: clamp(40px, 11.6vw, 56px);
  }

  .homepage .land-profile__intro,
  .homepage .land-card {
    padding: 24px 18px;
  }

  .homepage .land-stat__value {
    font-size: 31px;
  }

  .homepage .land-card__stat-grid--two {
    grid-template-columns: 1fr;
  }

  .homepage .hero__bg {
    object-position: 24% 46%;
    transform: scale(1.16);
  }

  .homepage .hero__bg.loaded {
    transform: scale(1.1);
  }

  .homepage .hero {
    min-height: 86svh;
    height: auto;
  }

  .homepage .hero__content {
    padding: 56px 20px 46px;
    transform: translateY(-6px);
  }

  .homepage .hero__eyebrow {
    font-size: 9px;
    letter-spacing: 2.5px;
    gap: 10px;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }

  .homepage .hero__eyebrow::before,
  .homepage .hero__eyebrow::after {
    width: 28px;
    flex-shrink: 0;
  }

  .homepage .hero__logo {
    visibility: hidden;
    opacity: 0;
  }

  .homepage .hero__h {
    font-size: clamp(42px, 12vw, 64px);
    margin-bottom: 16px;
  }

  .homepage .hero__sub {
    font-size: 18px;
    margin-bottom: 28px;
    color: rgba(239, 232, 216, 0.88);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }

  .homepage .hero__actions,
  .homepage .cta-btns {
    width: 100%;
    flex-direction: column;
  }

  .homepage .hero__actions .btn-primary,
  .homepage .hero__actions .btn-outline {
    min-width: 0;
    width: 100%;
  }

  .homepage .hero__scroll {
    display: none;
  }

  .homepage .stats {
    grid-template-columns: 1fr 1fr;
  }

  .homepage .stats > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 360px);
  }

  .homepage .stat {
    padding: 24px 16px;
  }

  .homepage .pkg-grid,
  .homepage .sika-facts__grid,
  .homepage .travel__grid,
  .homepage .guides,
  .homepage .territory__stats {
    grid-template-columns: 1fr;
  }

  .homepage .packages .cards-hint {
    text-align: center;
    letter-spacing: 0.14em;
  }

  .homepage .packages .cards-hint .hint-desktop {
    display: none;
  }

  .homepage .packages .cards-hint .hint-mobile {
    display: inline;
  }

  .homepage .packages .cards-rail::before,
  .homepage .packages .cards-rail::after {
    width: 34px;
  }

  .homepage .sika-facts__panel {
    padding: 26px 22px;
  }

  .homepage .sika-facts__panel h3 {
    font-size: 34px;
  }

  .homepage .testimonial__quote {
    font-size: 28px;
  }

  .homepage .testimonial__all {
    flex-direction: column;
    gap: 14px;
  }

  .homepage .t-mini {
    max-width: none;
  }

  .homepage .seasons {
    overflow-x: auto;
  }

  .homepage .seasons table {
    min-width: 680px;
  }

  .homepage .footer__top,
  .homepage .footer__bottom {
    grid-template-columns: 1fr;
    display: grid;
    gap: 24px;
  }

  .homepage .footer__social {
    flex-wrap: wrap;
    gap: 14px;
  }
}

.topbar {
  background: #1a2416;
  border-bottom: 1px solid rgba(196, 154, 74, 0.15);
  padding: 9px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__left {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(239, 232, 216, 0.6);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar__left a {
  color: var(--bronze);
  text-decoration: none;
}

.topbar__right {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar__social {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(239, 232, 216, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar__social:hover {
  color: var(--bronze);
}

.topbar__wa {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bronze);
  text-decoration: none;
  padding: 5px 14px;
  border: 1px solid rgba(196, 154, 74, 0.38);
  transition: all 0.2s;
}

.topbar__wa:hover {
  background: var(--bronze);
  color: #090b08;
}

.nav--editorial,
.homepage .nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 17, 13, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(239, 232, 216, 0.07);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 60px;
  min-height: 90px;
  gap: 1rem;
  position: sticky;
}

.nav--editorial .nav__links,
.homepage .nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav--editorial .nav__links--right,
.homepage .nav__links--right {
  justify-content: flex-end;
}

.nav--editorial .nav__link,
.homepage .nav__link {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(239, 232, 216, 0.68);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.nav--editorial .nav__link:hover,
.homepage .nav__link:hover {
  color: var(--text);
}

.nav__logo,
.homepage .nav__logo,
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

.nav__logo::before,
.homepage .nav__logo::before,
.brand::before {
  content: none;
}

.nav__logo img,
.homepage .nav__logo img,
.brand img {
  height: 88px;
  width: auto;
  max-width: min(56vw, 620px);
  object-fit: contain;
  opacity: 0.6;
  filter: invert(1);
}

.nav__book,
.homepage .nav__book {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #090b08;
  background: var(--bronze);
  padding: 11px 26px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav__book:hover,
.homepage .nav__book:hover {
  background: var(--bronze);
  filter: brightness(1.12);
}

.mobile-nav-toggle,
.homepage .mobile-nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(176, 141, 87, 0.2);
  background: rgba(14, 17, 13, 0.92);
  color: var(--text);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 14px;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-nav,
.homepage .mobile-nav {
  display: none;
  border-bottom: 1px solid rgba(239, 232, 216, 0.08);
  background: rgba(17, 21, 16, 0.98);
}

.mobile-nav.is-open,
.homepage .mobile-nav.is-open {
  display: block;
}

.mobile-nav__links,
.homepage .mobile-nav__links {
  display: grid;
  gap: 0;
  padding: 8px 24px 16px;
}

.mobile-nav__links a,
.homepage .mobile-nav__links a {
  text-decoration: none;
  color: rgba(239, 232, 216, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(239, 232, 216, 0.07);
}

.mobile-nav__links a:last-child,
.homepage .mobile-nav__links a:last-child {
  border-bottom: 0;
}

.mobile-nav__contact {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 16px 0 8px;
  border-top: 1px solid rgba(239, 232, 216, 0.07);
  margin-top: 8px;
}

.mobile-nav__contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--bronze);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 8px;
  border-bottom: 0;
  text-transform: none;
  flex: 1;
  transition: opacity 0.2s ease;
}

.mobile-nav__contact-btn:hover {
  opacity: 0.8;
}

.mobile-nav__contact-btn:active {
  opacity: 0.6;
}

.mobile-nav__contact-icon {
  width: 24px;
  height: 24px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 60px;
  background: #0d1009;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196, 154, 74, 0.07) 0%, transparent 68%);
}

.cta-section > * {
  position: relative;
}

.cta-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 680px;
  margin: 0 auto 0;
  font-size: 15px;
  color: rgba(239, 232, 216, 0.6);
  line-height: 1.8;
}

.cta-logo {
  width: 140px;
  margin: 0 auto 36px;
  opacity: 0.2;
  filter: none;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 32px 0 36px;
}

.cta-btns > a,
.cta-btns > button {
  min-width: 230px;
  min-height: 50px;
}

.cta-contact {
  font-size: 14px;
  color: var(--muted);
}

.cta-contact a {
  color: var(--bronze);
  text-decoration: none;
}

.footer {
  background: #141816;
  border-top: 1px solid rgba(239, 232, 216, 0.07);
  padding: 80px 48px 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(239, 232, 216, 0.07);
}

.footer__logo {
  display: flex;
  justify-content: center;
}

.footer__logo img {
  height: 86px;
  width: auto;
  margin-bottom: 22px;
  display: block;
  opacity: 0.95;
  filter: invert(1) sepia(0.18) saturate(1.4) brightness(1.05) drop-shadow(0 2px 14px rgba(196, 154, 74, 0.22));
}

.footer__desc-panel {
  margin-top: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(196, 154, 74, 0.28);
  border-top: 2px solid rgba(196, 154, 74, 0.45);
  background: linear-gradient(135deg, rgba(196, 154, 74, 0.07) 0%, rgba(26, 32, 28, 0.6) 100%);
  border-radius: 8px;
  text-align: center;
}

.footer__desc {
  color: rgba(239, 232, 216, 0.92);
  line-height: 1.9;
  font-size: 15px;
  letter-spacing: 0.01em;
  margin: 0;
}

.footer__col-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer__links a,
.footer__contact-item,
.footer__contact-item a {
  color: rgba(239, 232, 216, 0.6);
  text-decoration: none;
}

.footer__contact-item {
  margin-bottom: 8px;
}

.footer__contact-item a {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(196, 154, 74, 0.2);
  background: linear-gradient(145deg, rgba(26, 31, 29, 0.95), rgba(18, 22, 20, 0.95));
  color: rgba(239, 232, 216, 0.85);
  line-height: 1.3;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer__contact-item a::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(196, 154, 74, 0.35);
  background: rgba(196, 154, 74, 0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px 17px;
}

.footer__contact-item:nth-of-type(1) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c49a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.footer__contact-item:nth-of-type(2) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c49a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-10 5L2 7'/%3E%3C/svg%3E");
}

.footer__contact-item:nth-of-type(3) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c49a4a'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.67-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.076 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421-7.403h-.004a5.564 5.564 0 0 0-5.556 5.56c0 .955.239 1.901.694 2.743l-1.327 4.842 4.953-1.299c.789.432 1.683.659 2.587.659h.004a5.565 5.565 0 0 0 5.556-5.56 5.548 5.548 0 0 0-1.635-3.958 5.548 5.548 0 0 0-3.925-1.626zm5.904-2.767C14.795 3.01 12.201 3 9.862 3 5.278 3 1.636 6.642 1.636 11.227c0 1.889.471 3.735 1.372 5.365L1.283 21.64l5.745-1.51c1.58.861 3.362 1.314 5.19 1.314 4.584 0 8.226-3.642 8.226-8.227 0-2.198-.853-4.266-2.404-5.817a8.22 8.22 0 0 0-5.834-2.415z'/%3E%3C/svg%3E");
}

.footer__contact-item a:hover,
.footer__contact-item a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 154, 74, 0.42);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.footer__contact-item:nth-of-type(3) a::before {
  border-color: rgba(196, 154, 74, 0.35);
  background-color: rgba(196, 154, 74, 0.1);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(239, 232, 216, 0.06);
  margin-top: 8px;
}

.footer__sitemap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer__sitemap-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__sitemap-header {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.footer__sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__sitemap-list a {
  font-size: 14px;
  color: rgba(239, 232, 216, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__sitemap-list a:hover {
  color: var(--bronze);
}

.footer__copy {
  font-size: 11px;
  color: rgba(239, 232, 216, 0.2);
  letter-spacing: 0.04em;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sitemap-list li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.sitemap-list li a:hover {
  color: var(--bronze);
}

.footer__copy {
  font-size: 12px;
  color: rgba(239, 232, 216, 0.6);
}

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(239, 232, 216, 0.6);
  opacity: 1;
}

.footer__credit img {
  height: 66px;
  width: auto;
  display: block;
  filter: none;
  opacity: 0.92;
}

.footer__credit:hover img {
  opacity: 1;
}

.footer__social {
  display: flex;
  gap: 24px;
}

.footer__social a {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(239, 232, 216, 0.6);
  text-decoration: none;
}

.footer__social a:hover {
  color: var(--bronze);
}

@media (hover: none) {
  .nav-link:hover {
    color: rgba(239, 232, 216, 0.68);
  }

  .btn:hover {
    color: rgba(231, 236, 239, 0.84);
    border-color: rgba(231, 236, 239, 0.18);
    background: transparent;
  }

  .btn-outline:hover {
    background: transparent;
    color: rgba(231, 236, 239, 0.84);
    border-color: var(--bronze);
  }

  .btn-primary:hover {
    background: var(--bronze);
    border-color: var(--bronze);
    color: #111410;
    filter: none;
  }

  .card:hover {
    transform: none;
    border-color: rgba(231, 236, 239, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.26);
  }

  .gallery-page .gallery .g-item:hover {
    transform: none;
    border-color: rgba(231, 236, 239, 0.08);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  }

  .gallery-page .gallery .g-item:hover img {
    transform: none;
    filter: brightness(0.78) saturate(0.84);
  }

  .faq-button:hover {
    background: transparent;
  }

  .faq-button:hover span:first-child {
    color: rgba(196, 154, 74, 0.9);
  }

  .contact-action:hover {
    transform: none;
    border-color: rgba(196, 154, 74, 0.22);
    box-shadow: none;
    background: linear-gradient(145deg, rgba(29, 35, 32, 0.96), rgba(20, 26, 23, 0.96));
  }

  .homepage .pkg:hover {
    transform: none;
  }

  .homepage .pkg:hover .pkg__photo img {
    transform: none;
    filter: brightness(0.72) saturate(0.74);
  }

  .homepage .footer__social a:hover {
    color: rgba(239, 232, 216, 0.32);
  }

  .topbar__social:hover {
    color: rgba(239, 232, 216, 0.35);
  }

  .nav--editorial .nav__link:hover,
  .homepage .nav__link:hover {
    color: rgba(239, 232, 216, 0.68);
  }

  .footer__sitemap-list a:hover {
    color: rgba(239, 232, 216, 0.7);
  }

  .sitemap-list li a:hover {
    color: var(--muted);
  }

  .footer__social a:hover {
    color: rgba(239, 232, 216, 0.6);
  }

  .topbar__wa:hover {
    background: transparent;
    color: var(--bronze);
  }

  .nav__book:hover,
  .homepage .nav__book:hover {
    background: var(--bronze);
    filter: none;
  }

  .mobile-nav__contact-btn:hover {
    opacity: 1;
  }

  .footer__contact-item a:hover {
    transform: none;
    border-color: rgba(196, 154, 74, 0.2);
    box-shadow: none;
  }

  .footer__credit:hover img {
    opacity: 0.92;
  }
}

@media (max-width: 1240px) {
  .topbar,
  .nav--editorial,
  .sponsors,
  .cta-section,
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(0, 0, 0, 0.01);
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }

  .mobile-nav-backdrop.is-active {
    display: block;
  }

  .topbar {
    display: none;
  }

  .sponsors {
    flex-direction: column;
    gap: 14px;
  }

  .sponsors__divider {
    display: none;
  }

  .sponsors__logos {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    gap: 20px;
  }

  .sponsors__logo {
    height: 87px;
    padding: 0 14px;
  }

  .sponsors__logo img {
    max-height: 100%;
    max-width: 218px;
  }

  .nav--editorial,
  .homepage .nav {
    grid-template-columns: 1fr auto;
    padding-left: 18px;
    padding-right: 18px;
    min-height: 76px;
  }

  .nav--editorial .nav__links,
  .homepage .nav__links,
  .nav__book,
  .homepage .nav__book {
    display: none;
  }

  .nav__logo,
  .homepage .nav__logo {
    justify-self: start;
  }

  .nav__logo img,
  .homepage .nav__logo img,
  .brand img {
    height: 70px;
    max-width: min(68vw, 460px);
  }

  .mobile-nav-toggle,
  .homepage .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    right: 18px;
  }

  .mobile-nav,
  .homepage .mobile-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 140;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.42);
  }

  .cta-section {
    padding: 96px 20px;
  }

  .cta-section h2 {
    font-size: 40px;
  }

  .cta-btns {
    width: 100%;
    flex-direction: column;
  }

  .cta-btns > a,
  .cta-btns > button {
    width: 100%;
    min-width: 0;
  }

  .footer__top,
  .footer__bottom {
    grid-template-columns: 1fr;
    display: grid;
    gap: 24px;
    text-align: center;
  }

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

  .footer__social {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  .footer__credit {
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .nav__logo img,
  .homepage .nav__logo img,
  .brand img {
    height: 60px;
    max-width: 80vw;
  }

  .homepage .hero__bg {
    object-position: 20% 50%;
    transform: scale(1.2);
  }

  .homepage .hero__bg.loaded {
    transform: scale(1.14);
  }

  .homepage .hero__content {
    transform: translateY(-8px);
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btns > a,
  .cta-btns > button {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  /* Mobile Button Sizing */
  .btn,
  .btn-primary,
  .btn-outline {
    min-height: 48px;
    padding: 12px 20px;
  }

  /* Mobile Form Input Sizing */
  .field input,
  .field textarea {
    padding: 1rem 1.2rem;
    font-size: 16px;
  }

  .field select {
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: auto;
    background-image: none;
    padding: 1rem 1.2rem;
    font-size: 16px;
    cursor: default;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage .hero__bg {
    transform: none;
    transition: none;
  }

  .homepage .scroll-line {
    animation: none;
  }

  .card,
  .gallery-page .gallery .g-item,
  .homepage .pkg {
    transition: border-color 0.15s ease;
  }

  .gallery-page .gallery .g-item img {
    transition: none;
  }
}
