/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #64748b;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-content {
  margin: 0;
  padding: 0;
}

body.menu-open {
  overflow: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition:
    background 0.4s ease-out,
    backdrop-filter 0.4s ease-out,
    border-color 0.4s ease-out,
    box-shadow 0.4s ease-out;
  will-change: background, backdrop-filter;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.nav-brand a {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.4s ease-out;
  position: relative;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.nav-brand-script-note {
  font-family: "Snell Roundhand", "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  line-height: 1;
  color: rgba(232, 203, 122, 0.95);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-left: 0.75rem;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .nav-brand-script-note {
    margin-left: 1rem;
  }
}

.nav-brand-logo {
  height: 55px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: opacity 0.4s ease-out;
}

.nav-brand-logo-white {
  display: block;
}

.nav-brand-logo-dark {
  display: none;
}

.header.scrolled .nav-brand-logo-white {
  display: none;
}

.header.scrolled .nav-brand-logo-dark {
  display: block;
}

.header.menu-open .nav-brand-logo-white {
  display: none;
}

.header.menu-open .nav-brand-logo-dark {
  display: block;
}

.header.scrolled .nav-brand-script-note,
.header.menu-open .nav-brand-script-note {
  color: #a37f2f;
  text-shadow: none;
}

.nav-brand a:hover .nav-brand-logo {
  opacity: 0.8;
}

.header.scrolled .nav-brand a:hover .nav-brand-logo,
.header.menu-open .nav-brand a:hover .nav-brand-logo {
  opacity: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: white !important;
  text-decoration: none;
  transition:
    color 0.4s ease-out,
    opacity 0.3s ease-out;
  position: relative;
  letter-spacing: 0.5px;
  display: inline-block;
}

.nav-link.active {
  font-weight: 700 !important;
  opacity: 1 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transition:
    transform 0.3s ease-out,
    background 0.4s ease-out;
  transform-origin: left;
}

.header.scrolled .nav-link::after {
  background: #64748b;
}

.header.scrolled .nav-link {
  color: var(--text) !important;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.header.scrolled .nav-link:hover {
  color: #64748b;
  opacity: 1;
}

.header.scrolled .nav-link.active {
  color: #64748b;
}

.nav-link:visited {
  color: inherit;
}

.header.scrolled .nav-link:visited {
  color: var(--text);
}

.header.scrolled .nav-link:visited:hover {
  color: #64748b;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.header.scrolled .nav-link.active::after {
  background: #64748b;
}

.nav-link.active:hover::after {
  transform: scaleX(1.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition:
    background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.header.scrolled .nav-toggle span {
  background: var(--text) !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: white;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  animation: heroFadeIn 1s ease-out forwards;
  opacity: 0;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}

.hero-title {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 800px;
  animation: titleSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  align-items: baseline;
}

.hero-title .title-large {
  font-size: 1em;
  font-weight: 600;
}

.hero-title .title-small {
  font-size: 0.65em;
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.05em;
}

@keyframes titleSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0 0 2.5rem 0;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  animation: subtitleSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s
    forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes subtitleSlideUp {
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.hero-cta-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-out;
  animation: ctaFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
  opacity: 0;
  transform: translateY(15px);
  position: relative;
}

.hero-cta::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
  transform: scaleX(1);
  transition: transform 0.3s ease-out;
}

.hero-cta-wrapper .hero-cta:nth-child(2) {
  animation-delay: 0.7s;
}

.hero-cta .arrow {
  display: inline-block;
  transition: transform 0.3s ease-out;
  font-size: 1.2em;
  line-height: 1;
}

.hero-cta:hover {
  opacity: 0.8;
}

.hero-cta:hover .arrow {
  transform: translateX(5px);
}

.hero-cta:hover::after {
  transform: scaleX(1.1);
}

/* Page Hero (for pages other than index) */
.page-hero {
  position: relative;
  min-height: 85vh;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.page-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

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

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: white;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 85vh;
  animation: heroFadeIn 1s ease-out forwards;
  opacity: 0;
}

.page-hero-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  color: white;
  margin: 0;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 900px;
  animation: titleSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.page-hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin: 0 0 2.5rem 0;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  animation: subtitleSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s
    forwards;
  opacity: 0;
  transform: translateY(20px);
}

.page-hero-cta-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 1rem;
}

.page-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-out;
  animation: ctaFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
  opacity: 0;
  transform: translateY(15px);
  position: relative;
}

.page-hero-cta::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
  transform: scaleX(1);
  transition: transform 0.3s ease-out;
}

.page-hero-cta .arrow {
  display: inline-block;
  transition: transform 0.3s ease-out;
  font-size: 1.2em;
  line-height: 1;
}

.page-hero-cta:hover {
  opacity: 0.9;
}

.page-hero-cta:hover .arrow {
  transform: translateX(5px);
}

.page-hero-cta:hover::after {
  transform: scaleX(1.1);
}

/* About Page - Our Story Section */
.about-story {
  padding: 8rem 0;
  background: #f8f6f0;
}

.about-story-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.15),
    0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story-image:hover {
  transform: translateY(-8px);
}

.about-story-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(0.1);
}

.about-story-image:hover img {
  transform: scale(1.08);
  filter: grayscale(0) brightness(1.05);
}

.about-story-text {
  text-align: left;
}

.about-story-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 3.5rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  position: relative;
  text-align: left;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c; /* Fallback for browsers that don't support background-clip */
}

.about-story-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, #114c5c, transparent);
  opacity: 0.4;
}

.about-story-paragraphs {
  max-width: 800px;
  margin: 0 auto;
}

.about-story-p {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0 0 2rem 0;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}

.about-story-p:last-child {
  margin-bottom: 0;
}

/* About Page - Our Mission Section */
.about-mission {
  padding: 6rem 0;
  background: #ffffff;
}

.about-mission-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.about-mission-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.15),
    0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-mission-image:hover {
  transform: translateY(-8px);
}

.about-mission-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(0.1);
}

.about-mission-image:hover img {
  transform: scale(1.08);
  filter: grayscale(0) brightness(1.05);
}

.about-mission-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 3.5rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  position: relative;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c; /* Fallback for browsers that don't support background-clip */
}

.about-mission-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, #114c5c, transparent);
  opacity: 0.4;
}

.about-mission-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}

/* About Page - Features Section */
.about-features-section {
  padding: 6rem 0;
  background: #f8f6f0;
}

.about-features-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 4rem;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.03em;
  position: relative;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c; /* Fallback for browsers that don't support background-clip */
}

.about-features-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, #114c5c, transparent);
  opacity: 0.4;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-feature-card {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.about-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-feature-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.about-feature-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  letter-spacing: 0.01em;
}

/* About Page - Team Section */
.about-team {
  padding: 8rem 0;
  background: #ffffff;
}

.about-team-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-bottom: 5rem;
}

.about-team-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  position: relative;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c; /* Fallback for browsers that don't support background-clip */
}

.about-team-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
  opacity: 0.4;
  animation: slideInLine 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.about-team-subtitle {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  letter-spacing: 0.01em;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-team-member {
  background: #f8f6f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.team-member-image {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  background: #e8e6e1;
}

.team-member-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-team-member:hover .team-member-image img {
  transform: scale(1.08);
}

.team-member-info {
  padding: 2.5rem 2rem;
}

.team-member-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.team-member-role {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  margin-bottom: 1.25rem;
}

.team-member-bio {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  letter-spacing: 0.01em;
}

@keyframes ctaFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* Features */
.features {
  padding: 5rem 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.feature-text {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Intro Marketing */
.intro-marketing {
  padding: 12rem 0 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fdfdfb 50%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

.intro-marketing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(26, 61, 42, 0.08),
    transparent
  );
}

.intro-marketing::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(26, 61, 42, 0.08),
    transparent
  );
}

.intro-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8rem;
  align-items: start;
  margin-bottom: 6rem;
  position: relative;
}

.intro-images-wrapper {
  position: relative;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  height: fit-content;
}

.intro-image-main {
  position: relative;
  width: 100%;
  grid-row: 1;
  border: none;
  outline: none;
}

.intro-image-main .intro-image {
  border-radius: 0 0 60px 60px / 0 0 80px 80px;
  clip-path: none;
  -webkit-clip-path: none;
}

.intro-image-secondary {
  position: relative;
  width: 75%;
  margin-left: auto;
  margin-right: -8%;
  margin-top: -8rem;
  z-index: 2;
  grid-row: 2;
  border: none;
  outline: none;
}

.intro-image-secondary .intro-image {
  border-radius: 50px 0 0 50px / 50px 0 0 50px;
  clip-path: none;
  -webkit-clip-path: none;
}

