:root {
  --ink: #143c37;
  --ink-deep: #092d29;
  --paper: #fffdf6;
  --sand: #f2ead8;
  --sand-dark: #ddceb0;
  --sea: #46a1a7;
  --sky: #bee2e3;
  --coral: #ee6047;
  --line: rgba(20, 60, 55, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sand);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(242, 234, 216, 0.94);
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 76px;
  padding: 0 4vw;
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  align-items: center;
  display: flex;
  gap: 11px;
  line-height: 0.9;
  width: fit-content;
}

.logo strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.logo small {
  display: block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-top: 6px;
  text-transform: uppercase;
}

.logo-rock {
  background: var(--coral);
  border-radius: 45% 55% 58% 42% / 59% 41% 55% 45%;
  display: inline-block;
  height: 29px;
  transform: rotate(12deg);
  width: 22px;
}

.topbar nav {
  display: flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 28px;
}

.topbar nav a {
  border-bottom: 1px solid transparent;
  padding: 7px 0;
}

.topbar nav a:hover {
  border-color: currentColor;
}

.maps-link {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  gap: 24px;
  justify-content: space-between;
  letter-spacing: 0.04em;
  min-height: 50px;
  padding: 0 17px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.maps-link:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.maps-link-small {
  justify-self: end;
  min-height: 42px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(480px, 0.9fr);
  min-height: calc(100svh - 76px);
}

.hero-photo {
  min-height: 690px;
  overflow: hidden;
  position: relative;
}

.hero-photo::after {
  background: linear-gradient(180deg, transparent 55%, rgba(9, 45, 41, 0.5));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  position: absolute;
  width: 100%;
}

.hero-photo p {
  bottom: 20px;
  color: white;
  font-size: 0.64rem;
  left: 24px;
  letter-spacing: 0.08em;
  margin: 0;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vw;
  position: relative;
}

.hero-content::before {
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  height: 120px;
  position: absolute;
  right: 4vw;
  top: 4vw;
  width: 120px;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 0.66rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--coral);
  content: "";
  height: 2px;
  width: 28px;
}

.eyebrow-light::before {
  background: currentColor;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(4.2rem, 6.5vw, 7.4rem);
  line-height: 0.84;
  margin-bottom: 33px;
  position: relative;
  z-index: 1;
}

h1 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.68;
  max-width: 570px;
}

.maps-link-main {
  background: var(--ink);
  color: var(--paper);
  margin: 14px 0 42px;
  min-width: 290px;
}

.maps-link-main:hover {
  background: var(--coral);
  border-color: var(--coral);
}

.hero-features {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.hero-features li {
  border-right: 1px solid var(--line);
  padding: 18px 14px;
}

.hero-features li:first-child {
  padding-left: 0;
}

.hero-features li:last-child {
  border-right: 0;
}

.hero-features strong,
.hero-features span {
  display: block;
}

.hero-features strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
}

.hero-features span {
  font-size: 0.65rem;
  line-height: 1.35;
  margin-top: 5px;
  opacity: 0.68;
}

.intro-section {
  background: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.35fr 1.65fr;
  padding: 9vw 8vw;
}

.section-number {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 9rem);
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.section-copy {
  max-width: 980px;
}

.section-copy h2,
.food-copy h2,
.directions-heading h2,
.parking-map-heading h2,
.beach-copy h2,
.faq-heading h2,
.english-section h2,
.final-section h2 {
  font-size: clamp(3rem, 5vw, 5.7rem);
  line-height: 0.95;
  margin-bottom: 30px;
}

.section-copy .large-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.9rem);
  letter-spacing: -0.035em;
  line-height: 1.25;
  max-width: 900px;
}

.section-copy > p:last-child {
  line-height: 1.75;
  max-width: 720px;
}

.seo-guide-section {
  background: var(--sand);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.72fr 1.28fr;
  padding: 9vw 7vw;
}

.seo-guide-heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.seo-guide-heading h2,
.day-heading h2 {
  font-size: clamp(3rem, 4.7vw, 5.3rem);
  line-height: 0.96;
  margin-bottom: 30px;
}

