/*
Theme Name: Druk Travel Pixel Theme
Author: You
Version: 1.0
*/

/* =========================
   GLOBAL
========================= */
body {
  margin: 0;
  padding-top: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
  line-height: 1.6;
  background-color: #f5efe6;
}

h1, h2, h3, h4, h5, h6,
p, a, button, input, textarea {
  font-family: 'Inter', sans-serif;
}

/* =========================
   FORCE BACKGROUND ALL PAGES
========================= */
body,
.wp-site-blocks,
.is-layout-flow,
.entry-content,
.wp-block-post-content,
.wp-block-group,
main,
#main,
#content,
.site-content,
.hentry {
  background-color: #f5efe6 !important;
}

/* =========================
   HIDE ALL PAGE TITLES
========================= */
.entry-title,
.page-title,
.entry-header,
.page .entry-header,
.page-template-default .entry-title,
.type-page .entry-title,
h1.entry-title,
.page .entry-title,
.page h1.entry-title,
.page-content-wrapper ~ .entry-title,
h1.wp-block-post-title,
.wp-block-post-title,
.wp-block-query-title {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* =========================
   TYPOGRAPHY
========================= */
h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

h2 {
  font-size: 28px;
  font-weight: 600;
}

p {
  font-size: 16px;
  color: #555;
}

/* =========================
   NAVIGATION
========================= */
#druk-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #f5efe6;
  border-bottom: 1px solid #e0d8d0;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  font-family: 'Inter', sans-serif;
}

.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-image {
  height: 48px;
  width: 48px;
  object-fit: contain;
  mix-blend-mode: darken;
  filter: brightness(1.35) saturate(0.9);
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.nav-links a:hover {
  color: #111;
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  background: #f4b400;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.25s ease;
}

#mobileMenu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #f5efe6;
  border-bottom: 1px solid #e0d8d0;
  z-index: 999;
  flex-direction: column;
  padding: 8px 0;
}

#mobileMenu.open {
  display: flex;
}

#mobileMenu a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 14px 24px;
  border-bottom: 0.5px solid #e0d8d0;
}

#mobileMenu a:last-child {
  color: #000;
  font-weight: 700;
  border-bottom: none;
}

/* =========================
   HERO (legacy)
========================= */
.hero {
  height: 65vh;
  min-height: 500px;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.15);
  padding: 48px 52px;
  border-radius: 4px;
  color: #fff;
  max-width: 620px;
  border-left: 4px solid #f4b400;
}

.overlay h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.overlay p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.6;
}

/* =========================
   BUTTONS
========================= */
.cta {
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  background: #f4b400;
  color: #000;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
  letter-spacing: 0.2px;
}

.cta:hover {
  background: #e0a500;
}

/* =========================
   HOME CAROUSEL
========================= */
.home-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: min(56vw, 90vh);
  min-height: 480px;
  overflow: hidden;
  margin-top: 64px;
}

.home-carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.home-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.40) 45%, transparent 70%),
    linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.58) 30%, rgba(0,0,0,0.18) 55%, transparent 75%);
}

.home-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 56px;
  max-width: 52%;
}

.home-slide-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4b400;
  margin-bottom: 10px;
}

.home-slide-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.home-carousel-dots {
  position: absolute;
  bottom: 24px;
  right: 56px;
  display: flex;
  gap: 10px;
}

.home-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.home-dot.active {
  background: #f4b400;
}

/* =========================
   STATS TRUST BAND
========================= */
.home-stats-band {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 48px;
  background: #fff;
  border-bottom: 1px solid #e0d8d0;
}

.home-stat {
  flex: 1;
  text-align: center;
  padding: 8px 24px;
}

.home-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.home-stat-label {
  font-size: 12px;
  color: #888;
  font-weight: 500;
  line-height: 1.4;
}

.home-stat-divider {
  width: 1px;
  height: 40px;
  background: #e0d8d0;
  flex-shrink: 0;
}

/* =========================
   HOME WHY BHUTAN
========================= */
.home-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
  padding: 72px 48px;
}