.intro-image {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.15),
    0 15px 35px rgba(0, 0, 0, 0.1);
  background: transparent;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  border: none;
  outline: none;
}

.intro-image-main .intro-image {
  padding-bottom: 120%;
}

.intro-image-secondary .intro-image {
  padding-bottom: 80%;
}

.intro-image-main:hover .intro-image {
  border-radius: 0 0 70px 70px / 0 0 90px 90px;
  transform: scale(1.03) translateY(-5px);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.2),
    0 20px 45px rgba(0, 0, 0, 0.15);
  border: none;
  outline: none;
}

.intro-image-secondary:hover .intro-image {
  border-radius: 60px 0 0 60px / 60px 0 0 60px;
  transform: scale(1.03) translateY(-5px);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.2),
    0 20px 45px rgba(0, 0, 0, 0.15);
  border: none;
  outline: none;
}

.intro-image::before {
  display: none;
}

.intro-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.intro-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease-in;
  filter: grayscale(0.1);
  opacity: 1;
  border: none;
  outline: none;
  display: block;
}

.intro-image img[loading="lazy"]:not(.lazy-loaded) {
  opacity: 0;
}

.intro-image img.lazy-loaded {
  opacity: 1;
}

.intro-image-main:hover .intro-image img,
.intro-image-secondary:hover .intro-image img {
  transform: scale(1.12);
  filter: grayscale(0) brightness(1.05);
}

.intro-text-wrapper {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  padding-left: 3rem;
  padding-top: 0;
}

.intro-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin-bottom: 3.5rem;
  line-height: 1.2;
  padding-bottom: 0.08em;
  letter-spacing: 0.03em;
  position: relative;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c; /* Fallback for browsers that don't support background-clip */
}

.intro-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, #114c5c, transparent);
  opacity: 0.4;
}

.intro-text {
  margin-bottom: 4rem;
}

.intro-text p {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin-bottom: 2rem;
  max-width: 85%;
  letter-spacing: 0.01em;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #114c5c;
  text-decoration: none;
  transition: all 0.3s ease-out;
  position: relative;
}

.intro-cta::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #114c5c;
  transform: scaleX(1);
  transition: transform 0.3s ease-out;
}

.intro-cta .arrow {
  display: inline-block;
  transition: transform 0.3s ease-out;
  font-size: 1.2em;
  line-height: 1;
}

.intro-cta:hover {
  opacity: 0.8;
}

.intro-cta:hover .arrow {
  transform: translateX(5px);
}

.intro-cta:hover::after {
  transform: scaleX(1.1);
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1105px) {
  .intro-marketing {
    padding: 8rem 0 0 0;
  }

  .intro-marketing .container {
    padding: 0;
  }

  .intro-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 0;
  }

  .intro-text-wrapper {
    padding: 0 1.5rem;
    order: 1;
    display: flex;
    flex-direction: column;
  }

  .intro-images-wrapper {
    gap: 0;
    order: 2;
    width: 100%;
  }

  .intro-image-main {
    width: 100%;
  }

  .intro-image-main .intro-image {
    padding-bottom: 100%;
    border-radius: 0;
    clip-path: none;
    -webkit-clip-path: none;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
  }

  .intro-image-main .intro-image img {
    border: none !important;
    outline: none !important;
  }

  .intro-image-main .intro-image::before,
  .intro-image-main .intro-image::after {
    display: none !important;
  }

  .intro-image-secondary {
    display: none;
  }

  .intro-title {
    order: 1;
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .intro-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent, #114c5c, transparent);
  }

  .intro-text {
    order: 2;
    margin-bottom: 0;
  }

  .intro-text p:last-child {
    margin-bottom: 0;
  }

  .intro-cta {
    order: 3;
    margin-top: 2.5rem;
    align-self: flex-end;
  }

  .intro-text p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .intro-marketing {
    padding: 6rem 0 0 0;
  }

  .intro-marketing .container {
    padding: 0;
  }

  .intro-content {
    gap: 4rem;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  .intro-text-wrapper {
    order: 1;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .intro-images-wrapper {
    order: 2;
    gap: 0;
    width: 100%;
  }

  .intro-image-main {
    width: 100%;
  }

  .intro-image-main .intro-image {
    padding-bottom: 90%;
    border-radius: 0;
    clip-path: none;
    -webkit-clip-path: none;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
  }

  .intro-image-main .intro-image img {
    border: none !important;
    outline: none !important;
  }

  .intro-image-main .intro-image::before,
  .intro-image-main .intro-image::after {
    display: none !important;
  }

  .intro-image-secondary {
    display: none;
  }

  .intro-title {
    order: 1;
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .intro-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent, #114c5c, transparent);
  }

  .intro-text {
    order: 2;
    margin-bottom: 0;
  }

  .intro-text p:last-child {
    margin-bottom: 0;
  }

  .intro-cta {
    order: 3;
    margin-top: 2.5rem;
    align-self: flex-end;
  }

  .travel-diaries {
    padding: 4rem 0;
  }

  .diaries-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;
  }

  .testimonials {
    padding: 4rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .cta {
    padding: 4rem 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .newsletter {
    padding: 3rem 0;
  }

  .newsletter-content {
    max-width: 100%;
  }

  .newsletter-input-wrapper {
    flex-direction: column;
    gap: 1rem;
    border-bottom: none;
    padding-bottom: 0;
  }

  .newsletter-input {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
  }

  .newsletter-button {
    align-self: flex-start;
  }

  .page-hero {
    min-height: 50vh;
  }

  .page-hero-content {
    min-height: 50vh;
    padding: 0 1.5rem;
  }

  .page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .page-hero-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .about-story {
    padding: 5rem 0;
  }

  .about-story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-story-image {
    display: none;
  }

  .about-story-text {
    text-align: center;
    order: 1;
  }

  .about-story-title {
    margin-bottom: 3rem;
    text-align: center;
    max-width: 100%;
  }

  .about-story-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent, #114c5c, transparent);
  }

  .about-story-p {
    margin-bottom: 2rem;
  }

  .about-mission {
    padding: 4rem 0;
  }

  .about-mission-image {
    padding-bottom: 60%;
    margin-bottom: 3rem;
  }

  .about-features-section {
    padding: 4rem 0;
  }

  .about-features-title {
    margin-bottom: 3rem;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-feature-card {
    padding: 2rem 1.5rem;
  }

  .about-team {
    padding: 5rem 0;
  }

  .about-team-header {
    margin-bottom: 3rem;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .diaries-view-all {
    align-self: flex-end;
  }

  .diaries-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

  .diary-content {
    padding-right: 1.5rem;
  }

  .diary-image {
    padding-bottom: 70%;
  }

  .image-slider {
    padding: 4rem 0;
  }

  .slider-section-header {
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;
  }

  .slider-section-subtitle {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .slider-container {
    padding: 0;
  }

  .slider-wrapper {
    border-radius: 0;
    margin: 0;
    padding: 0;
  }

  .slider-slide {
    flex: 0 0 90%;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
    display: none;
  }

  .slider-btn svg {
    width: 20px;
    height: 20px;
  }

  .slider-dots {
    margin-top: 2rem;
    padding: 0 1.5rem;
  }

  .slide-image {
    border-radius: 0;
    padding-bottom: 70%;
  }

  .slide-content {
    padding: 2rem 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .slide-title {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
  }

  .slide-content {
    padding: 1.5rem;
    max-width: 100%;
    width: 100%;
    left: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .slide-read-more {
    font-size: 0.8125rem;
    margin-top: 0.75rem;
  }

  .slide-title {
    max-width: 100%;
    width: 100%;
    word-break: break-word;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .slide-title-link {
    margin-bottom: 1rem;
  }

  .slide-read-more {
    font-size: 0.8125rem;
    margin-top: 0.75rem;
  }

  .slide-image {
    contain: layout;
  }

  .slider-slide {
    contain: layout;
    max-width: 90%;
  }

  .slide-content {
    padding: 1.5rem;
    left: 0;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1105px) {
  .slider-slide {
    flex: 0 0 88%;
  }

  .slider-btn-prev {
    left: 1rem;
  }

  .slider-btn-next {
    right: 1rem;
  }
}

/* Categories */
.categories {
  padding: 6rem 0;
  background: #f5f3ed;
}

.categories .section-header {
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.categories .categories-grid {
  max-width: 100%;
}

.categories .section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  color: #114c5c;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
}

.categories .section-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
  opacity: 0.4;
  animation: slideInLine 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.categories .section-subtitle {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}

/* Destinations Header Section */
.destinations-header-section {
  padding: 8rem 0 8rem;
  background: #ffffff;
}

.destinations-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.destinations-header-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c;
  position: relative;
}

.destinations-header-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
  opacity: 0.4;
}

.destinations-header-subtitle {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  margin-top: 3rem;
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .categories .section-subtitle {
    max-width: 600px;
  }
}

@media (min-width: 1024px) {
  .categories .section-subtitle {
    max-width: 700px;
  }
}

@media (min-width: 1200px) {
  .categories .section-subtitle {
    max-width: 750px;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  grid-auto-rows: 250px;
  overflow: hidden;
}

@media (min-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
  }
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 300px;
    grid-auto-flow: dense;
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-auto-rows: 350px;
  }
}

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0;
  text-decoration: none;
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease-out;
  box-shadow: none;
  height: 100%;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: scale(1.02);
  z-index: 10;
  border-color: rgba(255, 255, 255, 0.3);
}

.category-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease-out,
    opacity 0.3s ease-in;
  opacity: 1;
}

.category-image img[loading="lazy"]:not(.lazy-loaded) {
  opacity: 0;
}

.category-image img.lazy-loaded {
  opacity: 1;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  z-index: 1;
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  color: white;
}

.category-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: white;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
  transform-origin: left;
}

.category-card:hover .category-title::after {
  transform: scaleX(1);
}

/* Destinations */
.destinations {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.125rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.destination-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.destination-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.destination-content {
  padding: 1.5rem;
}

.destination-title {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.destination-text {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.destination-price {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.destination-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.destination-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

/* CTA */
/* Travel Diaries */
.travel-diaries {
  padding: 6rem 0;
  background: #f5f3ed;
}

.diaries-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.diaries-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  position: relative;
}

.diaries-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #114c5c, transparent);
  opacity: 0.4;
  animation: slideInLine 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.diaries-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #114c5c;
  text-decoration: none;
  transition: all 0.3s ease-out;
  position: relative;
}

.diaries-view-all::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #114c5c;
  transform: scaleX(1);
  transition: transform 0.3s ease-out;
}

.diaries-view-all .arrow {
  display: inline-block;
  transition: transform 0.3s ease-out;
  font-size: 1.2em;
  line-height: 1;
}

.diaries-view-all:hover {
  opacity: 0.8;
}

.diaries-view-all:hover .arrow {
  transform: translateX(5px);
}

.diaries-view-all:hover::after {
  transform: scaleX(1.1);
}

.diaries-view-all-mobile-wrap {
  display: none;
}

.diaries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 0 1.5rem;
}

.diary-card {
  background: #ffffff;
  transition: transform 0.3s ease;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.diary-card:hover {
  transform: translateY(-4px);
}

.diary-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.diary-image {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  overflow: hidden;
  background: #f5f5f0;
}

.diary-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.diary-card:hover .diary-image img {
  transform: scale(1.05);
}

.diary-content {
  position: relative;
  padding: 1.25rem 1.5rem 1.5rem;
}

.diary-category {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #114c5c;
  text-decoration: underline;
  text-decoration-color: rgba(26, 61, 42, 0.3);
  text-underline-offset: 3px;
  margin-bottom: 1rem;
  display: inline-block;
}

.diary-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #114c5c;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.diary-category {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #114c5c;
  text-decoration: underline;
  text-decoration-color: rgba(26, 61, 42, 0.3);
  text-underline-offset: 3px;
  margin-bottom: 1rem;
  display: inline-block;
}

.diary-link:hover .diary-title {
  color: #5d866c;
}

.diary-external-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  color: #114c5c;
  opacity: 0.4;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diary-external-icon svg {
  width: 100%;
  height: 100%;
}

.diary-link:hover .diary-external-icon {
  opacity: 0.7;
  transform: translate(2px, -2px);
}

/* Blog Post Single Page */
.blog-post {
  padding: 6rem 0 2rem;
  background: #ffffff;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-post-meta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-post-back-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #114c5c;
  text-decoration: none;
  transition: all 0.3s ease-out;
  position: relative;
  align-self: flex-start;
}

.blog-post-back-header::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #114c5c;
  transition: width 0.3s ease-out;
}

.blog-post-back-header:hover {
  color: #5d866c;
}

.blog-post-back-header:hover::after {
  width: 100%;
}

.blog-post-back-header .arrow {
  transition: transform 0.3s ease-out;
}

.blog-post-back-header:hover .arrow {
  transform: translateX(-4px);
}

.blog-post-meta-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.blog-post-category {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #114c5c;
  padding: 0.5rem 1rem;
  background: rgba(26, 61, 42, 0.08);
  border-radius: 4px;
}

.blog-post-date,
.blog-post-author {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #666;
  letter-spacing: 0.01em;
}

.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-post-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(17, 76, 92, 0.08);
  border: 1px solid rgba(17, 76, 92, 0.12);
  color: #114c5c;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.blog-post-tag:hover {
  background: #114c5c;
  color: #ffffff;
  border-color: #114c5c;
}

