/*
Theme Name: Vector Luxury Travel V4
Theme URI: https://vectorluxurytravel.com/
Author: Vector Luxury Travel
Description: A luxury travel affiliate WordPress theme built for SEO, destination guides, partner offers, and quote-form growth.
Version: 1.0.4
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vector-luxury-travel
*/
:root {
  --ink: #14110f;
  --muted: #665f57;
  --paper: #fbfaf7;
  --line: #ded8cf;
  --champagne: #d5b981;
  --cypress: #21483d;
  --marine: #123c57;
  --coral: #c8664c;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 17, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-elevated,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 8px 28px rgba(20, 17, 15, 0.08);
  backdrop-filter: blur(18px);
}

.static-header {
  position: sticky;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 198px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 600;
}

.brand small {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 14px;
  font-weight: 650;
}

.main-nav li,
.footer-links li {
  list-style: none;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  content: "";
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.search-panel button,
.offer-card a,
.cta-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  background: var(--champagne);
  color: var(--ink);
  font-weight: 760;
  cursor: pointer;
}

.nav-cta {
  padding: 0 20px;
  font-size: 13px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.76) 0%, rgba(20, 17, 15, 0.35) 48%, rgba(20, 17, 15, 0.16) 100%),
    linear-gradient(0deg, rgba(20, 17, 15, 0.6) 0%, rgba(20, 17, 15, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 70px;
}

.eyebrow,
.section-kicker,
.tag {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 870px;
  margin: 12px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 9vw, 126px);
  line-height: 0.9;
  font-weight: 500;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.search-panel {
  width: min(690px, 100%);
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.search-panel label {
  display: block;
  padding: 4px 8px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.search-panel div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-panel input {
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--line);
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.search-panel button {
  min-width: 118px;
  padding: 0 18px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 26px clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.trust-strip strong {
  display: block;
  margin-bottom: 7px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.trust-strip span,
p {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 118px) 0;
}

.section-grid,
.partner-layout,
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 500;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.intro-section p:first-child {
  margin-top: 8px;
}

.feature-band {
  background: var(--ink);
  color: var(--white);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.72);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.category-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  min-height: 530px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.category-card img {
  height: 100%;
  object-fit: cover;
}

.category-card div {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.category-card span {
  margin-bottom: 34px;
  color: var(--champagne);
  font-family: Georgia, serif;
}

.category-card a {
  margin-top: auto;
  color: var(--champagne);
  font-weight: 800;
}

.split-heading {
  align-items: end;
  margin-bottom: 34px;
}

.split-heading p {
  margin: 0;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.destination-card.large {
  grid-row: span 2;
}

.destination-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, opacity 240ms ease;
}

.destination-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 17, 15, 0.62), rgba(20, 17, 15, 0.08));
  content: "";
}

.destination-card span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 20px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: clamp(26px, 4vw, 42px);
}

.destination-card:hover img,
.destination-card:focus-visible img {
  transform: scale(1.04);
  opacity: 0.9;
}

.partner-section {
  border-top: 1px solid var(--line);
}

.blog-section {
  border-top: 1px solid var(--line);
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.blog-card img {
  height: 190px;
  margin: -24px -24px 22px;
  width: calc(100% + 48px);
  object-fit: cover;
}

.blog-card span {
  margin-bottom: 28px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card p {
  margin-bottom: 24px;
}

.text-link {
  margin-top: auto;
  color: var(--cypress);
  font-weight: 850;
}

.section-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--cypress);
  font-weight: 850;
}

.article-shell {
  background: var(--paper);
}

.article-page,
.article-index {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 100px;
}

.article-index {
  width: min(1120px, calc(100% - 36px));
}

.article-index h1,
.article-hero h1 {
  margin: 10px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  font-weight: 500;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.breadcrumb a {
  color: var(--cypress);
}

.article-hero {
  margin-bottom: 34px;
}

.article-hero p {
  max-width: 720px;
  font-size: 18px;
}

.article-hero time {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.article-featured {
  max-height: 520px;
  margin: 36px 0;
  object-fit: cover;
}

.article-content {
  padding-top: 10px;
  font-size: 18px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 44px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  font-weight: 500;
}

.article-content h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.article-content h3,
.article-content h4 {
  font-size: clamp(23px, 3vw, 32px);
}

.article-content p,
.article-content li {
  color: var(--muted);
  line-height: 1.78;
}

.article-content a {
  color: var(--marine);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--champagne);
  background: var(--white);
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
}

.article-content figure {
  margin: 34px 0;
}

.article-content img {
  height: auto;
}

.article-content .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.migrated-blog-grid {
  margin-top: 34px;
}

.offer-stack {
  display: grid;
  gap: 14px;
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.offer-card p {
  margin: 0;
}

.offer-card a {
  min-width: 154px;
  padding: 0 18px;
  background: var(--cypress);
  color: var(--white);
}

.affiliate-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--champagne);
  background: var(--white);
  font-size: 14px;
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 86px);
  border-top: 1px solid var(--line);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.seo-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.cta-section {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 70px 18px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(rgba(18, 60, 87, 0.72), rgba(20, 17, 15, 0.72)),
    url("https://images.unsplash.com/photo-1499678329028-101435549a4e?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.cta-section h2,
.cta-section p {
  width: min(760px, 100%);
}

.cta-section p {
  margin: 16px 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.cta-section a {
  padding: 0 22px;
}

.quote-form-shell {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  text-align: left;
}

.quote-form-shell input,
.quote-form-shell textarea,
.quote-form-shell select {
  width: 100%;
  min-height: 44px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 42px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 720;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

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

  .menu-button {
    display: block;
  }

  .site-header.menu-active .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 18px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-active .main-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .trust-strip,
  .section-grid,
  .partner-layout,
  .split-heading,
  .seo-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .blog-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .article-content .wp-block-columns {
    grid-template-columns: 1fr;
  }

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

  .destination-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo,
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-top: 120px;
  }

  .search-panel div {
    grid-template-columns: 1fr;
  }

  .search-panel button {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, 1120px);
  }

  .category-card {
    min-height: auto;
    grid-template-rows: 210px auto;
  }

  .destination-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .destination-card.large {
    grid-column: auto;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-card a {
    width: 100%;
  }
}

