@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400&family=Mulish:wght@400;500;600&display=swap');

:root {
  --bg: #0b1114;
  --surface: #122026;
  --text: rgba(255, 255, 255, 0.86);
  --text-strong: #fff;
  --muted: rgba(255, 255, 255, 0.7);
  --line: rgba(255, 255, 255, 0.58);
  --accent: #fb9b3b;
  --container: 1200px;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Mulish", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

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

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

p {
  margin: 0 0 0.7em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--text-strong);
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(3.1rem, 6vw, 5.2rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 2.75rem);
  line-height: 1.28;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.3;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 12px;
  background: var(--accent);
  border-radius: 4px;
  color: #161616;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
}

.site-header__inner,
.site-footer__inner {
  display: grid;
  grid-template-columns: 20% 60% 20%;
  align-items: center;
  padding: 58px 0 0;
}

.brand__wordmark {
  width: 380px;
  max-width: 100%;
}

.brand__accent {
  width: 180px;
}

.nav {
  position: relative;
  justify-self: center;
}

.nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #111;
}

.nav__toggle span,
.nav__toggle::before,
.nav__toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle::before {
  margin-bottom: 4px;
}

.nav__toggle::after {
  margin-top: 4px;
}

.nav__list {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__list a {
  display: inline-block;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1;
}

.nav__list a:hover,
.nav__list a[aria-current="page"] {
  color: rgba(255, 255, 255, 1);
}

.socials {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-home {
  position: relative;
  min-height: 960px;
  padding: 250px 0 200px;
  background: linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.46)), url("/assets/img/hero-home-main.jpg") center/cover no-repeat;
}

.hero-home__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-home__content p {
  max-width: 760px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 17px 40px;
  border-radius: 4px;
  background: var(--accent);
  color: #181818;
  font-weight: 600;
  margin-top: 28px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-split__media {
  position: relative;
  min-height: 640px;
}

.about-split__mark {
  position: absolute;
  top: -66px;
  left: 58px;
  width: 240px;
  z-index: 2;
}

.about-split__photo {
  position: absolute;
  inset: 70px 0 0 130px;
  overflow: hidden;
  border-radius: 0;
}

.about-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
}

.about-split__copy p {
  margin-top: 18px;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 50px;
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-strip h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--accent);
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 32px;
}

.home-grid__item {
  text-align: center;
}

.home-grid__item img {
  border-radius: 6px;
}

.home-grid__item h6 {
  margin-top: 16px;
  font-size: 1.1rem;
}

.closing-copy {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}

.parallax-band {
  position: relative;
  min-height: 360px;
  background: linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16)), url("/assets/img/hero-home-main.jpg") center center/cover no-repeat fixed;
}

.quote-mark {
  margin-bottom: 26px;
  color: var(--accent);
  font-family: "Libre Baskerville", serif;
  font-size: 5rem;
  line-height: 1;
}

.closing-copy h5 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.75;
}

.subpage {
  padding: 80px 0 0;
}

.subpage-hero {
  padding: 0 0 100px;
}

.subpage-hero__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px;
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}

.subpage-hero__card p {
  max-width: 75%;
  margin-top: 20px;
}

.about-page__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-page__intro img {
  width: 100%;
  border-radius: 8px;
}

.about-page__panel {
  margin-top: 50px;
  padding: 50px;
  border-radius: 8px;
  background: var(--surface);
}

.about-gallery {
  margin-top: 52px;
}

.about-gallery img {
  width: 100%;
  border-radius: 8px;
}

.menu-rows {
  display: grid;
  gap: 80px;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.menu-card {
  text-align: center;
}

.menu-card img {
  width: 100%;
  border-radius: 15px;
}

.menu-card h3 {
  margin-top: 18px;
  font-size: 20px;
}

.menu-card p {
  margin-top: 10px;
  font-size: 15px;
}

.menu-banner {
  margin-top: 100px;
}

.menu-banner img {
  width: 100%;
  border-radius: 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-card {
  padding: 20px;
  border-radius: 8px;
  background: var(--surface);
}

.contact-card h4 {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-meta {
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--line);
}

.contact-meta h6 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-map {
  margin-top: 22px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.site-footer {
  margin-top: 100px;
}

.site-footer__inner {
  padding: 0;
  grid-template-columns: 20% 60% 20%;
  align-items: start;
}

.copyright {
  padding: 20px 0 60px;
  text-align: right;
  color: var(--muted);
}

.page-404 {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 20px 80px;
}

@media (max-width: 1024px) {
  .site-header__inner,
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 40px;
  }

  .brand,
  .site-footer .brand {
    justify-self: center;
  }

  .socials {
    justify-content: center;
  }

  .hero-home {
    min-height: auto;
    padding: 180px 0 100px;
  }

  .about-split,
  .about-page__intro,
  .contact-grid,
  .menu-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-split__media {
    min-height: 480px;
  }

  .about-split__photo {
    inset: 50px 0 0 0;
  }

  .about-split__mark {
    left: 0;
  }

  .contact-strip,
  .home-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subpage-hero__card {
    padding: 60px;
  }

  .subpage-hero__card p {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .site-header__inner,
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    padding-top: 20px;
  }

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

  .brand__wordmark {
    width: 150px;
  }

  .nav__toggle {
    display: inline-block;
  }

  .nav__list {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    min-width: 220px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
    border-radius: 8px;
    background: rgba(18, 32, 38, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open .nav__list {
    display: flex;
  }

  .nav__list a {
    padding: 14px 20px;
    white-space: nowrap;
  }

  .nav.is-open .nav__toggle span {
    opacity: 0;
  }

  .nav.is-open .nav__toggle::before {
    transform: translateY(6px) rotate(45deg);
  }

  .nav.is-open .nav__toggle::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .socials {
    display: none;
  }

  .hero-home {
    padding: 140px 0 80px;
    min-height: auto;
  }

  .hero-home__content p,
  .about-split__copy p,
  .menu-card p,
  .contact-card p,
  .contact-meta p {
    overflow-wrap: anywhere;
  }

  .section,
  .subpage-hero,
  .subpage {
    padding-bottom: 80px;
  }

  .contact-strip,
  .home-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 20px;
  }

  .about-split__media {
    min-height: 360px;
  }

  .about-split__mark {
    width: 140px;
    top: -24px;
  }

  .about-split__photo {
    inset: 40px 0 0 35px;
  }

  .subpage-hero__card,
  .about-page__panel {
    padding: 30px;
  }

  .menu-rows {
    gap: 50px;
  }

  .contact-grid {
    gap: 50px;
  }

  .contact-card {
    padding: 30px;
  }

  .parallax-band {
    min-height: 220px;
    background-attachment: scroll;
  }

  .copyright {
    text-align: center;
  }
}
