/*global*/
:root {
    --ink: #0f0c0a;
    --cream: #f5f0e8;
    --sand: #d4c4a0;
    --ember: #c8602a;
    --ember-light: #e8845a;
    --sage: #4a6741;
    --gold: #c9a84c;
    --white: #fdfaf5;
    --fog: rgba(15, 12, 10, 0.06);
    --accent: #B71C1C;
    --euro-blue: #1C3A5F;
    --euro-blue-mid: #2E5F8A;
    --euro-blue-light: #89ABE3;
    --font-dm: 'DM Sans', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --font-cormorant: 'Cormorant Garamond', serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-dm);
  overflow-x: hidden;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
}

.btn-primary {
  background: var(--ember);
  color: var(--white);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--ember);
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--ember);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid rgba(253, 250, 245, 0.4);
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--white);
}

.btn-white {
  border:1px solid var(--white);
  background: var(--white);
  color: var(--ink);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid rgba(253, 250, 245, 0.5);
  transition: all 0.3s;
  display: inline-block;
}

.btn-white-outline:hover {
  border-color: var(--white);
}

.btn-medium{font-size:0.78rem; padding:0.8rem 1.8rem;}

/* SCROLL ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes floatLeft {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-18px) rotate(1deg);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translateY(-10px) rotate(2deg);
    }

    50% {
        transform: translateY(10px) rotate(-1deg);
    }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}
.reveal-delay-5 {
    transition-delay: 0.5s;
}
.reveal-delay-6 {
    transition-delay: 0.6s;
}
/*nav*/
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

nav.filled,
nav.scrolled {
  background: rgba(253, 250, 245, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sand);
  max-height: 80px;
}

.nav-logo img{
    width:auto;
    height:50px;
}


nav.filled .nav-toggle,
nav.scrolled .nav-toggle {
    color: var(--ink);
}

.nav-links ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position:relative;
}
nav.filled .nav-links a,
nav.scrolled .nav-links a {
  color: var(--ink);
}

.nav-links .nav-cta {display: none;}

.nav-links ul li.active > a,
.nav-links a:hover {color: var(--ember-light) !important;}

.nav-links ul li.active > a:after {
    content: "•";
    color: var(--ember-light);
    position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
}

.nav-cta {
  background: var(--ember);
  color: var(--white);
  padding: 0.65rem 1.5rem;
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover {background: var(--ember-light);}

nav.filled .nav-cta,
nav.scrolled .nav-cta{background: var(--ember);}
.submenu-toggle,
.nav-toggle {display: none;}

.nav-links ul li {position: relative; padding: 18px 0;}
.nav-links ul li:hover ul{display:block;}
.nav-links ul li ul {
    display: none;
    background: var(--white);
    position: absolute;
    z-index: 162;
    left: -50%;
    margin-top: 10px;
    box-shadow: 3px 5px 5px rgba(0,0,0,0.1);
}
.nav-links ul li ul li {
  padding: 10px 25px;
  white-space: nowrap;
  list-style-type:none;
}
.nav-links ul li > ul > li > a{
    color:var(--ink);
}
/*home*/
/* HERO */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1208 0%, #2d1f0e 40%, #1c2a1a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 12, 10, 0.3) 0%, rgba(15, 12, 10, 0.15) 50%, rgba(15, 12, 10, 0.6) 100%);
}

/* Floating image panels */
.hero-panel {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  /*opacity: 0.55;*/
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-1 {
  width: 320px;
  height: 420px;
  top: 8%;
  left: 5%;
  transform: rotate(-3deg);
}

.panel-2 {
  width: 240px;
  height: 320px;
  top: 20%;
  right: 8%;
  transform: rotate(2.5deg);
}

.panel-3 {
  width: 200px;
  height: 260px;
  bottom: 12%;
  left: 18%;
  transform: rotate(1.5deg);
}

.panel-4 {
  width: 260px;
  height: 180px;
  bottom: 18%;
  right: 15%;
  transform: rotate(-1.8deg);
}

/* Color-block panels using CSS */
.hero-panel {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-panel.p1 {
  width: 280px;
  height: 380px;
  top: 8%;
  left: 4%;
  transform: rotate(-3deg); 
}

.hero-panel.p2 {
  width: 240px;
  height: 300px;
  top: 15%;
  right: 6%;
  transform: rotate(2.5deg);
}

.hero-panel.p3 {
  width: 190px;
  height: 250px;
  bottom: 10%;
  left: 16%;
  transform: rotate(1.5deg);
}

.hero-panel.p4 {
  width: 300px;
  height: 200px;
  bottom: 16%;
  right: 10%;
  transform: rotate(-1.8deg);
}

.img-float1 {
    animation: floatLeft 17s ease-in-out infinite;
}

.img-float2 {
    animation: floatRight 20s ease-in-out infinite;
}

/* Landscape silhouette SVG overlay */
.hero-landscape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 35%;
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.home .hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  animation: fadeUp 1s ease 0.2s both;
}

.home .hero-eyebrow::before,
.home .hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-headline {
  font-family: var(--font-playfair);
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-headline em {
  font-style: italic;
  color: var(--sand);
}

.hero-subhead {
  font-family: var(--font-cormorant);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(253, 250, 245, 0.75);
  font-style: italic;
  margin-bottom: 2.8rem;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253, 250, 245, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(253, 250, 245, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* MANIFESTO */
.manifesto {
  padding: 8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
  color: var(--ink);
}

.manifesto h2 em {
  font-style: italic;
  color: var(--ember);
}

.manifesto p {
  font-family: var(--font-cormorant);
  font-size: 1.3rem;
  line-height: 1.8;
  color: #3d3530;
  margin-bottom: 1.5rem;
}

.manifesto-divider {
  width: 80px;
  height: 2px;
  background: var(--sand);
  margin: 3rem auto;
}

/* STATS STRIP */
.stats-strip { background: var(--ink); display: flex; justify-content: center; overflow: hidden; padding: 2.5rem 0;}
.stat-item { flex: 1; max-width: 220px; padding: 1.5rem; text-align: center; border-right: 1px solid rgba(253, 250, 245, 0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family:  var(--font-playfair); font-size: 2.8rem; display: block; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 0.4rem;}
.stat-label { font-size: 0.75rem; color: rgba(253, 250, 245, 0.5); letter-spacing: 0.15em; text-transform: uppercase; }


/* REGIONS */
.regions {
  padding: 6rem 2rem;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p {
  font-family: var(--font-cormorant);
  font-size: 1.2rem;
  color: #5a4f47;
  max-width: 600px;
  margin: 0 auto;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.region-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.region-card:hover {
  transform: translateY(-6px);
}

.region-card:hover .region-overlay {
  opacity: 0.7;
}

.region-card:hover .region-arrow {
  transform: translateX(4px);
}

.region-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

/* Texture overlay */
.region-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%);
    transition: opacity 0.4s;
}

.region-pattern {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

.region-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.6rem;
}

.region-name {
  font-family: var(--font-playfair);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.region-count {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.65);
  margin-bottom: 0.8rem;
}

.region-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}

.region-arrow {
  transition: transform 0.3s;
}

.region-tagline {
  font-family: var(--font-cormorant);
  font-size: 0.95rem;
  color: rgba(253, 250, 245, 0.75);
  font-style: italic;
  margin-bottom: 1rem;
}

/* FEATURED TOURS */
.featured:not(.tour-card, .price-card) {
  padding: 7rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tour-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(15, 12, 10, 0.12);
}

.tour-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.tour-img-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.tour-img-bg.kenya {
  background: linear-gradient(145deg, #BF360C 0%, #F4511E 50%, #FFAB40 100%);
}

.tour-img-bg.morocco {
  background: linear-gradient(145deg, #4A148C 0%, #7B1FA2 50%, #CE93D8 100%);
}

.tour-img-bg.bhutan {
  background: linear-gradient(145deg, #1B5E20 0%, #388E3C 50%, #A5D6A7 100%);
}

.tour-img-bg.sa {
  background: linear-gradient(145deg, #4E342E 0%, #795548 50%, #D7CCC8 100%);
}

.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ember);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-weight: 500;
}

.tour-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-region {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.tour-title {
  font-family: var(--font-playfair);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.tour-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #5a4f47;
  margin-bottom: 1.2rem;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--fog);
  margin-top: auto;
}

.tour-duration {
  font-size: 0.78rem;
  color: #7a6f67;
  letter-spacing: 0.05em;
}

.tour-price {
  font-family: var(--font-playfair);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ember);
}

.tour-price span {
  font-family: var(--font-dm);
  font-size: 0.72rem;
  font-weight: 400;
  color: #7a6f67;
}

.tour-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.7rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s;
}

.tour-link:hover {
  background: var(--ember);
}

/* EUROPAMUNDO STRIP */
.europamundo {
  background: var(--ink);
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 100%;
}

.euro-text {
  max-width: 560px;
  padding-left:3rem;
}

.europamundo .euro-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: block;
}

.euro-title {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.euro-title em {
  font-style: italic;
  color: var(--gold);
}

.euro-desc {
  font-family: var(--font-cormorant);
  font-size: 1.2rem;
  color: rgba(253, 250, 245, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.euro-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.euro-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: rgba(253, 250, 245, 0.75);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.euro-features li::before {
  content: '↗';
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.euro-visual {
  position: relative;
  height: 500px;
}

.euro-card {
  position: absolute;
  background: rgba(253, 250, 245, 0.06);
  border: 1px solid rgba(253, 250, 245, 0.1);
  border-radius: 4px;
  padding: 2rem;
}

.euro-card-1 {
  top: 0;
  left: 0;
  right: 3rem;
  height: 300px;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.15), rgba(200, 96, 42, 0.1));
}

.euro-card-2 {
  bottom: 0;
  right: 0;
  left: 3rem;
  height: 220px;
  background: linear-gradient(145deg, rgba(74, 103, 65, 0.2), rgba(44, 82, 52, 0.1));
  padding: 1.5rem;
}
.euro-card-2 .quest{
    font-size:0.72rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); margin-bottom:0.8rem;
}
.euro-card-2 .answer{
    font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-style:italic; color:rgba(253,250,245,0.8); line-height:1.6;
}
.euro-card-2 .author{margin-top:0.8rem; font-size:0.75rem; color:rgba(253,250,245,0.4);}

.euro-route {
  font-family: var(--font-playfair);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.euro-route-detail {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.euro-dots {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  position:relative; 
  flex-wrap:wrap;
  gap:2.8rem;
}

.euro-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  display:inline-block;
}

.euro-dots > div {
    position: relative;
    padding-bottom: 1.5rem;
}

.euro-dots > div:not(:last-child) .euro-dot::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 3px;
    width: 45px;
    height: 1px;
    background: rgba(201, 168, 76, 0.4);
}

.euro-line {
    font-size: 0.68rem;
    color: rgba(253,250,245,0.5);
    display: block;
    margin-top: 0.3rem;
    position: absolute;
    white-space: nowrap;
}

.euro-dot-label {
    font-size: 0.65rem;
    color: rgba(253, 250, 245, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: absolute;
    top: 14px;
    left: -10px;
    width: 50px;
    text-align: center;
}

@media only screen and (max-width: 575.98px) {
    .tc-meta, .tour-meta {
        flex-direction: column;
        align-items: inherit !important;
        gap: 3px;
    }

    .tc-price, .tour-price {
        text-align: right;
    }
}

/* EMOTIONAL SECTION */
.emotional {
  padding: 8rem 2rem;
  background: var(--cream);
  text-align: center;
}

.emotional-inner {
  max-width: 800px;
  margin: 0 auto;
}

.emotional h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.emotional h2 em {
  font-style: italic;
  color: var(--ember);
}

.emotional .divide {
    width: 60px;
    height: 2px;
    background: var(--sand);
    margin: 2.5rem auto;
}

.emotional p {
  font-family: var(--font-cormorant);
  font-size: 1.3rem;
  line-height: 1.8;
  color: #3d3530;
  margin-bottom: 1.5rem;
}

.quote-marks {
  font-family: var(--font-playfair);
  font-size: 6rem;
  color: var(--sand);
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
}

.testimonial {
  text-align: left;
  padding: 2rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--sand);
}

.testimonial-text {
  font-family: var(--font-cormorant);
  font-size: 1.05rem;
  font-style: italic;
  color: #3d3530;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-playfair);
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
}

.author-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}

.author-trip {
  font-size: 0.72rem;
  color: var(--ember);
  letter-spacing: 0.05em;
}

.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--ember) 0%, #a04520 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  font-family: var(--font-cormorant);
  font-size: 1.25rem;
  color: rgba(253, 250, 245, 0.85);
  margin-bottom: 2.5rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

/* FOOTER */
footer.large {
  background: var(--ink);
  padding: 5rem 2rem 2.5rem;
  color: rgba(253, 250, 245, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width:1200px;
  margin: 0 auto;
  padding-bottom:4rem;
}

.footer-brand .logo {
  font-family: var(--font-playfair);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.footer-brand .logo img{
  width: auto;
  height: 50px;
}

.footer-brand p {
  font-family: var(--font-cormorant);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(253, 250, 245, 0.5);
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(253, 250, 245, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 250, 245, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  max-width:1200px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(253, 250, 245, 0.3);
}

.footer-tagline {
  font-family: var(--font-cormorant);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(253, 250, 245, 0.35);
}

/*footer for page*/
footer.default {
  background: var(--ink);
  border-top: 1px solid rgba(253, 250, 245, 0.06);
  padding: 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
footer.default .navigate {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

footer.default a {
  color: rgba(253, 250, 245, 0.5);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

footer.default a:hover {
  color: var(--gold);
}

footer.default .footer-logo {
  font-family: var(--font-playfair);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}

footer.default .footer-logo  img {
    width: auto;
    height: 40px;
}
/*end footer for page*/

/*newsletter*/
.newsletter {
    background: var(--ink);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow-x: clip;
}
.newsletter::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform:translate(10%,-40%);
    background-size: contain;
    background-image: url("../images/leaft.png");
    background-repeat: no-repeat;
    opacity:.15;
}
.newsletter h2 {
    font-family: var(--font-playfair);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}
.newsletter p {
    font-family: var(--font-cormorant);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
}
.newsletter input {
    min-width: 250px;
}

/* Decorative landscape patterns */
.landscape-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

/*about*/
.about-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--ink);
  padding: 11rem 4rem 5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Diagonal line texture */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-55deg,
      transparent 0, transparent 18px,
      rgba(201, 168, 76, 0.04) 18px, rgba(201, 168, 76, 0.04) 19px);
}

/* Large italic ghost word */
.hero-ghost-word {
  position: absolute;
  font-family: var(--font-playfair);
  font-size: 22rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  bottom: -3rem;
  left: -1rem;
  pointer-events: none;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--ember), var(--gold), transparent);
}

.breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.3);
  margin-bottom: 2rem;
  position: relative;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.4rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-playfair);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  position: relative;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-pull-quote {
  font-family: var(--font-cormorant);
  font-size: 1.2rem;
  color: rgba(253, 250, 245, 0.6);
  line-height: 1.75;
  max-width: 460px;
  position: relative;
  border-left: 2px solid var(--ember);
  padding-left: 1.5rem;
}

