:root {
  --ink: #17201f;
  --ink-soft: #4c5956;
  --paper: #ffffff;
  --mist: #edf2ef;
  --teal: #0f4f4b;
  --teal-deep: #0b302e;
  --lime: #d6eb62;
  --coral: #ef725d;
  --line: rgba(23, 32, 31, 0.16);
  --shell: 1280px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding-block: 112px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 34px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

.brand-cup {
  position: relative;
  display: inline-block;
  width: 27px;
  height: 17px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.brand-cup::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: -10px;
  top: 2px;
  border: 3px solid currentColor;
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.brand-cup::after {
  content: "";
  position: absolute;
  left: 5px;
  top: -13px;
  width: 12px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skewX(-12deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a,
.site-footer nav a {
  position: relative;
}

.primary-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.header-cta:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 86svh;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--teal-deep);
}

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

.hero-image {
  object-fit: cover;
  object-position: center 58%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 20, 19, 0.86) 0%, rgba(4, 20, 19, 0.62) 40%, rgba(4, 20, 19, 0.12) 74%),
    linear-gradient(0deg, rgba(4, 20, 19, 0.72) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 122px;
  padding-bottom: 172px;
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 31px;
  line-height: 1.14;
  font-weight: 500;
}

.hero h1 span {
  display: block;
  margin-bottom: 6px;
  color: var(--lime);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 94px;
  line-height: 0.92;
  font-weight: 800;
}

.hero-content > p {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

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

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

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

.button-primary:hover {
  background: #e5f58b;
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
}

.button-quiet:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: #ffffff;
}

.button-dark:hover {
  background: var(--teal);
}

.hero-details {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(7, 32, 30, 0.72);
  backdrop-filter: blur(10px);
}

.hero-details > div {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 20px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-details > div:last-child {
  border-right: 0;
}

.hero-details strong {
  font-size: 16px;
  color: var(--lime);
}

.hero-details span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.welcome {
  overflow: hidden;
  padding-top: 72px;
}

.welcome-grid,
.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 90px;
  align-items: end;
}

.section-heading h2,
.terrace-content h2,
.visit-copy h2 {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 700;
}

.section-index {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.welcome-copy {
  padding-bottom: 3px;
}

.welcome-copy p,
.gallery-intro > p,
.menu-header > p,
.visit-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.welcome-copy p + p {
  margin-top: 20px;
}

.interior-frame {
  position: relative;
  margin-top: 70px;
}

.interior-frame > img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center 55%;
  border-radius: 6px;
}

.interior-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  width: min(390px, calc(100% - 56px));
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  background: var(--paper);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(23, 32, 31, 0.18);
}

.interior-note span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.interior-note strong {
  font-size: 18px;
  line-height: 1.4;
}

.menu-section {
  background: var(--teal-deep);
  color: #ffffff;
}

.menu-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 90px;
  align-items: end;
}

.section-heading-light .section-index {
  color: var(--lime);
}

.menu-header > p {
  color: rgba(255, 255, 255, 0.68);
}

.menu-list {
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 24px;
  min-height: 154px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 180ms ease;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.045);
}