.travel-diaries-filters {
  padding: 1.5rem 0 0;
  background: #f5f3ed;
}

.travel-diaries-filter-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.travel-diaries-filter-label {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #114c5c;
}

.travel-diaries-filter-select-wrap {
  position: relative;
  display: inline-block;
  min-width: 180px;
  max-width: 320px;
}

.travel-diaries-filter-select {
  display: block;
  width: 100%;
  padding: 0.6rem 2.25rem 0.6rem 1rem;
  border: 1px solid rgba(17, 76, 92, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #114c5c;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  appearance: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.travel-diaries-filter-select:hover {
  border-color: rgba(17, 76, 92, 0.4);
}

.travel-diaries-filter-select:focus {
  outline: none;
  border-color: #114c5c;
  box-shadow: 0 0 0 3px rgba(17, 76, 92, 0.12);
}

.travel-diaries-filter-select-arrow {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: #114c5c;
  opacity: 0.8;
}

.travel-diaries-clear-filter {
  color: #114c5c;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.travel-diaries-clear-filter:hover {
  text-decoration: underline;
}

.diaries-empty-state {
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: #f8f6f1;
  text-align: center;
  color: #114c5c;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

/* Blog post body: prose styling for CMS HTML (paragraphs, headings, lists, etc.) */
.blog-post-body {
  margin-bottom: 4rem;
  max-width: 72ch;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.75;
  color: #1e293b;
}

.blog-post-body > *:first-child {
  margin-top: 0;
}

.blog-post-body p,
.blog-post-body .blog-post-paragraph {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  font-weight: 400;
  margin: 0 0 1.5em 0;
  letter-spacing: 0.01em;
}

.blog-post-body p:last-child,
.blog-post-body .blog-post-paragraph:last-of-type {
  margin-bottom: 0;
}

.blog-post-body h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: #114c5c;
  margin: 2.25em 0 0.75em 0;
  letter-spacing: 0.02em;
}

.blog-post-body h2:first-child {
  margin-top: 0;
}

.blog-post-body h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: #1e293b;
  margin: 2em 0 0.5em 0;
}

.blog-post-body h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #334155;
  margin: 1.75em 0 0.5em 0;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 1.25em 0;
  padding-left: 1.5em;
}

.blog-post-body ul {
  list-style-type: disc;
}

.blog-post-body ol {
  list-style-type: decimal;
}

.blog-post-body li {
  margin: 0.5em 0;
  padding-left: 0.25em;
}

.blog-post-body li > ul,
.blog-post-body li > ol {
  margin: 0.5em 0;
}

.blog-post-body blockquote {
  margin: 2em 0;
  padding: 1em 0 1em 1.5em;
  border-left: 4px solid #114c5c;
  background: rgba(17, 76, 92, 0.04);
  font-style: italic;
  color: #475569;
}

.blog-post-body blockquote p:last-child {
  margin-bottom: 0;
}

.blog-post-body a {
  color: #114c5c;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.blog-post-body a:hover {
  color: #0f3d4a;
}

.blog-post-body strong {
  font-weight: 600;
}

.blog-post-body em {
  font-style: italic;
}

.blog-post-body img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
  border-radius: 8px;
  display: block;
}

.blog-post-body hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: 2.5em 0;
}

.blog-post-paragraph {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.75;
  color: inherit;
  margin: 0 0 1.5em 0;
  letter-spacing: 0.01em;
}

.blog-post-paragraph:last-of-type {
  margin-bottom: 0;
}

.blog-post-footer-section {
  padding: 4rem 0;
  background: #ffffff;
}

.blog-post-footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Blog Related Posts */
.blog-related-posts {
  padding: 6rem 0;
  background: #ffffff;
}

.blog-related-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1.5rem;
}

.blog-related-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  letter-spacing: 0.02em;
  position: relative;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c; /* Fallback for browsers that don't support background-clip */
}

