:root {
  --navy: #09213e;
  --navy-2: #061a33;
  --gold: #b57a29;
  --gold-light: #d5a14c;
  --cream: #fbf5ed;
  --paper: #fffaf4;
  --ink: #10213b;
  --muted: #526071;
  --line: #e8d4b9;
  --shadow: 0 18px 45px rgba(39, 28, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 5% 30%, rgba(181, 122, 41, 0.08), transparent 25rem),
    linear-gradient(180deg, var(--paper), var(--cream));
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 250, 244, 0.96);
  border-bottom: 1px solid rgba(181, 122, 41, 0.16);
  display: flex;
  gap: 36px;
  height: 92px;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 86px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand img {
  height: 72px;
  object-fit: contain;
  object-position: left center;
  width: 250px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 4vw, 64px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  padding: 36px 0 23px;
  position: relative;
}

.main-nav a::after {
  background: var(--gold);
  bottom: 17px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--gold);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  opacity: 1;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  background: var(--navy);
  display: block;
  height: 2px;
  width: 26px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.78fr);
  min-height: 560px;
}

.hero-image {
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0) 65%, rgba(255, 250, 244, 0.95) 100%),
    url("../photos/IMG_5268.JPG") center / cover;
  min-height: 560px;
}

.hero-copy {
  align-self: center;
  padding: 64px clamp(34px, 5vw, 80px) 64px 22px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
}

.hero-copy h1 {
  color: var(--navy);
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
  max-width: 480px;
}

.ornament-line,
.section-mark {
  align-items: center;
  color: var(--gold);
  display: flex;
  gap: 14px;
  margin: 26px 0 22px;
}

.ornament-line::before,
.ornament-line::after {
  background: var(--gold);
  content: "";
  height: 1px;
  width: 120px;
}

.hero-copy p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 390px;
}

.hero-actions {
  display: grid;
  gap: 14px;
  max-width: 285px;
}

.btn {
  align-items: center;
  border: 1px solid var(--gold);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  text-transform: uppercase;
}

.btn span {
  font-size: 22px;
  line-height: 0;
  margin-left: 22px;
}

.btn-primary {
  background: var(--navy);
  box-shadow: inset 0 0 0 2px var(--navy), inset 0 0 0 3px var(--gold);
  color: var(--gold-light);
}

.btn-secondary,
.btn-outline {
  background: rgba(255, 250, 244, 0.72);
  color: #75470f;
}

.section-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 42px 28px 0;
}

.memory-section {
  border-top: 1px solid rgba(181, 122, 41, 0.2);
}

.section-shell h2 {
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.1;
  text-align: center;
}

.section-mark {
  justify-content: center;
  margin: 10px 0 22px;
}

.section-mark::before,
.section-mark::after {
  background: var(--gold);
  content: "";
  height: 1px;
  width: 92px;
}

.intro-columns {
  display: grid;
  gap: 54px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 36px;
  max-width: 930px;
  position: relative;
}

.intro-columns::before {
  background: var(--line);
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  width: 1px;
}

.intro-columns p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.boat-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 990px;
}

