:root {
  --bg: #f5f4ef;
  --paper: #fffdf8;
  --ink: #1f1d1b;
  --muted: #5b5752;
  --brand: #0f5e6b;
  --brand-strong: #0a4550;
  --accent: #c9712b;
  --card-border: #ded7cb;
  --shadow: 0 12px 30px rgba(17, 18, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 15%, rgba(201, 113, 43, 0.12), transparent 36%),
    radial-gradient(circle at 85% 12%, rgba(15, 94, 107, 0.17), transparent 30%),
    var(--bg);
  line-height: 1.55;
}

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

.site-header,
.site-footer,
.section,
.page-intro {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 1.1rem;
}

nav a {
  font-weight: 700;
  color: var(--muted);
}

nav a[aria-current="page"] {
  color: var(--brand-strong);
}

.hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: min(1200px, 94vw);
  margin: 0 auto;
  min-height: 72vh;
  display: grid;
}

.hero img,
.hero-overlay {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(105deg, rgba(11, 33, 40, 0.8), rgba(11, 33, 40, 0.3));
}

.hero-content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  color: #fff;
  width: min(760px, 92vw);
  margin: auto auto auto 4vw;
  animation: reveal 0.8s ease-out both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}

.hero h1,
.page-intro h1,
.section h2 {
  font-family: "Playfair Display", serif;
  margin-top: 0.4rem;
  line-height: 1.18;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  margin-bottom: 0.7rem;
}

.hero p {
  max-width: 60ch;
}

.cta-group {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
}

.button:hover {
  background: #af6024;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section {
  margin-top: 3.6rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.destination-card,
.contact-form,
.contact-panel {
  background: var(--paper);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.card {
  padding: 1.1rem 1.1rem 1.2rem;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.1rem;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 16px;
  min-height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.page-intro {
  padding-top: 2rem;
}

.destination-grid {
  display: grid;
  gap: 1rem;
}

.destination-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
}

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

.destination-card div {
  padding: 1rem 1.1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.contact-form,
.contact-panel {
  padding: 1.1rem;
}

.contact-form {
  display: grid;
  gap: 0.45rem;
}

label {
  font-weight: 700;
}

input,
textarea {
  border: 1px solid #cfc5b8;
  border-radius: 10px;
  background: #fff;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.contact-panel img {
  width: 100%;
  border-radius: 12px;
  margin-top: 0.6rem;
}

.site-footer {
  margin: 3rem auto 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid #c7c0b4;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .cards,
  .split,
  .destination-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 64vh;
  }

  .hero-content {
    margin: auto;
    padding: 1rem;
  }

  .site-header {
    flex-direction: column;
    gap: 0.6rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
  }
}