.seo-guide-content {
  border-top: 1px solid var(--ink);
}

.seo-topic {
  align-items: start;
  border-bottom: 1px solid var(--ink);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr;
  padding: 30px 0;
}

.seo-topic > span {
  background: var(--coral);
  border-radius: 50%;
  color: var(--paper);
  display: grid;
  font-size: 0.63rem;
  font-weight: 800;
  height: 34px;
  place-items: center;
  width: 34px;
}

.seo-topic h3,
.day-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.3vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  margin-bottom: 17px;
}

.seo-topic p {
  font-size: 0.88rem;
  line-height: 1.78;
  margin-bottom: 0;
  max-width: 720px;
}

.food-section {
  background: var(--coral);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.food-copy {
  align-self: center;
  padding: 8vw;
}

.food-copy > p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 600px;
}

.food-note {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
  margin-top: 40px;
  padding: 18px 0;
}

.food-note span {
  font-size: 1.5rem;
}

.food-note p {
  font-size: 0.72rem;
  line-height: 1.5;
  margin: 0;
}

.food-visual {
  align-items: center;
  background: var(--sky);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 50px;
  position: relative;
}

.food-visual::after {
  background: var(--sea);
  border-radius: 50%;
  bottom: -35%;
  content: "";
  height: 68%;
  position: absolute;
  width: 120%;
}

.truck {
  background: var(--sand);
  border: 2px solid var(--ink);
  height: 240px;
  position: relative;
  width: min(430px, 90%);
  z-index: 2;
}

.truck::before {
  background: var(--sand);
  border: 2px solid var(--ink);
  border-bottom: 0;
  content: "";
  height: 70px;
  left: 15%;
  position: absolute;
  top: -72px;
  width: 70%;
}

.truck-sign {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  left: 0;
  letter-spacing: -0.03em;
  position: absolute;
  right: 0;
  text-align: center;
  top: -48px;
}

.truck-window {
  background: var(--coral);
  border: 2px solid var(--ink);
  height: 115px;
  left: 11%;
  position: absolute;
  top: 37px;
  width: 78%;
}

.truck-window::after {
  border-bottom: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  content: "";
  height: 16px;
  left: -2px;
  position: absolute;
  right: -2px;
  top: 45px;
}

.truck-wheel {
  background: var(--ink);
  border: 8px solid var(--sand);
  border-radius: 50%;
  bottom: -38px;
  height: 72px;
  position: absolute;
  width: 72px;
}

.wheel-one {
  left: 14%;
}

.wheel-two {
  right: 14%;
}

.food-visual > p {
  bottom: 25px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
  z-index: 3;
}

.food-visual.food-photo-feature {
  display: block;
  margin: 0;
  min-height: 680px;
  padding: 0;
}

.food-photo-feature::after {
  display: none;
}

.food-photo-feature img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.food-photo-feature figcaption {
  background: rgba(9, 45, 41, 0.88);
  bottom: 0;
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 800;
  left: 0;
  letter-spacing: 0.12em;
  padding: 19px 24px;
  position: absolute;
  text-transform: uppercase;
  width: 100%;
}

.food-gallery {
  background: var(--ink-deep);
  display: grid;
  gap: 10px;
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px;
}

.food-gallery-compact {
  grid-auto-rows: clamp(320px, 36vw, 560px);
  grid-template-columns: repeat(3, 1fr);
}

.food-gallery-compact .food-gallery-item {
  grid-column: auto;
  grid-row: auto;
}

.food-gallery-item {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.food-gallery-item-wide {
  grid-column: span 2;
}

.food-gallery-item-tall {
  grid-row: span 2;
}

.food-gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
  width: 100%;
}

.food-gallery-item:hover img {
  transform: scale(1.025);
}

.directions-section {
  background: var(--ink);
  color: var(--paper);
  padding: 9vw 7vw;
}

.directions-heading {
  display: grid;
  gap: 7vw;
  grid-template-columns: 0.55fr 1.45fr;
}

