:root {
  color-scheme: light;
  --ink: #18211f;
  --muted: #68716b;
  --line: #d7ccbc;
  --paper: #f4efe6;
  --surface: #fffaf1;
  --canal: #0f5153;
  --canal-dark: #0a2f31;
  --mahogany: #5a271c;
  --mahogany-dark: #2b120d;
  --brass: #b88942;
  --brass-soft: #dfc391;
  --shadow: 0 22px 65px rgba(43, 18, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.72), rgba(244, 239, 230, 0.94)),
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 239, 0.94);
  border-bottom: 1px solid rgba(184, 137, 66, 0.34);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(145deg, var(--mahogany), var(--canal-dark));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(223, 195, 145, 0.38);
  font-weight: 700;
}

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

.brand small {
  color: var(--muted);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.94rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  content: attr(data-short);
  font-size: 0.94rem;
}

.main-nav a:hover {
  color: var(--canal-dark);
}

.language-switcher {
  display: flex;
  gap: 4px;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 32px;
  border: 1px solid rgba(184, 137, 66, 0.38);
  background: var(--surface);
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
}

.language-switcher .active {
  background: var(--canal-dark);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: calc(100vh - 72px);
  border-bottom: 1px solid var(--line);
}

.hero > * {
  min-width: 0;
}

.hero-media {
  min-height: 560px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.hero-media img,
.feature-photo img,
.image-band img,
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(34px, 7vw, 84px);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.9), rgba(244, 239, 230, 0.98)),
    var(--surface);
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  overflow-wrap: normal;
  word-break: normal;
}

.no-break {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-copy p:not(.eyebrow),
.intro,
.section-body,
.feature-band p,
.tip-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy .language-note {
  margin-top: 6px;
  color: var(--mahogany);
  font-size: 0.98rem;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--brass);
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background:
    linear-gradient(135deg, var(--canal-dark), var(--canal));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(223, 195, 145, 0.24);
}

.button.secondary {
  background: transparent;
  color: var(--mahogany);
}

.intro {
  max-width: 980px;
  margin: 0 auto;
  padding: 58px clamp(18px, 4vw, 56px);
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  color: var(--ink);
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 96px);
  padding: clamp(46px, 8vw, 96px) clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(184, 137, 66, 0.28);
}

.content-section > * {
  min-width: 0;
}

.section-body {
  max-width: 680px;
}

.section-body p {
  margin: 0 0 18px;
}

.review-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-form label {
  display: grid;
  gap: 7px;
  color: var(--canal-dark);
  font-weight: 700;
}

.review-form label span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 400;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(184, 137, 66, 0.44);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: 2px solid rgba(184, 137, 66, 0.42);
  outline-offset: 2px;
}

.review-form textarea {
  resize: vertical;
}

.checkbox-label {
  align-items: start;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.checkbox-label input {
  width: auto;
  margin-top: 5px;
}

.captcha-row {
  max-width: 220px;
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-result {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 7vw, 72px);
}

.form-result h1 {
  max-width: none;
  font-size: 3rem;
  margin-bottom: 18px;
}

.form-result p {
  color: var(--muted);
  font-size: 1.12rem;
}

.form-result .button {
  align-self: flex-start;
  margin-top: 18px;
}

.fact-list {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(184, 137, 66, 0.26);
}

.fact-list span {
  color: var(--muted);
  text-align: right;
}

.fleet-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 22px clamp(18px, 4vw, 56px);
  background: var(--surface);
  border-top: 1px solid rgba(184, 137, 66, 0.28);
}

.fleet-strip p {
  margin: 0 12px 0 0;
  color: var(--muted);
}

.fleet-strip span {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--canal-dark);
  font-weight: 700;
}

.fleet-strip span + span::before {
  content: "/";
  margin: 0 10px 0 0;
  color: var(--line);
  font-weight: 400;
}

