@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/PlayfairDisplay-Bold.woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/PlayfairDisplay-ExtraBold.woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter_18pt-Regular.woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter_18pt-Medium.woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter_18pt-SemiBold.woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter_18pt-Bold.woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter_18pt-ExtraBold.woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}

:root {
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --heading: #000000;
  --body: #3D3D3D;
  --muted: #6B6B6B;
  --footer-text: rgba(255,255,255,0.65);
  --maroon: #6B1A24;
  --gold: #886A32;
  --white: #FFFFFF;
  --accent: #1C1C1C;
  --accent-hover: #000000;
  --border:#E8E5E0;   
  --border-radius: 16px;
  --r-pill: 999px;
  --transition: 0.25s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--white);
  color: var(--body);
  margin: 0;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  color: var(--heading);
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0;
}

p {
  font-size: 1rem;
  line-height: 1.72;
  margin: 0;
}

small {
  font-size: 0.78rem;
  line-height: 1.5;
}

.container {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

section {
  padding: 64px 0;
}

@media (max-width: 767.98px) {
  section {
    padding-bottom: 32px;
  }
}

section .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section-head {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 8px;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
}

.eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background-color: var(--accent);
  box-shadow: var(--shadow-sm);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: var(--muted);
}

.btn-outline:hover {
  border-color: var(--accent-hover);
  color: var(--accent-hover);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-bottom-color var(--transition), box-shadow var(--transition);
  padding: 24px 0;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
}

.logo-tag {
  font-weight: 500;
  font-size: 14px;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  gap: 16px;
}

.primary-nav a {
  color: var(--body);
  transition: color var(--transition);
  font-weight: 500;
}

.primary-nav a:hover {
  color: var(--accent-hover);
}

.primary-nav a.is-active, .mobile-nav a.is-active {
  color: var(--accent-hover);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
}

@media (max-width: 767.98px) {
  .primary-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--body);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding-top: 32px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav a {
  font-weight: 500;
}

.mobile-nav .btn {
  align-self: flex-start;
}

/* Hero */

.hero {
  min-height: calc(100vh - 96.67px);
  min-height: calc(100dvh - 96.67px);
  display: flex;
  align-items: center;
  padding-top: 48px;
}

@media (min-width: 992px) {
  .hero {
    min-height: unset;
    max-height: 800px;
  }
}

.hero .container {
  display: flex;
  justify-content: center;
  flex-direction: unset;
  gap: unset;
}

.hero-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .hero-content {
    max-width: 800px;
  }
}

.hero-sub {
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: var(--font-heading);
  font-size: 23px;
  color: var(--accent);
  margin-bottom: 4px;
}

@media (max-width: 390px) {
  .hero-stats strong {
    font-size: 21px;
  }
}

.hero-stats span {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 575.98px) {
  .hero-stats {
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .hero-stats li {
    flex: 1;
  }
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas: "text image";
  align-items: center;
}

.about-content {
  grid-area: text;
}

.about-portrait {
  grid-area: image;
}

.about-content .section-head {
  text-align: left;
}

.about-paragraph {
  margin-top: 32px;
}

.quick-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.quick-facts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.icon-feature {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
}

.quick-facts div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quick-facts strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--muted);
}

.quick-facts span {
  font-weight: 600;
  font-size: 14px;
}

.about-portrait {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (max-width: 991.98px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image";
    gap: 32px;
  }

  .about-content .section-head {
    text-align: center;
  }

  .about-portrait {
    justify-self: center;
  }
}

.why-trust-me {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.why-trust-me .section-head {
  align-items: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991.98px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--border-radius);
  padding: 24px;
}

.trust-card:hover { box-shadow: var(--shadow-md); }

.trust-card-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.trust-card-top .icon-feature {
  width: 24px;
  height: 24px;
}

/* Services */

.services, .destinations {
  text-align: center;
}

.carousel-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
  height: 0;
}

.carousel-card {
  flex: 0 0 auto;
  width: min(80vw, 300px);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 3 / 4;
}

.card-img-wrap {
  position: absolute;
  inset: 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.carousel-card:hover .card-img-wrap img, .destination-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.carousel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.70) 30%,
    rgba(0, 0, 0, 0) 60%
  );
  z-index: 0;
}

.card-body {
  position: absolute;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 8px;
  z-index: 1;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}

@media (max-width: 767.98px) {
  .card-body {
    padding: 24px 16px;
  }
}

.card-body h3 {
  color: var(--white);
}

.card-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  color: var(--muted);
  font-size: 16px;
  transition: color var(--transition), border-color var(--transition), opacity var(--transition);
}

.carousel-btn:hover:not(:disabled) {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Destinations */

.destinations .section-head {
  align-items: center;
}

.destinations-paragraph, .contact-paragraph {
  max-width: 512px;
  margin-top: 16px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 991.98px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

.destination-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.destination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.00) 60%
  );
}

/* Reviews */

.reviews {
  text-align: center;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 16px;
}

.carousel::-webkit-scrollbar { display: none; }

.review-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 12px;
  flex: 0 0 auto;
  width: calc(100% - 24px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--border-radius);
  padding: 24px;
  margin: 0px;
  scroll-snap-align: start;
}

.review-card:hover { box-shadow: var(--shadow-md); }

.review-stars { 
  color: var(--gold);
  letter-spacing: 1.2px; 
}

.review-card p {
  font-style: italic;
}

.review-card footer {
  padding: unset;
  background-color: unset;
  color: unset;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.review-card footer strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.review-card footer span {
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 767.98px) {
  .review-card {
    padding: 24px 16px;
  }
}

@media (min-width: 768px) {
  .review-card {
    width: calc(70% - 24px);
  }
}

@media (min-width: 992px) {
  .review-card {
    width: calc(40% - 24px);
  }
}

/* Contact */

.contact {
  text-align: center;
}

@media (max-width: 767.98px) {
  .contact {
    padding-bottom: 64px;
  }
}

.contact .section-head {
  align-items: center;
}

.how-steps {
  display: flex;
  align-items: flex-start;
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.how-step h3 {
  font-family: 'Playfair Display', serif;
}

.how-step p {
  font-size: 0.875rem;
}

.how-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(to right, var(--maroon), var(--gold));
  margin-top: 1.75rem;
  border-radius: 2px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 767.98px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .how-connector {
    width: 2px;
    height: 32px;
    flex: none;
    margin: 0;
  }

  .contact-actions .btn {
    flex: 1 1 auto;
  }
}

/* Footer */

footer {
  background-color: var(--accent);
  color: var(--footer-text);
  padding: 32px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-name {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: var(--footer-text);
  transition: color var(--transition);
}

.footer-nav a:hover, .footer-social-link:hover { color: var(--white); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-social-link {
  transition: color var(--transition);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-social {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