.parking-map-section {
  align-items: center;
  background: var(--sky);
  display: grid;
  gap: 6vw;
  grid-template-columns: 0.68fr 1.32fr;
  padding: 8vw 7vw;
}

.parking-map-heading > p:last-child {
  line-height: 1.72;
  margin-bottom: 0;
  max-width: 560px;
}

.parking-map-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 var(--coral);
  margin: 0 14px 14px 0;
  padding: 10px;
}

.parking-map-card > a {
  background: var(--sand);
  display: block;
  overflow: hidden;
}

.parking-map-card img {
  height: auto;
  transition: transform 260ms ease;
  width: 100%;
}

.parking-map-card a:hover img {
  transform: scale(1.012);
}

.parking-map-card figcaption {
  align-items: center;
  display: flex;
  font-size: 0.66rem;
  gap: 20px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 14px 8px 4px;
  text-transform: uppercase;
}

.parking-map-card figcaption span {
  color: rgba(20, 60, 55, 0.72);
}

.direction-grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.direction-grid article {
  min-height: 360px;
  padding: 30px;
}

.direction-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.direction-grid article > span {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 90px;
  text-transform: uppercase;
}

.direction-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.direction-grid p {
  font-size: 0.83rem;
  line-height: 1.65;
}

.direction-action {
  background: var(--sand);
  color: var(--ink);
}

.direction-action a {
  border-bottom: 1px solid currentColor;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 18px;
  padding-bottom: 5px;
}

.day-section {
  background: var(--paper);
  padding: 9vw 7vw;
}

.day-heading {
  display: grid;
  gap: 6vw;
  grid-template-columns: 0.5fr 1.1fr 0.7fr;
}

.day-heading > p:last-child {
  font-size: 0.86rem;
  line-height: 1.75;
  padding-top: 8px;
}

.day-grid {
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
}

.day-grid article {
  min-height: 330px;
  padding: 28px 24px;
}

.day-grid article + article {
  border-left: 1px solid var(--ink);
}

.day-grid article > span {
  color: var(--coral);
  display: block;
  font-size: 1.4rem;
  margin-bottom: 72px;
}

.day-grid p {
  font-size: 0.78rem;
  line-height: 1.68;
  margin-bottom: 0;
}

.beach-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 800px;
}

.beach-photo {
  min-height: 680px;
  overflow: hidden;
}

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

.beach-copy {
  align-self: center;
  padding: 7vw;
}

.beach-copy > p:not(.eyebrow) {
  line-height: 1.75;
}

.beach-copy ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.beach-copy li {
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  padding: 17px 0 17px 28px;
  position: relative;
}

.beach-copy li::before {
  color: var(--coral);
  content: "→";
  left: 0;
  position: absolute;
}

.faq-section {
  background: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.85fr 1.15fr;
  padding: 9vw 7vw;
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
  padding: 23px 0;
}

.faq-list summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  list-style-position: outside;
  padding-right: 20px;
}

.faq-list details p {
  font-size: 0.86rem;
  line-height: 1.7;
  margin: 18px 0 0 21px;
  max-width: 620px;
}

.english-section {
  background: var(--sea);
  color: var(--paper);
  padding: 8vw;
}

.english-section h2 {
  max-width: 900px;
}

.english-section > p:last-child {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 720px;
}

.english-section > p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 760px;
}

.final-section {
  align-items: end;
  background: var(--coral);
  color: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.3fr 0.7fr;
  padding: 8vw;
}

.final-section .eyebrow::before {
  background: currentColor;
}

.final-section h2 {
  margin-bottom: 0;
}

.maps-link-final {
  border-color: var(--paper);
  justify-self: end;
  min-width: 290px;
}

.maps-link-final:hover {
  background: var(--paper);
  color: var(--ink);
}

footer {
  align-items: start;
  background: var(--ink-deep);
  color: var(--paper);
  display: grid;
  font-size: 0.68rem;
  gap: 6vw;
  grid-template-columns: 1fr 1fr 1fr;
  line-height: 1.6;
  padding: 44px 7vw;
}

.footer-name {
  align-items: center;
  display: flex;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 22px;
  justify-self: end;
}

