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

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}


/* Cross-device overflow safety */
.menu-hero,
.philosophy,
.featured-showcase,
.categories,
.gallery-section,
.story-slider-section,
.booking-section {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.menu-hero-copy,
.menu-hero-visual,
.philosophy > *,
.showcase-slider,
.slider-viewport,
.showcase-slide > *,
.section-heading,
.category-card,
.gallery-header > *,
.gallery-item,
.story-intro,
.story-slider,
.story-slide,
.booking-content,
.booking-graphic {
  min-width: 0;
  max-width: 100%;
}

.slider-viewport,
.story-slider,
.gallery-section,
.booking-section,
.menu-hero {
  overflow-x: hidden;
}

/* Buttons */

.primary-button {
  min-height: 56px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font: 600 0.9rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .primary-button:hover {
    background: var(--peach-dark);
    transform: translateY(-3px);
  }
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 600 0.9rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-button span {
  transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .text-button:hover span {
    transform: translate(3px, -3px);
  }
}

/* Hero */

.menu-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  background: var(--peach);
}

.menu-hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding:
    calc(var(--header-h) + 42px)
    clamp(24px, 5vw, 82px)
    82px;
}

.menu-hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(3.8rem, 6vw, 6.8rem);
  line-height: 0.82;
  letter-spacing: -0.035em;
}

.menu-hero-intro {
  max-width: 610px;
  color: rgba(17, 17, 17, 0.7);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.75;
}

.menu-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.menu-hero-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100svh;
}

.photo-placeholder,
.gallery-placeholder,
.category-placeholder,
.story-placeholder,
.hero-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  text-align: center;
}

