:root {
  --ink: #14201f;
  --deep: #071b19;
  --pine: #123631;
  --lake: #0d6470;
  --moss: #637a61;
  --mist: #edf2ec;
  --paper: #fbf7ef;
  --linen: #efe3d2;
  --copper: #bd713d;
  --ember: #e6aa58;
  --snow: #fffaf2;
  --line-dark: rgba(20, 32, 31, 0.14);
  --line-light: rgba(255, 250, 242, 0.22);
  --shadow: 0 24px 60px rgba(7, 27, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--snow);
  color: var(--deep);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  color: var(--snow);
  background: rgba(7, 27, 25, 0.34);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 27, 25, 0.92);
  box-shadow: 0 12px 30px rgba(7, 27, 25, 0.22);
}

.brand,
.primary-nav,
.hero-actions,
.home-footer,
.form-grid {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #e6aa58 0 38%, #0d6470 39% 63%, #123631 64% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 242, 0.28);
}

.brand-mark::after {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 9px;
  height: 2px;
  background: rgba(255, 250, 242, 0.82);
  content: "";
}

.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-nav {
  gap: 2px;
}

.primary-nav a,
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 0.94rem;
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(255, 250, 242, 0.12);
}

.nav-cta {
  color: var(--deep);
  background: var(--ember);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 112px 28px 24px;
  color: var(--snow);
}

