:root {
  --ink: #2b3b4a;
  --muted: #66707d;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #e8e0d6;
  --brand: #df7844;
  --brand-dark: #c46535;
  --gold: #d69b2d;
  --coral: #cc5a3f;
  --shadow: 0 20px 50px rgba(23, 35, 38, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: #ffffff;
  background: rgba(20, 39, 64, 0.72);
  backdrop-filter: blur(4px);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 18px clamp(16px, 4vw, 70px);
}


.phone-block {
  display: grid;
  grid-template-columns: 46px auto;
  align-items: center;
  column-gap: 12px;
  min-width: 230px;
  font-size: 14px;
}

.phone-block strong {
  grid-column: 2;
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.phone-icon {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand);
  font-size: 20px;
}

.site-logo img {
  width: clamp(180px, 23vw, 260px);
  height: auto;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger span,
.menu-lines span {
  display: block;
  width: 30px;
  height: 2px;
  background: #ffffff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
  padding: 0 clamp(16px, 4vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.social-links,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links a,
.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:hover,
.text-link:hover,
.experience-card a:hover {
  color: var(--brand);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.nav-cta,
.button.primary {
  background: var(--brand);
  color: #ffffff;
}

.nav-cta {
  min-width: 120px;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
}

.button.ghost.dark {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.menu-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.menu-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.menu-lines span {
  width: 20px;
  background: #ffffff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-row.centered {
  justify-content: center;
}

.home-hero,
.page-hero {
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: 260px clamp(18px, 5vw, 72px) 80px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(11, 31, 32, 0.78), rgba(11, 31, 32, 0.25)),
    url("https://images.unsplash.com/photo-1539367628448-4bc5c9d171c8?auto=format&fit=crop&w=2200&q=80") center / cover;
}

.page-hero {
  min-height: 56vh;
  background:
    linear-gradient(90deg, rgba(20, 39, 64, 0.78), rgba(20, 39, 64, 0.22)),
    url("https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=2200&q=80") center / cover;
}

.hero-copy,
.page-hero > div {
  max-width: 760px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 100px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
}

h3 {
  line-height: 1.2;
}

.eyebrow,
.mini-title {
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

.section {
  padding: 90px clamp(18px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 90px);
}

.intro-grid p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 800;
}

.destination-band {
  background: #eef3ed;
}

.destination-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.destination-grid article,
.experience-card,
.collection-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(23, 35, 38, 0.06);
}

.destination-grid img,
.experience-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.destination-grid article {
  padding-bottom: 24px;
}

.destination-grid h3,
.destination-grid p {
  padding: 0 24px;
}

.destination-grid h3 {
  margin-top: 22px;
}

.destination-grid p,
.card-body p,
.collection-card p,
.site-footer p {
  color: var(--muted);
}

.portfolio-shell {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  padding: 80px clamp(18px, 5vw, 72px);
}

.sticky-panel {
  position: sticky;
  top: 122px;
}

.filters h2 {
  margin-bottom: 34px;
}

.filter-group {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.filter-group h3 {
  margin-bottom: 14px;
  font-size: 16px;
}

.filter-chip,
.filter-group span,
.clear-button {
  display: inline-flex;
  margin: 0 8px 10px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 12px;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover,
.clear-button:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.clear-button {
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-content {
  min-width: 0;
}

.collection-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  margin-bottom: 34px;
}

.collection-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.collection-card div {
  padding: clamp(28px, 4vw, 54px);
}

.cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.experience-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.experience-card.hidden {
  display: none;
}

.card-body {
  padding: 24px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tags span {
  border-radius: 999px;
  background: #eef6f4;
  color: var(--brand-dark);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.experience-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.experience-card a {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}

.pagination a,
.pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 800;
}

.pagination a.active {
  background: var(--brand);
  color: #ffffff;
}

.cta-section {
  padding: 90px clamp(18px, 5vw, 72px);
  text-align: center;
  background: #f4efe6;
}

.cta-section p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.site-footer {
  background: var(--ink);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr;
  gap: clamp(28px, 5vw, 70px);
  padding: 80px clamp(18px, 5vw, 72px);
}

.footer-about img {
  width: 230px;
  margin-bottom: 22px;
}

.site-footer h3 {
  position: relative;
  margin-bottom: 34px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background: var(--brand);
}

.site-footer a {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer p {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-social {
  margin-top: 14px;
}

.footer-social a {
  width: auto;
  height: auto;
  border: 0;
  margin: 0;
}

.footer-bottom {
  padding: 22px clamp(18px, 5vw, 72px);
  background: rgba(0, 0, 0, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .intro-grid,
  .portfolio-shell,
  .collection-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }

  .filters {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }

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

@media (max-width: 700px) {
  .header-main {
    min-height: auto;
    padding: 18px;
  }

  .phone-block {
    grid-template-columns: 40px auto;
    min-width: 0;
    font-size: 12px;
  }

  .phone-block strong {
    font-size: 14px;
  }

  .phone-icon {
    width: 40px;
    height: 40px;
  }

  .site-logo img {
    width: 150px;
  }

  .hamburger {
    width: 36px;
  }

  .home-hero,
  .page-hero {
    min-height: 72vh;
    padding-top: 230px;
  }

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

  .collection-card img,
  .destination-grid img,
  .experience-card img {
    height: 220px;
    min-height: auto;
  }
}
