:root {
  --orange-900: #7a2e12;
  --orange-700: #e0671f;
  --orange-500: #ff8b3d;
  --orange-300: #ffb682;
  --peach-200: #ffe6cc;
  --peach-100: #fff3e6;
  --ink-900: #261710;
  --ink-700: #3d2a20;
  --ink-500: #5a4031;
  --teal-500: #2e8a86;
  --white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(38, 23, 16, 0.12);
  --shadow-card: 0 14px 30px rgba(38, 23, 16, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Fraunces", serif;
  --font-body: "Sora", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: radial-gradient(circle at 20% 20%, #fff6ea 0%, #fff1e0 40%, #ffe8cf 70%, #ffe1bf 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.4;
  z-index: -2;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite;
}

body::before {
  background: radial-gradient(circle at 30% 30%, #ffd29b 0%, #ffb682 60%, transparent 100%);
  top: -120px;
  right: -120px;
}

body::after {
  background: radial-gradient(circle at 30% 30%, #ffd7a6 0%, #ff9f5c 60%, transparent 100%);
  bottom: -160px;
  left: -160px;
  animation-delay: 4s;
}

main {
  position: relative;
  z-index: 1;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 244, 231, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(224, 103, 31, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.brand img {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  color: var(--ink-700);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange-700);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(224, 103, 31, 0.4);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.9rem;
  color: var(--ink-700);
}

.hero {
  padding: 70px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 0 0 18px;
  color: var(--ink-900);
}

.hero p {
  color: var(--ink-500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--orange-700);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(224, 103, 31, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(224, 103, 31, 0.3);
  color: var(--ink-700);
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 214, 155, 0.5);
}

.hero-card h3 {
  margin: 10px 0 6px;
}

.hero-art {
  background: linear-gradient(120deg, rgba(255, 215, 157, 0.8), rgba(224, 103, 31, 0.2));
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.hero-art svg {
  width: min(360px, 80%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange-900);
  background: rgba(255, 230, 204, 0.8);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.stat span {
  font-size: 0.9rem;
  color: var(--ink-500);
}

.section {
  padding: 80px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.section-head p {
  margin: 0;
  color: var(--ink-500);
  max-width: 480px;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.trip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.trip-card .trip-image {
  height: 180px;
  background: linear-gradient(120deg, #ffd7a9, #ff9f5c);
}

.trip-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.trip-card .trip-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.trip-card .trip-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.trip-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.trip-meta {
  font-size: 0.85rem;
  color: var(--ink-500);
}

.trip-price {
  font-weight: 700;
  color: var(--orange-900);
}

.list {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.trip-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(46, 138, 134, 0.1);
  color: var(--teal-500);
  font-size: 0.75rem;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.feature-card h3 {
  margin: 0 0 10px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.step {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-card);
}

.step span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-700);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.form-group {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
}

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(90, 64, 49, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-900);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-500);
}

.footer {
  padding: 40px 0 60px;
  color: var(--ink-700);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.footer small {
  display: block;
  margin-top: 16px;
  color: var(--ink-500);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.admin-body {
  background: radial-gradient(circle at top left, #fff2df, #ffe4c6 40%, #ffd1a8 100%);
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 40px 0 80px;
}

.admin-sidebar {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  height: fit-content;
  position: sticky;
  top: 90px;
}

.admin-sidebar h2 {
  margin-top: 0;
  font-family: var(--font-display);
}

.admin-sidebar button {
  width: 100%;
  margin-top: 10px;
}

.admin-panel {
  display: grid;
  gap: 24px;
}

.panel-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.panel-card h3 {
  margin-top: 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table th,
.table td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid rgba(90, 64, 49, 0.15);
}

.table th {
  color: var(--ink-500);
  font-weight: 600;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224, 103, 31, 0.12);
  color: var(--orange-900);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f49b65;
  margin-right: 6px;
}

.status-dot.is-active {
  background: #3ab87a;
}

.notice {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(46, 138, 134, 0.1);
  color: var(--teal-500);
  font-size: 0.85rem;
}

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

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

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    inset: 70px 20px auto;
    background: rgba(255, 255, 255, 0.96);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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