:root {
  --ink: #173149;
  --ink-soft: #41576a;
  --paper: #f7f4ee;
  --paper-bright: #fffdf8;
  --mist: #e8eef0;
  --line: rgba(23, 49, 73, 0.15);
  --shadow: 0 18px 50px rgba(18, 40, 57, 0.1);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.wordmark {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.3vw, 2.1rem);
  letter-spacing: -0.035em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  font-size: 0.91rem;
}

.primary-nav a {
  position: relative;
  padding: 26px 0 22px;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 76px));
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 52%;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(248, 245, 238, 0.98) 0%, rgba(248, 245, 238, 0.88) 31%, rgba(248, 245, 238, 0.12) 64%),
    linear-gradient(0deg, rgba(15, 36, 53, 0.13), transparent 35%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding-block: 84px;
}

.eyebrow,
.card-kicker,
.story-meta {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6.1vw, 6.5rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 470px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #244b68;
}

.button-ghost {
  background: rgba(255, 253, 248, 0.66);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: white;
  background: var(--ink);
}

.discover {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-block: 66px 82px;
}

.feature-card,
.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-bright);
  box-shadow: 0 8px 30px rgba(17, 44, 64, 0.06);
}

.feature-card {
  scroll-margin-top: 106px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-card > img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

#routes > img {
  object-position: 52% 62%;
}

#stays > img {
  object-position: 62% 52%;
}

.card-copy {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  padding: 25px 26px 23px;
}

.card-kicker {
  color: #6d7e8b;
  font-size: 0.64rem;
}

.card-copy h2,
.section-heading h2,
.about-copy h2,
.postcards h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.card-copy h2 {
  font-size: clamp(1.6rem, 2.1vw, 2rem);
}

.card-copy p:not(.card-kicker) {
  margin: 11px 0 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.card-copy a,
.story-copy a,
.text-link,
.section-heading > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  font-size: 0.83rem;
  font-weight: 700;
}

.card-copy a span,
.story-copy a span,
.text-link span,
.section-heading a span {
  transition: transform 180ms ease;
}

.card-copy a:hover span,
.story-copy a:hover span,
.text-link:hover span,
.section-heading a:hover span {
  transform: translateX(5px);
}

.journal-section {
  padding-block: 76px 92px;
  border-block: 1px solid var(--line);
  background: #f3f5f3;
  scroll-margin-top: 70px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.section-heading .eyebrow {
  color: #6a7b86;
}

.section-heading > a {
  margin: 0 0 6px;
  font-weight: 600;
}

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

.story-card {
  display: flex;
  flex-direction: column;
}

.story-card > img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.story-card:nth-child(2) > img {
  object-position: 58% 48%;
}

.story-copy {
  display: flex;
  min-height: 282px;
  flex: 1;
  flex-direction: column;
  padding: 25px 26px 24px;
}

.story-meta {
  display: flex;
  gap: 16px;
  color: #6b7a86;
  font-size: 0.59rem;
}

.story-meta time::before {
  margin-right: 14px;
  content: "·";
}

.story-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.story-copy > p:not(.story-meta) {
  margin: 14px 0 22px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  min-height: 510px;
  scroll-margin-top: 76px;
}

.about-copy,
.about-art {
  display: flex;
  justify-content: center;
  padding: clamp(56px, 7vw, 100px);
}

.about-copy {
  flex-direction: column;
  background: var(--paper-bright);
}

.about-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.about-copy > p + p:not(.eyebrow) {
  margin-top: 12px;
}

.text-link {
  align-self: flex-start;
  margin-top: 28px;
}

.about-art {
  align-items: center;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.8), transparent 34%),
    linear-gradient(145deg, #e3ecef, #f4f1e9);
}

.about-art img {
  width: min(620px, 100%);
  opacity: 0.84;
  filter: saturate(0.6);
}

.postcards {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: center;
  padding: clamp(66px, 8vw, 110px) max(24px, calc((100vw - 1180px) / 2));
  border-block: 1px solid var(--line);
  background:
    linear-gradient(rgba(240, 245, 246, 0.9), rgba(240, 245, 246, 0.9)),
    url("assets/weekend-estuary.webp") center / cover;
  scroll-margin-top: 76px;
}

.postcards-copy > p:last-child {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.subscribe-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

.subscribe-form input,
.subscribe-form button {
  min-height: 58px;
  border: 1px solid var(--ink);
}

.subscribe-form input {
  min-width: 0;
  padding: 0 20px;
  border-radius: 5px 0 0 5px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
  outline: none;
}

.subscribe-form input:focus {
  box-shadow: inset 0 0 0 2px rgba(23, 49, 73, 0.2);
}

.subscribe-form button {
  padding: 0 28px;
  border-radius: 0 5px 5px 0;
  color: white;
  background: var(--ink);
  cursor: pointer;
}

.form-note,
.form-message {
  grid-column: 1 / -1;
  margin: 9px 0 0;
  color: #627482;
  font-size: 0.72rem;
}

.form-message {
  min-height: 1.2em;
  color: var(--ink);
  font-weight: 650;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 56px;
  min-height: 300px;
  padding: 60px max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background: var(--paper-bright);
}

.footer-brand > p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.footer-brand > p + p {
  margin-top: 24px;
  font-size: 0.68rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.footer-links h2 {
  margin: 0 0 13px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: max-content;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-art {
  align-self: end;
  width: 100%;
  opacity: 0.47;
  filter: saturate(0.35);
}

:focus-visible {
  outline: 2px solid #2c648d;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 24px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper-bright);
    box-shadow: 0 18px 30px rgba(18, 40, 57, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 12px 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(248, 245, 238, 0.96), rgba(248, 245, 238, 0.67) 63%, rgba(248, 245, 238, 0.12));
  }

  .discover,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .discover {
    width: min(690px, calc(100% - 40px));
  }

  .feature-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .feature-card > img {
    height: 100%;
    aspect-ratio: auto;
  }

  .journal-grid {
    width: min(690px, 100%);
    margin-inline: auto;
  }

  .story-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .story-card > img {
    height: 100%;
    aspect-ratio: auto;
  }

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

  .about-art {
    min-height: 340px;
  }

  .postcards {
    gap: 36px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-art {
    display: none;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 68px;
  }

  .shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding-inline: 18px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(248, 245, 238, 0.96) 0%, rgba(248, 245, 238, 0.86) 43%, rgba(248, 245, 238, 0.18) 76%);
  }

  .hero-copy {
    justify-content: flex-start;
    padding-top: 70px;
  }

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

  .hero-intro {
    max-width: 92%;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .discover {
    width: min(100% - 32px, 690px);
    padding-block: 42px 58px;
  }

  .feature-card,
  .story-card {
    display: block;
  }

  .feature-card > img,
  .story-card > img {
    height: auto;
    aspect-ratio: 1.45;
  }

  .card-copy,
  .story-copy {
    min-height: 0;
  }

  .card-copy a,
  .story-copy a {
    margin-top: 12px;
  }

  .journal-section {
    padding-block: 56px 66px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .section-heading > a {
    margin: 0;
  }

  .about-copy,
  .about-art {
    padding: 58px 24px;
  }

  .about-art {
    min-height: 270px;
  }

  .postcards {
    padding: 58px 24px;
  }

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

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

  .subscribe-form button {
    margin-top: 10px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 50px 24px;
  }
}

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

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