.blog-related-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, #114c5c, transparent);
  opacity: 0.4;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #114c5c;
  text-decoration: none;
  transition: all 0.3s ease-out;
  position: relative;
}

.blog-post-back::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #114c5c;
  transition: width 0.3s ease-out;
}

.blog-post-back:hover {
  color: #5d866c;
}

.blog-post-back:hover::after {
  width: 100%;
}

.blog-post-back .arrow {
  transition: transform 0.3s ease-out;
}

.blog-post-back:hover .arrow {
  transform: translateX(-4px);
}

/* Blog Gallery */
.blog-gallery {
  padding: 4rem 0 0 0;
  background: #f5f3ed;
  overflow: hidden;
  margin: 2rem 0 0 0;
}

.blog-gallery-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1.5rem;
}

.blog-gallery-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  letter-spacing: 0.02em;
  position: relative;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c; /* Fallback for browsers that don't support background-clip */
}

.blog-gallery-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, #114c5c, transparent);
  opacity: 0.4;
}

.blog-gallery-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  contain: layout style paint;
}

.blog-gallery-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 0;
  padding: 0;
  width: 100%;
  contain: layout style paint;
}

.blog-gallery-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  gap: 2rem;
  cursor: grab;
  padding-left: 0;
  align-items: stretch;
  touch-action: pan-y pinch-zoom;
}

.blog-gallery-track:active {
  cursor: grabbing;
}

.blog-gallery-slide {
  flex: 0 0 calc(85% - 1rem);
  min-width: 0;
  display: flex;
  flex-direction: column;
  user-select: none;
  -webkit-user-select: none;
}

.blog-gallery-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.blog-gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-user-drag: none;
  user-select: none;
}

.blog-gallery-image:hover img {
  transform: scale(1.08);
}

.blog-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.blog-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 2;
}

.blog-gallery-description {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #ffffff;
  margin: 0;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.01em;
}

.blog-gallery-author {
  margin-top: 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  opacity: 0.9;
}

.blog-gallery-author-link {
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
  display: inline-block;
}

.blog-gallery-author-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.blog-gallery-author-text {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.blog-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.blog-gallery-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.blog-gallery-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.blog-gallery-btn svg {
  width: 24px;
  height: 24px;
  color: #114c5c;
}

.blog-gallery-btn-prev {
  left: 2rem;
}

.blog-gallery-btn-next {
  right: 2rem;
}

.blog-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
  padding: 0 1.5rem;
}

.blog-gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 61, 42, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  padding: 0;
}

.blog-gallery-dot.active {
  background: #114c5c;
  width: 30px;
  border-radius: 5px;
}

.blog-gallery-dot:hover {
  background: rgba(26, 61, 42, 0.6);
}

/* Business Travel Services */
.business-services {
  padding: 6rem 0;
  background: #ffffff;
}

.business-services-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-bottom: 5rem;
  text-align: center;
}

.business-services-subtitle {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}

.business-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.business-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #f8f6f0;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.business-service-item:last-child {
  border-right: none;
}

.business-service-item:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.business-service-item:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.business-service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.business-service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #114c5c;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.business-service-icon .lucide-icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  transition: inherit;
}

.business-service-item:hover .business-service-icon {
  transform: scale(1.1);
  color: #5d866c;
}

.business-service-item:hover .business-service-icon .lucide-icon {
  transform: scale(1.05);
}

.business-service-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Business Events */
.business-events {
  padding: 6rem 0;
  background: #f8f6f0;
}

.business-events-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 4rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  position: relative;
  text-align: center;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c;
}

.business-events-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
  opacity: 0.4;
}

.business-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.business-event-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.business-event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.business-event-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.business-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%) brightness(0.95);
}

.business-event-card:hover .business-event-image img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1.05);
}

.business-event-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.business-event-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #114c5c;
  margin: 0;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.business-event-description {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.01em;
  flex: 1;
}

/* Travel Packages */
.travel-packages {
  padding: 8rem 0;
  background: #f8f6f0;
  position: relative;
}

.travel-packages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(26, 61, 42, 0.08),
    transparent
  );
}

.travel-packages-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
}

.travel-packages-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c;
}

.travel-packages-subtitle {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.travel-packages-description {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  letter-spacing: 0.01em;
}

.travel-packages-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.travel-package-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.travel-package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.travel-package-card-reverse {
  direction: rtl;
}

.travel-package-card-reverse > * {
  direction: ltr;
}

.travel-package-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.travel-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(15%) brightness(0.95);
}

.travel-package-card:hover .travel-package-image img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1.05);
}

.travel-package-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.travel-package-name {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: #114c5c;
  margin: 0;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.travel-package-tagline {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 400;
  color: #64748b;
  margin: 0;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
}

.travel-package-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 1.8;
  margin: 0;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.travel-package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.travel-package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.travel-package-features .lucide-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  color: #114c5c;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.travel-package-card:hover .travel-package-features .lucide-icon {
  transform: scale(1.15);
  color: #2d5a3d;
}

/* Packages Header Section */
.packages-header-section {
  padding: 6rem 0 4rem;
  background: #ffffff;
}

.packages-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.packages-header-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c;
  position: relative;
}

.packages-header-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
  opacity: 0.4;
}

.packages-header-subtitle {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  margin-top: 3rem;
  letter-spacing: 0.01em;
}

.packages-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 4rem;
  padding: 0 1.5rem;
}

.packages-filter-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.packages-filter-label {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #114c5c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.packages-filter-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.packages-filter-btn {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #114c5c;
  text-decoration: none;
  padding: 0.625rem 1.5rem;
  border: 1px solid rgba(26, 61, 42, 0.2);
  border-radius: 25px;
  background: #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
}

.packages-filter-btn:hover {
  border-color: #114c5c;
  background: #f8f6f0;
  transform: translateY(-2px);
}

.packages-filter-btn.active {
  background: #114c5c;
  color: #ffffff;
  border-color: #114c5c;
}

.packages-clear-filters {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #64748b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 25px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.packages-clear-filters:hover {
  color: #114c5c;
  border-color: #114c5c;
  background: #f8f6f0;
}

.packages-clear-filters .lucide-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  transition: inherit;
}

/* Packages Section */
.packages-section {
  padding: 0 0 6rem;
  background: #ffffff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* From 1200px: first row 2 packages (highlighted), then 3 per row */
@media (min-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .package-card:nth-child(1),
  .package-card:nth-child(2) {
    grid-column: span 3;
  }
  .package-card:nth-child(n + 3) {
    grid-column: span 2;
  }
}

@media (max-width: 1199px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
  }
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }
}

/* Similar Experiences: max 3 packages, 3 equal columns in a row */
.packages-grid--three-equal {
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 1200px) {
  .packages-grid--three-equal {
    grid-template-columns: repeat(3, 1fr);
  }
  .packages-grid--three-equal .package-card:nth-child(1),
  .packages-grid--three-equal .package-card:nth-child(2),
  .packages-grid--three-equal .package-card:nth-child(n + 3) {
    grid-column: span 1;
  }
}

@media (max-width: 899px) {
  .packages-grid--three-equal {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .packages-grid--three-equal {
    grid-template-columns: 1fr;
  }
}

.package-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  color: inherit;
  position: relative;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.package-card-wide {
  grid-column: span 2;
}

.package-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  flex: 1;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}

.package-card-wide .package-image {
  min-height: 400px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.95);
  flex: 1;
  min-height: 0;
}

.package-card:hover .package-image img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.package-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.package-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.package-favorite {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  padding: 0;
}

.package-favorite:hover {
  background: #ffffff;
  transform: scale(1.1);
}

.package-favorite .lucide-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  color: #114c5c;
  transition: all 0.3s ease;
}

.package-favorite:hover .lucide-icon,
.package-favorite.active .lucide-icon {
  color: #d32f2f;
  fill: #d32f2f;
}

.package-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.package-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

.package-card-categories {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0.35rem 0 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.package-card:hover .package-title {
  color: #ffffff;
}

/* Package Detail Page - Key info bar (term + price) under hero – same as footer */
.package-key-info {
  margin: 0;
  padding: 1rem 0;
  background: #114c5c;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Same width as .container; 2.4rem horizontal padding to align with Package Highlights title */
.package-key-info-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.4rem;
  box-sizing: border-box;
}

.package-key-info-term,
.package-key-info-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.package-key-info-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.package-key-info-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}

.package-key-info-price {
  align-items: flex-end;
  margin-left: auto;
}

.package-key-info-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.package-key-info-value {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  line-height: 1.3;
}