.hero-image,
.hero-tint {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-tint {
  background:
    linear-gradient(90deg, rgba(7, 27, 25, 0.82) 0%, rgba(7, 27, 25, 0.54) 44%, rgba(7, 27, 25, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 27, 25, 0.72) 0%, rgba(7, 27, 25, 0.18) 48%, rgba(7, 27, 25, 0.38) 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

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

.kicker,
.eyebrow,
.home-tag {
  margin: 0;
  color: var(--ember);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero h1,
.section-head h2,
.service-copy h2,
.inquiry-copy h2,
.statement blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  margin-top: 8px;
  font-size: 5.35rem;
}

.hero-lede {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: 1.22rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary,
.button-book {
  color: var(--deep);
  background: var(--ember);
}

.button-secondary {
  color: var(--snow);
  border-color: var(--line-light);
  background: rgba(255, 250, 242, 0.1);
}

.booking-dock {
  display: grid;
  grid-template-columns: 1fr 1fr 1.12fr 0.75fr 0.86fr auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(7, 27, 25, 0.74);
  box-shadow: 0 24px 70px rgba(7, 27, 25, 0.32);
  backdrop-filter: blur(18px);
}

.field {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.field span {
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
}

.inquiry-form .field span {
  color: rgba(20, 32, 31, 0.72);
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(20, 32, 31, 0.22);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 12px;
}

textarea {
  min-height: 112px;
  resize: vertical;
  padding-top: 12px;
}

.stepper {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  overflow: hidden;
  min-height: 44px;
  border: 1px solid rgba(20, 32, 31, 0.22);
  border-radius: 6px;
  background: var(--paper);
}

.stepper button {
  border: 0;
  color: var(--deep);
  background: var(--linen);
  font-size: 1.2rem;
  font-weight: 800;
}

.stepper output {
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 800;
}

.quote-strip {
  min-height: 44px;
  display: grid;
  align-content: center;
  padding: 0 10px;
  border-left: 1px solid var(--line-light);
}

.quote-strip span {
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
}

.quote-strip strong {
  color: var(--snow);
  font-size: 1.08rem;
}

.button-book {
  width: 100%;
  border-color: rgba(7, 27, 25, 0.2);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 1.25rem;
  margin: 0;
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.9rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(20, 32, 31, 0.16);
}

.signal-strip div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 18px 24px;
  background: var(--paper);
}

.signal-strip strong {
  color: var(--lake);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.signal-strip span {
  color: rgba(20, 32, 31, 0.7);
  font-weight: 700;
}

.section-inner,
.service-inner,
.inquiry-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.inventory,
.seasons {
  padding: 86px 0;
}

.inventory {
  background:
    linear-gradient(180deg, var(--mist), #f6f0e5 100%);
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.82fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head h2,
.service-copy h2,
.inquiry-copy h2 {
  margin-top: 8px;
  font-size: 3.05rem;
}

.section-head p,
.service-copy p,
.inquiry-copy p {
  margin: 0;
  color: rgba(20, 32, 31, 0.72);
  font-size: 1.06rem;
}

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

.home-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(20, 32, 31, 0.08);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.home-card:hover {
  transform: translateY(-3px);
}

.home-card.is-selected {
  border-color: rgba(189, 113, 61, 0.72);
  box-shadow: 0 22px 54px rgba(189, 113, 61, 0.18);
}

.home-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pine);
}

.home-media img,
.route-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-media img {
  transition: transform 600ms ease;
}

.home-card:hover .home-media img {
  transform: scale(1.035);
}

.home-body {
  flex: 1;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.home-body h3,
.service-item h3,
.season h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1.32rem;
  line-height: 1.14;
}

.home-body p {
  margin: 0;
  color: rgba(20, 32, 31, 0.72);
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenities li {
  border: 1px solid rgba(13, 100, 112, 0.18);
  border-radius: 6px;
  background: #edf5ed;
  color: #23423b;
  padding: 6px 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.home-footer {
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.home-footer strong {
  color: var(--lake);
}

.home-footer button {
  min-height: 40px;
  border: 1px solid rgba(20, 32, 31, 0.16);
  border-radius: 6px;
  background: var(--linen);
  color: var(--deep);
  padding: 0 12px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.home-card.is-selected .home-footer button {
  background: var(--ember);
}

.service {
  padding: 92px 0;
  color: var(--snow);
  background: var(--deep);
}

.service-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.service .eyebrow,
.inquiry .eyebrow {
  color: var(--ember);
}

.service-copy h2,
.inquiry-copy h2 {
  color: var(--snow);
}

.service-copy p,
.inquiry-copy p {
  color: rgba(255, 250, 242, 0.74);
}

.route-figure {
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

.route-figure img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.route-figure figcaption {
  padding: 12px 14px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.92rem;
}

.service-list {
  border-top: 1px solid rgba(255, 250, 242, 0.18);
}

.service-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 250, 242, 0.18);
}

.service-item span {
  color: var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.service-item h3 {
  color: var(--snow);
}

.service-item p {
  max-width: 640px;
  margin: 6px 0 0;
  color: rgba(255, 250, 242, 0.72);
}

.seasons {
  background: #e6eee7;
}

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

.season {
  min-height: 252px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
}

.season span {
  color: var(--copper);
  font-weight: 800;
}

.season p {
  margin: 0;
  color: rgba(20, 32, 31, 0.72);
}

.season strong {
  margin-top: auto;
  color: var(--lake);
  font-size: 1.1rem;
}

.statement {
  padding: 76px 24px;
  color: var(--snow);
  background: var(--copper);
}

.statement blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-size: 3rem;
  text-align: center;
}

.inquiry {
  padding: 92px 0;
  background:
    linear-gradient(180deg, #123631 0%, #071b19 100%);
}

.inquiry-inner {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 42px;
  align-items: start;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
  box-shadow: 0 24px 70px rgba(7, 27, 25, 0.28);
}

.form-grid {
  gap: 12px;
  align-items: start;
}

.form-grid .field {
  flex: 1;
}

.contact-status {
  min-height: 1.35rem;
  margin: 0;
  color: rgba(20, 32, 31, 0.76);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  color: rgba(255, 250, 242, 0.7);
  background: var(--deep);
  border-top: 1px solid rgba(255, 250, 242, 0.14);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--snow);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .booking-dock {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-strip {
    border-left: 0;
    border-top: 1px solid var(--line-light);
    padding-top: 8px;
  }

  .section-head,
  .service-inner,
  .inquiry-inner {
    grid-template-columns: 1fr;
  }

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

  .home-card {
    display: grid;
    grid-template-columns: 0.88fr 1fr;
  }

  .home-media {
    aspect-ratio: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .primary-nav {
    display: none;
  }

  .hero {
    min-height: 87svh;
    padding: 86px 16px 16px;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .booking-dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .quote-strip {
    grid-column: 1 / 2;
  }

  .button-book {
    grid-column: 2 / 3;
  }

  .form-note {
    font-size: 0.84rem;
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .inventory,
  .seasons,
  .service,
  .inquiry {
    padding: 64px 0;
  }

  .section-head h2,
  .service-copy h2,
  .inquiry-copy h2 {
    font-size: 2.35rem;
  }

  .home-card {
    display: flex;
  }

  .home-media {
    aspect-ratio: 4 / 3;
  }

  .statement blockquote {
    font-size: 2.2rem;
  }

  .site-footer,
  .form-grid {
    display: grid;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .brand-name {
    max-width: 160px;
    font-size: 0.92rem;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 86svh;
    padding: 76px 12px 12px;
  }

  .hero-shell {
    gap: 16px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lede {
    margin-top: 12px;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  input,
  select,
  textarea,
  .stepper {
    min-height: 40px;
  }

  .field span,
  .quote-strip span {
    font-size: 0.72rem;
  }

  .quote-strip strong {
    font-size: 0.96rem;
  }

  .signal-strip div {
    min-height: 96px;
    padding: 16px;
  }

  .section-inner,
  .service-inner,
  .inquiry-inner {
    width: min(100% - 24px, 1180px);
  }

  .season-rail {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }
}

@media (max-width: 390px), (max-height: 700px) {
  .hero-actions {
    display: none;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-lede {
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