.photo-placeholder span,
.gallery-placeholder span,
.category-placeholder span,
.story-placeholder span,
.hero-placeholder span {
  font: 600 1.05rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-placeholder small,
.gallery-placeholder small,
.hero-placeholder small {
  max-width: 270px;
  color: currentColor;
  opacity: 0.65;
  line-height: 1.5;
}

.placeholder-peach {
  background:
    linear-gradient(135deg, #ffb184, #f38b59);
}

.placeholder-cream {
  background:
    linear-gradient(135deg, #fff8f2, #ecd9cd);
}

.placeholder-soft {
  background:
    linear-gradient(135deg, #ffe4d5, #ffc6a6);
}

.placeholder-black,
.placeholder-dark {
  background:
    linear-gradient(135deg, #242020, #080808);
  color: #fff;
}

.hero-number {
  position: absolute;
  top: 50%;
  right: clamp(20px, 5vw, 75px);
  color: rgba(255, 255, 255, 0.32);
  font: 700 clamp(6.5rem, 12vw, 12rem)/0.7 "Barlow Condensed", sans-serif;
  transform: translateY(-50%);
}

.hero-visual-caption {
  position: absolute;
  right: clamp(25px, 5vw, 75px);
  bottom: 42px;
  max-width: 320px;
  margin: 0;
  color: #fff;
  font: 600 clamp(1.15rem, 1.6vw, 1.6rem)/1.1 "Barlow Condensed", sans-serif;
  text-align: right;
  text-transform: uppercase;
}

.hero-line {
  position: absolute;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-line-one {
  bottom: -240px;
  left: -180px;
  width: 460px;
  height: 460px;
}

.hero-line-two {
  bottom: -175px;
  left: -105px;
  width: 310px;
  height: 310px;
}

/* Philosophy */

.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 170px);
  padding:
    clamp(82px, 8vw, 125px)
    clamp(24px, 8vw, 140px);
  background: var(--paper);
}

.philosophy-heading h2,
.section-heading h2,
.gallery-header h2,
.story-intro h2,
.booking-content h2 {
  margin-bottom: 0;
  font-size: clamp(2.9rem, 4.4vw, 5.1rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.philosophy-copy {
  align-self: end;
  max-width: 690px;
}

.philosophy-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.philosophy-copy .lead-copy {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  line-height: 1.45;
}

/* Shared heading */

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* Featured slideshow */

.featured-showcase {
  padding:
    clamp(82px, 8vw, 125px)
    clamp(24px, 6vw, 105px);
  background: #fff;
}

.showcase-slider {
  overflow: hidden;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.showcase-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: stretch;
}

.showcase-image {
  height: 560px;
}

.showcase-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.showcase-image .photo-placeholder {
  width: 100%;
  height: 100%;
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 4.5vw, 62px);
  background: var(--peach-soft);
}

.slide-index {
  margin-bottom: auto;
  color: var(--peach-dark);
  font: 600 0.9rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.1em;
}

.showcase-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 3.2vw, 3.7rem);
  line-height: 0.95;
}

.showcase-copy > p:last-child {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.slider-controls {
  display: grid;
  grid-template-columns: auto minmax(100px, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.slider-button,
.story-prev,
.story-next {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .slider-button:hover,
  .story-prev:hover,
  .story-next:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
  }
}

.slider-progress {
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.slider-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--peach-dark);
  transition: transform 0.5s ease;
  transform-origin: left;
}

/* Categories */

.categories {
  padding:
    clamp(82px, 8vw, 125px)
    clamp(24px, 6vw, 105px);
  background: var(--paper);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.category-number {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font: 600 0.9rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.1em;
}

.category-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #f7f2ee;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

@media (hover: hover) and (pointer: fine) {
  .category-card:hover .category-image img {
    transform: scale(1.05);
  }
}

.category-copy {
  padding: 26px;
}

.category-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  line-height: 1;
}

.category-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.category-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font: 600 0.86rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Gallery */
.gallery-section {
  padding:
    clamp(82px, 8vw, 125px)
    clamp(24px, 6vw, 105px);
  background: #fff;
}

.gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 42px;
}

.gallery-header > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: 600 0.78rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.filter-button.is-active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

@media (hover: hover) and (pointer: fine) {
  .filter-button:hover {
    color: #fff;
    border-color: var(--ink);
    background: var(--ink);
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 66px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.gallery-item.is-hidden,
.gallery-item[hidden] {
  display: none !important;
}

.gallery-item:not(.gallery-item-tall):not(.gallery-item-wide) {
  aspect-ratio: 4 / 5;
}

.gallery-item-tall {
  grid-row: span 2;
  aspect-ratio: 4 / 7;
}

.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gallery-caption {
  height: 66px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--paper);
}

.gallery-caption span {
  color: var(--peach-dark);
  font: 600 0.82rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-caption strong {
  font-size: 0.9rem;
  text-align: right;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item,
  .gallery-item-tall,
  .gallery-item-wide,
  .gallery-item:not(.gallery-item-tall):not(.gallery-item-wide) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .gallery-photo {
    height: 340px;
    flex: none;
  }

  .gallery-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


.story-image {
  display: block;
  width: 100%;
  height: clamp(360px, 44vw, 560px);
  object-fit: cover;
  object-position: center;
}

/* Story slider */

.story-slider-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(44px, 6vw, 95px);
  padding:
    clamp(82px, 8vw, 125px)
    clamp(24px, 6vw, 105px);
  background: var(--peach-soft);
}

.story-intro > p:last-child {
  max-width: 560px;
  margin-top: 32px;
  color: var(--muted);
  line-height: 1.75;
}

.story-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.story-track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.story-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.story-placeholder {
  min-height: 460px;
}

.story-caption {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0 0;
}

.story-caption span {
  color: var(--peach-dark);
  font: 600 0.9rem "Barlow Condensed", sans-serif;
}

.story-caption p {
  margin: 0;
  font: 600 clamp(1.05rem, 1.5vw, 1.4rem)/1.25 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.story-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.story-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.25);
  cursor: pointer;
  transition:
    width 0.2s ease,
    border-radius 0.2s ease,
    background-color 0.2s ease;
}

.story-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--ink);
}

/* Booking */

.booking-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(44px, 6vw, 95px);
  overflow: hidden;
  padding:
    clamp(82px, 8vw, 125px)
    clamp(24px, 8vw, 140px);
  background: var(--peach);
}

.booking-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.booking-content h2 {
  color: #fff;
}

.booking-content > p:not(.eyebrow) {
  max-width: 630px;
  margin: 28px 0 34px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.98rem;
  line-height: 1.75;
}

.booking-graphic {
  display: grid;
  gap: 5px;
  position: relative;
  z-index: 2;
}

.booking-word {
  color: rgba(255, 255, 255, 0.72);
  font: 700 clamp(3.2rem, 5vw, 5.6rem)/0.84 "Barlow Condensed", sans-serif;
  letter-spacing: -0.04em;
  text-align: right;
  text-transform: uppercase;
}

.booking-word:nth-child(2) {
  color: var(--ink);
}

.booking-decoration {
  position: absolute;
  right: -170px;
  bottom: -260px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 50%;
}

.booking-decoration::before,
.booking-decoration::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
}

