:root {
  --ink: #1d2424;
  --muted: #66706d;
  --paper: #fbfaf6;
  --ivory: #f2eee5;
  --sage: #7b8d7a;
  --clay: #b76f55;
  --plum: #4c3345;
  --gold: #c79b54;
  --line: rgba(29, 36, 36, 0.14);
  --shadow: 0 22px 70px rgba(29, 36, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(29, 36, 36, 0.08);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  gap: 12px;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--paper);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a,
.text-link {
  color: var(--muted);
  transition: color 160ms ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  border-color: rgba(251, 250, 246, 0.68);
  color: var(--paper);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  color: var(--paper);
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  padding: 160px clamp(20px, 5vw, 72px) 44px;
  place-items: end start;
  position: relative;
}

.hero-image,
.hero-overlay,
.quote-image {
  inset: 0;
  position: absolute;
}

.hero-image {
  background: url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=2200&q=82") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 21, 21, 0.86) 0%, rgba(16, 21, 21, 0.52) 48%, rgba(16, 21, 21, 0.2) 100%),
    linear-gradient(0deg, rgba(16, 21, 21, 0.45), rgba(16, 21, 21, 0.05));
}

.hero-content {
  max-width: 790px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 970px;
}

h2 {
  font-size: clamp(2.15rem, 4.5vw, 4.45rem);
  max-width: 920px;
}

h3 {
  font-size: 1.65rem;
}

.hero-copy {
  color: rgba(251, 250, 246, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  align-items: stretch;
  background: rgba(251, 250, 246, 0.92);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  max-width: 620px;
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  z-index: 2;
}

.hero-panel div {
  background: var(--paper);
  padding: 26px;
}

.hero-panel strong,
.stats strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.45rem;
  line-height: 1;
}

.hero-panel span,
.stats span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
}