.package-key-info-price-value {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .package-key-info-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 0 1.5rem;
  }

  .package-key-info-term,
  .package-key-info-price {
    align-items: center;
  }

  .package-key-info-tags {
    justify-content: center;
  }

  .package-key-info-price {
    margin-left: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .package-key-info-inner {
    padding: 0 2rem;
  }
}

/* Package Detail Page */
.package-highlights {
  padding: 6rem 0;
  background: #f8f6f0;
}

.package-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: start;
}

.package-highlights-content {
  position: sticky;
  top: 100px;
}

.package-highlights-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c;
}

.package-highlights-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.01em;
}

.package-highlights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.package-highlights-list::-webkit-scrollbar {
  width: 4px;
}

.package-highlights-list::-webkit-scrollbar-track {
  background: rgba(26, 61, 42, 0.1);
  border-radius: 2px;
}

.package-highlights-list::-webkit-scrollbar-thumb {
  background: rgba(26, 61, 42, 0.3);
  border-radius: 2px;
}

.package-highlights-list::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 61, 42, 0.5);
}

.package-highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 1.6;
}

.package-highlight-item .lucide-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  color: #114c5c;
  flex-shrink: 0;
}

.package-overview {
  padding: 6rem 0;
  background: #ffffff;
}

.package-overview-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.package-overview-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c;
  position: relative;
}

.package-overview-title {
  text-align: center;
}

.package-overview-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
  opacity: 0.4;
}

/* Package detail page only: left-aligned content below the title */
.package-overview--left .package-overview-content {
  text-align: left;
}

.package-overview-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  margin-top: 3.5rem;
  letter-spacing: 0.01em;
}

.package-overview-text p {
  margin-bottom: 1.5rem;
}

.package-overview-text p:last-child {
  margin-bottom: 0;
}

/* Rich content from editor: images, video, alignment left as user sets */
.package-overview-rich img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.package-overview-rich figure {
  margin: 1.5rem 0;
}

.package-overview-rich figure img {
  margin: 0;
}

.package-overview-rich figcaption {
  font-size: 0.875rem;
  color: #555;
  margin-top: 0.5rem;
  font-style: italic;
}

.package-overview-rich iframe {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 1.5rem 0;
  border: none;
  border-radius: 4px;
}

.package-overview-rich blockquote {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid rgba(26, 61, 42, 0.3);
  color: #333;
  font-style: italic;
}

.package-overview-rich ul,
.package-overview-rich ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.package-overview-rich li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .package-overview-rich img,
  .package-overview-rich iframe {
    margin: 1rem 0;
  }
}

.package-overview-tagline {
  margin-top: 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Tailored Journeys – editorial story block */
.tailored-story {
  padding: 0 0 8rem;
  background: #fff;
}

.tailored-story-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 1.5rem 8rem;
  background: #fff;
}

.tailored-story-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0 0 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  position: relative;
}

.tailored-story-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
  opacity: 0.4;
}

.tailored-story-lead {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

.tailored-story-split {
  width: 100%;
  background: #f8f7f5;
  padding: 4rem 0 5rem;
}

.tailored-story-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: start;
}

.tailored-story-text-inner {
  width: 100%;
  padding: 0 2.5rem;
}

.tailored-story-headline-block {
  text-align: center;
  padding: 0 1.5rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tailored-story-headline-block .tailored-story-headline {
  margin: 0 0 0.5rem;
}

.tailored-story-headline-block .tailored-story-headline::after {
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
}

.tailored-story-headline {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0 0 2rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  position: relative;
}

.tailored-story-headline::after {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, #114c5c, transparent);
  opacity: 0.4;
}

.tailored-story-text p {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: clamp(0.9375rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #444;
  line-height: 1.75;
  margin: 0 0 1.25rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.tailored-story-text-inner > p:last-of-type {
  margin-bottom: 0;
}

.tailored-story-cta-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  justify-content: center;
}

.tailored-story-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #114c5c;
  text-decoration: none;
  transition: all 0.3s ease-out;
  position: relative;
}

.tailored-story-cta::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #114c5c;
  transform: scaleX(1);
  transition: transform 0.3s ease-out;
}

.tailored-story-cta .arrow {
  display: inline-block;
  transition: transform 0.3s ease-out;
  font-size: 1.2em;
  line-height: 1;
}

.tailored-story-cta:hover {
  opacity: 0.85;
}

.tailored-story-cta:hover .arrow {
  transform: translateX(5px);
}

.tailored-story-cta:hover::after {
  transform: scaleX(1.1);
}

.tailored-story-quote-inline {
  margin: 1.5rem 0 !important;
  padding: 0 0 0 1.25rem !important;
  border: none !important;
  border-left: 3px solid rgba(26, 61, 42, 0.4) !important;
  text-align: left !important;
}

.tailored-story-quote-inline::before {
  content: "\201C";
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(26, 61, 42, 0.25);
  display: block;
  margin-bottom: -0.25rem;
}

.tailored-story-quote-inline p {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 500;
  color: #114c5c;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

.tailored-story-figures {
  position: relative;
  width: 100%;
  min-height: 380px;
}

.tailored-story-figure {
  position: relative;
  overflow: hidden;
}

.tailored-story-figure-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.tailored-story-figure-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tailored-story-figure-main {
  width: 88%;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  border-radius: 0 40px 40px 0;
}

.tailored-story-figure-main .tailored-story-figure-inner {
  border-radius: 0 40px 40px 0;
}

.tailored-story-figure-secondary {
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  width: 50%;
  aspect-ratio: 4 / 5;
  z-index: 1;
  border-radius: 32px 0 0 32px;
}

.tailored-story-figure-secondary .tailored-story-figure-inner {
  border-radius: 32px 0 0 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
  .tailored-story-split {
    padding: 3rem 0 4rem;
  }

  .tailored-story-split-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tailored-story-figures {
    min-height: 280px;
    max-width: 520px;
    margin: 0 auto;
  }

  .tailored-story-figure-main {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px 24px 0 0;
  }

  .tailored-story-figure-main .tailored-story-figure-inner {
    border-radius: 24px 24px 0 0;
  }

  .tailored-story-figure-secondary {
    width: 48%;
    bottom: -1rem;
    border-radius: 20px 0 0 20px;
  }

  .tailored-story-figure-secondary .tailored-story-figure-inner {
    border-radius: 20px 0 0 20px;
  }

  .tailored-story-intro {
    padding: 6.5rem 1.5rem 6.5rem;
  }

  .tailored-story-quote-inline {
    margin: 1.25rem 0 !important;
  }
}

@media (max-width: 600px) {
  .tailored-story-intro {
    padding: 5rem 1.25rem 5rem;
  }

  .tailored-story-text-inner {
    padding: 0 1rem;
  }

  .tailored-story-quote-inline::before {
    font-size: 2rem;
  }
}

.package-gallery {
  padding: 6rem 0;
  background: #ffffff;
}

.package-gallery--cream {
  background: #f5f3ed;
}

.package-itinerary {
  padding: 6rem 0;
  background: #f8f6f0;
}

.package-itinerary-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 4rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c;
  position: relative;
}

.package-itinerary-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
  opacity: 0.4;
}

.package-itinerary-summary {
  margin: -1.5rem auto 2.75rem;
  max-width: 860px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  color: #1f2933;
}

.package-itinerary-note {
  margin: -1.25rem auto 4rem;
  max-width: 980px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

.package-itinerary-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: start;
}

.package-itinerary-days {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: static;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.package-itinerary-days::-webkit-scrollbar {
  width: 4px;
}

.package-itinerary-days::-webkit-scrollbar-track {
  background: rgba(26, 61, 42, 0.1);
  border-radius: 2px;
}

.package-itinerary-days::-webkit-scrollbar-thumb {
  background: rgba(26, 61, 42, 0.3);
  border-radius: 2px;
}

.package-itinerary-days::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 61, 42, 0.5);
}

.package-day-btn {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #114c5c;
  text-align: left;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(26, 61, 42, 0.2);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.package-day-btn:hover {
  border-color: #114c5c;
  background: #f8f6f0;
  transform: translateX(4px);
}

.package-day-btn.active {
  background: #114c5c;
  color: #ffffff;
  border-color: #114c5c;
}

.package-day-number {
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.package-day-btn.active .package-day-number {
  opacity: 0.9;
}

.package-day-name {
  font-weight: 400;
  line-height: 1.4;
}

.package-itinerary-content {
  position: sticky;
  top: 100px;
  align-self: start;
  min-height: 400px;
}

.package-day-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.package-day-content.active {
  display: block;
}

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

.package-day-content-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: #114c5c;
  margin: 0;
  margin-bottom: 2rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.package-day-content-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  letter-spacing: 0.01em;
}

.package-similar {
  padding: 6rem 0;
  background: #ffffff;
}

.package-similar--cream {
  background: #f5f3ed;
}

/* Tailored Journeys only: equal padding above/below "Choose Your Journey" */
.package-similar--choose-journey {
  padding: 0rem 0 0;
}

.package-similar--choose-journey .categories {
  padding: 5rem 0;
}

.package-similar--choose-journey .package-similar-header {
  margin-bottom: 5rem;
}

.package-similar-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.package-similar-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0 0 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c;
  position: relative;
}