.boat-card {
  background:
    radial-gradient(circle at 15% 10%, rgba(181, 122, 41, 0.08), transparent 18rem),
    rgba(255, 250, 244, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 455px;
  padding: 30px;
  text-align: center;
}

.boat-icon {
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.boat-card h3 {
  color: var(--navy);
  font-size: 38px;
  line-height: 1;
  margin-top: 6px;
}

.boat-name {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  margin: 6px 0 14px;
}

.boat-card > p:not(.boat-name) {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.boat-card img,
.placeholder-panel {
  aspect-ratio: 1.75 / 1;
  border-radius: 6px;
  margin-top: 20px;
  width: 100%;
}

.boat-card img {
  object-fit: cover;
}

.placeholder-panel {
  align-items: center;
  background:
    linear-gradient(rgba(255, 250, 244, 0.82), rgba(255, 250, 244, 0.82)),
    radial-gradient(circle at center, rgba(181, 122, 41, 0.14), transparent 16rem);
  border: 1px solid var(--line);
  color: var(--gold);
  display: flex;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  justify-content: center;
}

.center-action {
  display: flex;
  justify-content: center;
  margin: 22px 0 48px;
}

.btn-outline {
  min-width: 310px;
}

.moments-section {
  padding-bottom: 74px;
}

.moments-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.moment-photo {
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.moment-photo:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.moments-grid img {
  aspect-ratio: 1.38 / 1;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
  width: 100%;
}

.moment-photo:hover img,
.moment-photo:focus-visible img {
  filter: brightness(1.04);
  transform: scale(1.035);
}

.image-lightbox {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: clamp(18px, 4vw, 44px);
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 100;
}

.image-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  background: rgba(6, 26, 51, 0.78);
  border: 0;
  cursor: zoom-out;
  inset: 0;
  position: absolute;
}

.lightbox-panel {
  background: var(--paper);
  border: 1px solid rgba(213, 161, 76, 0.34);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  max-height: min(82vh, 760px);
  max-width: min(92vw, 980px);
  padding: 10px;
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
  width: max-content;
}

.image-lightbox.open .lightbox-panel {
  transform: translateY(0) scale(1);
}

.lightbox-panel img {
  border-radius: 6px;
  max-height: calc(82vh - 20px);
  max-width: calc(92vw - 20px);
  object-fit: contain;
}

.lightbox-close {
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(181, 122, 41, 0.28);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(16, 33, 59, 0.2);
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -14px;
  top: -14px;
  width: 42px;
  z-index: 1;
}

.lightbox-close:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

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

.site-footer {
  align-items: center;
  background:
    radial-gradient(circle at 5% 10%, rgba(213, 161, 76, 0.16), transparent 16rem),
    linear-gradient(135deg, var(--navy-2), #08274a);
  color: #fff7ea;
  display: grid;
  gap: 34px;
  grid-template-columns: 1.7fr 1.2fr 1fr;
  padding: 38px clamp(26px, 8vw, 110px);
}

.footer-brand img {
  filter: brightness(1.08);
  height: 74px;
  object-fit: contain;
  object-position: left center;
  width: 245px;
}

.site-footer h4 {
  color: var(--gold-light);
  font-size: 14px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.site-footer p {
  font-size: 13px;
  line-height: 1.55;
  margin: 5px 0;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  align-items: center;
  background: linear-gradient(135deg, #84581d, var(--gold-light));
  border-radius: 50%;
  display: inline-flex;
  font-size: 26px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.socials img {
  height: 26px;
  object-fit: contain;
  width: 26px;
}

.placeholder-page {
  align-items: center;
  background: var(--paper);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", Arial, sans-serif;
  gap: 20px;
  justify-content: center;
  min-height: 100vh;
  padding: 30px;
  text-align: center;
}

.placeholder-page h1 {
  font-size: clamp(44px, 7vw, 76px);
}

.page-hero {
  min-height: 410px;
  position: relative;
}

.boat-options-hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.02) 0%, rgba(255, 250, 244, 0.12) 45%, rgba(255, 250, 244, 0.9) 89%, rgba(255, 250, 244, 0.98) 100%),
    url("../photos/IMG_5261.JPG") right 73% / cover;
}

.page-hero-copy {
  padding: 84px clamp(26px, 6vw, 72px) 96px;
  max-width: 470px;
}

.page-hero-copy h1 {
  color: var(--navy);
  font-size: clamp(58px, 6vw, 78px);
  line-height: 1;
}

.page-hero-copy p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.boat-options-hero-copy {
  margin-left: auto;
  text-align: right;
}

.boat-options-hero-copy .ornament-line {
  justify-content: flex-end;
}

.wave-divider {
  align-items: center;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  height: 74px;
  justify-content: center;
  margin-top: -38px;
  position: relative;
  z-index: 2;
}

.wave-divider::before {
  background: var(--gold-light);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  content: "";
  height: 62px;
  left: 0;
  position: absolute;
  right: 0;
  top: -32px;
  z-index: -1;
}

.wave-divider::after {
  background: var(--navy);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  content: "";
  height: 56px;
  left: 0;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1;
}

.wave-divider span {
  border: 1px solid rgba(213, 161, 76, 0.55);
  border-radius: 50%;
  font-size: 26px;
  height: 42px;
  line-height: 40px;
  text-align: center;
  width: 42px;
}

.options-section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px 28px 62px;
}

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

.option-card {
  background:
    radial-gradient(circle at 12% 16%, rgba(181, 122, 41, 0.08), transparent 20rem),
    rgba(255, 250, 244, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(57, 38, 16, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 655px;
  padding: 34px 30px 30px;
  text-align: center;
}

.option-card h2 {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4vw, 54px);
  font-weight: 600;
  line-height: 0.95;
  margin: 8px 0 4px;
}

.small-divider,
.gold-rule {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.small-divider::before,
.small-divider::after,
.gold-rule::before,
.gold-rule::after {
  background: var(--gold-light);
  content: "";
  height: 1px;
  width: 74px;
}

.small-divider::before,
.gold-rule::before {
  width: 42px;
}

.option-description {
  font-size: 15px;
  line-height: 1.55;
  margin: 16px auto 20px;
  max-width: 390px;
}

.option-photo,
.option-placeholder {
  aspect-ratio: 1.82 / 1;
  border-radius: 8px;
  margin: 0 0 28px;
  width: 100%;
}

.option-photo {
  object-fit: cover;
  object-position: center;
}

.option-placeholder {
  align-items: center;
  background:
    linear-gradient(rgba(255, 250, 244, 0.88), rgba(255, 250, 244, 0.88)),
    radial-gradient(circle at center, rgba(181, 122, 41, 0.16), transparent 18rem);
  border: 1px solid var(--line);
  color: var(--gold);
  display: flex;
  flex-direction: column;
  font-family: "Cormorant Garamond", Georgia, serif;
  justify-content: center;
  outline: 1px solid rgba(181, 122, 41, 0.18);
  outline-offset: -9px;
  padding: 26px;
}

.placeholder-symbol {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}

.option-placeholder strong {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.05;
}

.option-placeholder span {
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 18px;
}

.price-list,
.charter-list {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
}

.price-list li {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 15px;
  line-height: 1.45;
  margin-top: 14px;
  text-align: left;
}

.price-list strong,
.charter-list strong {
  color: #15110c;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.check {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  height: 19px;
  justify-content: center;
  width: 19px;
}

.safety-note {
  align-items: center;
  background: rgba(255, 250, 244, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  margin: 18px 0 22px;
  min-height: 86px;
  padding: 18px 24px;
}

.captain-icon {
  align-items: center;
  background: rgba(181, 122, 41, 0.1);
  border: 1px solid rgba(181, 122, 41, 0.28);
  border-radius: 50%;
  display: flex;
  height: 56px;
  justify-content: center;
  position: relative;
  width: 56px;
}

.captain-icon::before {
  background: var(--paper);
  border: 2px solid var(--gold);
  border-bottom: 0;
  border-radius: 18px 18px 6px 6px;
  content: "";
  height: 18px;
  position: absolute;
  top: 15px;
  width: 32px;
}

.captain-icon::after {
  background: var(--navy);
  border-radius: 0 0 14px 14px;
  content: "";
  height: 8px;
  position: absolute;
  top: 31px;
  width: 38px;
}

.captain-icon span {
  background: var(--gold);
  border-radius: 50%;
  height: 5px;
  position: relative;
  top: -2px;
  width: 5px;
  z-index: 1;
}

.safety-note p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.line-art {
  align-self: stretch;
  background:
    linear-gradient(135deg, transparent 0 54%, rgba(181, 122, 41, 0.55) 55% 56%, transparent 57%),
    radial-gradient(circle at 74% 72%, transparent 0 42px, rgba(181, 122, 41, 0.5) 43px 44px, transparent 45px),
    linear-gradient(0deg, transparent 72%, rgba(181, 122, 41, 0.5) 73% 74%, transparent 75%);
  opacity: 0.65;
}

.charter-panel {
  align-items: center;
  background:
    radial-gradient(circle at 18% 24%, rgba(213, 161, 76, 0.18), transparent 18rem),
    linear-gradient(135deg, var(--navy-2), #09294d);
  border: 1px solid rgba(213, 161, 76, 0.75);
  border-radius: 8px;
  color: #fff8ea;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  padding: 34px 54px;
}

.charter-art {
  border-right: 1px solid rgba(213, 161, 76, 0.72);
  min-height: 178px;
  position: relative;
}

.charter-art::before {
  border: 1px solid rgba(213, 161, 76, 0.54);
  border-left: 0;
  border-right: 0;
  bottom: 36px;
  content: "";
  height: 68px;
  left: 18px;
  position: absolute;
  width: 265px;
}

.charter-art::after {
  color: rgba(213, 161, 76, 0.72);
  content: "Ayutthaya";
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 56px;
  left: 30px;
  position: absolute;
  top: 58px;
}

.charter-copy h2 {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1;
  margin: 0;
  max-width: none;
}

.charter-copy .gold-rule {
  background: var(--gold-light);
  height: 1px;
  justify-content: flex-start;
  margin: 10px 0 16px;
  max-width: 260px;
  width: 100%;
}

.charter-copy .gold-rule::before,
.charter-copy .gold-rule::after {
  display: none;
}

.charter-copy p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 8px;
  max-width: 510px;
}

.charter-list {
  margin-top: 8px;
}

.charter-list li {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 17px;
  line-height: 1.45;
  margin-top: 8px;
}

.charter-list strong {
  color: white;
}

.food-hero {
  background:
    linear-gradient(90deg, rgba(5, 18, 31, 0.88) 0%, rgba(5, 18, 31, 0.68) 28%, rgba(5, 18, 31, 0.08) 60%, rgba(5, 18, 31, 0) 100%),
    url("../photos/exp/IMG_5281.JPG") center 54% / cover;
  color: white;
}

.food-hero-copy h1,
.food-hero-copy p {
  color: white;
}

.food-hero-copy .script-line {
  color: var(--gold-light);
  font-family: "Parisienne", cursive;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.food-page-section {
  margin: 0 auto;
  max-width: 1160px;
  padding: 30px 28px 42px;
}

.featured-experience {
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(57, 38, 16, 0.08);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 330px;
  position: relative;
}

.featured-experience > img {
  border-radius: 8px 0 0 8px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.featured-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  text-align: center;
}

.lotus-mark,
.eyebrow {
  color: var(--gold);
}

.lotus-mark {
  font-size: 28px;
  line-height: 1;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  margin: 12px 0 10px;
  text-transform: uppercase;
}

.featured-copy h2,
.food-info-card h2,
.restaurants-section h2,
.food-moments h2 {
  color: #1a1820;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.featured-copy h2 {
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1.03;
  margin: 0 0 14px;
  max-width: 340px;
}

.featured-copy p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.6;
  margin: 18px auto 20px;
  max-width: 360px;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.slider-dots span {
  border: 1px solid var(--gold);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.slider-dots .active {
  background: var(--gold);
}

.round-arrow {
  align-items: center;
  background: var(--navy);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(9, 33, 62, 0.28);
  color: white;
  display: flex;
  font-size: 34px;
  height: 44px;
  justify-content: center;
  left: -24px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  z-index: 2;
}

.round-arrow.next {
  left: auto;
  right: -24px;
}

.food-info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin: 28px 0 38px;
}

.food-info-card {
  align-items: center;
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 24px;
  grid-template-columns: 100px 1fr;
  min-height: 170px;
  padding: 26px 28px;
}

.food-card-icon {
  align-items: center;
  background: rgba(181, 122, 41, 0.12);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  font-size: 17px;
  font-weight: 700;
  height: 86px;
  justify-content: center;
  width: 86px;
}

.food-info-card h2 {
  font-size: 31px;
  line-height: 1.05;
  margin: 0 0 10px;
}

.food-info-card p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.info-note {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 12px;
}

.info-note span {
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.restaurants-section,
.food-moments {
  text-align: center;
}

.restaurants-section h2,
.food-moments h2 {
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.05;
  margin: 0;
}

.restaurant-strip {
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 4px 0 18px;
  padding: 12px 8px;
}

.restaurant-strip article {
  align-items: center;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 74px 1fr;
  padding: 0 16px;
  text-align: left;
}

.restaurant-strip article:last-child {
  border-right: 0;
}

.restaurant-strip img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  width: 74px;
}

.restaurant-strip h3 {
  color: #1a1820;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  line-height: 1;
  margin: 0 0 6px;
}

.restaurant-strip p {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.delivery-note {
  font-size: 14px;
  margin: 0 auto 30px;
  max-width: 720px;
}

.food-gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 12px;
}

.food-gallery img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
  width: 100%;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(5, 18, 31, 0.9) 0%, rgba(5, 18, 31, 0.68) 35%, rgba(5, 18, 31, 0.12) 68%, rgba(5, 18, 31, 0) 100%),
    url("../photos/exp/IMG_5265.JPG") center 17% / cover;
  color: white;
}

.contact-hero-copy h1,
.contact-hero-copy p {
  color: white;
}

.contact-hero-copy .script-line {
  color: var(--gold-light);
  font-family: "Parisienne", cursive;
  font-size: 25px;
  line-height: 1.15;
  margin-top: 10px;
}

.contact-page-section {
  margin: 0 auto;
  max-width: 1160px;
  padding: 30px 28px 0;
}

.contact-intro {
  margin: 0 auto 30px;
  max-width: 520px;
  text-align: center;
}

.contact-intro h2 {
  color: #1a1820;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 50px);
  font-weight: 600;
  line-height: 1;
  margin: 4px 0 12px;
}

.contact-intro > p:last-child {
  font-size: 15px;
  line-height: 1.55;
  margin: 14px 0 0;
}

.contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.95fr 1.05fr 0.95fr;
}

.contact-photo,
.manager-card,
.contact-methods {
  min-height: 345px;
}

.contact-photo {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  width: 100%;
}

.manager-card,
.contact-methods {
  background:
    radial-gradient(circle at 12% 10%, rgba(181, 122, 41, 0.08), transparent 18rem),
    rgba(255, 250, 244, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.manager-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 28px;
  text-align: center;
}

.manager-card h2 {
  color: #1a1820;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  margin: 10px 0 0;
}

.signature {
  color: var(--navy);
  font-family: "Parisienne", cursive;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
  margin: 12px 0;
}

.manager-card > p:last-child {
  font-size: 15px;
  margin: 12px 0 0;
}

.manager-phone {
  align-items: center;
  display: flex;
  gap: 20px;
  margin-top: 22px;
}

.manager-phone p {
  font-size: 14px;
  margin: 0 0 4px;
}

.manager-phone strong {
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: 0;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
}

.contact-methods article {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 72px 1fr;
  padding: 18px 0;
}

.contact-methods article + article {
  border-top: 1px solid var(--line);
}

.contact-icon {
  align-items: center;
  background: rgba(181, 122, 41, 0.14);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.line-icon {
  background: #20c153;
  color: white;
  font-size: 12px;
}

.contact-methods p {
  font-size: 14px;
  margin: 0 0 4px;
}

.contact-methods strong {
  color: #1a1820;
  display: block;
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-methods small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 4px;
}

.contact-wide-photo {
  aspect-ratio: 5.9 / 1;
  border-radius: 8px;
  margin: 24px 0 20px;
  object-fit: cover;
  object-position: center 45%;
  width: 100%;
}

.good-to-know {
  padding-bottom: 26px;
  text-align: center;
}

.good-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.good-grid article {
  border-right: 1px solid var(--line);
  padding: 0 28px;
}

.good-grid article:last-child {
  border-right: 0;
}

.good-grid span {
  align-items: center;
  background: rgba(181, 122, 41, 0.12);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  height: 58px;
  justify-content: center;
  margin-bottom: 12px;
  width: 58px;
}

.good-grid h3 {
  color: #1a1820;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
}

.good-grid p {
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 921px) {
  .charter-copy h2 {
    white-space: nowrap;
  }
}

@media (max-width: 920px) {
  .site-header {
    height: auto;
    min-height: 78px;
  }

  .brand img {
    height: 62px;
    width: 210px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 8px 28px 20px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .main-nav a::after {
    bottom: 8px;
  }

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

  .hero-image {
    min-height: 320px;
  }

  .hero-copy {
    padding: 34px 28px 42px;
  }

  .intro-columns,
  .boat-card-grid,
  .options-grid,
  .charter-panel,
  .featured-experience,
  .food-info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    padding: 62px 28px 92px;
  }

  .safety-note {
    grid-template-columns: auto 1fr;
  }

  .line-art {
    display: none;
  }

  .charter-art {
    border-bottom: 1px solid rgba(213, 161, 76, 0.72);
    border-right: 0;
  }

  .intro-columns {
    gap: 22px;
  }

  .intro-columns::before {
    display: none;
  }

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

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

  .featured-experience > img {
    border-radius: 8px 8px 0 0;
    aspect-ratio: 1.65 / 1;
  }

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

  .restaurant-strip article:nth-child(2) {
    border-right: 0;
  }

  .restaurant-strip article:nth-child(n + 3) {
    margin-top: 16px;
  }

  .food-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-photo,
  .manager-card,
  .contact-methods {
    min-height: auto;
  }

  .contact-photo {
    aspect-ratio: 1.25 / 1;
  }

  .contact-wide-photo {
    aspect-ratio: 2.4 / 1;
  }

  .good-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .good-grid article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 16px;
  }

  .brand img {
    width: 180px;
  }

  .hero-image {
    min-height: 330px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .page-hero {
    min-height: 350px;
  }

  .boat-options-hero {
    background:
      linear-gradient(90deg, rgba(255, 250, 244, 0.96) 0%, rgba(255, 250, 244, 0.82) 58%, rgba(255, 250, 244, 0.25) 100%),
      url("../photos/IMG_5263.JPG") center / cover;
  }

  .food-hero {
    background:
      linear-gradient(90deg, rgba(5, 18, 31, 0.9) 0%, rgba(5, 18, 31, 0.72) 64%, rgba(5, 18, 31, 0.3) 100%),
      url("../photos/food/IMG_5275.JPG") center / cover;
  }

  .contact-hero {
    background:
      linear-gradient(90deg, rgba(5, 18, 31, 0.92) 0%, rgba(5, 18, 31, 0.72) 62%, rgba(5, 18, 31, 0.28) 100%),
      url("../photos/exp/IMG_5265.JPG") center / cover;
  }

  .page-hero-copy h1 {
    font-size: 48px;
  }

  .options-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .food-page-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-page-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .option-card,
  .charter-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .safety-note {
    gap: 18px;
    padding: 20px;
  }

  .captain-icon {
    height: 56px;
    width: 56px;
  }

  .safety-note p {
    font-size: 15px;
  }

  .round-arrow {
    display: none;
  }

  .featured-copy {
    padding: 30px 18px;
  }

  .food-info-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .food-card-icon {
    margin: 0 auto;
  }

  .info-note {
    text-align: left;
  }

  .restaurant-strip {
    grid-template-columns: 1fr;
  }

  .restaurant-strip article,
  .restaurant-strip article:nth-child(2) {
    border-right: 0;
  }

  .restaurant-strip article + article {
    border-top: 1px solid var(--line);
    margin-top: 12px;
    padding-top: 12px;
  }

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

  .manager-phone {
    flex-direction: column;
  }

  .contact-methods article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

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

  .good-grid article,
  .good-grid article:nth-child(2) {
    border-right: 0;
  }

  .good-grid article + article {
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }

  .ornament-line::before,
  .ornament-line::after {
    width: 70px;
  }

  .hero-actions,
  .btn-outline {
    max-width: none;
    min-width: 0;
    width: 100%;
  }

  .section-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .boat-card {
    padding: 24px 18px;
  }

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