.home-why-headline {
  font-size: 30px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.home-why-body {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.home-why-pullquote {
  border-left: 3px solid #f4b400;
  padding: 16px 20px;
  background: #fff;
  border-radius: 0 8px 8px 0;
  margin: 24px 0 28px;
}

.home-why-pullquote p {
  font-size: 16px;
  font-style: italic;
  color: #333;
  line-height: 1.7;
  margin: 0 0 8px;
}

.home-why-pullquote-author {
  font-size: 12px;
  color: #a08060;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.home-why-link {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  border: 2px solid #3d4a35;
  color: #3d4a35;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
}

.home-why-link:hover {
  background: #3d4a35;
  color: #fff;
}

/* =========================
   INSTAGRAM EMBED
========================= */
.home-why-instagram {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
}

.home-why-instagram .instagram-media {
  min-width: unset !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 10px !important;
}

.home-why-instagram iframe {
  max-width: 100% !important;
  width: 100% !important;
}

/* =========================
   MID-PAGE SOFT CTA
========================= */
.home-mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: #faf7f2;
  border-top: 1px solid #e0d8d0;
  border-bottom: 1px solid #e0d8d0;
  gap: 24px;
}

.home-mid-cta p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.home-mid-cta a {
  font-size: 14px;
  font-weight: 700;
  color: #2d3d28;
  text-decoration: none;
  border-bottom: 2px solid #f4b400;
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-mid-cta a:hover {
  color: #111;
}

/* =========================
   HOME GALLERY TEASER
========================= */
.home-gallery-section {
  padding: 64px 48px;
  background: #faf7f2;
  border-top: 1px solid #e0d8d0;
  border-bottom: 1px solid #e0d8d0;
}

.home-gallery-headline {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.home-gallery-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}

.home-gallery-asymmetric {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.home-gallery-main,
.home-gallery-secondary a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  text-decoration: none;
}

.home-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.home-gallery-secondary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-gallery-secondary a img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.home-gallery-main:hover img,
.home-gallery-secondary a:hover img {
  transform: scale(1.03);
}

.home-gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0 0 10px 10px;
}

.home-gallery-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #3d4a35;
  text-decoration: none;
  border-bottom: 2px solid #f4b400;
  padding-bottom: 2px;
}

/* =========================
   HOME PLAN TEASER
========================= */
.home-plan-band {
  background: #2d3d28;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.home-plan-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4b400;
  margin-bottom: 12px;
}

.home-plan-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.home-plan-body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.home-plan-cta {
  display: inline-block;
  padding: 13px 28px;
  background: #f4b400;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
}

.home-plan-cta:hover {
  background: #e0a500;
}

.home-plan-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-plan-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
}

.home-plan-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f4b400;
  min-width: 36px;
  padding-top: 2px;
}

.home-plan-step-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.home-plan-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* =========================
   BOOKING SECTION
========================= */
.booking-section {
  padding: 80px 20px;
}

.booking-title {
  text-align: center;
  margin-bottom: 32px;
}

.booking-title p {
  font-size: 15px;
  color: #888;
  margin-top: 6px;
}

.success-message {
  text-align: center;
  color: green;
  font-weight: 500;
  margin-bottom: 20px;
}

.booking-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form input,
.booking-form textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #f4b400;
}

.booking-form button {
  padding: 14px;
  background: #f4b400;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

.booking-form button:hover {
  background: #e0a500;
}

/* =========================
   TOURS GRID
========================= */
.grid {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #e0d8d0;
}

/* =========================
   ABOUT PAGE
========================= */
.about-hero {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
  margin-top: 64px;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

.about-hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 48px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
}

.about-hero-caption .about-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4b400;
  margin-bottom: 6px;
}

.about-hero-caption h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.about-section {
  padding: 72px 48px;
}

.about-section-sm {
  padding: 64px 48px;
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a08060;
  margin-bottom: 10px;
}

.about-headline {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 36px;
}

.about-headline span {
  color: #f4b400;
}

.about-headline-sm {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.about-two-col {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
  margin-bottom: 36px !important;
}

.about-two-col img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 3/2;
  display: block;
}