.package-similar-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
  opacity: 0.4;
}

.package-similar-subtitle {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  color: #333;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.01em;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background: #ffffff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-info-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #114c5c;
}

.contact-info-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  margin-bottom: 4rem;
  letter-spacing: 0.01em;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f6f0;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-detail-icon .lucide-icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  color: #114c5c;
  transition: inherit;
}

.contact-detail-item:hover .contact-detail-icon {
  background: #114c5c;
  transform: translateY(-4px);
}

.contact-detail-item:hover .contact-detail-icon .lucide-icon {
  color: #ffffff;
}

.contact-detail-content {
  flex: 1;
}

.contact-detail-label {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #114c5c;
  margin: 0;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.contact-detail-value {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.contact-detail-value--spaced {
  margin-top: 1rem;
}

.contact-detail-value:hover {
  color: #114c5c;
}

.contact-form-wrapper {
  background: #f8f6f0;
  padding: 3.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-label {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #114c5c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-textarea {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  background: #ffffff;
  border: 1px solid rgba(26, 61, 42, 0.1);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #114c5c;
  box-shadow: 0 0 0 3px rgba(26, 61, 42, 0.1);
}

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

select.form-input {
  padding-right: 3rem;
}

.form-input--readonly {
  background: #eef2f0;
  color: #374151;
  cursor: default;
  border-color: rgba(17, 76, 92, 0.15);
}

.form-submit {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background: #114c5c;
  border: none;
  border-radius: 8px;
  padding: 1.25rem 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  align-self: flex-start;
}

.form-submit:hover {
  background: #0e3d4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 76, 92, 0.25);
}

.form-submit .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.2em;
  line-height: 1;
}

.form-submit:hover .arrow {
  transform: translateX(5px);
}

/* Plan your trip – typography intro (no image hero) */
.trip-intro {
  background: linear-gradient(180deg, #114c5c 0%, #0d3d48 100%);
  color: #fff;
  padding: 8rem 1.5rem 6.5rem;
  text-align: center;
}

.trip-intro__inner {
  max-width: 720px;
  margin: 0 auto;
}

.trip-intro__title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
  color: #fff;
}

.trip-intro__line {
  width: 4rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 1.75rem;
  border-radius: 2px;
}

.trip-intro__subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (max-width: 768px) {
  .trip-intro {
    padding: 12rem 3rem 10rem;
  }

  .trip-form-lead {
    padding: 0 1.25rem;
  }
}

/* Plan your trip form – full-width background, uses contact-form styling + section titles */
.contact-section--trip {
  background: #f8f6f0;
}

.contact-section--trip .contact-form-wrapper {
  background: transparent;
  box-shadow: none;
}

.trip-form-lead {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.55;
  color: #374151;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.contact-section .container--trip {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

#package-inquiry,
#trip-inquiry {
  scroll-margin-top: 100px;
}

.package-inquiry-section .container--trip {
  max-width: 1200px;
}

@media (max-width: 768px) {
  .contact-section--trip .container--trip {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-section--trip .contact-form-wrapper {
    border-radius: 0;
  }
}

.contact-form-wrapper .trip-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-wrapper .trip-block {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(17, 76, 92, 0.1);
}

.contact-section--trip .contact-form-wrapper .trip-block:first-child {
  padding-top: 2.5rem;
}

.contact-form-wrapper .trip-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 3rem;
}

.contact-section--trip .contact-form-wrapper .trip-block:last-child {
  padding-bottom: 3rem;
}

.contact-form-wrapper .trip-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-wrapper .trip-form .form-group:last-child {
  margin-bottom: 0;
}

.form-section-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #114c5c;
  margin: 0 0 1.5rem;
  letter-spacing: 0.01em;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.form-group--radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Choice cards (Yes/No style) – plan-your-trip */
.form-group--choice {
  margin-bottom: 0;
}

.choice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 420px;
}

.choice-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.choice-card:hover {
  border-color: #114c5c;
  background: #f0f7f8;
  color: #0d3d48;
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.choice-card:has(input:focus-visible) {
  outline: 2px solid #114c5c;
  outline-offset: 2px;
}

.choice-card:has(input:checked) {
  border-color: #114c5c;
  background: #114c5c;
  color: #fff;
  box-shadow: 0 2px 8px rgba(17, 76, 92, 0.25);
}

.choice-card:has(input:checked):hover {
  background: #0d3d48;
  border-color: #0d3d48;
  box-shadow: 0 4px 12px rgba(17, 76, 92, 0.3);
}

.choice-card__label {
  pointer-events: none;
  user-select: none;
}

.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #000;
}

.form-radio input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #114c5c;
}

.form-checkgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem 1rem;
}

.form-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  color: #000;
}

.form-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: #114c5c;
}

.form-group--error .form-input {
  border-color: #dc2626;
}

.form-field-msg {
  display: block;
  font-size: 0.8125rem;
  color: #b91c1c;
  margin-top: 0.35rem;
}

.form-group--captcha .form-input--captcha {
  max-width: 6rem;
}

.form-group--consent .form-check--consent {
  font-size: 0.875rem;
  font-weight: 400;
  color: #374151;
  line-height: 1.5;
}

.contact-section .trip-form-error {
  margin-bottom: 2rem;
}

.contact-section .trip-success {
  max-width: 560px;
  margin: 0 auto;
}

/* Image Slider */
.image-slider {
  padding: 6rem 0;
  background: #f5f3ed;
  overflow: hidden;
}

.slider-section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1.5rem;
}

.slider-section-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  position: relative;
}

.slider-section-subtitle {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}

.slider-section-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
  opacity: 0.4;
  animation: slideInLine 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes slideInLine {
  to {
    width: 80px;
  }
}

.slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  contain: layout style paint;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 0;
  padding: 0;
  width: 100%;
  contain: layout style paint;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  gap: 2rem;
  cursor: grab;
  padding-left: 0;
  align-items: stretch;
  touch-action: pan-y pinch-zoom;
}

.slider-track:active {
  cursor: grabbing;
}

.slider-slide {
  flex: 0 0 calc(85% - 1rem);
  min-width: 0;
  max-width: calc(85% - 1rem);
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  overflow: hidden;
  contain: layout style paint;
  isolation: isolate;
  box-sizing: border-box;
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}

.slider-slide:first-child {
  margin-left: 0;
  padding-left: 0;
}

.slide-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 65%;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f0;
  contain: layout style paint;
  isolation: isolate;
  box-sizing: border-box;
  transform: translateZ(0);
  will-change: transform;
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}

.slide-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
  transition: opacity 0.6s ease;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.5rem;
  z-index: 2;
  color: #ffffff;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  transform: translateZ(0);
  contain: layout style paint;
}

.slide-title-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.5rem;
}

.slide-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  padding: 0;
  padding-bottom: 2px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.6s ease,
    color 0.3s ease,
    background-size 0.3s ease;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  word-break: break-word;
  hyphens: auto;
  display: inline;
  overflow: visible;
  min-width: 0;
  contain: layout;
  text-decoration: none;
  background-image: linear-gradient(transparent, transparent);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.slide-title-link:hover .slide-title {
  transform: translateY(-5px);
  color: rgba(255, 255, 255, 0.9);
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
  background-size: 100% 2px;
}

.slide-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-out;
  position: relative;
  margin-top: 1rem;
}

.slide-read-more::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  transform: scaleX(1);
  transition: transform 0.3s ease-out;
}

.slide-read-more .arrow {
  display: inline-block;
  transition: transform 0.3s ease-out;
  font-size: 1.2em;
  line-height: 1;
}

.slide-read-more:hover {
  opacity: 0.8;
}

.slide-read-more:hover .arrow {
  transform: translateX(5px);
}

.slide-read-more:hover::after {
  transform: scaleX(1.1);
}

.slider-slide:hover .slide-image img {
  transform: scale(1.05);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(26, 61, 42, 0.1);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #114c5c;
}

.slider-btn,
.blog-gallery-btn {
  display: none;
}

.slider-btn:hover {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

.slider-btn-prev {
  left: 2rem;
}

.slider-btn-next {
  right: 2rem;
}

.slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 0 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 61, 42, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: #114c5c;
  width: 30px;
  border-radius: 5px;
}

