:root {
  --bg: #ebebea;
  --panel: #ffffff;
  --text: #2d4f4f;
  --muted: #657175;
  --teal: #79a899;
  --teal-dark: #5f9687;
  --coral: #d97f6f;
  --gold: #9f813f;
  --line: #e4e4e2;
  --shadow: 0 16px 45px rgba(0, 0, 0, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #f6f6f5, var(--bg) 65%);
  padding: clamp(14px, 2.8vw, 28px);
}

.plane-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 12;
  overflow: hidden;
}

.bg-plane {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(26px, 2.4vw, 40px);
  opacity: 0.2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transform: translate(180px, 220px) rotate(0deg);
  transform-origin: center center;
  will-change: transform, opacity;
}

.site-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 1260px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 2.6vw, 2rem);
}

.brand-logo {
  width: clamp(140px, 16vw, 220px);
  height: auto;
  display: block;
  border: 1px solid #2c2c2c;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  gap: clamp(0.2rem, 1vw, 0.85rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-btn {
  color: var(--teal-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  position: relative;
  animation: drift 5s ease-in-out infinite;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-btn:hover,
.nav-btn.active {
  color: #fff;
  background: var(--teal);
}

.nav-btn:nth-child(2) { animation-delay: 0.2s; }
.nav-btn:nth-child(3) { animation-delay: 0.35s; }
.nav-btn:nth-child(4) { animation-delay: 0.5s; }
.nav-btn:nth-child(5) { animation-delay: 0.65s; }
.nav-btn:nth-child(6) { animation-delay: 0.8s; }

.hero {
  min-height: clamp(330px, 53vw, 560px);
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.12) 24%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.12) 76%, rgba(255, 255, 255, 0.5) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    url("graphics/familyvacation.png");
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  align-items: center;
}

.hero-overlay {
  max-width: 560px;
  margin: clamp(1.1rem, 2.4vw, 1.8rem);
  padding: clamp(1.1rem, 3.8vw, 2.5rem);
  background: rgba(217, 127, 140, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(2px);
}

.eyebrow {
  margin: 0 0 0.4rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.78rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

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

h1 {
  color: #be6453;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
  font-size: clamp(1.85rem, 5.2vw, 3.5rem);
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-sub {
  margin: 0.8rem 0 1.2rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: clamp(1rem, 2.2vw, 1.7rem);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section {
  padding: clamp(1.3rem, 3vw, 2.3rem) clamp(1rem, 2.8vw, 2rem);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

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

h2 {
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  letter-spacing: 0.03em;
  color: #222;
}

.about-simple {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  align-items: stretch;
}

.about-photo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-photo {
  width: 100%;
  max-width: 140px;
  border-radius: 10px;
  border: 1px solid #c9dcd6;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.about-card {
  background: #f9fbfb;
  border: 1px solid #d9e8e4;
  border-radius: 10px;
  padding: 0.95rem;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.stat-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-row article {
  background: #f8fbfa;
  border: 1px solid #d7e8e3;
  border-radius: 8px;
  padding: 0.8rem;
}

.stat-row strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.1rem;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.inspired-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.inspired-card {
  border-radius: 8px;
  padding: 1rem;
  min-height: 180px;
  color: #fff;
  display: grid;
  align-content: end;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.14);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.inspired-card:link,
.inspired-card:visited,
.inspired-card:hover,
.inspired-card:active,
.inspired-card:focus-visible {
  color: #fff;
  text-decoration: none;
}

.inspired-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 30%, rgba(0, 0, 0, 0.74) 100%);
}

.inspired-card h3,
.inspired-card p {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

.inspired-card h3 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55);
}

.inspired-card p {
  margin: 0.35rem 0 0;
  line-height: 1.55;
  font-size: 0.98rem;
  font-weight: 500;
}

.inspired-card:hover,
.inspired-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.c1 { background-image: url("graphics/themepark.png"); }
.c2 { background-image: url("graphics/europe.png"); }
.c3 { background-image: url("graphics/cruise.png"); }

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.process-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.75rem;
  align-items: start;
  background: #fbfbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem;
}

.process-steps span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.process-steps p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.inquiry-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: #384c50;
  font-size: 0.87rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

input,
textarea {
  font: inherit;
  border: 1px solid #cdd9d6;
  border-radius: 6px;
  padding: 0.62rem 0.7rem;
}

input:focus,
textarea:focus {
  outline: 2px solid #b0d8ce;
  border-color: #89baad;
}

.cta-btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--teal);
  border: 0;
  border-radius: 6px;
  letter-spacing: 0.04em;
  padding: 0.74rem 1.2rem;
  cursor: pointer;
  width: fit-content;
}

.cta-btn:hover {
  background: var(--teal-dark);
}

.form-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  border-bottom: 0;
}

.contact-card {
  background: #f8fbfa;
  border: 1px solid #d7e8e3;
  border-radius: 10px;
  padding: 1rem;
}

.contact-card p {
  margin: 0.45rem 0;
}

.contact-card a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 600;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 3.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d7e8e3;
  background: #f8fbfa;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.insta-link svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
  flex: 0 0 0.95rem;
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (max-width: 980px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .about-simple,
  .stat-row,
  .inspired-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-overlay {
    margin: 0.8rem;
  }
}
