:root {
  --burgundy: #5b0014;
  --burgundy-dark: #33000d;
  --burgundy-soft: #7a1026;
  --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: 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, var(--burgundy-dark), var(--burgundy) 62%, #43000e);
  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;
  gap: 2rem;
}

.nav a {
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-button {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: grid;
  gap: 0.38rem;
  height: 42px;
  justify-items: end;
  padding: 0;
  width: 42px;
}

.menu-button span {
  background: currentColor;
  display: block;
  height: 3px;
  width: 29px;
}

.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;
}

.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-size: clamp(1rem, 1.7vw, 1.22rem);
  letter-spacing: 0.07em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.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;
  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: 800;
  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-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: 0;
  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;
  color: var(--white);
  cursor: pointer;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 800;
  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);
  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;
}

@media (max-width: 860px) {
  .topbar {
    height: 86px;
  }

  .nav a {
    display: none;
  }

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

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

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

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

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

@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;
  }
}
