/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* Variables */
:root {
  --cream: #F7F2EA;
  --cream-dark: #EDE7DB;
  --forest: #1B3D2F;
  --forest-light: #254B3A;
  --terracotta: #C85E2A;
  --terracotta-light: #D9784A;
  --gold: #D4A843;
  --sand: #E8D9C0;
  --charcoal: #1C1C1A;
  --text: #3A3733;
  --text-muted: #7A756F;
  --white: #FFFFFF;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Utility */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
em { font-style: italic; color: var(--terracotta); }
.text-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 1px;
  transition: all 0.2s;
}
.text-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border: 2px solid var(--terracotta);
}
.btn-primary:hover { background: var(--terracotta-light); border-color: var(--terracotta-light); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--white); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(27, 61, 47, 0.82) 0%,
    rgba(27, 61, 47, 0.55) 50%,
    rgba(27, 61, 47, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 7vw 4rem;
  max-width: 820px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0.8;
}
.eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--sand);
  opacity: 0.6;
}
.hero-headline {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(232, 217, 192, 0.9);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 7vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ─── SERVICES ─── */
.services {
  padding: 7rem 7vw;
  background: var(--cream);
}
.services-header {
  margin-bottom: 4rem;
}
.services-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--forest);
  line-height: 1.1;
}
.services-title em { color: var(--terracotta); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
}
.service-card {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--cream-dark);
  border-right: 1px solid var(--cream-dark);
  transition: background 0.2s;
}
.service-card:first-child { border-left: 1px solid var(--cream-dark); }
.service-card:hover { background: var(--cream-dark); }
.service-number {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}
.service-name {
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 0.85rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.03em;
}
.service-link:hover { color: var(--forest); }

/* ─── PROVENANCE ─── */
.provenance {
  background: var(--forest);
  color: var(--white);
  padding: 6rem 7vw;
}
.provenance-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.provenance-stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 217, 192, 0.7);
}
.provenance-divider {
  height: 1px;
  background: rgba(232, 217, 192, 0.15);
}
.provenance-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--sand);
  margin-bottom: 0.6rem;
}
.pillar-desc {
  font-size: 0.85rem;
  color: rgba(232, 217, 192, 0.65);
  line-height: 1.6;
}

/* ─── DESTINATIONS ─── */
.destinations {
  padding: 7rem 7vw;
  background: var(--cream);
}
.destinations-header {
  margin-bottom: 3rem;
}
.destinations-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--forest);
}
.destinations-title em { color: var(--terracotta); }
.destinations-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 0.75rem;
}
.dest-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.dest-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dest-card--large .dest-img-wrap { aspect-ratio: 16/9; }
.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dest-card:hover .dest-img { transform: scale(1.04); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 61, 47, 0.75) 0%, transparent 60%);
  transition: opacity 0.3s;
}
.dest-card:hover .dest-overlay { opacity: 0.85; }
.dest-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.dest-region {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.dest-spot {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}
.destinations-footer {
  margin-top: 2rem;
  text-align: center;
}

/* ─── REVIEWS ─── */
.reviews {
  background: var(--cream-dark);
  padding: 7rem 7vw;
}
.reviews-inner {}
.reviews-header { margin-bottom: 3rem; }
.reviews-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--forest);
}
.reviews-title em { color: var(--terracotta); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 168, 67, 0.15);
}
.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
}
.author-country {
  font-size: 0.75rem;
  color: var(--terracotta);
  letter-spacing: 0.08em;
}

/* ─── CLOSING ─── */
.closing {
  background: var(--forest);
  padding: 8rem 7vw;
  text-align: center;
}
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.closing-statement em { font-style: italic; color: var(--gold); }

/* ─── FOOTER ─── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 3rem 7vw;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-content { padding: 4rem 6vw 3rem; }
  .hero-scroll-hint { display: none; }
  .services { padding: 5rem 6vw; }
  .provenance { padding: 5rem 6vw; }
  .destinations { padding: 5rem 6vw; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .dest-card--large { grid-column: 1 / -1; }
  .reviews { padding: 5rem 6vw; }
  .closing { padding: 5rem 6vw; }
  .service-card { border-left: 1px solid var(--cream-dark); }
}
@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
}