.about-pullquote {
  border-left: 4px solid #f4b400;
  padding: 18px 28px;
  background: #fff;
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
}

.about-pullquote p {
  font-size: 18px;
  font-style: italic;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

.about-why-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin-top: 32px;
}

.about-why-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  border: 1px solid #e0d8d0;
}

.about-why-card .icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.about-why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.about-why-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

.about-team-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin-top: 32px;
}

.about-team-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  border: 1px solid #e0d8d0;
  text-align: center;
}

.about-team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #3d4a35;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.about-team-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.about-team-card .role {
  font-size: 11px;
  color: #f4b400;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-team-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

.about-cta-band {
  background: #2d3d28;
  padding: 64px 48px;
  text-align: center;
}

.about-cta-band h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.about-cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.about-cta-band a {
  display: inline-block;
  padding: 14px 36px;
  background: #f4b400;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
}

.about-cta-band a:hover {
  background: #e0a500;
}

.about-divider {
  border: none;
  border-top: 1px solid #e0d8d0;
  margin: 0 48px;
}

/* =========================
   GALLERY PAGE
========================= */
.gallery-page-header {
  padding: 88px 48px 40px;
  max-width: 100% !important;
  width: 100% !important;
}

.gallery-page-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.gallery-page-sub {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

.wp-block-gallery {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 48px 64px !important;
  gap: 12px !important;
  row-gap: 12px !important;
}

.wp-block-gallery .wp-block-image {
  margin: 0 !important;
}

.wp-block-gallery .wp-block-image img {
  border-radius: 8px !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.wp-block-gallery figcaption {
  display: none !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 60px 40px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.gallery-grid img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* =========================
   GALLERY INSTAGRAM SECTION
========================= */
.gallery-instagram-section {
  padding: 64px 48px;
  background: #faf7f2;
  border-top: 1px solid #e0d8d0;
}

.gallery-instagram-title {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.gallery-instagram-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 36px;
}

.gallery-instagram-grid {
  width: 100%;
  min-height: 240px;
  background: #f0e8db;
  border-radius: 10px;
  border: 1px dashed #c8b89a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.gallery-instagram-coming-soon {
  text-align: center;
  color: #a08060;
}

.gallery-instagram-coming-soon span {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.gallery-instagram-coming-soon p {
  font-size: 15px;
  color: #a08060;
  font-weight: 500;
  margin: 0;
}

.gallery-instagram-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #3d4a35;
  text-decoration: none;
  border-bottom: 2px solid #f4b400;
  padding-bottom: 2px;
}

/* =========================
   BUILD YOUR BHUTAN — PAGE
========================= */
.ss { padding: 56px 48px; border-bottom: 1px solid #e0d8d0; }
.ss:last-of-type { border-bottom: none; }
.sh { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.sn { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #f4b400; }
.st { font-size: 24px; font-weight: 800; color: #111; letter-spacing: -0.5px; }
.ssub { font-size: 14px; color: #888; margin-bottom: 28px; }
.bh { background: #2d3d28; padding: 72px 48px 64px; }
.bh-eye { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #f4b400; margin-bottom: 14px; }
.bh-title { font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 16px; max-width: 560px; }
.bh-sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 540px; }
.rg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rc { background: #fff; border: 2px solid #e0d8d0; border-radius: 12px; cursor: pointer; transition: border-color 0.2s, transform 0.15s; overflow: hidden; user-select: none; }
.rc:hover { border-color: #c8b89a; transform: translateY(-2px); }
.rc.sel { border-color: #f4b400; background: #fffbf0; }
.ri { width: 100%; height: 140px; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.rb { padding: 16px 18px 18px; }
.rn { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 4px; display: flex; align-items: center; justify-content: space-between; }
.rck { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #e0d8d0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.15s; }
.rc.sel .rck { background: #f4b400; border-color: #f4b400; }
.rck svg { opacity: 0; transition: opacity 0.15s; }
.rc.sel .rck svg { opacity: 1; }
.rd { font-size: 13px; color: #777; line-height: 1.5; }
.eg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ec { background: #fff; border: 2px solid #e0d8d0; border-radius: 10px; padding: 18px 20px; cursor: pointer; transition: border-color 0.2s, background 0.2s; display: flex; align-items: flex-start; gap: 14px; user-select: none; }
.ec:hover { border-color: #c8b89a; }
.ec.sel { border-color: #f4b400; background: #fffbf0; }
.ei { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.en { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 3px; }
.edc { font-size: 12px; color: #888; line-height: 1.5; }
.grg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gc { background: #fff; border: 2px solid #e0d8d0; border-radius: 10px; padding: 20px; cursor: pointer; text-align: center; transition: border-color 0.2s, background 0.2s; user-select: none; }
.gc:hover { border-color: #c8b89a; }
.gc.sel { border-color: #f4b400; background: #fffbf0; }
.gd { font-size: 26px; font-weight: 800; color: #111; letter-spacing: -1px; margin-bottom: 4px; }
.gl { font-size: 12px; color: #888; margin-bottom: 8px; }
.gdesc { font-size: 11px; color: #a08060; line-height: 1.4; }
.sb { background: #2d3d28; padding: 56px 48px; }
.sb-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #f4b400; margin-bottom: 20px; }
.sg { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; align-items: start; }
.sh2 { font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 24px; line-height: 1.2; }
.ss2 { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.sr { display: flex; align-items: flex-start; gap: 12px; }
.srl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); min-width: 90px; padding-top: 2px; }
.srv { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.srv.empty { color: rgba(255,255,255,0.3); font-style: italic; }
.sn2 { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.bf { display: flex; flex-direction: column; gap: 12px; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bf input, .bf textarea { padding: 13px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; background: rgba(255,255,255,0.08); color: #fff; font-size: 14px; font-family: 'Inter', sans-serif; width: 100%; }
.bf input::placeholder, .bf textarea::placeholder { color: rgba(255,255,255,0.35); }
.bf input:focus, .bf textarea:focus { outline: none; border-color: #f4b400; }
.bf textarea { resize: none; }
.bs { padding: 14px 28px; background: #f4b400; color: #000; font-weight: 700; font-size: 15px; border-radius: 8px; border: none; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.15s; align-self: flex-start; }
.bs:hover { background: #e0a500; }
.fl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.trust { display: flex; flex-direction: column; gap: 20px; }
.tq { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 20px; border-left: 3px solid #f4b400; }
.tq-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; font-style: italic; margin-bottom: 12px; }
.tq-author { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.5px; }
.wnext { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 20px; }
.wnext-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.wnext-step { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.wnext-num { width: 22px; height: 22px; border-radius: 50%; background: #f4b400; color: #000; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: middle; flex-shrink: 0; margin-top: 1px; }
.wnext-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* =========================
   SNOWMAN TREK
========================= */
.snowman-wrap .trek-hero {
  padding-top: 88px;
}

/* =========================
   ADMIN BAR FIX
========================= */
body.admin-bar #druk-nav {
  top: 32px;
}

body.admin-bar .hero {
  margin-top: calc(64px + 32px);
}

body.admin-bar .about-hero {
  margin-top: calc(64px + 32px);
}

body.admin-bar .home-carousel {
  margin-top: calc(64px + 32px);
}

/* =========================
   FULL WIDTH PAGE OVERRIDE
========================= */
#carouselTrack {
  display: flex !important;
  width: 400% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#carouselTrack .home-slide {
  width: 25% !important;
  max-width: 25% !important;
  min-width: 25% !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.page-content-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-content-wrapper > *,
.page-content-wrapper .wp-block-html,
.page .entry-content,
.page .entry-content > *,
.page .wp-block-post-content,
.page .wp-block-post-content > *,
.wp-block-group.is-layout-constrained,
.is-layout-constrained > *,
.is-layout-flow > * {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* =========================
   LIGHTBOX OVERRIDE
========================= */
.wp-lightbox-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 100000 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: all !important;
}

.wp-lightbox-overlay * {
  pointer-events: auto !important;
}

.wp-lightbox-overlay button.close-button,
.wp-lightbox-overlay .close-button {
  position: fixed !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 100001 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 8px !important;
}

/* =========================
   RESPONSIVE — TABLET (max 900px)
========================= */
@media (max-width: 900px) {

  .home-stats-band {
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 24px;
  }

  .home-stat-divider { display: none; }

  .home-stat { flex: 1 1 40%; }

  .home-why {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px;
  }

  .home-why-img {
    order: -1;
  }

  .home-mid-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
  }

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

  .home-gallery-main img {
    aspect-ratio: 16/9;
  }

  .home-gallery-secondary {
    flex-direction: row;
  }

  .home-gallery-secondary a {
    flex: 1;
  }

  .home-plan-band {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px;
  }

  .about-two-col {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .about-two-col img {
    order: -1;
  }

  .about-why-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .about-team-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
    aspect-ratio: 1;
  }

  .rg { grid-template-columns: 1fr 1fr; }
  .eg { grid-template-columns: 1fr 1fr; }
  .grg { grid-template-columns: 1fr 1fr; }
  .sg { grid-template-columns: 1fr; gap: 32px; }

}

/* =========================
   RESPONSIVE — MOBILE (max 768px)
========================= */
@media (max-width: 768px) {

  #druk-nav {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }

  /* Animate hamburger to × when active */
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  h1 { font-size: 32px; }
  h2 { font-size: 22px; }

  .hero {
    height: 75vw;
    min-height: 340px;
  }

  .overlay {
    padding: 28px 24px;
    margin: 0 16px;
  }

  .overlay h1 { font-size: 32px; }
  .overlay p { font-size: 15px; }

  .home-carousel {
    height: 67vw;
    min-height: 280px;
  }

  .home-slide-title { font-size: 32px; }

  .home-slide-content {
    padding: 28px 24px;
  }

  .home-carousel-dots {
    right: 24px;
  }

  .home-stats-band { padding: 24px 20px; }

  .home-stat-number { font-size: 26px; }

  .home-why {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }

  .home-gallery-section {
    padding: 48px 24px;
  }

  .home-gallery-secondary {
    flex-direction: column;
  }

  .home-gallery-secondary a img {
    aspect-ratio: 16/9;
  }

  .home-plan-band {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }

  .home-plan-title { font-size: 26px; }

  .about-hero { height: 240px; }

  .about-hero-caption { padding: 24px; }

  .about-hero-caption h2 { font-size: 22px; }

  .about-section { padding: 40px 24px; }

  .about-section-sm { padding: 32px 24px; }

  .about-headline {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .about-headline-sm { font-size: 20px; }

  .about-pullquote { margin: 20px 0; }

  .about-pullquote p { font-size: 15px; }

  .about-why-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .about-team-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .about-cta-band { padding: 40px 24px; }

  .about-cta-band h2 { font-size: 22px; }

  .about-divider { margin: 0 24px; }

  .gallery-page-header { padding: 88px 24px 32px; }

  .gallery-page-title { font-size: 26px; }

  .wp-block-gallery {
    padding: 0 24px 48px !important;
    gap: 8px !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 12px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
    aspect-ratio: 1;
  }

  .gallery-instagram-section { padding: 48px 24px; }

  .gallery-instagram-title { font-size: 22px; }

  .grid {
    padding: 40px 20px;
    grid-template-columns: 1fr;
  }

  .booking-section { padding: 48px 20px; }

  .bh { padding: 56px 24px 48px; }
  .bh-title { font-size: 32px; }
  .ss { padding: 40px 24px; }
  .rg { grid-template-columns: 1fr; }
  .eg { grid-template-columns: 1fr; }
  .grg { grid-template-columns: 1fr 1fr; }
  .sb { padding: 48px 24px; }
  .fr { grid-template-columns: 1fr; }

}

/* =========================
   RESPONSIVE — SMALL MOBILE (max 480px)
========================= */
@media (max-width: 480px) {

  .home-slide-title { font-size: 26px; }

  .overlay h1 { font-size: 26px; }

  .about-headline { font-size: 22px; }

  .about-cta-band h2 { font-size: 20px; }

  .about-cta-band a {
    padding: 12px 24px;
    font-size: 14px;
  }

}