.booking-decoration::before {
  inset: 52px;
}

.booking-decoration::after {
  inset: 105px;
}

/* Scroll animations */

[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.75s ease,
    transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="up"] {
  transform: translateY(46px);
}

[data-reveal="left"] {
  transform: translateX(-55px);
}

[data-reveal="right"] {
  transform: translateX(55px);
}

[data-reveal="image"] {
  transform: scale(1.06);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Responsive */

@media (max-width: 1220px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
  }

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

@media (max-width: 1050px) {
  .menu-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-hero-copy {
    min-height: 68svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .menu-hero-visual {
    min-height: 60svh;
  }

  .hero-placeholder {
    min-height: 60svh;
  }

  .philosophy,
  .story-slider-section,
  .booking-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .showcase-slide {
    grid-template-columns: minmax(0, 1fr);
  }

  .showcase-image {
    min-height: 500px;
  }

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

  .booking-word {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .gallery-item,
  .gallery-item-tall,
  .gallery-item-wide,
  .gallery-item:not(.gallery-item-tall):not(.gallery-item-wide) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .gallery-photo {
    height: 340px;
    flex: none;
  }

  .gallery-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

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

  .showcase-slide {
    display: flex;
    flex-direction: column;
  }

  .showcase-image {
    min-height: 0;
    height: 420px;
    margin: 0;
  }

  .showcase-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .showcase-copy {
    margin: 0;
    padding: 32px 22px 40px;
  }
}

@media (max-width: 720px) {
  .text-button {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .menu-hero {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .menu-hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 11vw, 3.6rem);
    line-height: 0.88;
  }

  .menu-hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 24px;
  }

  .menu-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .philosophy,
  .featured-showcase,
  .categories,
  .gallery-section,
  .story-slider-section,
  .booking-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 60px 18px;
    overflow-x: hidden;
  }

  .philosophy-heading h2,
  .section-heading h2,
  .gallery-header h2,
  .story-intro h2,
  .booking-content h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 0.92;
  }

  .showcase-image {
    min-height: 0;
    height: 300px;
  }

  .showcase-copy {
    padding: 28px 22px;
  }

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

  .category-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .category-placeholder {
    height: 300px;
  }

  .gallery-header {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

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

  .gallery-item,
  .gallery-item-tall,
  .gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
  }

  .gallery-item {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .gallery-photo {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
  }

  .gallery-caption {
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 14px 14px;
  }

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

  .story-slider {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .story-track {
    display: flex;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .story-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .story-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
  }

  .story-placeholder {
    min-height: 350px;
  }

  .booking-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-content,
  .booking-graphic {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .primary-button {
    width: 100%;
  }

  .story-image {
    height: 340px;
  }

  .gallery-photo {
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .slider-track,
  .story-track {
    transition: none;
  }
}