:root {
  --ink: #203638;
  --ink-soft: #385153;
  --sea: #4d7b78;
  --sea-pale: #e3eeee;
  --clay: #bf684c;
  --rose: #f1dfda;
  --sun: #e8b75e;
  --leaf: #788866;
  --paper: #f7f4ee;
  --white: #ffffff;
  --mist: #edf1ed;
  --line: rgba(32, 54, 56, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 22px 60px rgba(24, 48, 50, 0.14);
  --sans: "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  --serif: "Gowun Batang", "Noto Serif KR", serif;
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.7;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  word-break: keep-all;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: 0;
}

h2 {
  font-size: 54px;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

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

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

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

.is-hidden {
  display: none !important;
}

.section-pad {
  padding: 112px max(28px, calc((100% - var(--content)) / 2));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow.light {
  color: #f3c779;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 42px;
  color: var(--sea);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-index::after {
  width: 84px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.5;
}

.section-index span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.section-index p {
  margin: 0;
}

.section-index.inverse {
  color: #e7bd72;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-sun {
  color: #263333;
  background: var(--sun);
}

.button-sun:hover {
  background: #f0c56f;
}

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

.button-line {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button-danger {
  border-color: var(--clay);
  color: var(--white);
  background: var(--clay);
}

.button-danger:hover {
  background: #aa573e;
}

.button.compact {
  min-height: 44px;
  padding: 9px 16px;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 800;
}

.text-link.light {
  color: var(--white);
}

.text-link span {
  font-size: 19px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  min-height: 88px;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 14px max(24px, calc((100% - 1400px) / 2));
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    color 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(22, 47, 49, 0.08);
  backdrop-filter: blur(12px);
}

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

.brand-seal {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
}

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

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
}

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

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

.header-contacts {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.header-contact {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.header-contact span {
  font-size: 10px;
  font-weight: 700;
}

.header-contact strong {
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(860px, 92svh);
  align-items: flex-end;
  overflow: hidden;
  padding: 160px max(28px, calc((100% - var(--content)) / 2)) 112px;
  color: var(--white);
  background: var(--ink);
}

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

.hero-image {
  object-fit: cover;
  object-position: 55% bottom;
  animation: heroReveal 1.2s ease both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 40, 42, 0.86) 0%, rgba(21, 40, 42, 0.48) 48%, rgba(21, 40, 42, 0.1) 78%),
    linear-gradient(0deg, rgba(18, 36, 38, 0.64), transparent 52%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.hero-place {
  margin: 0 0 18px;
  color: #f2cc89;
  font-size: 14px;
  font-weight: 800;
}

.hero h1 {
  font-size: 100px;
  line-height: 1;
}

.hero-lead {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.hero-contact-button {
  display: grid;
  min-width: 200px;
  min-height: 70px;
  align-content: center;
  gap: 3px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px 22px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.hero-contact-button.stay {
  color: #263333;
  background: var(--sun);
}

.hero-contact-button.stay:hover,
.hero-contact-button.stay:focus-visible {
  background: #f0c56f;
}

.hero-contact-button.fishing {
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--white);
  background: rgba(19, 42, 44, 0.46);
}

.hero-contact-button.fishing:hover,
.hero-contact-button.fishing:focus-visible {
  border-color: var(--white);
  background: rgba(19, 42, 44, 0.72);
}

.hero-contact-button span {
  font-size: 11px;
  font-weight: 800;
}

.hero-contact-button strong {
  font-size: 16px;
}

.hero-notes {
  position: absolute;
  z-index: 2;
  right: max(28px, calc((100% - var(--content)) / 2));
  bottom: 112px;
  display: grid;
  gap: 12px;
  min-width: 270px;
}

.hero-notes p {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 14px;
}

.hero-notes span {
  color: #f2cc89;
  font-size: 10px;
  font-weight: 800;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.welcome {
  display: grid;
  grid-template-columns: 180px minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: 52px;
  align-items: start;
  background: var(--white);
}

.welcome .section-index {
  margin-top: 6px;
}

.welcome-copy h2 {
  color: var(--ink);
}

.welcome-copy > p:last-child {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.welcome-visuals {
  position: relative;
  min-height: 600px;
}

.welcome-image {
  margin: 0;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-image figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 14px;
}

.welcome-image.large {
  width: 78%;
  height: 470px;
}

.welcome-image.small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 280px;
  padding: 10px 0 0 10px;
  background: var(--white);
}

.rooms-section {
  background: var(--paper);
}

.section-intro {
  display: grid;
  grid-template-columns: 180px minmax(320px, 1fr) minmax(280px, 420px);
  gap: 52px;
  align-items: end;
  padding-bottom: 72px;
}

.section-intro .section-index {
  align-self: start;
  margin-top: 6px;
}

.section-summary {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.room-story {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.7fr);
  min-height: 720px;
}

.room-story.house-story {
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1.45fr);
}

.house-story .room-gallery {
  order: 2;
}

.house-story .room-copy {
  order: 1;
}

.room-gallery {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 2.1fr) minmax(150px, 0.9fr);
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  padding: 5px;
  background: var(--white);
}

.room-photo {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--mist);
}

.room-photo-main {
  grid-row: 1 / 3;
}

.room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.room-photo:hover img,
.room-photo:focus-visible img {
  transform: scale(1.025);
}

.gallery-count {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(22, 43, 45, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.room-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 58px;
  background: var(--rose);
}

.house-story .room-copy {
  background: var(--sea-pale);
}

.room-number {
  margin: 0 0 22px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
}

.room-copy h3 {
  font-size: 48px;
}

.room-tagline {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 20px;
}

.room-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.room-facts div {
  padding: 18px 12px 18px 0;
}

.room-facts dt {
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
}

.room-facts dd {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.room-description {
  margin: 28px 0 30px;
  color: var(--ink-soft);
}

.room-copy .text-link {
  align-self: flex-start;
}

.experience-section {
  color: var(--white);
  background: var(--ink);
}

.experience-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: 80px;
  align-items: end;
}

.experience-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 58px;
}

.experience-feature {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.experience-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 35, 36, 0.82), transparent 62%);
  content: "";
}

.experience-feature > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.experience-feature span,
.experience-list span {
  color: #f1c478;
  font-size: 12px;
  font-weight: 800;
}

.experience-feature h3 {
  margin-top: 8px;
  font-size: 34px;
}

.experience-feature p {
  max-width: 440px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.experience-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
}

.experience-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 32px 32px 12px 0;
}

.experience-list article + article {
  border-left: 1px solid var(--line-light);
  padding-left: 32px;
}

.experience-list h3 {
  font-size: 25px;
}

.experience-list p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.ferry-section {
  background: var(--sea-pale);
}

.ferry-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: end;
}

.ferry-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding-bottom: 8px;
}