.section-pad {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.intro,
.inquiry {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 92px);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.intro-copy,
.inquiry-copy {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 560px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-weight: 800;
  margin-top: 18px;
}

.founder,
.case-study,
.partners,
.guide-cta {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.founder {
  background: #eef0ea;
}

.founder-image img,
.case-image img,
.destination-grid img,
.social-grid img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.founder-image,
.case-image {
  min-height: 520px;
}

.founder-copy,
.case-content,
.partner-copy {
  color: var(--muted);
}

.founder-copy p,
.case-content p,
.partner-copy p {
  font-size: 1.05rem;
  margin: 22px 0 0;
  max-width: 680px;
}

.stats {
  background: var(--plum);
  color: var(--paper);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats div {
  border-right: 1px solid rgba(251, 250, 246, 0.16);
  padding: 38px clamp(20px, 5vw, 72px);
}

.stats div:last-child {
  border-right: 0;
}

.services {
  background: var(--ivory);
}

.centered {
  margin: 0 auto 46px;
  text-align: center;
}

.centered h2 {
  margin: 0 auto;
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  background: rgba(251, 250, 246, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 310px;
  padding: 28px;
}

.service-card span {
  color: var(--clay);
  display: block;
  font-weight: 800;
  margin-bottom: 58px;
}

.service-card p {
  color: var(--muted);
  margin: 16px 0 0;
}

.packages {
  background: var(--paper);
}

.package-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-card {
  border-bottom: 2px solid var(--clay);
  border-top: 1px solid var(--line);
  min-height: 310px;
  padding: 28px 0;
}

.package-card span {
  color: var(--sage);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.package-card p {
  color: var(--muted);
  margin: 16px 0 0;
}

.portfolio {
  background: var(--paper);
}

.gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 44px;
}

.gallery-item {
  border-radius: 8px;
  color: var(--paper);
  min-height: 310px;
  overflow: hidden;
  position: relative;
}

.gallery-item.large {
  grid-row: span 2;
  min-height: 640px;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.gallery-item::after {
  background: linear-gradient(180deg, rgba(20, 24, 24, 0.02), rgba(20, 24, 24, 0.74));
  content: "";
  inset: 0;
  position: absolute;
}

.gallery-item div {
  bottom: 0;
  left: 0;
  padding: 28px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.gallery-item span {
  color: rgba(251, 250, 246, 0.72);
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.gallery-item strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.case-study {
  background: var(--plum);
  color: var(--paper);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
}

.case-content p {
  color: rgba(251, 250, 246, 0.74);
}

.case-details {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.case-details div {
  border-top: 1px solid rgba(251, 250, 246, 0.24);
  padding-top: 18px;
}

.case-details strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.case-details span {
  color: rgba(251, 250, 246, 0.68);
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
}

.destinations {
  background: var(--ivory);
}

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

.destination-grid article {
  min-height: 430px;
  position: relative;
}

.destination-grid article::after {
  background: linear-gradient(180deg, rgba(20, 24, 24, 0.02), rgba(20, 24, 24, 0.66));
  border-radius: 8px;
  content: "";
  inset: 0;
  position: absolute;
}

.destination-grid span {
  bottom: 24px;
  color: var(--paper);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  left: 24px;
  position: absolute;
  right: 24px;
  z-index: 1;
}

.process {
  background: #eef0ea;
}

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

.timeline div {
  border-top: 2px solid var(--sage);
  padding-top: 22px;
}

.timeline span {
  display: block;
  font-weight: 800;
  margin-bottom: 12px;
}

.timeline p {
  color: var(--muted);
  margin: 0;
}

.testimonial {
  display: grid;
  min-height: 520px;
  place-items: center;
  position: relative;
}

.quote-image {
  background: url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.testimonial::before {
  background: rgba(21, 27, 27, 0.64);
  content: "";
  inset: 0;
  position: absolute;
}

.testimonial > blockquote {
  color: var(--paper);
  margin: 0;
  max-width: 920px;
  padding: 64px clamp(22px, 5vw, 72px);
  position: relative;
  text-align: center;
  z-index: 1;
}

.testimonial > blockquote p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1.08;
  margin: 0;
}

.testimonial > blockquote cite {
  color: rgba(251, 250, 246, 0.72);
  display: block;
  font-style: normal;
  font-weight: 800;
  margin-top: 28px;
}

.testimonials {
  background: var(--paper);
}

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

.testimonial-grid blockquote {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  min-height: 260px;
  padding: 28px;
}

.testimonial-grid p {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.18;
  margin: 0;
}

.testimonial-grid cite {
  color: var(--muted);
  display: block;
  font-style: normal;
  font-weight: 800;
  margin-top: 24px;
}

.partners {
  background: #eef0ea;
}

.press-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.press-list span {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  justify-content: center;
  min-height: 130px;
  padding: 22px;
  text-align: center;
}

.social {
  background: var(--paper);
  text-align: center;
}

.social-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 32px;
  max-width: 1180px;
}

.social-grid img {
  aspect-ratio: 1;
}

.faq {
  background: var(--ivory);
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--muted);
  margin: 14px 0 0;
}

.guide-cta {
  background: var(--plum);
  color: var(--paper);
}

.guide-form {
  display: grid;
  gap: 16px;
}

.guide-form input {
  background: rgba(251, 250, 246, 0.96);
}

.guide-note {
  color: rgba(251, 250, 246, 0.7);
  margin: 0;
  min-height: 1.4em;
}

.inquiry {
  background: var(--paper);
}

.contact-lines {
  color: var(--ink);
  display: grid;
  gap: 10px;
  font-weight: 800;
  margin-top: 28px;
}

.inquiry-form {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(22px, 4vw, 38px);
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  background: var(--paper);
  border: 1px solid rgba(29, 36, 36, 0.2);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clay);
  outline: 3px solid rgba(183, 111, 85, 0.18);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  grid-column: 1 / -1;
  margin: -4px 0 0;
  min-height: 1.4em;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

.site-footer span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.site-footer p {
  color: rgba(251, 250, 246, 0.68);
  margin: 0;
}

.site-footer a {
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

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

  .hero {
    min-height: 880px;
  }

  .hero-panel {
    left: clamp(20px, 5vw, 72px);
    right: auto;
  }

  .intro,
  .inquiry,
  .founder,
  .case-study,
  .partners,
  .faq,
  .guide-cta {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .package-grid,
  .destination-grid,
  .testimonial-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .stats div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    height: 34px;
    width: 34px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero {
    min-height: 820px;
    padding: 120px 18px 220px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    left: 18px;
    right: 18px;
  }

  .section-pad {
    padding: 68px 18px;
  }

  .stats,
  .service-grid,
  .package-grid,
  .gallery,
  .timeline,
  .destination-grid,
  .testimonial-grid,
  .social-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-bottom: 1px solid rgba(251, 250, 246, 0.16);
    border-right: 0;
    padding: 28px 18px;
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 250px;
  }

  .gallery-item,
  .gallery-item.large {
    min-height: 380px;
  }

  .founder-image,
  .case-image,
  .destination-grid article {
    min-height: 340px;
  }

  .case-details,
  .press-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions .button {
    width: 100%;
  }
}