.slider-dot:hover {
  background: rgba(26, 61, 42, 0.4);
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background: #ffffff;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.testimonials-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  position: relative;
}

.testimonials-title::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #114c5c, transparent);
  opacity: 0.4;
  animation: slideInLine 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.testimonials-subtitle {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  margin: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: block;
  margin-top: auto;
}

.testimonial-name {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #114c5c;
  margin: 0;
}

.testimonials-more-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

.testimonials-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #114c5c;
  position: relative;
}

.testimonials-more-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: #114c5c;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.testimonials-more-link .arrow {
  transition: transform 0.3s ease;
}

.testimonials-more-link:hover .arrow {
  transform: translateX(4px);
}

.testimonials-more-link:hover::after {
  transform: scaleX(1.05);
}

.client-reviews-page {
  padding: 5rem 0 6rem;
  background: #f8f6f0;
}

.client-reviews-header {
  max-width: 860px;
  margin: 0 auto 3.5rem;
  text-align: center;
  padding: 0 1.5rem;
}

.client-reviews-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.client-reviews-subtitle {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #30343a;
}

.client-reviews-source-block {
  margin-bottom: 3.5rem;
}

.client-reviews-source-title {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #114c5c;
  margin: 0 0 1.25rem;
}

.client-reviews-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.client-reviews-timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(17, 76, 92, 0.3), rgba(17, 76, 92, 0.1));
}

.client-review-item {
  position: relative;
  padding-left: 2.2rem;
}

.client-review-dot {
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #114c5c;
  box-shadow: 0 0 0 5px rgba(17, 76, 92, 0.1);
}

