:root {
  --ink: #061923;
  --deep: #092d3d;
  --blue: #0b5870;
  --steel: #c9d7d8;
  --paper: #f6f0e4;
  --white: #fffaf0;
  --gold: #d5a75a;
  --line: rgba(6, 25, 35, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 34px;
  color: var(--white);
  background: rgba(6, 25, 35, .94);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--gold);
  font-family: Fraunces, Georgia, serif;
  font-size: 25px;
  font-weight: 900;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  font-weight: 900;
}

.lang {
  justify-self: end;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
}

.lang button {
  width: 34px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font: 900 11px Inter, sans-serif;
  cursor: pointer;
}

.lang button.active {
  color: var(--ink);
  background: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(380px, 1.04fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 70px 48px 54px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(6,25,35,.96), rgba(9,45,61,.9) 48%, rgba(11,88,112,.78)),
    url("assets/ive-hero.jpg") center/cover;
}

.hero-copy {
  max-width: 760px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: .9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  font-size: clamp(76px, 8.6vw, 154px);
}

h2 {
  font-size: clamp(42px, 5.4vw, 86px);
}

h3 {
  font-size: 32px;
}

.lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255,250,240,.84);
  font-size: 19px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.primary,
.pill:first-child {
  color: var(--ink);
  background: var(--gold);
}

.secondary,
.pill {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 30px;
}

.proof div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.proof strong,
.proof span {
  display: block;
}

.proof strong {
  color: var(--gold);
  font-size: 23px;
}

.proof span {
  margin-top: 4px;
  color: rgba(255,250,240,.72);
  font-size: 12px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(0,0,0,.32);
}

.badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  padding: 22px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.badge span,
.badge strong {
  display: block;
}

.badge span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.badge strong {
  margin-top: 6px;
  font-family: Fraunces, Georgia, serif;
  font-size: 38px;
  line-height: .92;
}

.fresh,
.experience,
.reviews,
.contact {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  padding: 96px 48px;
}

.fresh p,
.experience-list p,
.story-copy p,
.contact-card p,
.dish-grid p {
  color: rgba(6,25,35,.72);
  font-size: 17px;
  line-height: 1.7;
}

.fresh > p {
  max-width: 760px;
  font-size: 21px;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #e9f0ed;
}

.story > * {
  min-width: 0;
}

.story-photo {
  min-height: 660px;
}

.story-copy {
  align-self: center;
  padding: 74px 64px;
}

.menu {
  color: var(--white);
  background: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: .35fr .65fr;
  gap: 40px;
  align-items: end;
  padding: 98px 48px 42px;
}

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

.dish-grid article {
  min-width: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-right: 1px solid rgba(255,255,255,.14);
}

.dish-grid img {
  aspect-ratio: 1 / .84;
  height: auto;
}

.dish-grid div {
  min-height: 260px;
  padding: 26px 28px 34px;
}

.dish-grid span,
.experience-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dish-grid p {
  color: rgba(255,250,240,.72);
}

.experience {
  color: var(--white);
  background: var(--blue);
}

.experience .kicker {
  color: #f4d58a;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.experience-list article {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.experience-list p {
  color: rgba(255,250,240,.8);
}

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

.quotes {
  display: grid;
  gap: 14px;
}

.quotes blockquote {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.58);
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.contact {
  align-items: start;
  background: #efe7d8;
}

.contact-card {
  padding: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
}

.contact-card p {
  color: rgba(255,250,240,.78);
}

.hours {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.6);
}

.hours h3 {
  margin-bottom: 24px;
  font-size: 28px;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  margin: 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.hours strong {
  text-align: right;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 48px;
  color: rgba(255,250,240,.76);
  background: #04141c;
  font-size: 13px;
  font-weight: 900;
}

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

  nav {
    display: none;
  }

  .hero,
  .fresh,
  .story,
  .section-head,
  .experience,
  .reviews,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 52px 22px 30px;
  }

  h1 {
    font-size: clamp(58px, 16vw, 104px);
  }

  .hero-media,
  .story-photo {
    width: 100%;
    max-width: 100%;
    min-height: 420px;
  }

  .fresh,
  .section-head,
  .experience,
  .reviews,
  .contact {
    padding: 64px 22px;
  }

  .story-copy {
    padding: 56px 22px;
  }

  .dish-grid,
  .experience-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    min-height: 58px;
    padding: 0 14px;
  }

  .brand {
    font-size: 22px;
  }

  .lang button {
    width: 30px;
  }

  .lead,
  .fresh > p {
    font-size: 17px;
  }

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

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

  .badge {
    left: 16px;
    bottom: 16px;
    width: min(300px, calc(100% - 32px));
  }

  .badge strong {
    font-size: 31px;
  }

  h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .contact-card,
  .hours,
  .quotes blockquote {
    padding: 24px;
  }

  .quotes blockquote {
    font-size: 23px;
  }

  footer {
    display: grid;
    padding: 24px 22px;
  }
}
