:root {
  --bg: #ffffff;
  --text: #57204b;
  --muted: #926f82;
  --accent: #ff6f1f;
  --accent-soft: #fff0e5;
  --bar: #7a214e;
  --bar-dark: #65153d;
  --section: #fff4eb;
  --border: #ecd7df;
  --shadow: 0 12px 30px rgba(77, 25, 49, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  color: #ef7d00;
  line-height: 1;
}

.brand-tag {
  font-size: 0.82rem;
  color: #d09f69;
  margin-top: 4px;
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffaf6 0%, #fff2ea 100%);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 16px;
  font-family: "Fraunces", serif;
  color: #6b113b;
}

.contact-card p {
  margin: 10px 0;
}

.contact-card a {
  color: #b64e00;
  font-weight: 700;
}

.contact-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #8d6880;
  font-weight: 700;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255, 111, 31, 0.22);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: #fff7f1;
  box-shadow: 0 10px 24px rgba(77, 25, 49, 0.08);
}

.hamburger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #6b113b;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-panel {
  display: contents;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8d6880;
  font-weight: 600;
}

.language-switcher select {
  border: 1px solid rgba(255, 111, 31, 0.35);
  border-radius: 10px;
  background: #fffaf6;
  color: #6b113b;
  padding: 10px 12px;
  min-width: 120px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  color: #8d6880;
  font-weight: 500;
  padding-bottom: 8px;
}

.main-nav a.active {
  color: #6b113b;
  border-bottom: 2px solid var(--accent);
}

.login-btn {
  padding: 12px 18px;
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 700;
}

.service-bar {
  background: linear-gradient(180deg, #8b2f5c 0%, #6f1f4a 100%);
  color: #fff;
  border-radius: 0 0 18px 18px;
}

.service-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 500;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(255, 242, 227, 0.78) 0%, rgba(255, 220, 193, 0.34) 30%, rgba(78, 32, 51, 0.06) 100%),
    url("https://images.pexels.com/photos/30854355/pexels-photo-30854355.jpeg?cs=srgb&dl=pexels-yashchoudhary-30854355.jpg&fm=jpg") center/cover no-repeat;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 54% 24%, rgba(255, 177, 60, 0.16) 0%, rgba(255, 177, 60, 0) 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(123, 36, 78, 0.08) 100%);
}

.hero-content {
  position: relative;
  padding: 78px 0 110px;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.08;
  max-width: 650px;
}

h2 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  margin-top: 10px;
}

.hero-sub,
.hero-copy {
  max-width: 560px;
  color: #8c6075;
}

.hero-sub {
  margin: 24px 0 8px;
  font-size: 1.18rem;
}

.hero-copy {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero h1,
.hero-sub,
.hero-copy {
  text-shadow: 0 2px 14px rgba(255, 248, 241, 0.6);
}

.search-card {
  margin-top: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 30px 30px 30px;
}

.search-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 2px solid #d9cfd5;
  padding-bottom: 18px;
  overflow-x: auto;
}

.search-tabs a {
  color: #9a7487;
  white-space: nowrap;
  padding-bottom: 12px;
  border-bottom: 3px solid transparent;
}

.search-tabs a.active {
  color: #6b113b;
  border-bottom-color: var(--accent);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 178px;
  gap: 0;
  margin-top: 26px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  overflow: hidden;
}

.search-row input {
  border: 0;
  padding: 22px 22px;
  font-size: 1.05rem;
  outline: none;
}

.search-row button {
  border: 0;
  background: linear-gradient(135deg, #ff8b4a 0%, #ff6613 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.section {
  padding: 86px 0;
}

.section-tinted {
  background: var(--section);
}

.chip-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0 40px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.chip,
.circle-arrow {
  border: 1px solid transparent;
  border-radius: 12px;
  background: #fff6f0;
  color: #6d2147;
  padding: 13px 18px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.chip-active {
  background: #8b2f5c;
  color: #fff;
  font-weight: 700;
}

.circle-arrow {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: #8b2f5c;
  color: #fff;
  font-size: 1.2rem;
}

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

.card img,
.package-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.card-body {
  padding: 12px 10px 0;
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.destination-card h3 {
  font-size: 1.18rem;
}

.destination-card p {
  margin: 8px 0 0;
  color: #6d4d61;
  font-size: 1rem;
}

.mini-arrow {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  flex: 0 0 auto;
}

.center {
  text-align: center;
  margin-top: 44px;
}

.outline-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 500;
}

.circle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.circle-item {
  text-align: center;
}

.circle-item img,
.logo-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 20px rgba(92, 43, 62, 0.1);
}

.circle-item h3,
.partner-item h3 {
  font-size: 1.2rem;
  margin-top: 18px;
}

.circle-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #261516;
  font-weight: 700;
  white-space: nowrap;
}

.circle-item a span {
  display: inline;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.circle-item a span:last-child {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  flex: 0 0 auto;
}

.package-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 350px;
  box-shadow: var(--shadow);
}

.package-card img {
  height: 100%;
  min-height: 350px;
  border-radius: 16px;
}

.package-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 247, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  padding: 14px 14px 10px;
  backdrop-filter: blur(12px);
}

.package-overlay h3 {
  font-size: 1.05rem;
  line-height: 1.45;
}

.package-overlay p {
  margin: 8px 0 0;
  color: #765b66;
  font-weight: 700;
}

.partners .logo-circle {
  padding: 0;
  overflow: hidden;
}

.partners .logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.partner-item h3 {
  min-height: 52px;
}

.faq-section {
  padding-bottom: 110px;
}