.footer-links a {
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-color: currentColor;
}

@media (max-width: 1050px) {
  .topbar {
    grid-template-columns: 1fr 1fr;
  }

  .topbar nav {
    display: none;
  }

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

  .hero-photo {
    min-height: 58svh;
  }

  .hero-content {
    padding: 80px 7vw 60px;
  }

  .food-section,
  .beach-section {
    grid-template-columns: 1fr;
  }

  .food-gallery {
    grid-auto-rows: 250px;
    grid-template-columns: repeat(3, 1fr);
  }

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

  .food-copy,
  .food-visual,
  .beach-copy {
    min-height: 620px;
  }

  .food-visual.food-photo-feature {
    min-height: 68svh;
  }

  .direction-grid article {
    min-height: 330px;
  }

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

  .faq-heading {
    position: static;
  }

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

  .seo-guide-heading {
    position: static;
  }

  .day-heading {
    grid-template-columns: 1fr 1.4fr;
  }

  .day-heading > p:last-child {
    grid-column: 2;
  }

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

  .day-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

  .day-grid article:nth-child(4) {
    border-top: 1px solid var(--ink);
  }
}

@media (max-width: 720px) {
  .topbar {
    height: 68px;
    padding: 0 18px;
  }

  .maps-link-small {
    gap: 8px;
    min-height: 40px;
    padding: 0 11px;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    min-height: 54svh;
  }

  .hero-content {
    padding: 60px 20px 45px;
  }

  .hero-content::before {
    display: none;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5.2rem);
  }

  .maps-link-main {
    min-width: 0;
    width: 100%;
  }

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

  .hero-features li,
  .hero-features li:first-child {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 14px 0;
  }

  .hero-features li:last-child {
    border-bottom: 0;
  }

  .intro-section,
  .faq-section,
  .seo-guide-section {
    gap: 45px;
    grid-template-columns: 1fr;
    padding: 80px 20px;
  }

  .section-number {
    font-size: 4.5rem;
  }

  .section-copy h2,
  .seo-guide-heading h2,
  .food-copy h2,
  .directions-heading h2,
  .parking-map-heading h2,
  .day-heading h2,
  .beach-copy h2,
  .faq-heading h2,
  .english-section h2,
  .final-section h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .food-copy,
  .food-visual,
  .beach-copy {
    min-height: auto;
    padding: 80px 20px;
  }

  .food-visual {
    min-height: 520px;
  }

  .food-visual.food-photo-feature {
    min-height: 520px;
  }

  .food-gallery {
    gap: 6px;
    grid-auto-rows: 190px;
    grid-template-columns: repeat(2, 1fr);
    padding: 6px;
  }

  .food-gallery.food-gallery-compact {
    grid-auto-rows: min(125vw, 560px);
    grid-template-columns: 1fr;
  }

  .parking-map-section {
    gap: 40px;
    padding: 80px 20px;
  }

  .parking-map-card {
    box-shadow: 8px 8px 0 var(--coral);
    margin: 0 8px 8px 0;
    padding: 6px;
  }

  .parking-map-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 12px 6px 6px;
  }

  .directions-section {
    padding: 80px 20px;
  }

  .directions-heading {
    display: block;
  }

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

  .direction-grid article {
    min-height: 300px;
  }

  .direction-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }

  .direction-grid article > span {
    margin-bottom: 60px;
  }

  .day-section {
    padding: 80px 20px;
  }

  .day-heading {
    display: block;
  }

  .day-heading > p:last-child {
    padding-top: 0;
  }

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

  .day-grid article,
  .day-grid article:nth-child(3),
  .day-grid article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--ink);
    min-height: auto;
    padding: 28px 0 38px;
  }

  .day-grid article:first-child {
    border-top: 0;
  }

  .day-grid article > span {
    margin-bottom: 42px;
  }

  .beach-photo {
    min-height: 58svh;
  }

  .english-section,
  .final-section {
    padding: 80px 20px;
  }

  .final-section {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .maps-link-final {
    justify-self: stretch;
    min-width: 0;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 44px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
    justify-self: start;
  }
}

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

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