/* Right column — stacked visual cards */
.hero-right {
  position: relative;
  background: var(--cream);
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}

.hero-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem 2rem;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
}

.hero-card-content {
  position: relative;
  z-index: 2;
}

.hc-label {
  font-family: var(--font-playfair);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.hc-sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.55);
}

/* Decorative overlapping stat chip */
.hero-stat-chip {
  position: absolute;
  bottom: -1px;
  right: 0;
  background: var(--ink);
  color: var(--white);
  padding: 1.2rem 2rem;
  z-index: 10;
  text-align: center;
}

.hsc-num {
  font-family: var(--font-playfair);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hsc-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.5);
}

/* ─── ORIGIN STORY ─── */
.origin {
  padding: 7rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  max-width: 1300px;
  margin: 0 auto;
}

.origin-visual {
  position: relative;
}

.origin-img-stack {
    position: relative;
    height: 520px;
}

.ois-card {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
}

.ois-card img{width:100%; height:100%;object-fit:cover;object-position:center;}

.ois-1 {
  width: 78%;
  height: 360px;
  top: 0;
  left: 0;
}

.ois-2 {
  width: 58%;
  height: 270px;
  bottom: 0;
  right: 0;
}

.ois-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
}

.ois-label span {
  font-family: var(--font-playfair);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  display: block;
}

.ois-label small {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Year badge */
.year-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(15, 12, 10, 0.15);
  z-index: 10;
  text-align: center;
}

.year-badge-num {
  font-family: var(--font-playfair);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ember);
  line-height: 1;
}

.year-badge-label {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a8f87;
}

.origin-text h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.8rem;
}

.origin-text h2 em {
  font-style: italic;
  color: var(--ember);
}

.origin-text p {
  font-family: var(--font-cormorant);
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3d3530;
  margin-bottom: 1.2rem;
}

.origin-divider {
  width: 60px;
  height: 2px;
  background: var(--sand);
  margin: 2rem 0;
}

.founder-sig {
  font-family: var(--font-cormorant);
  font-size: 1.3rem;
  font-style: italic;
  color: #5a4f47;
}

.founder-sig strong {
  font-weight: 600;
  color: var(--ink);
  display: block;
  font-size: 0.95rem;
  font-style: normal;
  font-family: var(--font-dm);
  margin-top: 0.2rem;
}

.founder-sig small {
  font-size: 0.75rem;
  font-style: normal;
  color: #9a8f87;
  letter-spacing: 0.05em;
}

/* ─── MISSION STRIP ─── */
.mission-strip {
  background: var(--ink);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.mission-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 40px 40px;
}

.mission-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}

.mission-item {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(201, 168, 76, 0.3);
}

.mission-item:first-child {
  border-color: var(--ember);
}

.mission-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}

.mission-title {
  font-family: var(--font-playfair);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.mission-title em {
  font-style: italic;
  color: var(--gold);
}

.mission-text {
  font-family: var(--font-cormorant);
  font-size: 1.05rem;
  color: rgba(253, 250, 245, 0.55);
  line-height: 1.7;
}

/* ─── TEAM ─── */
.team {
  padding: 7rem 2rem;
  background: var(--cream);
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.team-header-text h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}

.team-header-text p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: #5a4f47;
  max-width: 400px;
  line-height: 1.6;
  margin-top: 0.8rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  position: relative;
}

.team-card-img {
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.4rem;
}

.team-card-img-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-img-inner {
  transform: scale(1.05);
}
.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 55%);
}