.faq-item {
  border: 2px solid var(--border);
  border-radius: 10px;
  margin-top: 12px;
  background: #fff8f4;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 22px;
  font-size: 1.15rem;
  font-weight: 700;
  position: relative;
  color: #3a171f;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "⌄";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: #5f243f;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: #745c69;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .nav-row {
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

@media (max-width: 900px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .top-header {
    position: static;
  }

  .nav-row {
    gap: 16px;
    padding: 18px 0 16px;
    justify-content: center;
    position: relative;
  }

  .brand {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .nav-panel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .main-nav {
    width: auto;
    gap: 18px;
    justify-content: center;
  }

  .header-tools {
    width: 100%;
    justify-content: center;
  }

  .login-btn {
    padding: 11px 16px;
  }

  .service-links {
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 14px 16px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    border-radius: 0 0 24px 24px;
  }

  .hero-content {
    padding: 56px 0 78px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 6vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 4vw, 2.5rem);
  }

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

  .search-card {
    margin-top: 44px;
    padding: 24px 22px;
  }

  .search-tabs {
    gap: 18px;
  }

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

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

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: calc(100% - 20px);
  }

  .nav-row {
    align-items: stretch;
    gap: 14px;
    padding: 16px 0 14px;
    justify-content: space-between;
  }

  .brand {
    justify-content: flex-start;
    gap: 12px;
    width: calc(100% - 64px);
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tag {
    font-size: 0.76rem;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .hamburger {
    display: inline-flex;
    align-self: flex-start;
  }

  .nav-panel {
    width: 100%;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
  }

  .main-nav,
  .nav-panel .login-btn {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .main-nav {
    justify-content: flex-start;
    overflow: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 0;
    width: 100%;
  }

  .header-tools {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 14px;
  }

  .language-switcher {
    justify-content: space-between;
  }

  .language-switcher select {
    min-width: 0;
    width: 150px;
  }

  .nav-panel .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    white-space: normal;
  }

  .main-nav a {
    flex: 0 0 auto;
    font-size: 0.96rem;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #f1dde6;
  }

  .nav-panel .login-btn {
    width: 100%;
    align-self: stretch;
    text-align: center;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 12px;
  }

  .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-toggle:checked + .hamburger + .nav-panel {
    max-height: 420px;
    margin-top: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #f4d9e4;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(77, 25, 49, 0.12);
  }

  .nav-toggle:checked + .hamburger + .nav-panel .main-nav,
  .nav-toggle:checked + .hamburger + .nav-panel .login-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .service-bar {
    border-radius: 0 0 14px 14px;
  }

  .service-links {
    gap: 18px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .hero {
    border-radius: 0 0 18px 18px;
  }

  .hero-content {
    padding: 42px 0 56px;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.14;
  }

  .hero-sub {
    margin: 18px 0 10px;
    font-size: 1rem;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .search-card {
    margin-top: 34px;
    padding: 18px 14px;
    border-radius: 16px;
  }

  .search-tabs {
    gap: 16px;
    padding-bottom: 14px;
  }

  .search-tabs a {
    font-size: 0.95rem;
    padding-bottom: 10px;
  }

  .search-row {
    grid-template-columns: 1fr;
    margin-top: 18px;
    border-radius: 12px;
  }

  .search-row input {
    padding: 16px 16px;
    font-size: 1rem;
  }

  .search-row button {
    padding: 16px;
    min-height: 56px;
  }

  .section {
    padding: 54px 0;
  }

  .chip-row {
    margin: 24px 0 28px;
    gap: 8px;
  }

  .chip {
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.93rem;
  }

  .circle-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .destination-grid,
  .package-grid,
  .circle-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .card img {
    height: 220px;
    border-radius: 14px;
  }

  .card-body {
    padding: 12px 4px 0;
  }

  .destination-card h3 {
    font-size: 1.35rem;
  }

  .destination-card p {
    font-size: 1rem;
  }

  .mini-arrow {
    width: 30px;
    height: 30px;
  }

  .center {
    margin-top: 32px;
  }

  .outline-btn {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }

  .circle-grid {
    margin-top: 28px;
  }

  .circle-item {
    max-width: 320px;
    margin: 0 auto;
  }

  .circle-item img,
  .logo-circle {
    max-width: 220px;
    margin: 0 auto;
  }

  .circle-item h3,
  .partner-item h3 {
    font-size: 1.5rem;
    margin-top: 14px;
  }

  .circle-item a {
    margin-top: 8px;
    font-size: 1rem;
  }

  .package-card {
    min-height: 300px;
    border-radius: 14px;
  }

  .package-card img {
    min-height: 300px;
    border-radius: 14px;
  }

  .package-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
    border-radius: 12px;
  }

  .package-overlay h3 {
    font-size: 1.18rem;
  }

  .package-overlay p {
    font-size: 1rem;
  }

  .partners .logo-circle img {
    object-fit: contain;
    background: #fff;
    padding: 14px;
  }

  .partner-item h3 {
    min-height: 0;
  }

  .partners {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 10px;
  }

  .partners .partner-item {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .partners .logo-circle {
    max-width: 190px;
  }

  .faq-section {
    padding-bottom: 72px;
  }

  .faq-item summary {
    padding: 18px 44px 18px 16px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .faq-item summary::after {
    right: 14px;
    font-size: 1.5rem;
  }

  .faq-item p {
    padding: 0 16px 18px;
    font-size: 0.96rem;
    line-height: 1.65;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .destination-card h3,
  .circle-item h3,
  .partner-item h3,
  .package-overlay h3 {
    font-size: 1.2rem;
  }

  .card img {
    height: 200px;
  }

  .circle-item img,
  .logo-circle {
    max-width: 200px;
  }
}
