:root {
  --burgundy: #5b0014;
  --burgundy-dark: #33000d;
  --burgundy-soft: #7a1026;
  --coral: #c96f5b;
  --sage: #6f8277;
  --gold: #d7ad6a;
  --gold-light: #f4cf8b;
  --ink: #2d2524;
  --muted: #6d6260;
  --line: #ded6cf;
  --paper: #fbfaf7;
  --white: #fff;
  --shadow: 0 26px 80px rgba(56, 35, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 250, 247, 0.98) 34%),
    var(--paper);
  color: var(--ink);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.topbar {
  align-items: center;
  background:
    linear-gradient(110deg, rgba(51, 0, 13, 0.96), rgba(91, 0, 20, 0.95) 62%, rgba(67, 0, 14, 0.96)),
    linear-gradient(90deg, rgba(215, 173, 106, 0.14), transparent 38%, rgba(111, 130, 119, 0.16));
  color: var(--white);
  display: flex;
  height: 98px;
  justify-content: space-between;
  padding: 0 clamp(1.35rem, 5vw, 4rem);
}

.brand {
  display: inline-grid;
  gap: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.34em;
}

.brand em {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-style: italic;
  letter-spacing: 0.2em;
  margin-left: 2.1rem;
  text-transform: none;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  justify-content: flex-end;
}

.nav a {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  position: relative;
  text-transform: uppercase;
}

.nav a::after {
  background: currentColor;
  bottom: -0.45rem;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 100%;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 22, 25, 0.9), rgba(25, 24, 22, 0.58) 42%, rgba(25, 14, 9, 0.1)),
    image-set(url("assets/hero-voyage.png") 1x);
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: clamp(480px, 44vw, 560px);
  padding: clamp(2.45rem, 4.4vw, 4.2rem) clamp(1.35rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  color: var(--gold-light);
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 0 2.25rem;
  text-transform: uppercase;
}

.eyebrow::after,
.rule {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  margin-top: 1.25rem;
  width: 58px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 6.5vw, 5.55rem);
  font-weight: 500;
  line-height: 0.92;
  margin: 0 0 2rem;
  max-width: 650px;
}

.hero h1 span {
  color: var(--gold-light);
  display: block;
  font-style: italic;
}

.hero-copy > p:last-child {
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  margin: 0;
  max-width: 500px;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(111, 130, 119, 0.08), transparent 28%),
    var(--paper);
  padding: clamp(3rem, 6vw, 4.8rem) clamp(1.25rem, 5vw, 4rem);
}

.about-grid,
.simple-page-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
}

.about-copy {
  background: rgba(255, 255, 255, 0.58);
  border-left: 1px solid rgba(215, 173, 106, 0.52);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(56, 35, 28, 0.06);
  color: #403938;
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3.5vw, 2.5rem);
}

.about-copy p {
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  margin: 0;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(215, 173, 106, 0.13), transparent 32%),
    linear-gradient(180deg, #fff, var(--paper));
  padding: clamp(3rem, 6vw, 4.6rem) clamp(1.25rem, 5vw, 4rem);
}

.contact-grid {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.25fr);
  margin: 0 auto;
  max-width: 1120px;
}

.details {
  border-right: 1px solid var(--line);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.section-heading {
  align-items: center;
  color: var(--burgundy-dark);
  display: flex;
  gap: 1.35rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.heading-icon {
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--burgundy-dark);
  display: inline-flex;
  flex: 0 0 auto;
  height: 68px;
  justify-content: center;
  width: 68px;
}

.heading-icon svg {
  height: 34px;
  width: 34px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.rule {
  color: var(--burgundy);
  margin-top: 0.8rem;
}

.contact-list {
  display: grid;
  font-style: normal;
  gap: 0;
}

.contact-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 68px 1fr;
  padding: 1.55rem 0;
}

.contact-icon {
  align-items: center;
  background: var(--burgundy);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.contact-icon svg {
  height: 29px;
  width: 29px;
}

.contact-item strong {
  color: var(--burgundy-dark);
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.contact-item p {
  color: #3f3938;
  margin: 0;
}

.map-link {
  align-items: center;
  border: 1px solid var(--burgundy-soft);
  color: var(--burgundy-dark);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 1rem;
  justify-content: center;
  letter-spacing: 0.08em;
  margin-top: 2.4rem;
  min-height: 58px;
  padding: 0.9rem 1.7rem;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: min(100%, 370px);
}

.map-link:hover,
.map-link:focus-visible {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-1px);
}

.map-link svg {
  height: 26px;
  width: 26px;
}

.form-panel {
  min-width: 0;
}

.contact-button-panel {
  align-content: start;
  display: grid;
}

.contact-button-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 173, 106, 0.46);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(56, 35, 28, 0.08);
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.contact-button-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  margin: 0;
}