.ferry-route div {
  min-width: 0;
}

.ferry-route span,
.ferry-route small,
.schedule-title span {
  display: block;
}

.ferry-route span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
}

.ferry-route strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 20px;
}

.ferry-route small {
  margin-top: 5px;
  color: var(--ink-soft);
}

.ferry-route i {
  position: relative;
  display: block;
  height: 1px;
  background: var(--sea);
}

.ferry-route i::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--sea);
  border-right: 1px solid var(--sea);
  content: "";
  transform: rotate(45deg);
}

.schedule-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.schedule-block {
  padding: 34px 40px 38px 0;
}

.schedule-block + .schedule-block {
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: 40px;
}

.schedule-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.schedule-title span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
}

.schedule-title strong {
  font-family: var(--serif);
  font-size: 18px;
}

.schedule-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.schedule-times li {
  padding: 18px;
  border: 1px solid rgba(77, 123, 120, 0.26);
  background: rgba(255, 255, 255, 0.5);
}

.schedule-times span,
.schedule-times strong {
  display: block;
}

.schedule-times span {
  color: var(--ink-soft);
  font-size: 11px;
}

.schedule-times strong {
  margin-top: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
}

.ferry-notice {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

.ferry-notice p {
  margin: 0;
}

.ferry-notice a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 800;
}