.tc-img-1 {
  background: linear-gradient(155deg, #4E342E 0%, #8D6E63 40%, #D7CCC8 100%);
}

.tc-img-2 {
  background: linear-gradient(155deg, #1B5E20 0%, #388E3C 50%, #A5D6A7 100%);
}

.tc-img-3 {
  background: linear-gradient(155deg, #1A237E 0%, #3949AB 50%, #9FA8DA 100%);
}

.tc-img-4 {
  background: linear-gradient(155deg, #4A148C 0%, #7B1FA2 50%, #CE93D8 100%);
}

/* Destination specialist tag on card */
.tc-dest-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 12, 10, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.team-name {
  font-family: var(--font-playfair);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.team-bio {
  font-family: var(--font-cormorant);
  font-size: 0.98rem;
  color: #5a4f47;
  line-height: 1.6;
}

.team-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.8rem;
}

.tc-country {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(15, 12, 10, 0.07);
  color: #5a4f47;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

/* ─── VALUES ─── */
.values {
  padding: 7rem 2rem;
  background: var(--white);
}

.values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.values-inner h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.values-inner>p {
  font-family: var(--font-cormorant);
  font-size: 1.15rem;
  color: #5a4f47;
  max-width: 600px;
  margin-bottom: 4rem;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.value-card {
  padding: 2.5rem;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.value-card:hover {
  border-color: var(--sand);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-title {
  font-family: var(--font-playfair);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.value-text {
  font-family: var(--font-cormorant);
  font-size: 1.05rem;
  color: #3d3530;
  line-height: 1.7;
}

/* ─── STATS ─── */
.stats-band {
  background: linear-gradient(135deg, var(--ember) 0%, #a04520 100%);
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='0.5' fill='rgba(255,255,255,0.25)'/%3E%3C/svg%3E");
}

/* ─── RESPONSIBLE TRAVEL ─── */
.responsible {
  padding: 7rem 2rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.resp-text h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.resp-text h2 em {
  font-style: italic;
  color: var(--sage);
}

.resp-text p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.resp-commitments {
  list-style: none;
  margin-top: 2rem;
}

.resp-commitments li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.88rem;
}

.resp-commitments li::before {
  content: '→';
  color: var(--sage);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.resp-visual {
  position: relative;
}

.resp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.resp-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid var(--sand);
}

.resp-card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  display: block;
}

.resp-card-title {
  font-family: var(--font-playfair);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.resp-card-text {
  font-size: 0.82rem;
  color: #5a4f47;
  line-height: 1.6;
}

/* ─── PARTNERSHIPS ─── */
.partnerships {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--sand);
}

.partnerships h2 {
  font-family: var(--font-playfair);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.partnerships>p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: #5a4f47;
  margin-bottom: 3rem;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.p-logo {
  font-family: var(--font-playfair);
  font-size: 1.1rem;
  font-weight: 700;
  color: #c0b5ad;
  transition: color 0.3s;
  cursor: default;
  letter-spacing: 0.03em;
  text-decoration:none;
  cursor:pointer;
}

.p-logo:hover {
  color: var(--ink);
  text-decoration:none;
}
a.p-logo {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
}
a.p-logo img{
    width:130px;
    height:70px;
  object-fit: contain;
    margin-bottom:5px;
}
/* ─── FINAL CTA ─── */
.about-cta {
  background:linear-gradient(135deg, #0E2255 0%, #1E3A8A 100%);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0, transparent 30px, rgba(201, 168, 76, 0.03) 30px, rgba(201, 168, 76, 0.03) 31px);
}

.about-cta h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  line-height: 1.15;
}

.about-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.about-cta p {
  font-family: var(--font-cormorant);
  font-size: 1.2rem;
  color: rgba(253, 250, 245, 0.6);
  margin-bottom: 3rem;
  position: relative;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-gold:hover {
  background: #dab955;
}

.btn-ghost {
  background: transparent;
  color: rgba(253, 250, 245, 0.7);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(253, 250, 245, 0.2);
  transition: all 0.3s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(253, 250, 245, 0.5);
  color: var(--white);
}

/*contact*/
/* HERO */
.contact-hero {
  padding: 11rem 3rem 6rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero-geo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0f0c0a 0%, #1a1208 60%, #0d1a0d 100%);
}

/* Decorative grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Golden accent blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.blob-1 {
  width: 500px;
  height: 500px;
  right: -100px;
  top: -100px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
}

.blob-2 {
  width: 300px;
  height: 300px;
  left: 20%;
  bottom: -50px;
  background: radial-gradient(circle, rgba(200, 96, 42, 0.1) 0%, transparent 70%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.contact-hero h1 {
  font-family: var(--font-playfair);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.contact-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.contact-hero p {
  font-family: var(--font-cormorant);
  font-size: 1.25rem;
  color: rgba(253, 250, 245, 0.65);
  line-height: 1.7;
  max-width: 520px;
}

/* CONTACT LAYOUT */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  min-height: 700px;
}

/* LEFT SIDEBAR */
.contact-sidebar {
  background: var(--cream);
  padding: 5rem 3rem;
  border-right: 1px solid var(--sand);
}

.sidebar-section {
  margin-bottom: 3.5rem;
}

.sidebar-section:last-child {
  margin-bottom: 0;
}

.sidebar-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: block;
}

.sidebar-heading {
  font-family: var(--font-playfair);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.sidebar-text {
  font-family: var(--font-cormorant);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3d3530;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a8f87;
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
}

.contact-info-value a {
  color: var(--ember);
  text-decoration: none;
}

.contact-info-value a:hover {
  text-decoration: underline;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(15, 12, 10, 0.06);
  font-size: 0.85rem;
}

.hours-day {
  color: #5a4f47;
}

.hours-time {
  color: var(--ink);
  font-weight: 500;
}

.hours-time.closed {
  color: #9a8f87;
  font-style: italic;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--sand);
  border-radius: 2px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* FORM PANEL */
.contact-form-panel {
  background: var(--white);
  padding: 5rem 4rem;
}

.form-heading {
  font-family: var(--font-playfair);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.form-subheading {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: #5a4f47;
  margin-bottom: 2.5rem;
  font-style: italic;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a4f47;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-dm);
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background-image: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a8f87' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-family: var(--font-dm);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--ember);
}

.form-note {
  font-size: 0.75rem;
  color: #9a8f87;
  margin-top: 1rem;
  line-height: 1.5;
  text-align: center;
}

.form-note a {
  color: var(--ember);
  text-decoration: none;
}

/* RESPONSE TIME BADGE */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 2px;
  padding: 0.5rem 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b5b2a;
  font-weight: 500;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* FAQ STRIP */
.faq-strip {
  background:linear-gradient(135deg, #0E2255 0%, #1E3A8A 50%, #0E2255 100%);
  padding: 5rem 2rem;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-strip h2 {
  font-family: var(--font-playfair);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.faq-strip>.faq-inner>p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: rgba(253, 250, 245, 0.55);
  margin-bottom: 3rem;
  font-style: italic;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(253, 250, 245, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(253, 250, 245, 0.08);
}

.faq-item:last-child {
  border: none;
}

.faq-q {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(253, 250, 245, 0.04);
}

.faq-q::after {
  content: '+';
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a-inner {
  padding: 0 2rem 1.5rem;
  font-family: var(--font-cormorant);
  font-size: 1.05rem;
  color: rgba(253, 250, 245, 0.6);
  line-height: 1.7;
}

/* VISIT US MAP PLACEHOLDER */
.visit-strip {
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--cream);
  max-width: 100%;
}

.visit-text h2 {
  font-family: var(--font-playfair);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.visit-text p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: #3d3530;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.address-block {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 1.8rem 2rem;
}

.address-line {
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.address-line:last-child {
  color: var(--ember);
  font-weight: 500;
}

.map-placeholder {
  background: linear-gradient(135deg, #1a1208 0%, #2a2010 50%, #1a2810 100%);
  border-radius: 4px;
  height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  text-align: center;
  position: relative;
  z-index: 2;
}

.map-pin-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.map-pin-label {
  font-family: var(--font-playfair);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}

.map-pin-sub {
  font-size: 0.72rem;
  color: rgba(253, 250, 245, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/*destination*/
/* HERO */
.dest-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.dest-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Decorative Japanese-inspired elements */
.dest-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 25% 40%, rgba(255, 200, 200, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(200, 100, 100, 0.3) 0%, transparent 40%);
}

/* Large kanji-inspired circles */
.circle-deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.c1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.c2 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 10%;
  border-color: rgba(255, 255, 255, 0.05);
}

.c3 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 20%;
  border-color: rgba(255, 200, 200, 0.15);
}

.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.0) 70%);
}

.dest-hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.dest-region-path {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.55);
  margin-bottom: 1rem;
}

.dest-region-path a {
  color: var(--gold);
  text-decoration: none;
}

.dest-hero-title {
  font-family: var(--font-playfair);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.dest-hero-subtitle {
  font-family: var(--font-cormorant);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(253, 250, 245, 0.7);
  max-width: 500px;
  line-height: 1.5;
}

.dest-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: right;
  flex-shrink: 0;
}

.dest-stat-num {
  font-family: var(--font-playfair);
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  display: block;
  line-height: 1;
}

.dest-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.45);
}

/* INTRO */
.dest-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.dest-intro-text h2 {
  font-family: var(--font-playfair);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.dest-intro-text h2 em {
  font-style: italic;
  color: var(--ember);
}

.dest-intro-text p {
  font-family: var(--font-cormorant);
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3d3530;
  margin-bottom: 1rem;
}

.dest-intro-visual {
  position: relative;
}

.visual-stack {
  position: relative;
  height: 460px;
}

.visual-card {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
}


.visual-card img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.vc-1 {
  width: 75%;
  height: 300px;
  top: 0;
  right: 0;
  background-image: linear-gradient(145deg, #8B1A1A, #C62828, #FCE4EC);
}

.vc-2 {
    width: 55%;
    height: 220px;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(145deg, #1A237E, #283593, #7986CB);
}

.vc-3 {
  width: 40%;
  height: 130px;
  bottom: 70px;
  right: 5%;
  background-image: linear-gradient(145deg, #1B5E20, #2E7D32, #81C784);
}

.vc-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-playfair);
  font-size: 0.9rem;
  color: white;
  font-weight: 700;
}

.vc-sublabel {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

/* HIGHLIGHTS STRIP */
.highlights-strip {
  background: var(--ink);
  padding: 5rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-item {
  padding: 2rem;
  border-right: 1px solid rgba(253, 250, 245, 0.08);
}

.highlight-item:last-child {
  border: none;
}

.highlight-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.highlight-title {
  font-family: var(--font-playfair);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.highlight-desc {
  font-size: 0.82rem;
  color: rgba(253, 250, 245, 0.5);
  line-height: 1.6;
}

/* WHEN TO GO */
.when-to-go {
  padding: 6rem 2rem;
  background: var(--cream);
}

.when-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.when-to-go h2 {
  font-family: var(--font-playfair);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.months-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.4rem;
}

.month {
  text-align: center;
}

.month-name {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a8f87;
  margin-bottom: 0.4rem;
  display: block;
}

.month-bar {
  height: 60px;
  border-radius: 3px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.month-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 3px;
}

/* Global color & opacity classes */
.peak {
  background: var(--ember);
}

.great {
  background: var(--accent);
  opacity: 0.85;
}

.good {
  background: var(--sage);
  opacity: 0.7;
}

.shoulder {
  background: var(--gold);
  opacity: 0.6;
}

.low {
  background: var(--sand);
  opacity: 0.4;
}

/* Height percentage for bar fills */
.month-bar-fill.peak {
  height: 100%;
}

.month-bar-fill.great {
  height: 85%;
}

.month-bar-fill.good {
  height: 65%;
}

.month-bar-fill.shoulder {
  height: 40%;
}

.month-bar-fill.low {
  height: 20%;
}

.month-label {
  font-size: 0.55rem;
  color: #9a8f87;
  margin-top: 0.3rem;
  display: block;
}

.when-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #5a4f47;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.when-note {
  font-family: var(--font-cormorant);
  font-size: 1rem;
  color: #5a4f47;
  margin-top: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

/* TOURS */
.dest-tours {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dest-tours h2 {
  font-family: var(--font-playfair);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.dest-tours>p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: #5a4f47;
  margin-bottom: 3rem;
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
}

.tour-row {
  background: var(--white);
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem 2rem;
  transition: background 0.2s;
}

.tour-row:hover {
  background: var(--cream);
}

.tour-row-num {
  font-family: var(--font-playfair);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--sand);
  letter-spacing: -0.03em;
}

.tour-row-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.tour-row-name {
  font-family: var(--font-playfair);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.tour-row-desc {
  font-size: 0.8rem;
  color: #7a6f67;
}

.tour-row-duration {
  font-size: 0.78rem;
  color: #9a8f87;
  white-space: nowrap;
}

.tour-row-price {
  font-family: var(--font-playfair);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ember);
  white-space: nowrap;
}

.tour-row-price span {
  font-family: var(--font-dm);
  font-size: 0.68rem;
  color: #9a8f87;
  font-weight: 400;
}

.tour-row-cta {
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
}

.tour-row-cta:hover {
  background: var(--ember);
}

/* PRACTICAL INFO */
.practical {
  padding: 6rem 2rem;
  background: var(--cream);
}

.practical-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.practical h2 {
  font-family: var(--font-playfair);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.prac-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 2rem;
}

.prac-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.prac-title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.prac-content {
  font-family: var(--font-cormorant);
  font-size: 1rem;
  color: #3d3530;
  line-height: 1.7;
}

/* CTA */
.dest-cta {
  background: var(--ember);
  padding: 5rem 2rem;
  text-align: center;
}

.dest-cta h2 {
  font-family: var(--font-playfair);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.dest-cta p {
  font-family: var(--font-cormorant);
  font-size: 1.2rem;
  color: rgba(253, 250, 245, 0.85);
  margin-bottom: 2rem;
}

/*destinations*/
/* PAGE HEADER */
.page-header {
  padding: 12rem 2rem 6rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f0c0a 0%, #1a1208 50%, #0f1a0e 100%);
}

.partner-header .page-header-bg {
  background: linear-gradient(135deg, #0f0c0a 0%, #1a1208 100%);
}

.page-header-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

.page-header-content {
  position: relative;
  max-width: 700px;
}

.page-header-deco {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.1;
    background-image: radial-gradient(var(--gold) 1px, transparent 1px);
    background-size: 20px 20px;
}

.page-header .section-tag {
  color: var(--gold);
}

.page-header h1 {
  font-family: var(--font-playfair);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.page-header h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-header p {
  font-family: var(--font-cormorant);
  font-size: 1.3rem;
  color: rgba(253, 250, 245, 0.65);
  line-height: 1.7;
}

/* FILTER TABS */
.filter-bar {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--sand);
    position: sticky;
    top: 80px;
    z-index: 50;
}

.filter-inner {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: thin;
}

.filter-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a8f87;
  margin-right: 1rem;
  white-space:nowrap;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--sand);
    border-radius: 2px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    color: #5a4f47;
    font-family: var(--font-dm);
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* REGION SECTIONS */
.region-section {
  padding: 5rem 2rem;
}

.region-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--sand);
}

.region-number {
  font-family: var(--font-playfair);
  font-size: 5rem;
  font-weight: 900;
  color: var(--sand);
  line-height: 0.8;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: -0.04em;
}

.region-section .region-name {
  font-family: var(--font-playfair);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.region-tagline-lg {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  font-style: italic;
  color: #7a6f67;
  margin-top: 0.3rem;
}

.region-desc {
  font-family: var(--font-cormorant);
  font-size: 1.05rem;
  color: #5a4f47;
  max-width: 400px;
  line-height: 1.6;
  text-align: right;
}

/* COUNTRY CARDS */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.country-card {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(15, 12, 10, 0.15);
}

.country-img {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.country-img-inner {
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.country-img-inner {
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.country-card:hover .country-bg-inner,
.country-card:hover .country-img-inner {
  transform: scale(1.06);
}

.country-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%);
}

/* Country-specific gradients */
.bg-default {
  background: linear-gradient(145deg, #4E342E 0%, #795548 40%, #BCAAA4 80%, #8D6E63 100%);
}

.country-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.6rem;
}

.country-flag-symbol {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.country-name {
  font-family: var(--font-playfair);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.country-snippet {
  font-size: 0.78rem;
  color: rgba(253, 250, 245, 0.75);
  line-height: 1.4;
  margin-bottom: 0.8rem;
  font-style: italic;
  font-family: var(--font-cormorant);
  font-size: 0.9rem;
}

.country-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.country-tours {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.55);
}

.country-cta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Europe special card */
.europe-feature {
  background: var(--ink);
  border-radius: 4px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.euro-feature-text h3 {
  font-family: var(--font-playfair);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.euro-feature-text h3 em {
  font-style: italic;
  color: var(--gold);
}

.euro-feature-text p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: rgba(253, 250, 245, 0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.euro-tours-list {
  list-style: none;
}

.euro-tours-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(253, 250, 245, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.euro-tours-list li:last-child {
  border: none;
}

.euro-tour-name {
  font-size: 0.88rem;
  color: rgba(253, 250, 245, 0.8);
}

.euro-tour-days {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: right;
}

.euro-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 320px;
}

.euro-mini-card {
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
}
.euro-mini-card-country{font-family:var(--font-playfair);font-size:1rem;color:white;font-weight:700;}
.euro-mini-card-city{font-size:0.7rem;color:rgba(255,255,255,0.6);letter-spacing:0.1em;text-transform:uppercase;}
.euro-mini-card-viewall{color:var(--gold);font-size:0.75rem;letter-spacing:0.1em;text-transform:uppercase;text-decoration:none;flex-shrink:0;}
.euro-mini-1 {
  background: linear-gradient(145deg, #1C3A5F, #3A6186);
}

.euro-mini-2 {
  background: linear-gradient(145deg, #4A1942, #7B3F9E);
}

.euro-mini-3 {
    background: linear-gradient(145deg, #1B4332, #2D6A4F);
    grid-column: 1 / -1;
    height: 140px;
    justify-content: space-between;
}

/*europamundo*/
/* ─── CINEMATIC HERO ─── */
.euro-hero {
  min-height: 100vh;
  background: var(--euro-blue);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5rem 2rem;
}

/* Multi-layer background */
.euro-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a1e36 0%, #1C3A5F 45%, #2E5F8A 100%);
}

/* Star/dot texture */
.euro-stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.06;
  animation: starsDrift 60s linear infinite;
}

@keyframes starsDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 60px;
  }
}

/* Arc of EU stars */
.eu-stars-arc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 380px;
  height: 380px;
  opacity: 0.12;
}

/* Floating country silhouette panels */
.hero-country-panel {
  position: absolute;
  border-radius: 3px;
  overflow: hidden;
  opacity: 0.35;
}

.hcp-1 {
  width: 260px;
  height: 340px;
  top: 8%;
  right: 6%;
  transform: rotate(2deg);
  background: linear-gradient(145deg, #4A1942, #7B3F9E, #D1A8FF);
}

.hcp-2 {
  width: 200px;
  height: 260px;
  top: 15%;
  right: 26%;
  transform: rotate(-2.5deg);
  background: linear-gradient(145deg, #1B4332, #2D6A4F, #74c69d);
}

.hcp-3 {
  width: 170px;
  height: 220px;
  top: 30%;
  right: 14%;
  transform: rotate(1.5deg);
  background: linear-gradient(145deg, #7B2D00, #C8602A, #F4A261);
}

.hcp-4 {
  width: 230px;
  height: 160px;
  bottom: 22%;
  right: 8%;
  transform: rotate(-1deg);
  background: linear-gradient(145deg, #0D3B6E, #1565C0, #90CAF9);
}

.euro-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 30, 54, 0.85) 0%, rgba(10, 30, 54, 0.2) 60%, transparent 100%);
}

.euro-hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 4rem;
  padding-top: 40px;
}

.euro-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.euro-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.euro-hero-h1 {
  font-family: var(--font-playfair);
  font-size: clamp(3.2rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.euro-hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.euro-hero-sub {
  font-family: var(--font-cormorant);
  font-size: 1.25rem;
  color: rgba(253, 250, 245, 0.65);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero stats column */
.euro-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-shrink: 0;
  text-align: right;
}

.ehs-num {
  font-family: var(--font-playfair);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}

.ehs-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.4);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(253, 250, 245, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scPulse 2s ease-in-out infinite;
}

/* ─── PARTNERSHIP INTRO ─── */
.partnership-intro {
  padding: 7rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.pi-text h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.pi-text h2 em {
  font-style: italic;
  color: var(--euro-blue-mid);
}

.pi-text p {
  font-family: var(--font-cormorant);
  font-size: 1.15rem;
  line-height: 1.8;
  color: #3d3530;
  margin-bottom: 1.2rem;
}

.pi-creds {
    display: flex;
    gap: 0;
    margin-top: 2.5rem;
    border: 1px solid var(--sand);
    border-radius: 4px;
    overflow: hidden;
    flex-wrap: wrap;
}

.pi-cred {
  flex: 1;
  padding: 1.4rem 1rem;
  text-align: center;
  border-right: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.2rem;
}

.pi-cred:last-child {
  border: none;
}

.pi-cred-num {
  font-family: var(--font-playfair);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--euro-blue);
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pi-cred-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a8f87;
}

/* Visual side */
.pi-visual {
  position: relative;
}

.pi-map-card {
  background: var(--euro-blue);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pi-map-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0a1e36 0%, #1C3A5F 60%, #2E5F8A 100%);
}

/* Europe outline dots */
.pi-map-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.08;
}

/* Route line decoration */
.pi-route {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.25;
}

.pi-map-content {
  position: relative;
  z-index: 2;
}

.pi-map-title {
  font-family: var(--font-playfair);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pi-map-sub {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}


/* Destination chips on map card */
.dest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dest-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  letter-spacing: 0.06em;
}

.dest-chip.gold {
  background: rgba(201, 168, 76, 0.2);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
}

/* Floating testimonial card */
.pi-testimonial {
  position: absolute;
  top: -2rem;
  right: -2rem;
  background: var(--white);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 16px 48px rgba(15, 12, 10, 0.15);
  max-width: 240px;
  z-index: 10;
}

.pi-test-stars {
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
}

.pi-test-text {
  font-family: var(--font-cormorant);
  font-size: 0.95rem;
  font-style: italic;
  color: #3d3530;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.pi-test-name {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink);
}

.pi-test-trip {
  font-size: 0.65rem;
  color: var(--ember);
}

/* ─── WHY EUROPAMUNDO ─── */
.why-euro {
  background: var(--cream);
  padding: 7rem 2rem;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 5rem;
}

.why-header h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.why-header p {
  font-family: var(--font-cormorant);
  font-size: 1.15rem;
  color: #5a4f47;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  border-color: var(--sand);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 12, 10, 0.08);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.why-title {
  font-family: var(--font-playfair);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.why-text {
  font-family: var(--font-cormorant);
  font-size: 1.05rem;
  color: #3d3530;
  line-height: 1.7;
}

/* ─── FEATURED TOURS GRID ─── */
.euro-tours {
  padding: 7rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.euro-tours-header {
  margin-bottom: 3rem;
}

.euro-tours-header h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.euro-tours-header p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: #5a4f47;
  max-width: 600px;
  line-height: 1.7;
}

/* Filter tabs */
.tour-filter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tf-btn {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  color: #5a4f47;
  font-family: var(--font-dm);
  transition: all 0.2s;
}

.tf-btn:hover,
.tf-btn.active {
  background: var(--euro-blue);
  color: var(--white);
  border-color: var(--euro-blue);
}

.tours-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tour-card.featured {
  grid-column: span 2;
}

.tc-img {
  position: relative;
  overflow: hidden;
}

.tc-img-inner {
  transition: transform 0.5s ease;
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;
}

/* Tour image gradients by region */
.tg-default {
    background-image: linear-gradient(145deg, #1C3A5F 0%, #2E5F8A 50%, #89ABE3 100%);
}


.tour-card:hover .tc-img-inner {
  transform: scale(1.04);
}

.tc-img-inner.h200 {
  height: 200px;
}

.tc-img-inner.h260 {
  height: 260px;
}

.tc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.tc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-weight: 500;
}

.tc-badge.blue {
  background: var(--euro-blue);
}

.tc-badge.gold-bg {
  background: var(--gold);
  color: var(--ink);
}

.tc-countries-row {
  position: absolute;
  bottom: 0.8rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.tc-country-chip {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.6rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  letter-spacing: 0.06em;
}

.tc-body {
  padding: 1.6rem;
  
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tc-region {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--euro-blue-mid);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.tc-title {
  font-family: var(--font-playfair);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.tc-desc {
  font-size: 0.83rem;
  color: #5a4f47;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.tc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--fog);
  margin-top: auto;
}

.tc-duration {
  font-size: 0.75rem;
  color: #9a8f87;
}

.tc-price {
  font-family: var(--font-playfair);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ember);
}

.tc-price span {
  font-family: var(--font-dm);
  font-size: 0.65rem;
  font-weight: 400;
  color: #9a8f87;
}
.tc-cta {
    margin-top: 1rem;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}
.tc-link {
  display: block;
  text-align: center;
  padding: 0.7rem;
  align-content: center;
  background: var(--euro-blue);
  color: var(--white);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s;
}

.tc-link.tc-outline{
    background:transparent;
    border:1px solid var(--euro-blue-mid);
    color:var(--ink);
}

.tc-link:hover {
  background: var(--euro-blue);
  color:#fff;
}

/* View more */
.view-all-row {
  text-align: center;
  margin-top: 3rem;
}

.btn-euro {
  background: var(--euro-blue);
  color: var(--white);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
}

.btn-euro:hover {
  background: var(--euro-blue-mid);
}

/* ─── HOW IT WORKS ─── */
.how-euro {
  background: var(--euro-blue);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.how-euro-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.04;
}

.how-euro-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-euro h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.how-euro>.how-euro-inner>p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: rgba(253, 250, 245, 0.55);
  margin-bottom: 4rem;
  max-width: 560px;
  line-height: 1.7;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.how-step {
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.how-step:last-child {
  border: none;
}

.how-step-num {
  font-family: var(--font-playfair);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.how-step h3 {
  font-family: var(--font-playfair);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.how-step p {
  font-size: 0.83rem;
  color: rgba(253, 250, 245, 0.5);
  line-height: 1.6;
}

.how-step-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.8rem;
}

/* ─── TESTIMONIALS ─── */
.euro-testimonials {
  padding: 7rem 2rem;
  background: var(--cream);
}

.et-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.et-inner h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3.5rem;
}

.et-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.et-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.2rem;
  border: 1px solid var(--sand);
  position: relative;
}

.et-card::before {
  content: '\201C';
  font-family: var(--font-playfair);
  font-size: 4rem;
  color: var(--sand);
  line-height: 0.8;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
}

.et-stars {
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.et-text {
  font-family: var(--font-cormorant);
  font-size: 1.05rem;
  font-style: italic;
  color: #3d3530;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.et-author {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}

.et-trip {
  font-size: 0.7rem;
  color: var(--euro-blue-mid);
  letter-spacing: 0.05em;
}

/* ─── DESTINATIONS TICKER ─── */
.destinations-ticker {
  background: var(--ink);
  padding: 1.8rem 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}

.ticker-item {
  padding: 0 2.5rem;
  font-family: var(--font-playfair);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(253, 250, 245, 0.3);
  white-space: nowrap;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(253, 250, 245, 0.08);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ticker-item.highlight {
  color: var(--gold);
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ember);
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── INCLUSIONS TABLE ─── */
.inclusions {
  padding: 6rem 2rem;
  background: var(--white);
}

.inc-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.inc-inner h2 {
  font-family: var(--font-playfair);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.inc-inner>p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: #5a4f47;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.inc-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--cream);
  border-radius: 3px;
}

.inc-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--euro-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.inc-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.inc-text span {
  font-size: 0.78rem;
  color: #7a6f67;
  line-height: 1.4;
}

.inc-note {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--sand);
  border-radius: 3px;
  background: rgba(28, 58, 95, 0.04);
}

.inc-note p {
  font-family: var(--font-cormorant);
  font-size: 1rem;
  color: #5a4f47;
  line-height: 1.6;
  font-style: italic;
}

/* ─── CTA ─── */
.euro-cta {
  background: linear-gradient(135deg, var(--euro-blue) 0%, #0a1e36 100%);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.euro-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.04;
}

.euro-cta-content {
  position: relative;
  z-index: 2;
}

.euro-cta h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.euro-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.euro-cta p {
  font-family: var(--font-cormorant);
  font-size: 1.2rem;
  color: rgba(253, 250, 245, 0.6);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position:relative;
  z-index:1;
}


@media (max-width: 900px) {
    .pi-cred{min-width:50%;}
    .pi-map-card{padding:3rem 2rem;}
}

/*itinerary*/
/* HERO */
.itin-hero {
  height: 100vh;
  min-height: 550px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.itin-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(145deg, #1a0000 0%, #6B0000 40%, #C62828 75%, #FCE4EC 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.itin-hero-deco {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: radial-gradient(ellipse at 80% 30%, rgba(255, 200, 200, 0.5) 0%, transparent 60%);
}

.itin-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
}

.itin-hero-content {
  position: relative;
  z-index: 5;
  padding: 4rem 2rem;
}

.itin-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.itin-badge {
  background: rgba(253, 250, 245, 0.12);
  border: 1px solid rgba(253, 250, 245, 0.2);
  color: rgba(253, 250, 245, 0.8);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.itin-badge.hot {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--white);
}

.itin-hero-title {
  font-family: var(--font-playfair);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  max-width: 750px;
}

.itin-hero-sub {
  font-family: var(--font-cormorant);
  font-size: 1.2rem;
  color: rgba(253, 250, 245, 0.7);
  font-style: italic;
  margin-bottom: 2rem;
  max-width:700px;
}

.itin-quick-facts {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.qf-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.4);
  display: block;
  margin-bottom: 0.2rem;
}

.qf-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

/* TABS NAV */
.tabs-bar {
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 80px;
  z-index: 50;
}

.tabs-inner {
  display: flex;
  padding: 0 2rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.tab-btn {
  padding: 1.2rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #9a8f87;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font-dm);
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--ink);
  border-bottom-color: var(--ember);
}

/* MAIN LAYOUT */
.itin-main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  align-items: start;
}


/* SECTIONS */
.itin-section {
  margin-bottom: 5rem;
}

.itin-section h2 {
  font-family: var(--font-playfair);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.itin-section p,
.itin-section li {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3d3530;
}


.itin-section h1,
.itin-section h3,
.itin-section h4,
.itin-section h5,
.itin-section p {
  margin-bottom: 1rem;
}

.itin-content ul:not(.highlights-list),
.itin-content ol {
    padding-left: 20px;
}
/* HIGHLIGHTS GRID */
.highlights-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--cream);
  border-radius: 3px;
}

.hl-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hl-text {
  font-family: var(--font-cormorant);
  font-size: 0.95rem;
  color: #3d3530;
  line-height: 1.5;
}

/* PRICE SECTION */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-card {
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 1.5rem;
}

.price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}

.price-type {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a8f87;
  margin-bottom: 0.5rem;
  display: block;
}

.price-card.featured .price-type {
  color: var(--gold);
}

.price-amount {
  font-family: var(--font-playfair);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.price-card.featured .price-amount {
  color: var(--white);
}

.price-basis {
  font-size: 0.72rem;
  color: #9a8f87;
  margin-top: 0.2rem;
  display: block;
}

.price-card.featured .price-basis {
  color: rgba(253, 250, 245, 0.5);
}

.price-incl {
  font-size: 0.78rem;
  color: #5a4f47;
  margin-top: 0.8rem;
  line-height: 1.5;
}

.price-card.featured .price-incl {
  color: rgba(253, 250, 245, 0.6);
}

.departures-table {
  width: 100%;
  border-collapse: collapse;
}

.departures-table th {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a8f87;
  padding: 0.6rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--sand);
}

.departures-table td {
  font-size: 0.85rem;
  color: #3d3530;
  padding: 0.8rem 0.8rem;
  border-bottom: 1px solid var(--fog);
}

.dep-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  font-weight: 500;
}

.dep-status.available {
  background: rgba(74, 103, 65, 0.1);
  color: var(--sage);
}

.dep-status.limited {
  background: rgba(200, 96, 42, 0.1);
  color: #c8602a;
}

.dep-status.sold-out {
  background: var(--fog);
  color: #9a8f87;
}

/* ITINERARY DAYS */
.itinerary-timeline {
  position: relative;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--sand);
}

.day-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.day-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-playfair);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.day-num.highlight {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--white);
}

.day-content {
    padding-top: 0.6rem;
}

.day-location {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 0.3rem;
  cursor: pointer;
}

.day-title {
  font-family: var(--font-playfair);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  cursor: pointer;
}

.day-desc {
  font-family: var(--font-cormorant);
  font-size: 0.95rem;
  color: #5a4f47;
  line-height: 1.7;
}

.day-item:not(:first-child) .day-desc{
  display:none;
}

.day-desc .two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.day-desc  .two-col > * {
    flex: 1 1 250px;
}

.day-meals {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.meal-tag {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
  color: #7a6f67;
}

.meal-tag.included {
  background: rgba(74, 103, 65, 0.08);
  border-color: rgba(74, 103, 65, 0.2);
  color: var(--sage);
}

/* NOTES */
.notes-grid {
  display: grid;
  gap: 1rem;
}

.note-item {
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--sand);
  background: var(--cream);
  border-radius: 0 3px 3px 0;
}

.note-item.warning {
  border-left-color: var(--ember);
}

.note-item.info {
  border-left-color: var(--gold);
}

.note-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.note-text {
  font-family: var(--font-cormorant);
  font-size: 0.95rem;
  color: #5a4f47;
  line-height: 1.6;
}


.note-text > :last-child{margin-bottom:0 !important;}

/* STICKY SIDEBAR */
.booking-card {
  border: 1px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(15, 12, 10, 0.08);
}

.booking-card-header {
  background: var(--ink);
  padding:1.5rem 1.8rem;
}

.booking-price-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.45);
  margin-bottom: 0.3rem;
}

.booking-price {
  font-family: var(--font-playfair);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.booking-price span {
  font-family: var(--font-dm);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(253, 250, 245, 0.45);
}

.booking-duration {
  font-size: 0.78rem;
  color: rgba(253, 250, 245, 0.55);
  margin-top: 0.3rem;
}

.booking-card-body {
  padding: 1.5rem;
}

.booking-field {
  margin-bottom: 1rem;
}

.booking-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a6f67;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.booking-field select,
.booking-field textarea,
.booking-field input {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
  outline: none !important;
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-dm);
}

.booking-btn {
  width: 100%;
  padding: 1rem;
  background: var(--ember);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.3s;
  font-family: var(--font-dm);
}

.booking-btn:hover {
  background: #a04520;
}

.booking-note {
  font-size: 0.72rem;
  color: #9a8f87;
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.5;
}

.booking-features {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fog);
}

.booking-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #5a4f47;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.booking-features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-enquire {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s;
}

.sidebar-enquire:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* GALLERY */
.gallery-strip {
  padding: 3rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-strip h3 {
  font-family: var(--font-playfair);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 0.8rem;
}

.gallery-item {
  border-radius: 3px;
  overflow: hidden;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-bg {
  width: 100%;
  height: 100%;
  object-fit:cover;
  object-position:center;
}

/* PARTNER PHILOSOPHY */
.partner-philosophy {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.partner-philosophy h2 {
  font-family: var(--font-playfair);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.partner-philosophy h2 em {
  font-style: italic;
  color: var(--ember);
}

.partner-philosophy p {
  font-family: var(--font-cormorant);
  font-size: 1.2rem;
  color: #3d3530;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--sand);
  margin: 2.5rem auto;
}

/* PARTNER CATEGORIES */
.partners-section {
  padding: 5rem 2rem 6rem;
}

.cat-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.cat-header h2 {
  font-family: var(--font-playfair);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cat-header p {
  font-family: var(--font-cormorant);
  font-size: 1.05rem;
  color: #5a4f47;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  border: 1px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 12, 10, 0.1);
}

.partner-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.partner-img-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.4s;
}

.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.partner-card:hover .partner-img-bg {
  transform: scale(1.05);
}

.partner-tier {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  font-weight: 500;
}

.tier-luxury {
  background: var(--gold);
  color: var(--ink);
}

.tier-preferred {
  background: var(--ember);
  color: var(--white);
}

.tier-featured {
  background: rgba(253, 250, 245, 0.9);
  color: var(--ink);
}

.partner-body {
  padding: 1.5rem;
}

.partner-region {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.partner-name {
  font-family: var(--font-playfair);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.partner-desc {
  font-size: 0.82rem;
  color: #5a4f47;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.partner-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: #9a8f87;
  padding-top: 0.8rem;
  border-top: 1px solid var(--fog);
}

.partner-category {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.partner-tag {
  padding: 0.2rem 0.5rem;
  background: var(--cream);
  border-radius: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: #5a4f47;
}

.partner-logo-wrap {
    max-width: 1200px;
    margin: 0 auto;
}
.partner-logo-list {
    display: flex;
    flex-wrap: wrap;
    gap:35px 50px;
    justify-content: center;
}
.partner-logo-list a{display:inline-flex; padding:0 0.5rem;}
.partner-logo-list a img{
    width: 130px;
    height: 100px;
    object-fit: contain;
}
/* Gradients for partner images */
.p-aman {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.p-six {
  background: linear-gradient(145deg, #1B4332 0%, #2D6A4F 50%, #74C69D 100%);
}

.p-wilderness {
  background: linear-gradient(145deg, #8B5E3C 0%, #C8602A 50%, #E8A87C 100%);
}

.p-oberoi {
  background: linear-gradient(145deg, #7B3F00 0%, #A0522D 50%, #D2691E 100%);
}

.p-beyond {
  background: linear-gradient(145deg, #4A148C 0%, #7B1FA2 50%, #CE93D8 100%);
}

.p-anantara {
  background: linear-gradient(145deg, #880E4F 0%, #C2185B 50%, #F48FB1 100%);
}

.p-four {
  background: linear-gradient(145deg, #1C3A5F 0%, #2C5282 50%, #4A90D9 100%);
}

.p-como {
  background: linear-gradient(145deg, #2C3E50 0%, #3D5A80 50%, #98C1D9 100%);
}

.p-singita {
  background: linear-gradient(145deg, #33691E 0%, #558B2F 50%, #9E9D24 100%);
}

/* FEATURED PARTNER BANNER */
.featured-partner {
  background: var(--ink);
  padding: 5rem 2rem;
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.fp-text .section-tag-light {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: block;
}

.fp-text h2 {
  font-family: var(--font-playfair);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.fp-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.fp-text p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: rgba(253, 250, 245, 0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.fp-stat-num {
  font-family: var(--font-playfair);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.fp-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.4);
}

.fp-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fp-mini {
  border-radius: 4px;
  overflow: hidden;
}

.fp-mini img{width:100%; height:200px; object-fit:cover; object-position:center;}

.fp-mini-1 {
  background: linear-gradient(145deg, #1C3A5F, #3A6186);
  height: 200px;
}

.fp-mini-2 {
  background: linear-gradient(145deg, #4A1942, #7B3F9E);
  height: 200px;
}

.fp-mini-3 {
  background: linear-gradient(145deg, #1B4332, #2D6A4F);
  height: 200px;
}

.fp-mini-4 {
  background: linear-gradient(145deg, #7B3F00, #C8602A);
  height: 200px;
}

/* PROCESS */
.process-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.process-inner h2 {
  font-family: var(--font-playfair);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
}

.process-num {
  font-family: var(--font-playfair);
  font-size: 3rem;
  font-weight: 900;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.process-title {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.process-desc {
  font-family: var(--font-cormorant);
  font-size: 0.95rem;
  color: #5a4f47;
  line-height: 1.6;
}

.process-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1.2rem;
  font-size: 1.5rem;
  color: var(--sand);
}

/*Blogs*/
.blog {
    padding: 5rem 2rem;
}
.blog .post-content {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x:hidden;
}

.post-content h1,
.post-content h2 {
    font-family: var(--font-playfair);
    margin: 1.5rem 0 1rem;
}
.post-content h3,
.post-content h4,
.post-content h5{
    margin: 1rem 0;
}

.post-content ul,
.post-content ol {
    padding-left: 20px; margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 0.8rem;
}
.post-content p, .blog li {
    font-size: 1rem;
    line-height: 1.8;
    color: #3d3530;
}

.post-content img{width:100%; max-width:100%;}
.post-content .two-col{display:flex; flex-wrap:wrap; gap:1rem;}
.post-content .two-col > *{flex: 1 1 250px;}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    background-color: #ffffff;
    border: 1px solid var(--fog);
}
.post-content th {
    background-color: #f5f0e6;
    font-weight: 600;
    padding: 10px 16px;
    text-align: left;
    border-bottom: 2px solid var(--fog);
}

.post-content td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--fog);
}
.post-content th *,
.post-content td :last-child {
    margin-bottom:0;
}

@media only screen and (max-width: 767.98px) {
    .post-content table {overflow-y:auto; display:block;}
}

/*PHILANTHROPY*/
.phi-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.phi-card {
    background: var(--white);
    border:1px solid var(--gold);
    border-radius: 4px;
    padding: 2rem;
    width: calc((100% - 4rem) / 3);
    min-width: 250px;
}
.phi-card-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    display: block;
}

.phi-card-title {
    font-family: var(--font-playfair);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.phi-card-text {
    font-family: var(--font-cormorant);
    font-size: 1.05rem;
    color: #5a4f47;
    line-height: 1.7;
}

.phil .responsible {background: transparent;}
.phil .responsible.two {align-items: inherit; max-width:100%; padding:0; gap:0;}
.phil .responsible.two .resp-text{padding:5rem;}

.phil .responsible.two .resp-visual {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.info-item{font-family:var(--font-cormorant); display:flex;gap:1rem; align-items:center; margin-bottom:1rem;}

.phil .resp-cards .resp-card-title,
.phil .resp-cards .resp-card-text:not(:last-child) {margin-bottom: 0.5rem !important;}
.phil.resp-commitments li::before{color:#fff;}

.section-float {
    font-family: var(--font-cormorant);
    background: #fff;
    padding: 0 2.5rem 5rem;
    font-size: 1.15rem;
}
.section-float section{
    background: var(--ember);
    color:#fff;
    text-align: center;
    max-width: 1200px;
    padding: 5rem 7rem;
    margin: 0 auto;
    box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.3);
}
.section-float-box {
    display: flex;
    text-align: left;
    justify-content: center;
    gap: 7rem;
}
.section-float-box ul {
    list-style-type: disc;
    color: rgba(253, 250, 245, 0.85);
    font-family: var(--font-cormorant);
    font-size: 1.15rem;
    list-style-position: initial;
    margin-bottom: 1.5rem;
    padding-left: 20px;
}
@media only screen and (max-width: 991.98px) {
    .phi-card {width: calc((100% - 4rem) / 2);}

    .phil .responsible.two .resp-text{padding:2rem;}
    .phil .responsible.two .resp-visual {
        aspect-ratio:3/2;
        order:-1;
    }
    .section-float section{padding:5rem 3rem;}
    .section-float-box {gap: 5rem;}
}
@media only screen and (max-width: 767.98px) {
    .phi-card {width: 100%;}

    .section-float section{padding:3rem 2rem;}
    .section-float-box {flex-direction:column; gap:2.5rem;}
    .section-float-box h2{font-size:2rem !important;}
}

/*plan*/
/* HERO — editorial two-column */
.plan-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.plan-hero-left {
  background: var(--ink);
  padding: 10rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-left-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 15px 15px;
}

.hero-left-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
}

/* Large decorative number */
.hero-bg-num {
  position: absolute;
  font-family: var(--font-playfair);
  font-size: 28rem;
  font-weight: 900;
  color: rgba(253, 250, 245, 0.03);
  line-height: 1;
  bottom: -3rem;
  right: -2rem;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.plan-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.plan-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.plan-hero-h1 {
  font-family: var(--font-playfair);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.plan-hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.plan-hero-body {
  font-family: var(--font-cormorant);
  font-size: 1.15rem;
  color: rgba(253, 250, 245, 0.6);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.process-mini {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.plan-hero .process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-num {
  font-family: var(--font-playfair);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
}

.step-text {
  font-size: 0.82rem;
  color: rgba(253, 250, 245, 0.55);
  line-height: 1.4;
}

.step-text strong {
  color: rgba(253, 250, 245, 0.85);
  font-weight: 500;
}

/*PRESS MEDIA*/
#press a{text-decoration:none; color:#4066E5;}
#press a:hover{color:var(--ember-light);}
#press ul {list-style-position: inside; padding-left: 0;}
#press ul li{line-height:1.6;}
#press .euro-tours-header h2{font-size:clamp(1.8rem, 3vw, 2.5rem);}
#press .euro-tours-header h3{font-family: var(--font-playfair);}

.listItems > .list_two {
    display: grid;
    grid-template-columns: minmax(0, 320px) 1fr;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--fog);
    gap: 1.5rem;
}

.listItems .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
}

.listItems .list-content h3 {
    font-family: var(--font-playfair);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}
.listItems .list-content h3 a { color: var(--int) !important;}
.listItems .list-content h3 a:hover{color:var(--ember-light) !important;}

.listItems .list-content p{margin-bottom:1rem;}

@media (max-width: 768px) {
    .listItems > .list_two {
        grid-template-columns: 1fr;
    }
}

/*philanthrophy*/



/* RIGHT — The mega form */
.plan-hero-right {
  background: var(--white);
  padding: 9rem 4rem 4rem;
  overflow-y: auto;
  position: relative;
}

.form-progress {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
}

.progress-step {
  flex: 1;
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a8f87;
  border-bottom: 2px solid var(--sand);
  position: relative;
  transition: color 0.3s;
}

.progress-step.active {
  color: var(--ember);
  border-bottom-color: var(--ember);
}

.progress-step.done {
  color: var(--sage);
  border-bottom-color: var(--sage);
  cursor: pointer;
}

/* Form sections */
.form-section {
  display: none;
}

.form-section.active {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-title {
  font-family: var(--font-playfair);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-family: var(--font-cormorant);
  font-size: 1.05rem;
  color: #5a4f47;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* DESTINATION CARDS (visual selector) */
.dest-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.dest-option {
  position: relative;
  cursor: pointer;
}

.dest-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.dest-option-card {
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--sand);
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.2s;
  cursor: pointer;
}

.dest-option input:checked+.dest-option-card {
  border-color: var(--ember);
  background: rgba(200, 96, 42, 0.05);
}

.dest-emoji {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dest-opt-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}

.dest-opt-region {
  font-size: 0.68rem;
  color: #9a8f87;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dest-option-card::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--sand);
  border-radius: 3px;
  margin-left: auto;
  flex-shrink: 0;
  transition: all 0.2s;
}

.dest-option input:checked+.dest-option-card::after {
  background: var(--ember);
  border-color: var(--ember);
  content: '✓';
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Style Picker (travel style) */
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.style-option {
  cursor: pointer;
}

.style-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.style-card {
  padding: 1.2rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: 3px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.style-option input:checked+.style-card {
  border-color: var(--ember);
  background: rgba(200, 96, 42, 0.05);
}

.style-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.style-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.style-desc {
  font-size: 0.65rem;
  color: #9a8f87;
  line-height: 1.3;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Budget slider */
.budget-display {
  font-family: var(--font-playfair);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ember);
  margin-bottom: 0.5rem;
}

.budget-display span {
  font-family: var(--font-dm);
  font-size: 0.8rem;
  font-weight: 400;
  color: #9a8f87;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  background: var(--sand);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  margin: 0.5rem 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ember);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(200, 96, 42, 0.3);
}

.budget-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: #9a8f87;
  letter-spacing: 0.05em;
}

/* Traveller counter */
.traveller-counter {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}

.counter-label {
  font-size: 0.85rem;
  color: var(--ink);
  flex: 1;
}

.counter-label span {
  font-size: 0.72rem;
  color: #9a8f87;
  display: block;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.counter-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.counter-val {
  font-family: var(--font-playfair);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  min-width: 24px;
  text-align: center;
}

/* Navigation buttons */
button:disabled,
button:disabled:hover {
    background: rgba(74, 103, 65, 0.08);
    border-color: rgba(74, 103, 65, 0.2);
    color: var(--sage);
    cursor: not-allowed;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    gap: 2rem;
    border-top: 1px solid var(--fog);
}

.btn-prev {
  padding: 0.8rem 1.8rem;
  border: 1px solid var(--sand);
  background: transparent;
  border-radius: 2px;
  font-family: var(--font-dm);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: #5a4f47;
  transition: all 0.2s;
}

.btn-prev:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-next {
  padding: 0.8rem 2.2rem;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-family: var(--font-dm);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-next:hover {
  background: var(--ember);
}

.btn-submit-final {
  padding: 1rem 2.5rem;
  background: var(--ember);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-family: var(--font-dm);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit-final:hover {
  background: var(--ember-light);
}

.form-step-count {
  font-size: 0.72rem;
  color: #9a8f87;
}
.form-nav-next {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    justify-content: space-between;
}
/* SUCCESS STATE */
.success-panel {
  display: none;
  text-align: center;
  padding: 3rem 0;
}

.success-panel.show {
  display: block;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.success-title {
  font-family: var(--font-playfair);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.success-body {
  font-family: var(--font-cormorant);
  font-size: 1.15rem;
  color: #3d3530;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 2rem;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--ink);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-num {
  font-family: var(--font-playfair);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.45);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 7rem 2rem;
  background: var(--cream);
}

.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hiw-inner h2 {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hiw-inner>p {
  font-family: var(--font-cormorant);
  font-size: 1.1rem;
  color: #5a4f47;
  margin-bottom: 4rem;
  max-width: 600px;
  line-height: 1.7;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.hiw-step {
  position: relative;
}

.hiw-step-num {
  font-family: var(--font-playfair);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.hiw-step h3 {
  font-family: var(--font-playfair);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.hiw-step p {
  font-size: 0.85rem;
  color: #5a4f47;
  line-height: 1.6;
}

.hiw-step::before {
  content: '→';
  position: absolute;
  top: 1.2rem;
  left: -2rem;
  color: var(--sand);
  font-size: 1.2rem;
}

.hiw-step:first-child::before {
  display: none;
}

/* TESTIMONIALS */
.plan-testimonials {
  background: var(--white);
  padding: 6rem 2rem;
}

.pt-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pt-inner h2 {
  font-family: var(--font-playfair);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.pt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pt-card {
  padding: 2rem;
  border: 1px solid var(--sand);
  border-radius: 4px;
  background: var(--cream);
}

.pt-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.pt-text {
  font-family: var(--font-cormorant);
  font-size: 1.05rem;
  font-style: italic;
  color: #3d3530;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.pt-author {
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 500;
}

.pt-trip {
  font-size: 0.72rem;
  color: var(--ember);
}

/*...*/

/*responsive*/
@media (max-width: 1024px) {
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 10rem 2rem 4rem;
    min-height: 70vh;
  }

  .hero-right {
    min-height: 50vh;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .origin {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .responsible {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .team-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 1.2rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero-panel {
    display: none;
  }

  .regions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }

  .europamundo {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .stats-strip {
    gap: 0;
  }

  .contact-body {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--sand);
    padding: 3rem 2rem;
  }

  .contact-form-panel {
    padding: 3rem 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .visit-strip {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-hero {
    padding: 9rem 1.5rem 4rem;
  }

  .dest-hero-content {
    grid-template-columns: 1fr;
  }

  .dest-hero-stats {
    flex-direction: row;
    text-align: left;
  }

  .dest-intro {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tour-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .tour-row-num {
    display: none;
  }

  .practical-grid {
    grid-template-columns: 1fr;
  }

  .region-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .region-desc {
    text-align: left;
  }

  .europe-feature {
    grid-template-columns: 1fr;
  }

  .euro-hero-content {
    grid-template-columns: 1fr;
  }

  .euro-hero-stats {
    flex-direction: row;
    text-align: left;
    flex-wrap: wrap;
  }

    .euro-hero-stats .ehs-item {
        width: 45%;
    }

  .partnership-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pi-testimonial {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tours-masonry {
    grid-template-columns: 1fr 1fr;
  }

  .tour-card.featured {
    grid-column: span 1;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr;
  }

  .et-grid {
    grid-template-columns: 1fr;
  }

  .inc-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid{grid-template-columns:repeat(2,1fr); grid-template-rows:auto;}
  .gallery-grid .gallery-item:first-child {grid-column: 1/span 2;}

  .itin-quick-facts {
    gap: 1.2rem;
  }

  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-inner {
    grid-template-columns: 1fr;
  }

  .fp-visual {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .plan-hero {
    grid-template-columns: 1fr;
  }

  .plan-hero-left {
    min-height: auto;
    padding: 9rem 2rem 4rem;
  }

  .plan-hero-right {
    padding: 3rem 2rem;
  }

  .dest-selector {
    grid-template-columns: 1fr;
  }

  .style-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hiw-steps {
    grid-template-columns: 1fr 1fr;
  }

  .pt-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .stats-band {
    gap: 0;
  }

  .nav-links {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .tours-masonry {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .hcp-1,
  .hcp-2,
  .hcp-3,
  .hcp-4 {
    display: none;
  }
}

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}


.filter-bar.dest{display:flex; justify-content:space-between; gap: 0.5rem;}
.filter-bar .filter-dropdown{display: flex; gap: 0.5rem; align-items: center;}
.filter-bar select{border: 1px solid var(--ink) !important; background-color: var(--white); padding: 0.5rem 2.5rem 0.5rem 1rem;}
.filter-dropdown.mobile{display:none;}

/*customs*/
img{width:100%;}
.w-100{width:100%;}
.mt-15{margin-top:1.5rem;}
.mb-0{margin-bottom:0 !important;}
.mb-1{margin-bottom:1rem !important;}
.mb-3{margin-bottom:3rem;}
.mb-5{margin-bottom:5rem;}
.pt-0{padding-top:0 !important;}
.pl-3{padding-left:3rem;}
.pr-3{padding-right:3rem;}
.pt-3{padding-top:3rem;}

.row{display:flex; flex-wrap:wrap; margin:0 -15px;}
.row [class*="col-lg-"],
.row [class*="col-md-"]{padding: 0 15px;}
.col-lg-3 {width:25%;}
.col-lg-6 {width:50%;}
.col-lg-9 {width:75%;}
.col-lg-12 {width:100%;}

.text-left{text-align:left;}
.text-center{text-align:center;}
.text-right{text-align:right;}

.color-white{color:#fff !important;}
.color-gold{color:var(--gold);}
.bg-cream{background:var(--cream); }
.bg-white{background:var(--white); }
.bg-accent{background:var(--accent); }

#server-error.error,
label.error {
    color: #B71C1C !important;
    margin-top: 5px;
}

@media only screen and (max-width: 991.98px) {
    /*Nav*/
    body.disabled{overflow:hidden;}
    body.disabled nav:not(.scrolled):not(.filled) {background: var(--ink);}

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 100%);
        background: var(--ink);
        display: none;
    }
    .nav-links ul {
        width: calc(100% - 40px);
        flex-direction: column;
        padding:3rem 0 5rem;
        margin: 0 auto;
        overflow-y: auto;text-align:center;
    }
    
    .nav-cta{display:none;}
    .scrolled .nav-links.active,
    .filled .nav-links.active {background: var(--white); }
    .nav-links.active {display: flex;}
    
    .nav-links ul li a {font-size: 1.8rem; white-space:nowrap;}
    .nav-links ul li.nav-cta{display:block;margin: 0 auto; padding: 1rem 2.5rem;}
    .nav-links.active ul li.nav-cta a{color:#fff;}

    .nav-toggle { display: block; cursor: pointer; font-size: 1.5rem; color: white; }
    .nav-links ul li ul {
        display: none;
        position: static;
        background: transparent;
        box-shadow: none;
        margin-top: 1.5rem;
        padding: 0;
        width: 100%;
    }    
    .nav-links ul li.show-submenu ul {display: block;}
    .nav-links ul li:not(.show-submenu):hover ul {display: none;}

    .nav-links ul li ul li {padding: 1rem 0;}
    .nav-links ul li ul li a {
        font-size: 1.3rem !important;
        text-transform: none;
        opacity: 0.8;
        color: rgba(253, 250, 245, 0.85) !important;
    }
    .scrolled .nav-links.active ul li ul li a,
    .filled .nav-links.active ul li ul li a {
        color: var(--ink) !important;
    }

    .submenu-toggle {
        display: inline-block;
        margin: -5px -30px 0 10px;
        cursor: pointer;
        font-size: 1.5rem;
        vertical-align: middle;
        transition: transform 0.3s ease;
        color: rgba(253, 250, 245, 0.85);
    }
    .show-submenu > .submenu-toggle {transform: rotate(180deg);}
    nav.filled .submenu-toggle,
    nav.scrolled .submenu-toggle {color: var(--ink);}
    /*Nav End*/

    .stats-strip{flex-wrap: wrap; min-width: 150px;}
    
    .euro-text { padding-left:0;}

    .form-nav {flex-wrap: wrap; gap: 15px;}
    .btn-submit-final{width:100%;}

    /**refactor*/
    .filter-bar.dest .filter-inner{display:none;}
    .filter-dropdown.mobile{display:block;}
}

@media only screen and (max-width: 767.98px) {
    .col-md-3 {width:25%;}
    .col-md-6 {width:50%;}
    .col-md-9 {width:75%;}
    .col-md-12 {width:100%;}

    .sort-md-first{order:-1; margin-bottom:1rem;}
    .form-row--xs-1{grid-template-columns:1fr; gap:0;}

    .values-grid {grid-template-columns: 1fr;}

    .resp-cards{grid-template-columns:1fr;}

    .team-grid {grid-template-columns:1fr;}

    .tc-cta {grid-template-columns: 1fr;}
    .europe-feature {padding: 2rem 2rem 1rem;}

    .months-grid {grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.5rem;}

    .itin-main{grid-template-columns:minmax(0, 1fr);}
    .departures-table{white-space:nowrap;}
    .price-grid{grid-template-columns:1fr;}
    
    .partner-logo-list{gap:25px;}
    .partner-logo-list a img {width: 100px; height:70px;}
    
    .newsletter::after{left: 15%; transform: translate(10%,5%);}
    .newsletter .cta-actions{max-width: 250px; margin: 0 auto;}
    .newsletter .form-group,
    .newsletter button{width: 100%;}

    .footer-col .space{min-height:80px;}
}

@media only screen and (max-width: 575.98px) {
    .highlights-list li {
        flex-direction: column;
    }
       
    .nav-links ul{gap:1.8rem;}
    .nav-links ul li a {font-size: 1.5rem;}
}