.contact-mail-button {
  width: min(100%, 300px);
}

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

.field-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

label {
  display: grid;
  position: relative;
}

label span {
  color: #554e4c;
  font-size: 0.87rem;
  font-weight: 500;
  left: 1.25rem;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  top: 1.05rem;
  transition: color 160ms ease, transform 160ms ease;
}

input,
textarea {
  appearance: none;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #d8d0c8;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 58px;
  outline: 0;
  padding: 1.65rem 1.25rem 0.65rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  width: 100%;
}

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

input:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(91, 0, 20, 0.08);
}

label:focus-within span {
  color: var(--burgundy);
}

.submit-button {
  appearance: none;
  background: linear-gradient(110deg, var(--burgundy), var(--burgundy-dark));
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  min-height: 58px;
  padding: 1rem 1.4rem;
  text-transform: uppercase;
  transition: filter 180ms ease, transform 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.privacy,
.form-status {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.form-status {
  color: var(--burgundy);
  font-weight: 700;
  min-height: 1.5rem;
}

.footer {
  align-items: center;
  background:
    linear-gradient(110deg, var(--burgundy-dark), var(--burgundy) 70%, #43000e),
    var(--burgundy);
  color: var(--white);
  display: flex;
  font-size: 0.9rem;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem clamp(1.35rem, 5vw, 4rem);
}

.footer p {
  margin: 0;
}

.simple-page {
  background:
    radial-gradient(circle at 84% 8%, rgba(215, 173, 106, 0.16), transparent 28%),
    linear-gradient(180deg, #fff, var(--paper));
  min-height: calc(100vh - 98px - 82px);
  padding: clamp(3.4rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4rem);
}

.simple-page .eyebrow {
  color: var(--burgundy);
  margin-bottom: 1.6rem;
}

.simple-page h1 {
  color: var(--burgundy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 500;
  line-height: 0.95;
  margin: 0 0 1.4rem;
}

.simple-page p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin: 0;
  max-width: 760px;
}

.action-panel {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.4rem, 5vw, 4rem);
  max-width: 760px;
  padding-top: 2rem;
}

.action-panel strong {
  color: var(--burgundy-dark);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.7rem;
}

.outline-button,
.solid-button {
  align-items: center;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 54px;
  padding: 0.85rem 1.3rem;
  text-transform: uppercase;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.solid-button {
  background: linear-gradient(110deg, var(--burgundy), var(--burgundy-dark));
  border-radius: 8px;
  color: var(--white);
}

.outline-button {
  border: 1px solid var(--burgundy-soft);
  border-radius: 8px;
  color: var(--burgundy-dark);
}

.solid-button:hover,
.solid-button:focus-visible,
.outline-button:hover,
.outline-button:focus-visible {
  box-shadow: 0 14px 34px rgba(91, 0, 20, 0.14);
  transform: translateY(-1px);
}

.brochure-page {
  background: var(--paper);
  display: grid;
  gap: 1.4rem;
  min-height: calc(100vh - 98px - 82px);
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) 2rem;
}

.brochure-header {
  align-items: end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.brochure-header .eyebrow {
  color: var(--burgundy);
  margin: 0;
}

.brochure-header .eyebrow::after {
  margin-top: 0.7rem;
}

.brochure-header h1 {
  color: var(--burgundy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 0.95;
  margin: 0;
}

.pdf-viewer {
  background: #efe9e1;
  border: 1px solid rgba(215, 173, 106, 0.46);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: min(78vh, 980px);
  min-height: 620px;
  overflow: hidden;
}

.promos-page {
  background:
    radial-gradient(circle at 90% 4%, rgba(201, 111, 91, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(111, 130, 119, 0.12), transparent 30%),
    linear-gradient(180deg, #fff, var(--paper));
  min-height: calc(100vh - 98px - 82px);
  padding: clamp(2.5rem, 5vw, 4.6rem) clamp(1.25rem, 5vw, 4rem);
}

.promos-intro,
.promo-workspace,
.promo-contact {
  margin-inline: auto;
  max-width: 1180px;
}

.promos-intro {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.promos-intro .eyebrow {
  color: var(--burgundy);
  margin-bottom: 1.35rem;
}

.promos-intro h1 {
  color: var(--burgundy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 400;
  line-height: 0.95;
  margin: 0 0 1.2rem;
}

.promos-intro p {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  margin: 0;
  max-width: 720px;
}

.toolbar-label {
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.promo-workspace {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(222, 214, 207, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pdf-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem;
}

.pdf-toolbar p {
  color: var(--burgundy-dark);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  margin: 0.12rem 0 0;
  overflow-wrap: anywhere;
}

.toolbar-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.promo-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
}

.promo-viewer {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: min(76vh, 860px);
  min-height: 620px;
}

.offers-list {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.96), rgba(255, 255, 255, 0.86)),
    var(--paper);
  border-right: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 1rem;
  justify-items: start;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.offers-list h2 {
  color: var(--burgundy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.offers-list p {
  margin: 0;
}

.offer-card {
  background: var(--white);
  border: 1px solid rgba(215, 173, 106, 0.56);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(56, 35, 28, 0.08);
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  width: 100%;
}

.offer-card span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.offer-card h3 {
  color: var(--burgundy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
}

.offer-card a {
  color: var(--burgundy);
  font-weight: 700;
  margin-top: 0.3rem;
  text-decoration: underline;
}

.promo-contact {
  background: rgba(255, 255, 255, 0.58);
  border-top: 0;
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(56, 35, 28, 0.08);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.pdf-viewer object {
  border: 0;
  display: block;
}

.pdf-viewer p {
  margin: 2rem;
}

.pdf-viewer a {
  color: var(--burgundy);
  font-weight: 800;
  text-decoration: underline;
}

.brochure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    height: auto;
    padding-bottom: 1.1rem;
    padding-top: 1.1rem;
  }

  .nav {
    gap: 0.8rem 1rem;
    justify-content: flex-start;
  }

  .hero {
    background-position: 62% center;
    min-height: 520px;
  }

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

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

  .about-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .details {
    border-right: 0;
    padding-right: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .brochure-page {
    min-height: auto;
  }

  .brochure-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .pdf-viewer {
    height: 72vh;
    min-height: 520px;
  }

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

  .pdf-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .toolbar-actions .outline-button,
  .toolbar-actions .solid-button {
    flex: 1 1 210px;
  }

  .offers-list {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 1.55rem;
  }

  .brand em {
    margin-left: 1.35rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4rem);
  }

  .section-heading {
    align-items: flex-start;
  }

  .heading-icon {
    height: 56px;
    width: 56px;
  }

  .heading-icon svg {
    height: 28px;
    width: 28px;
  }

  .contact-item {
    grid-template-columns: 54px 1fr;
  }

  .contact-icon {
    height: 48px;
    width: 48px;
  }

  .map-link {
    letter-spacing: 0.04em;
    padding-inline: 1rem;
  }

  .brochure-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .brochure-actions a {
    width: 100%;
  }

  .pdf-viewer {
    height: 70vh;
    min-height: 460px;
  }

  .toolbar-actions .outline-button,
  .toolbar-actions .solid-button,
  .promo-contact .cta-row a {
    width: 100%;
  }
}