.trail-section {
  padding: 112px max(28px, calc((100% - var(--content)) / 2));
  color: var(--ink);
  background: #e8eee8;
}

.trail-shell {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
}

.trail-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 80px;
  align-items: end;
}

.trail-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.trail-overview {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1.35fr) minmax(370px, 0.65fr);
  margin-top: 58px;
}

.trail-feature-photo {
  position: relative;
  min-width: 0;
  margin: 0;
}

.trail-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trail-feature-photo figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(25, 49, 51, 0.84);
  font-family: var(--serif);
  font-size: 14px;
}

.trail-feature-photo figcaption span {
  display: block;
  margin-bottom: 2px;
  color: #f0c778;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
}

.trail-summary {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 52px 46px;
  color: var(--white);
  background: var(--ink);
}

.trail-course-label {
  margin: 0 0 16px;
  color: #f0c778;
  font-size: 11px;
  font-weight: 800;
}

.trail-summary h3 {
  font-size: 30px;
}

.trail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.trail-stats div {
  min-width: 0;
  padding: 18px 8px 18px 0;
}

.trail-stats span,
.trail-stats strong {
  display: block;
}

.trail-stats span {
  color: #f0c77f;
  font-size: 10px;
  font-weight: 800;
}

.trail-stats strong {
  margin-top: 4px;
  font-size: 15px;
}

.trail-tip {
  margin: 25px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.trail-summary .text-link {
  align-self: flex-start;
}

.trail-map-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(480px, 1.28fr);
  gap: 72px;
  align-items: center;
  margin-top: 92px;
}

.trail-map-copy h3 {
  font-size: 36px;
}

.trail-map-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.trail-route {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  list-style: none;
}

.trail-route li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  padding: 14px 10px 14px 0;
  border-bottom: 1px solid var(--line);
}

.trail-route li:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.trail-route span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
}

.trail-map {
  margin: 0;
  padding: 24px 24px 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trail-map img {
  width: 100%;
  height: auto;
}

.trail-map figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 11px;
  text-align: right;
}

.trail-detail-photo {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  min-height: 360px;
  margin: 92px 0 0;
}

.trail-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trail-detail-photo figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
  color: var(--ink);
  background: var(--rose);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.65;
}

.trail-detail-photo figcaption span {
  margin-bottom: 10px;
  color: var(--clay);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
}

.island-spots {
  background: var(--white);
}

.spots-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: 80px;
  align-items: end;
}

.spots-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.island-gallery {
  margin-top: 58px;
}

.island-gallery figure {
  position: relative;
  height: 460px;
  overflow: hidden;
  margin: 0;
}

.island-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

@media (min-width: 861px) {
  .island-gallery-main img {
    object-position: center bottom;
  }
}

.island-gallery figure::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(0deg, rgba(19, 38, 39, 0.74), transparent);
  content: "";
}

.island-gallery figure:hover img {
  transform: scale(1.02);
}

.island-gallery figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
}

.island-gallery figcaption span {
  display: block;
  margin-bottom: 4px;
  color: #f1c478;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
}

.spot-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.spot-list article {
  min-height: 290px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.spot-list article + article {
  padding-left: 26px;
}

.spot-list article:last-child {
  border-right-color: transparent;
}

.spot-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  object-fit: cover;
}

.spot-list span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
}

.spot-list h3 {
  margin-top: 24px;
  font-size: 24px;
}

.spot-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.stories-section {
  background: #f1eee8;
}

.stories-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: 80px;
  align-items: end;
}

.stories-heading > p {
  margin: 0;
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(32, 54, 56, 0.24);
  border-radius: 3px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
}

input,
select {
  min-height: 46px;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(77, 123, 120, 0.25);
  outline-offset: 2px;
  border-color: var(--sea);
}

.story-form {
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(191, 104, 76, 0.35);
  background: var(--white);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
}

.form-heading h3 {
  margin-top: 4px;
  font-size: 25px;
}

.form-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.form-heading-side {
  display: flex;
  gap: 16px;
  align-items: center;
}