.client-review-card {
  background: #ffffff;
  border: 1px solid rgba(17, 76, 92, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.client-review-date {
  margin: 0 0 0.4rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f6a75;
}

.client-review-tour {
  margin: 0 0 0.4rem;
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  font-weight: 600;
  color: #114c5c;
  line-height: 1.25;
}

.client-review-name {
  margin: 0 0 0.95rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}

.client-review-text {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  line-height: 1.85;
  color: #23292f;
}

@media (max-width: 1105px) {
  .client-reviews-page {
    padding: 4.5rem 0 5rem;
  }

  .client-reviews-timeline::before {
    left: 8px;
  }

  .client-review-item {
    padding-left: 2rem;
  }

  .client-review-dot {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 768px) {
  .client-reviews-page {
    padding: 4rem 0 4rem;
  }

  .client-reviews-header {
    margin-bottom: 2.5rem;
  }

  .client-review-card {
    padding: 1.25rem;
  }

  .client-review-text {
    font-size: 0.92rem;
    line-height: 1.75;
  }
}

.cta {
  padding: 6rem 0;
  background: #f8f6f0;
  color: var(--text);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #114c5c;
  margin: 0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.cta-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 2;
  margin: 0;
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #114c5c;
  text-decoration: none;
  transition: all 0.3s ease-out;
  position: relative;
}

.cta-button::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #114c5c;
  transform: scaleX(1);
  transition: transform 0.3s ease-out;
}

.cta-button .arrow {
  display: inline-block;
  transition: transform 0.3s ease-out;
  font-size: 1.2em;
  line-height: 1;
}

.cta-button:hover {
  opacity: 0.8;
}

.cta-button:hover .arrow {
  transform: translateX(5px);
}

.cta-button:hover::after {
  transform: scaleX(1.1);
}

/* Newsletter */
.newsletter {
  padding: 4rem 0;
  background: #114c5c;
  color: #ffffff;
}

.newsletter-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.newsletter-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.newsletter-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Arial",
    sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: #000;
  line-height: 1.7;
  margin: 0;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-wrapper {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.5rem;
  transition: border-color 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #ffffff;
  padding: 0;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.newsletter-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease-out;
  position: relative;
}

.newsletter-button::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  transform: scaleX(1);
  transition: transform 0.3s ease-out;
}

.newsletter-button .arrow {
  display: inline-block;
  transition: transform 0.3s ease-out;
  font-size: 1.2em;
  line-height: 1;
}

.newsletter-button:hover {
  opacity: 0.8;
}

.newsletter-button:hover .arrow {
  transform: translateX(5px);
}

.newsletter-button:hover::after {
  transform: scaleX(1.1);
}

/* Footer */
.footer {
  background: #114c5c;
  color: #ffffff;
  padding: 5rem 0 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.85;
}

.footer-logo {
  height: 58px;
  width: auto;
  max-width: 100%;
  display: block;
}

.footer-title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 0;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.footer-description {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

.footer-heading {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-contact a {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact p {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-social-icon {
  width: 20px;
  height: 20px;
  display: block;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social a:hover .footer-social-icon {
  opacity: 1;
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive */
@media (max-width: 1105px) {
  .footer-section:first-child {
    align-items: center;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .nav {
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 1002;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    width: 100%;
    padding: 6.5rem 2rem 2.5rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    border-bottom: 1px solid rgba(17, 76, 92, 0.08);
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease,
      visibility 0.28s ease;
    gap: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    max-height: min(560px, calc(100dvh - 1rem));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-2rem);
    z-index: 1001;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu li {
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 0.28s ease,
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu .nav-link {
    color: var(--text) !important;
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
    padding: 0.35rem 0;
  }

  .nav-menu .nav-link::after {
    background: var(--text) !important;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--text) !important;
  }

  .nav-menu .nav-link:hover::after,
  .nav-menu .nav-link.active::after {
    background: var(--text) !important;
    transform: scaleX(1);
  }

  .header.menu-open {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
  }

  .header.menu-open .nav-brand a {
    color: var(--text) !important;
  }

  .header.menu-open .nav-toggle span {
    background: var(--text) !important;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1003;
  }

  .nav-brand {
    position: relative;
    z-index: 1003;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 70vh;
  }

  .nav-brand-script-note {
    display: block;
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
    margin-left: 1.5rem;
    margin-top: -0.15rem;
  }

  .travel-diaries {
    padding: 4rem 0;
  }

  .diaries-header {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }

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

  .features,
  .destinations,
  .testimonials {
    padding: 4rem 0;
  }

  .testimonials-header {
    margin-bottom: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .cta {
    padding: 4rem 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .blog-post {
    padding: 4rem 0 6rem;
  }

  .blog-post-content {
    padding: 0 1.5rem;
  }

  .blog-post-meta {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .blog-post-meta-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .blog-post-paragraph {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.75rem;
  }

  .blog-post-footer {
    padding-top: 2.5rem;
  }

  .blog-gallery {
    padding: 4rem 0;
    margin: 3rem 0;
  }

  .blog-gallery-container {
    padding: 0;
  }

  .blog-gallery-wrapper {
    margin: 0;
    border-radius: 0;
  }

  .blog-gallery-slide {
    flex: 0 0 90%;
  }

  .blog-gallery-image {
    padding-bottom: 70%;
    border-radius: 0;
  }

  .blog-gallery-btn {
    width: 48px;
    height: 48px;
    display: none;
  }

  .blog-gallery-btn svg {
    width: 20px;
    height: 20px;
  }

  .blog-gallery-dots {
    margin-top: 2rem;
    padding: 0 1.5rem;
  }

  .blog-gallery-caption {
    padding: 1.5rem;
  }

  .blog-gallery-description {
    font-size: 0.875rem;
  }

  .blog-gallery-author {
    font-size: 0.75rem;
  }

  .blog-related-posts {
    padding: 4rem 0;
  }

  .blog-related-header {
    margin-bottom: 3rem;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

  .business-services {
    padding: 4rem 0;
  }

  .business-services-header {
    margin-bottom: 3rem;
  }

  .business-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .business-service-item {
    padding: 2rem 1.5rem;
  }

  .business-events {
    padding: 4rem 0;
  }

  .business-events-title {
    margin-bottom: 3rem;
  }

  .business-events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .business-event-image {
    height: 260px;
  }

  .travel-packages {
    padding: 5rem 0;
  }

  .travel-packages-header {
    margin-bottom: 4.5rem;
  }

  .travel-package-content {
    padding: 2.5rem;
  }

  .travel-package-image {
    min-height: 350px;
  }

  .contact-section {
    padding: 5rem 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .destinations-header-section {
    padding: 6.5rem 0 6.5rem;
  }

  .packages-header-section {
    padding: 5rem 0 3.5rem;
  }

  .packages-filters {
    margin-top: 3.5rem;
  }

  .packages-section {
    padding: 0 0 5rem;
  }

  .package-highlights {
    padding: 5rem 0;
  }

  .package-highlights-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .package-highlights-content {
    position: static;
  }

  .package-highlights-list {
    grid-template-columns: repeat(2, 1fr);
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }

  .package-overview {
    padding: 5rem 0;
  }

  .package-gallery {
    padding: 5rem 0;
  }

  .package-itinerary {
    padding: 5rem 0;
  }

  .package-itinerary-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .package-itinerary-days {
    position: static;
    max-height: none;
    overflow-y: visible;
    flex-direction: row;
    overflow-x: auto;
    padding-right: 0;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .package-itinerary-days::-webkit-scrollbar {
    height: 4px;
    width: auto;
  }

  .package-day-btn {
    min-width: 180px;
    flex-shrink: 0;
  }

  .package-similar {
    padding: 5rem 0;
  }

  .package-similar--choose-journey {
    padding: 0 0 0;
  }

  .package-similar--choose-journey .categories {
    padding: 4rem 0;
  }

  .package-similar--choose-journey .package-similar-header {
    margin-bottom: 4rem;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.5rem;
  }

  .package-card-wide {
    grid-column: span 2;
  }

  .business-service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }

  @media (max-width: 768px) {
    .business-services-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .business-service-item {
      padding: 1.5rem;
    }

    .business-events {
      padding: 4rem 0;
    }

    .business-events-title {
      margin-bottom: 3rem;
      max-width: 100%;
      padding: 0 1.5rem;
    }

    .business-events-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0 1.5rem;
    }

    .business-event-image {
      height: 240px;
    }

    .business-event-content {
      padding: 1.5rem;
    }

    .travel-packages {
      padding: 4rem 0;
    }

    .travel-packages-header {
      margin-bottom: 4rem;
    }

    .travel-package-card {
      grid-template-columns: 1fr;
      direction: ltr;
    }

    .travel-package-card-reverse {
      direction: ltr;
    }

    .travel-package-image {
      min-height: 300px;
      order: 1;
    }

    .travel-package-content {
      padding: 2rem;
      order: 2;
    }

    .contact-section {
      padding: 4rem 0;
    }

    .contact-wrapper {
      grid-template-columns: 1fr;
      gap: 4rem;
    }

    .contact-form-wrapper {
      padding: 2.5rem;
    }

    .destinations-header-section {
      padding: 5rem 0 5rem;
    }

    .destinations-header-title {
      margin-bottom: 1.5rem;
    }

    .destinations-header-subtitle {
      margin-top: 2rem;
    }

    .packages-header-section {
      padding: 4rem 0 3rem;
    }

    .packages-header-title {
      margin-bottom: 1.5rem;
    }

    .packages-header-subtitle {
      margin-top: 2rem;
    }

    .packages-filters {
      flex-direction: column;
      align-items: flex-start;
      margin-top: 3rem;
    }

    .packages-filter-group {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .packages-filter-buttons {
      width: 100%;
    }

    .packages-section {
      padding: 0 0 4rem;
    }

    .package-highlights {
      padding: 4rem 0;
    }

    .package-highlights-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .package-highlights-content {
      position: static;
    }

    .package-highlights-list {
      grid-template-columns: 1fr;
      max-height: none;
      overflow-y: visible;
      padding-right: 0;
    }

    .package-overview {
      padding: 4rem 0;
    }

    .package-gallery {
      padding: 4rem 0;
    }

    .package-itinerary {
      padding: 4rem 0;
    }

    .package-itinerary-wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .package-itinerary-days {
      position: static;
      max-height: none;
      overflow-y: visible;
      flex-direction: row;
      overflow-x: auto;
      padding-right: 0;
      gap: 0.75rem;
      padding-bottom: 0.5rem;
    }

    .package-itinerary-days::-webkit-scrollbar {
      height: 4px;
      width: auto;
    }

    .package-day-btn {
      min-width: 200px;
      flex-shrink: 0;
    }

    .package-similar {
      padding: 4rem 0;
    }

    .package-similar--choose-journey {
      padding: 0 0 0;
    }

    .package-similar--choose-journey .categories {
      padding: 3.5rem 0;
    }

    .package-similar--choose-journey .package-similar-header {
      margin-bottom: 3.5rem;
    }

    .packages-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .package-card-wide {
      grid-column: span 1;
    }

    .package-image {
      min-height: 300px;
    }

    .package-card-wide .package-image {
      min-height: 300px;
    }

    .package-content {
      padding: 1.5rem;
    }
  }

  .footer {
    padding: 4rem 0 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-section {
    text-align: center;
  }

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

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 0;
  }

  .category-card {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .category-card:nth-child(2n) {
    border-right: none;
  }

  .category-card:last-child,
  .category-card:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .category-content {
    padding: 1.25rem;
  }

  .category-title {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  }
}

@media (min-width: 768px) and (max-width: 1104px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
  }

  .category-card {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .category-card:nth-child(3n) {
    border-right: none;
  }

  .category-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .nav {
    padding: 1rem 1.5rem !important;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Plan Your Trip – inquiry form (distinct design) */
.trip-inquiry {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, #faf8f5 0%, #f0ebe3 100%);
}

.container--trip {
  max-width: 1000px;
}

.trip-form-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #dc2626;
  font-size: 0.9375rem;
}

.trip-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.trip-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trip-block {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(26, 61, 42, 0.06);
  border: 1px solid rgba(26, 61, 42, 0.08);
}

.trip-block-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #114c5c;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26, 61, 42, 0.12);
}

.trip-field {
  margin-bottom: 1.25rem;
}

.trip-field:last-child {
  margin-bottom: 0;
}

.trip-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.4rem;
}

.trip-input,
.trip-textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.trip-input:focus,
.trip-textarea:focus {
  outline: none;
  border-color: #114c5c;
  box-shadow: 0 0 0 3px rgba(26, 61, 42, 0.12);
}

.trip-textarea {
  resize: vertical;
  min-height: 100px;
}

.trip-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.trip-field--radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trip-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: #374151;
}

.trip-radio input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #114c5c;
}

.trip-checkgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem 1rem;
}

.trip-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #4b5563;
}

.trip-check input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #114c5c;
}

.trip-field--captcha .trip-input--captcha {
  max-width: 6rem;
}

.trip-field--error .trip-input {
  border-color: #dc2626;
}

.trip-field-msg {
  display: block;
  font-size: 0.8125rem;
  color: #b91c1c;
  margin-top: 0.35rem;
}

.trip-field--consent {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.trip-check--consent {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
}

.trip-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, #114c5c 0%, #2d5a3d 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.trip-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 61, 42, 0.35);
}

.trip-submit .arrow {
  transition: transform 0.2s;
}

.trip-submit:hover .arrow {
  transform: translateX(4px);
}

.trip-success {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(26, 61, 42, 0.06);
  border: 1px solid rgba(26, 61, 42, 0.08);
}

.trip-success-icon {
  color: #059669;
  margin-bottom: 1rem;
}

.trip-success-icon svg {
  width: 64px;
  height: 64px;
}

.trip-success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  color: #114c5c;
  margin: 0 0 0.75rem;
}

.trip-success-text {
  color: #4b5563;
  margin: 0 0 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.trip-success-back {
  display: inline-block;
  color: #114c5c;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid #114c5c;
  transition: opacity 0.2s;
}

.trip-success-back:hover {
  opacity: 0.85;
}

@media (max-width: 640px) {
  .tailored-story-cta-wrapper {
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    gap: 1.5rem;
  }
  .tailored-story-cta {
    padding-top: 0.4rem;
    padding-bottom: 0.6rem;
  }
  .diaries-header {
    justify-content: center;
    text-align: center;
  }
  .diaries-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .diaries-header .diaries-view-all {
    display: none;
  }
  .diaries-view-all-mobile-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    padding: 0 1.5rem;
  }
  .slider-container,
  .blog-gallery-container {
    padding: 0 1rem;
  }
  .slider-wrapper,
  .blog-gallery-wrapper {
    border-radius: 16px;
  }
  .slider-slide {
    flex: 0 0 86%;
    max-width: 86%;
  }
  .blog-gallery-slide {
    flex: 0 0 86%;
    max-width: 86%;
  }
  .slide-image,
  .blog-gallery-image {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  .slide-image {
    padding-bottom: 110%;
  }
  .blog-gallery-image {
    padding-bottom: 110%;
  }
  .slide-content,
  .blog-gallery-caption {
    padding: 1.4rem;
  }
  .slide-title {
    font-size: 1.5rem;
  }
  .blog-gallery-description {
    font-size: 0.9375rem;
  }
  .trip-block {
    padding: 1.25rem 1.25rem;
  }
  .trip-row {
    grid-template-columns: 1fr;
  }
  .trip-checkgrid {
    grid-template-columns: 1fr;
  }
  .diaries-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    text-align: center;
  }
  .footer-section {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}