.fleet-strip .explainer {
  flex-basis: 100%;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.image-band {
  height: clamp(260px, 42vw, 520px);
  border-top: 1px solid rgba(184, 137, 66, 0.28);
  overflow: hidden;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(46px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(10, 47, 49, 0.98), rgba(43, 18, 13, 0.94));
  color: #fff;
}

.feature-band p {
  color: #d9e7e8;
}

.feature-photo {
  min-height: 420px;
  margin: 0;
  box-shadow: var(--shadow);
  border: 1px solid rgba(223, 195, 145, 0.32);
  overflow: hidden;
}

.feature-photo img {
  min-height: 420px;
}

blockquote {
  margin: 28px 0;
  padding: 24px;
  border-left: 4px solid var(--brass);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
}

.story-section,
.reviews-section,
.gallery-section {
  padding: clamp(46px, 8vw, 96px) clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(184, 137, 66, 0.28);
}

.story-section,
.reviews-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 96px);
}

.story-section > p,
.gallery-header p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-section {
  background:
    linear-gradient(180deg, var(--surface), #f4eadc);
}

.gallery-header {
  max-width: 820px;
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(170px, 14vw);
  gap: 10px;
}

.gallery-tile {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(184, 137, 66, 0.28);
  background: var(--mahogany-dark);
  cursor: zoom-in;
  font: inherit;
  line-height: 0;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(43, 18, 13, 0.12);
}

.gallery-tile:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 47, 49, 0), rgba(43, 18, 13, 0.28));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-tile:hover::after,
.gallery-tile:focus-visible::after {
  opacity: 1;
}

.gallery-tile img {
  height: 100%;
  vertical-align: middle;
  transition: transform 0.35s ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.035);
}

.gallery-tile.wide {
  grid-column: span 3;
}

.gallery-tile.tall {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-tile:not(.wide):not(.tall) {
  grid-column: span 2;
}

.tip-section {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: clamp(38px, 6vw, 72px) clamp(18px, 4vw, 56px);
  background: var(--surface);
  border-top: 1px solid rgba(184, 137, 66, 0.28);
}

.tip-section div {
  max-width: 660px;
}

.tip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  font-size: 0.9rem;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 12px;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(10, 18, 18, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  grid-column: 2;
  margin: 0;
  justify-self: center;
  max-width: min(1100px, 100%);
}

.lightbox-frame img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--mahogany-dark);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-frame figcaption {
  padding-top: 12px;
  color: var(--brass-soft);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(223, 195, 145, 0.4);
  background: rgba(255, 250, 241, 0.1);
  color: #fffaf1;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
}

.lightbox-nav {
  width: 52px;
  height: 68px;
  font-size: 2.4rem;
}

.lightbox-nav.previous {
  grid-column: 1;
  justify-self: end;
}

.lightbox-nav.next {
  grid-column: 3;
  justify-self: start;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .content-section,
  .feature-band,
  .story-section,
  .reviews-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media img {
    min-height: 420px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(180px, 28vw);
  }

  .gallery-tile,
  .gallery-tile.wide,
  .gallery-tile.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding: 16px;
  }
}

@media (max-width: 560px) {
  .main-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  .main-nav a {
    min-width: 0;
    padding: 7px 4px;
    border: 1px solid rgba(184, 137, 66, 0.28);
    background: rgba(255, 250, 241, 0.72);
    color: var(--canal-dark);
    font-size: 0;
    line-height: 1;
    text-align: center;
  }

  .main-nav a::after {
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(1.75rem, 8.8vw, 2.35rem);
  }

  .hero-copy {
    padding: 34px 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .fact-list li {
    display: block;
  }

  .fact-list span {
    display: block;
    margin-top: 3px;
    text-align: left;
  }

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

  .gallery-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .gallery-tile,
  .gallery-tile.wide,
  .gallery-tile.tall,
  .gallery-tile:not(.wide):not(.tall) {
    display: block;
    width: 100%;
    grid-column: auto;
    grid-row: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .gallery-tile img {
    width: 100%;
    height: auto;
    max-height: 74vh;
    object-fit: contain;
    background: var(--surface);
    border: 1px solid rgba(184, 137, 66, 0.32);
    box-shadow: 0 12px 28px rgba(43, 18, 13, 0.14);
  }

  .gallery-tile::after {
    content: none;
  }

  .gallery-tile:hover img,
  .gallery-tile:focus-visible img {
    transform: none;
  }

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

  .lightbox-frame {
    grid-column: 1;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 58px;
    transform: translateY(-50%);
  }

  .lightbox-nav.previous {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .tip-actions {
    width: 100%;
  }
}