.story-form-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid var(--line);
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-size: 24px;
  line-height: 1;
}

.story-form-close:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.form-wide {
  grid-column: 1 / -1;
}

.file-field small,
.password-field small {
  color: #718183;
  font-weight: 500;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
}

.form-status {
  margin: 0;
  color: var(--clay);
  font-size: 13px;
  font-weight: 700;
}

.story-invite {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding: 21px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.story-invite p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.story-create-button {
  display: inline-flex;
  min-height: 46px;
  flex: none;
  align-items: center;
  justify-content: center;
}

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

.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.story-card:focus-within,
.story-card:hover {
  border-color: rgba(77, 123, 120, 0.5);
  box-shadow: 0 12px 32px rgba(24, 48, 50, 0.1);
}

.story-card-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--sea-pale);
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.story-card-image:hover img {
  transform: scale(1.025);
}

.photo-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-width: 34px;
  padding: 6px 9px;
  border-radius: 3px;
  color: var(--white);
  background: rgba(25, 49, 51, 0.82);
  font-size: 11px;
  font-weight: 800;
}

.story-card-body {
  padding: 20px;
}

.story-card-copy {
  display: block;
  width: 100%;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.story-card-copy:focus-visible,
.story-card-image:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: -3px;
}

.story-card-meta {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 11px;
}

.story-card h3 {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
}

.story-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.empty-stories {
  grid-column: 1 / -1;
  display: grid;
  min-height: 250px;
  place-items: center;
  border: 1px dashed rgba(32, 54, 56, 0.34);
  color: var(--ink-soft);
  text-align: center;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 560px;
  color: var(--white);
  background: var(--sea);
}

.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px clamp(64px, 8vw, 122px);
  background: var(--sea);
}

.location-content h2 {
  max-width: 500px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-top: 30px;
}

.location-steps {
  display: grid;
  align-content: center;
  padding: 64px clamp(56px, 5vw, 84px);
  background: var(--ink);
}

.location-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 22px;
  width: 100%;
  max-width: 620px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
}

.location-steps article:last-child {
  border-bottom: 0;
}

.location-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(240, 199, 120, 0.5);
  border-radius: 50%;
  color: #f0c778;
  font-size: 11px;
  font-weight: 800;
}

.location-steps h3 {
  font-size: 24px;
}

.location-steps p {
  max-width: 480px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.8;
}

.reservation-section {
  padding: 120px 28px;
  text-align: center;
  background: var(--rose);
}

.reservation-section h2 {
  max-width: 850px;
  margin: 0 auto;
}

.reservation-section > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--ink-soft);
}

.reservation-phones {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 36px auto 0;
}

.reservation-phone {
  display: grid;
  gap: 6px;
  padding: 0 30px 12px;
  border-bottom: 2px solid var(--ink);
}

.reservation-phone + .reservation-phone {
  border-left: 1px solid rgba(31, 57, 58, 0.24);
}

.reservation-phone span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
}

.reservation-phone strong {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
}

.reservation-address-row {
  display: flex;
  max-width: 620px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px auto 0;
}

.reservation-address-row address {
  color: var(--ink-soft);
  font-size: 15px;
  font-style: normal;
  line-height: 1.6;
}

.address-copy-button {
  min-height: 36px;
  flex: none;
  border: 1px solid rgba(31, 57, 58, 0.38);
  border-radius: 4px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.address-copy-button:hover,
.address-copy-button:focus-visible {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
  align-items: end;
  padding: 42px max(28px, calc((100% - var(--content)) / 2));
  color: rgba(255, 255, 255, 0.7);
  background: #172c2e;
  font-size: 13px;
}

.site-footer strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-contacts {
  display: flex;
  gap: 30px;
}

.footer-contacts > div {
  display: grid;
  gap: 2px;
}

.footer-contacts a {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.mobile-contact-bar {
  display: none;
}

.lightbox {
  width: min(1240px, calc(100% - 40px));
  max-width: none;
  height: min(88vh, 840px);
  max-height: none;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(7, 23, 24, 0.42);
}

.lightbox::backdrop {
  background: rgba(12, 29, 31, 0.94);
  backdrop-filter: blur(8px);
}

.lightbox-shell {
  position: relative;
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
}

.lightbox-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #13292b;
}

.lightbox-media::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(10, 27, 29, 0.78), transparent);
  content: "";
  pointer-events: none;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-photo-meta {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 22px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.lightbox-details {
  display: flex;
  min-width: 0;
  overflow-y: auto;
  flex-direction: column;
  padding: 52px 38px 36px;
  background: var(--paper);
}

.lightbox-story-copy time {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
}

.lightbox-story-copy h2 {
  margin-top: 14px;
  font-size: 34px;
  line-height: 1.28;
}

.lightbox-story-copy > p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  white-space: pre-line;
}