.menu-number {
  align-self: start;
  padding-top: 47px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.menu-item h3 {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 32px;
  line-height: 1.2;
}

.menu-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.menu-mark {
  color: var(--lime);
  font-size: 26px;
  transition: transform 180ms ease;
}

.menu-item:hover .menu-mark {
  transform: translateX(5px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: var(--teal);
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

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

.terrace {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: #ffffff;
}

.terrace > img,
.terrace-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.terrace > img {
  object-fit: cover;
  object-position: center 52%;
}

.terrace-shade {
  background: linear-gradient(0deg, rgba(5, 22, 21, 0.88) 0%, rgba(5, 22, 21, 0.2) 62%, transparent 100%);
}

.terrace-content {
  position: relative;
  z-index: 2;
  padding-bottom: 78px;
}

.terrace-content h2 {
  max-width: 720px;
  font-size: 62px;
}

.terrace-content p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.proof {
  background: var(--lime);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 22px 32px;
  border-right: 1px solid rgba(23, 32, 31, 0.22);
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof strong {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.proof span {
  color: rgba(23, 32, 31, 0.7);
  font-size: 14px;
  font-weight: 650;
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  align-items: start;
}

.review-list {
  border-top: 1px solid var(--line);
}

.review-item {
  margin: 0;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}

.review-item blockquote {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.42;
}

.review-item figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

.review-item figcaption strong {
  color: var(--teal);
}

.gallery-section {
  background: var(--mist);
}

.gallery-intro > p {
  align-self: end;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 310px 310px;
  gap: 16px;
  margin-top: 64px;
}

.gallery-image {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--teal-deep);
  cursor: zoom-in;
}

.gallery-wide {
  grid-column: span 8;
}

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

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

.gallery-tall img {
  object-position: center 42%;
}

.gallery-image:hover img {
  transform: scale(1.035);
}

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

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: stretch;
  gap: 84px;
}

.visit-image-wrap {
  min-height: 650px;
  overflow: hidden;
  border-radius: 6px;
}

.visit-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}

.visit-copy {
  align-self: center;
}

.visit-lead {
  max-width: 590px;
  margin-top: 28px;
}

.visit-details {
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
}

.visit-details > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.visit-details dt {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.visit-details dd {
  margin: 0;
  color: var(--ink-soft);
}

.visit-details a {
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(15, 79, 75, 0.3);
  text-underline-offset: 4px;
}

.visit-actions .text-link {
  margin-top: 0;
}

.site-footer {
  padding-block: 66px 40px;
  background: var(--ink);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.1fr;
  align-items: start;
  gap: 60px;
}

.brand-footer {
  color: var(--lime);
}

.site-footer p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer nav,
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.62);
}

.footer-meta a {
  color: #ffffff;
  overflow-wrap: anywhere;
}

.lightbox {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(5, 15, 15, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 86svh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  right: 0;
  top: -48px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(5, 15, 15, 0.7);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

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

  .site-header.nav-active {
    backdrop-filter: none;
  }

  .site-header.nav-active .brand {
    position: relative;
    z-index: 102;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: fixed;
    top: 13px;
    right: 12px;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

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

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

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

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 96px 32px 48px;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
  }

  .welcome-grid,
  .gallery-intro,
  .menu-header,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .visit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .gallery-grid {
    grid-template-rows: 260px 260px;
  }

  .proof-grid > div {
    padding-inline: 22px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

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

  .section {
    padding-block: 78px;
  }

  .welcome {
    padding-top: 56px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-inline: 16px;
  }

  .brand {
    font-size: 25px;
  }

  .brand-cup {
    transform: scale(0.88);
    transform-origin: left center;
  }

  .hero {
    min-height: 86svh;
    align-items: flex-start;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 20, 19, 0.84) 0%, rgba(4, 20, 19, 0.42) 100%),
      linear-gradient(0deg, rgba(4, 20, 19, 0.82) 0%, transparent 56%);
  }

  .hero-content {
    padding-top: 128px;
    padding-bottom: 168px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 22px;
  }

  .hero h1 span {
    margin-bottom: 10px;
    font-size: 62px;
  }

  .hero-content > p {
    max-width: 340px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 315px;
    margin-top: 26px;
  }

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

  .hero-details > div {
    min-width: 0;
    min-height: 104px;
    padding: 16px;
  }

  .hero-details > div:nth-child(2) {
    border-right: 0;
  }

  .hero-details > div:nth-child(3) {
    display: none;
  }

  .hero-details span {
    font-size: 11px;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .section-heading h2,
  .terrace-content h2,
  .visit-copy h2 {
    font-size: 39px;
  }

  .welcome-copy p,
  .gallery-intro > p,
  .menu-header > p,
  .visit-lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .interior-frame {
    width: 100%;
    margin-top: 48px;
  }

  .interior-frame > img {
    height: 460px;
    border-radius: 0;
  }

  .interior-note {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .menu-list {
    margin-top: 44px;
  }

  .menu-item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    min-height: 146px;
  }

  .menu-number {
    padding-top: 38px;
  }

  .menu-item h3 {
    font-size: 25px;
  }

  .menu-item p {
    font-size: 14px;
    line-height: 1.55;
  }

  .menu-mark {
    display: none;
  }

  .terrace {
    min-height: 660px;
  }

  .terrace > img {
    object-position: 50% center;
  }

  .terrace-content {
    padding-bottom: 52px;
  }

  .terrace-content p {
    font-size: 17px;
  }

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

  .proof-grid > div {
    min-height: 132px;
    padding: 20px 16px;
    border-bottom: 1px solid rgba(23, 32, 31, 0.22);
  }

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > div:nth-child(3),
  .proof-grid > div:nth-child(4) {
    border-bottom: 0;
  }

  .proof strong {
    font-size: 38px;
  }

  .review-item blockquote {
    font-size: 21px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 300px 220px;
    gap: 10px;
    margin-top: 44px;
  }

  .gallery-image,
  .gallery-wide,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

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

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

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .visit-image-wrap {
    min-height: 480px;
  }

  .visit-details > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer nav {
    flex-flow: row wrap;
    column-gap: 24px;
  }

  .lightbox-close {
    right: 4px;
  }
}

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

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