:root {
  color-scheme: light;
  --red: #8a2020;
  --deep-red: #651515;
  --ink: #201917;
  --muted: #685d57;
  --line: #e3d9d1;
  --paper: #fffaf4;
  --white: #ffffff;
  --gold: #c99643;
  --green: #234b3d;
  --shadow: 0 18px 45px rgba(62, 25, 17, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 30px rgba(45, 11, 11, 0.18);
}

.topbar,
.main-nav {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-weight: 800;
  color: #ffe8b5;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.utility-nav,
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.utility-nav {
  font-size: 14px;
}

.main-nav {
  min-height: 54px;
  justify-content: center;
  font-size: 15px;
  background: var(--deep-red);
}

.main-nav a,
.utility-nav a {
  opacity: 0.9;
}

.main-nav a:hover,
.utility-nav a:hover,
.main-nav .is-active {
  opacity: 1;
  color: #ffe0a3;
}

.hero {
  position: relative;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  background: #1d1818;
}

.hero img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(25, 13, 10, 0.82), rgba(25, 13, 10, 0.38) 48%, rgba(25, 13, 10, 0.08)),
    linear-gradient(0deg, rgba(15, 13, 10, 0.55), transparent 40%);
}

.hero-copy {
  position: absolute;
  left: max(32px, calc((100vw - 1200px) / 2));
  bottom: 92px;
  z-index: 1;
  width: min(640px, calc(100% - 48px));
  color: var(--white);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  font-weight: 700;
}

.hero p {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.42;
}

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

.button,
.reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button {
  gap: 9px;
  padding: 0 20px;
}

.button svg,
.reserve-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary {
  color: #2b170b;
  background: #f2c56c;
}

.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.button:hover,
.reserve-button:hover {
  transform: translateY(-1px);
}

.quick-book,
.souvenir-section,
.package-detail,
.confirmation,
.inquiry-panel {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 36px;
}

.breadcrumb {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.section-head p:not(.breadcrumb),
.package-detail > div > p,
.inquiry-panel > div > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.booking-card,
.product-card,
.quote-box,
.question-grid article,
.booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.booking-card.featured {
  border-color: rgba(138, 32, 32, 0.45);
}

.booking-card > img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  background: #d8d1c8;
}

.featured > img {
  object-position: center top;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.card-label {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
}

.card-body p,
.product-card p,
.question-grid p,
.quote-box dd,
.timeline div,
.footer-main p {
  color: var(--muted);
  line-height: 1.58;
}

.card-body dl,
.quote-box dl {
  margin: 20px 0;
}

.card-body dl div,
.quote-box dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: #7a302b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 750;
}

.reserve-button {
  width: 100%;
  margin-top: auto;
  padding: 0 16px;
  color: var(--white);
  background: var(--red);
}

.experience-band {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  padding: 72px max(32px, calc((100vw - 1200px) / 2));
  color: var(--white);
  background: var(--green);
}

.experience-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-content: end;
}

.benefits div {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.benefits strong {
  display: block;
  color: #f6c76d;
  font-size: 42px;
  line-height: 1;
}

.benefits span {
  display: block;
  margin-top: 18px;
  line-height: 1.48;
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: #271915;
}

.product-card div {
  padding: 20px;
}

.product-card h3 {
  font-size: 19px;
}

.product-card span {
  display: block;
  margin-top: 13px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.package-detail,
.inquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  gap: 40px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.timeline div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  background: var(--white);
}

.timeline span {
  color: var(--red);
  font-weight: 800;
}

.quote-box,
.booking-form {
  padding: 26px;
}

.quote-box h3 {
  margin-bottom: 8px;
}

.confirmation {
  border-top: 1px solid var(--line);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.question-grid article {
  padding: 22px;
}

.question-grid h3 {
  font-size: 19px;
}

.inquiry-panel {
  border-top: 1px solid var(--line);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: #6d2d28;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
}

.booking-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 750;
}

.site-footer {
  color: var(--white);
  background: #1e1514;
}

.subscribe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
  align-items: center;
  padding: 56px max(32px, calc((100vw - 1200px) / 2));
  background: var(--red);
}

.subscribe h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.subscribe form {
  display: flex;
  gap: 0;
}

.subscribe input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 4px 0 0 4px;
  padding: 0 15px;
}

.subscribe button {
  min-height: 48px;
  border: 0;
  border-radius: 0 4px 4px 0;
  padding: 0 18px;
  color: #21130f;
  font-weight: 850;
  background: #f1c56d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.72);
}

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

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .booking-grid,
  .product-grid,
  .question-grid,
  .experience-band,
  .package-detail,
  .inquiry-panel,
  .section-head.split,
  .subscribe,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .topbar,
  .main-nav,
  .quick-book,
  .souvenir-section,
  .package-detail,
  .confirmation,
  .inquiry-panel,
  .footer-main {
    width: min(100% - 28px, 1200px);
  }

  .hero,
  .hero img {
    min-height: 560px;
  }

  .hero-copy {
    left: 20px;
    bottom: 54px;
    width: calc(100% - 40px);
  }

  .quick-book,
  .souvenir-section,
  .package-detail,
  .confirmation,
  .inquiry-panel {
    padding: 52px 0;
  }

  .booking-card > img {
    height: 230px;
  }

  .product-card img {
    height: 330px;
  }

  .timeline div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .subscribe form {
    display: grid;
    gap: 10px;
  }

  .subscribe input,
  .subscribe button {
    border-radius: 4px;
  }
}