.lightbox-post-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 32px;
}

.lightbox-post-actions .button {
  flex: 1;
}

.lightbox-password-form,
.lightbox-edit-form {
  display: grid;
  gap: 18px;
}

.lightbox-password-form {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.lightbox-password-form > div:first-child > span,
.lightbox-edit-heading > span {
  color: var(--clay);
  font-size: 10px;
  font-weight: 800;
}

.lightbox-password-form h3,
.lightbox-edit-heading h3 {
  margin-top: 5px;
  font-size: 24px;
}

.lightbox-password-form > div:first-child > p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.lightbox-edit-form label,
.lightbox-password-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.lightbox-edit-form textarea {
  min-height: 130px;
}

.lightbox-existing-images {
  margin: 0;
  border: 0;
  padding: 0;
}

.lightbox-existing-images legend {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.lightbox-existing-images > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lightbox-image-choice {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
}

.lightbox-image-choice input {
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 6px;
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--sea);
}

.lightbox-image-choice img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.lightbox-image-choice span {
  overflow: hidden;
  padding: 5px 6px;
  font-size: 10px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lightbox-form-actions {
  display: flex;
  gap: 8px;
}

.lightbox-form-actions .button {
  flex: 1;
}

.lightbox-form-status {
  min-height: 22px;
  margin: 0;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 3;
  border: 0;
  line-height: 1;
}

.lightbox-close {
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(247, 244, 238, 0.94);
  font-size: 27px;
}

.lightbox-arrow {
  top: 50%;
  width: 46px;
  height: 58px;
  color: var(--white);
  background: rgba(13, 33, 35, 0.48);
  font-size: 42px;
  transform: translateY(-50%);
}

.lightbox-arrow.prev {
  left: 14px;
}

.lightbox-arrow.next {
  right: 14px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .header-contacts {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      padding 240ms ease;
  }

  .main-nav.open {
    max-height: 520px;
    padding-top: 12px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

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

  .hero {
    min-height: 830px;
  }

  .hero h1 {
    font-size: 82px;
  }

  .hero-notes {
    display: none;
  }

  .welcome {
    grid-template-columns: 130px minmax(300px, 0.9fr) minmax(360px, 1.1fr);
    gap: 32px;
  }

  .section-intro {
    grid-template-columns: 130px minmax(300px, 1fr) minmax(240px, 360px);
    gap: 32px;
  }

  .room-story,
  .room-story.house-story {
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  }

  .room-copy {
    padding: 52px 38px;
  }

  .ferry-heading {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 45px;
  }

  .trail-overview {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  }

  .trail-summary {
    padding: 44px 34px;
  }

  .trail-map-layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
    gap: 44px;
  }

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

@media (max-width: 860px) {
  h2 {
    font-size: 44px;
  }

  .section-pad {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .site-header {
    min-height: 76px;
  }

  .main-nav {
    top: 76px;
  }

  .brand-seal {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 780px;
    padding-top: 130px;
    padding-bottom: 86px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-lead {
    font-size: 23px;
  }

  .welcome,
  .section-intro {
    grid-template-columns: 1fr;
  }

  .welcome .section-index,
  .section-intro .section-index {
    margin: 0;
  }

  .welcome-visuals {
    min-height: 520px;
  }

  .room-story,
  .room-story.house-story {
    grid-template-columns: 1fr;
  }

  .room-gallery {
    min-height: 600px;
  }

  .house-story .room-gallery,
  .house-story .room-copy {
    order: initial;
  }

  .room-copy {
    padding: 58px max(28px, calc((100% - 700px) / 2));
  }

  .experience-heading,
  .ferry-heading,
  .spots-heading,
  .stories-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .experience-list {
    grid-column: auto;
  }

  .ferry-route {
    margin-top: 18px;
  }

  .schedule-wrap {
    grid-template-columns: 1fr;
  }

  .schedule-block {
    padding-right: 0;
  }

  .schedule-block + .schedule-block {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .ferry-notice {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ferry-notice a {
    justify-self: start;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .location-content,
  .location-steps {
    padding: 72px max(28px, calc((100% - 700px) / 2));
  }

  .trail-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .trail-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trail-heading > p {
    max-width: 620px;
  }

  .trail-overview {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .trail-feature-photo {
    min-height: 460px;
  }

  .trail-summary {
    padding: 48px;
  }

  .trail-map-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 72px;
  }

  .trail-map {
    order: 1;
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .trail-map-copy {
    order: 2;
  }

  .trail-detail-photo {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .trail-detail-photo img {
    min-height: 380px;
  }

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

  .island-gallery figure {
    height: 360px;
  }

  .spot-list article:nth-child(2) {
    border-right-color: transparent;
  }

  .spot-list article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .site-footer > p {
    grid-column: 1 / -1;
  }
}

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

  body {
    padding-bottom: 66px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  .section-pad {
    padding: 72px 20px;
  }

  .section-index {
    margin-bottom: 28px;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 18px;
  }

  .main-nav {
    top: 70px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-seal {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .hero {
    min-height: 720px;
    align-items: center;
    padding: 90px 20px 66px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(21, 40, 42, 0.84), rgba(21, 40, 42, 0.3)),
      linear-gradient(0deg, rgba(18, 36, 38, 0.72), transparent 55%);
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .welcome-copy > p:last-child,
  .section-summary,
  .experience-heading > p,
  .spots-heading > p {
    font-size: 15px;
  }

  .welcome-visuals {
    min-height: auto;
  }

  .welcome-image.large {
    width: 100%;
    height: 380px;
    margin-bottom: 48px;
  }

  .welcome-image.small {
    position: relative;
    width: 74%;
    height: 220px;
    margin: 0 0 0 auto;
    padding: 0;
    background: transparent;
  }

  .welcome-image figcaption {
    min-height: 24px;
    margin-top: 12px;
    line-height: 1.7;
  }

  .section-intro {
    padding: 72px 20px 42px;
  }

  .room-gallery {
    min-height: 500px;
    grid-template-columns: 1fr 0.52fr;
  }

  .room-copy {
    padding: 48px 20px;
  }

  .room-copy h3 {
    font-size: 40px;
  }

  .room-facts {
    grid-template-columns: 1fr;
  }

  .room-facts div {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .room-facts div:last-child {
    border-bottom: 0;
  }

  .gallery-count {
    right: 14px;
    bottom: 14px;
  }

  .experience-feature {
    min-height: 430px;
  }

  .experience-feature > div {
    padding: 24px;
  }

  .experience-feature h3 {
    font-size: 29px;
  }

  .experience-list {
    grid-template-columns: 1fr;
  }

  .experience-list article,
  .experience-list article + article {
    border-top: 1px solid var(--line-light);
    border-left: 0;
    padding: 24px 0;
  }

  .ferry-route {
    grid-template-columns: 1fr 40px 1fr;
    gap: 12px;
  }

  .ferry-route strong {
    font-size: 17px;
  }

  .ferry-route small {
    font-size: 11px;
  }

  .schedule-title {
    display: grid;
  }

  .schedule-times {
    gap: 5px;
  }

  .schedule-times li {
    padding: 13px 10px;
  }

  .schedule-times strong {
    font-size: 22px;
  }

  .trail-section {
    padding: 72px 20px;
  }

  .location-content,
  .location-steps {
    padding: 64px 20px;
  }

  .trail-heading > p {
    font-size: 15px;
  }

  .trail-overview {
    margin-top: 38px;
  }

  .trail-feature-photo {
    min-height: 310px;
  }

  .trail-feature-photo figcaption {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .trail-summary {
    padding: 38px 24px;
  }

  .trail-summary h3 {
    font-size: 26px;
  }

  .trail-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .trail-stats div {
    display: block;
    padding: 15px 4px 15px 0;
    border-bottom: 0;
  }

  .trail-stats strong {
    font-size: 14px;
  }

  .trail-map-layout {
    gap: 32px;
    margin-top: 56px;
  }

  .trail-map-copy h3 {
    font-size: 29px;
  }

  .trail-route {
    grid-template-columns: 1fr;
  }

  .trail-route li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .trail-map {
    padding: 12px 12px 10px;
  }

  .trail-detail-photo {
    margin-top: 56px;
  }

  .trail-detail-photo img {
    min-height: 270px;
  }

  .trail-detail-photo figcaption {
    padding: 30px 24px;
    font-size: 18px;
  }

  .spot-list {
    grid-template-columns: 1fr;
  }

  .island-gallery {
    margin-top: 40px;
  }

  .island-gallery figure {
    height: 300px;
  }

  .island-gallery figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
    font-size: 15px;
  }

  .spot-list article,
  .spot-list article + article {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-right: 0;
    padding: 24px 0;
  }

  .spot-list article:first-child {
    border-top: 0;
  }

  .spot-list img {
    aspect-ratio: 16 / 10;
    margin-bottom: 20px;
  }

  .spot-list h3 {
    margin-top: 18px;
  }

  .story-form {
    padding: 22px 18px;
  }

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

  .form-heading-side {
    justify-content: space-between;
    align-items: center;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .form-footer .button {
    width: 100%;
  }

  .story-invite {
    gap: 12px;
    padding: 17px 18px;
  }

  .story-invite p {
    font-size: 15px;
    line-height: 1.5;
  }

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

  .location-actions {
    display: grid;
    justify-items: start;
  }

  .reservation-section {
    padding: 82px 20px;
  }

  .reservation-phone {
    padding: 0 8px 10px;
  }

  .reservation-phone span {
    font-size: 10px;
  }

  .reservation-phone strong {
    font-size: 20px;
  }

  .reservation-address-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    text-align: left;
  }

  .reservation-address-row address {
    font-size: 13px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 20px;
  }

  .site-footer > p {
    grid-column: auto;
  }

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

  .mobile-contact-bar {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: var(--sun);
    box-shadow: 0 -10px 28px rgba(24, 48, 50, 0.18);
  }

  .mobile-call {
    display: grid;
    min-width: 0;
    min-height: 66px;
    place-content: center;
    gap: 2px;
    color: #263333;
    text-align: center;
  }

  .mobile-call.fishing {
    color: var(--white);
    background: var(--ink);
  }

  .mobile-call span {
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-call strong {
    font-size: 17px;
  }

  .lightbox {
    width: calc(100% - 12px);
    height: calc(100dvh - 86px);
  }

  .lightbox-shell {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(250px, 44vh) minmax(0, 1fr);
  }

  .lightbox-details {
    padding: 28px 22px 34px;
  }

  .lightbox-story-copy h2 {
    padding-right: 34px;
    font-size: 27px;
  }

  .lightbox-story-copy > p {
    margin-top: 14px;
    font-size: 14px;
  }

  .lightbox-photo-meta {
    right: 16px;
    bottom: 14px;
    left: 16px;
    font-size: 11px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }

  .lightbox-arrow {
    width: 38px;
    height: 52px;
    font-size: 36px;
  }

  .lightbox-arrow.prev {
    left: 6px;
  }

  .lightbox-arrow.next {
    right: 6px;
  }

  .lightbox-password-form {
    margin-top: 24px;
    padding-top: 22px;
  }

  .lightbox-existing-images > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lightbox-form-actions {
    flex-direction: column;
  }
}
