@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;1,600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #080807;
  --paper: #f7f0e6;
  --muted: #b9b0a4;
  --red: #e83222;
  --orange: #d8582d;
  --green: #73805b;
  --gold: #b99355;
  --line: rgba(247, 240, 230, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

::selection { background: var(--red); color: white; }

.announcement {
  position: relative;
  z-index: 40;
  min-height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 6px 24px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: #050505;
  color: #d6cfc5;
  font-size: 9px;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.announcement p { margin: 0; }
.announcement b { color: var(--red); font-weight: 600; }
.announcement i { margin: 0 9px; color: var(--gold); font-style: normal; }
.announcement p i:last-of-type { color: var(--green); }

.site-header {
  position: fixed;
  z-index: 30;
  top: 29px;
  left: 0;
  right: 0;
  height: 95px;
  padding: 0 clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-columns: 260px 1fr 230px;
  align-items: center;
  transition: height .4s ease, background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 76px;
  background: rgba(8,8,7,.84);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.brand { display: inline-flex; width: max-content; flex-direction: column; }
.brand span {
  color: #ed3828;
  font: italic 600 34px/1 "Cormorant Garamond", serif;
  text-shadow: 0 0 16px rgba(232,50,34,.26);
}
.brand small {
  margin-top: 7px;
  color: #ddd4c9;
  font-size: 7px;
  letter-spacing: .47em;
  text-transform: uppercase;
}
.nav-links { display: flex; justify-content: center; gap: clamp(24px, 3vw, 51px); }
.nav-links a {
  position: relative;
  padding: 15px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #d9d3ca;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 5px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  transition: left .25s ease, right .25s ease;
}
.nav-links a:hover::after { left: 0; right: 0; }
.header-cta {
  justify-self: end;
  padding: 15px 22px;
  border: 1px solid var(--red);
  box-shadow: inset 0 0 0 0 var(--red), 0 0 20px rgba(232,50,34,.12);
  color: #eee7df;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: box-shadow .3s ease, transform .3s ease;
}
.header-cta:hover { box-shadow: inset 220px 0 0 0 var(--red); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 150px clamp(24px, 4vw, 72px) 170px;
  background: #080807;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, #080807 3%, rgba(8,8,7,.98) 27%, rgba(8,8,7,.62) 52%, rgba(8,8,7,.08) 82%),
    linear-gradient(0deg, #080807 1%, transparent 35%),
    url('./number-one-hero.png');
  background-position: center, center, center right;
  background-size: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(660px, 50vw);
  padding-top: 10px;
}
.eyebrow, .kicker {
  margin: 0 0 26px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .45em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 14px; animation: rise .8s .1s both; }
.eyebrow span:last-child { color: var(--green); }
.eyebrow i { width: 35px; height: 1px; background: var(--gold); }
.hero h1 {
  margin: 0;
  color: #f8f0e6;
  font-size: clamp(57px, 6.1vw, 100px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.055em;
  text-transform: uppercase;
  animation: rise .9s .18s both;
}
h1 em, h2 em {
  color: var(--red);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-transform: none;
}
.hero h1 em { font-size: 1.13em; line-height: .88; }
.hero-copy {
  max-width: 510px;
  margin: 29px 0 0;
  color: #bbb3aa;
  font-size: 15px;
  line-height: 1.75;
  animation: rise .9s .27s both;
}
.hero-actions { display: flex; align-items: center; gap: 37px; margin-top: 32px; animation: rise .9s .36s both; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  padding: 0 27px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--red); box-shadow: 0 8px 30px rgba(232,50,34,.27), 0 0 18px rgba(232,50,34,.18); }
.button-primary:hover { background: #f13b2a; box-shadow: 0 12px 30px rgba(232,50,34,.28); }
.button-outline { border-color: rgba(247,240,230,.35); }
.button-outline:hover { border-color: var(--paper); background: rgba(255,255,255,.05); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 12px 0;
  border-bottom: 1px solid var(--red);
  color: #f0e9e0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-link span, .flavour-card a span { transition: transform .25s ease; }
.text-link:hover span, .flavour-card a:hover span { transform: translate(4px,-2px); }
.open-card {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 4vw, 72px);
  top: 155px;
  width: 310px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 0;
  background: rgba(6,6,6,.58);
  backdrop-filter: blur(14px);
  animation: rise .9s .55s both;
}
.open-card small { display: block; margin-bottom: 7px; color: #bdb6ad; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.open-card strong { font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.open-card > a { color: var(--red); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.experience-rail {
  position: absolute;
  z-index: 5;
  bottom: 54px;
  left: clamp(24px, 4vw, 72px);
  right: clamp(24px, 4vw, 72px);
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 1px solid rgba(247,240,230,.18);
  border-radius: 0;
  background: rgba(7,7,7,.78);
  backdrop-filter: blur(15px);
}
.experience-rail a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-right: 1px solid rgba(255,255,255,.18);
  color: #e3dbd0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s ease;
}
.experience-rail a:last-child { border-right: 0; }
.experience-rail a:hover { background: rgba(255,255,255,.05); }
.experience-rail b { color: var(--red); font: 600 22px/1 "Cormorant Garamond", serif; }
.red { color: var(--red); } .green { color: var(--green); } .gold { color: var(--gold); }

.section { padding: 135px clamp(24px, 7vw, 110px); }
.section-intro { display: grid; grid-template-columns: 1.2fr 1fr; column-gap: 80px; align-items: end; }
.section-intro .kicker { grid-column: 1 / -1; }
h2 {
  margin: 0;
  font: 500 clamp(48px, 5.6vw, 82px)/.98 "Manrope", sans-serif;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
h2 em { font-size: 1.08em; }
.section-intro > p:last-child {
  max-width: 430px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.flavours { background: #0c0b0a; }
.flavour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 74px; background: var(--line); }
.flavour-card {
  position: relative;
  min-height: 445px;
  padding: 34px;
  overflow: hidden;
  border: 0;
  background: #0c0b0a;
  transition: transform .4s ease, border-color .4s ease, background .4s ease;
}
.flavour-card::before { content: none; }
.flavour-card:hover { transform: translateY(-6px); background: #13110f; }
.flavour-card.red:hover { border-color: rgba(232,50,34,.5); }
.flavour-card.green:hover { border-color: rgba(58,182,87,.5); }
.flavour-card.gold:hover { border-color: rgba(210,155,69,.5); }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 95px; }
.card-top > span { color: #77716a; font-size: 10px; letter-spacing: .2em; }
.card-top i { width: 52px; height: 1px; background: currentColor; opacity: .8; }
.flavour-card small { color: currentColor; font-size: 8px; letter-spacing: .24em; text-transform: uppercase; }
.flavour-card h3 { margin: 15px 0; color: var(--paper); font: 600 29px/1.1 "Cormorant Garamond", serif; }
.flavour-card p { max-width: 350px; color: #a9a198; font-size: 13px; line-height: 1.75; }
.flavour-card a { position: absolute; bottom: 32px; left: 34px; display: flex; gap: 20px; color: var(--paper); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }

.story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 9vw;
  align-items: center;
  min-height: 760px;
  background: #080807;
}
.story-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50% 50% 8% 50%;
  background:
    linear-gradient(140deg, transparent 42%, rgba(8,8,7,.76)),
    url('./number-one-hero.png') center/cover;
  box-shadow: 0 25px 70px rgba(0,0,0,.48);
}
.story-ring { position: absolute; inset: -18px; border: 1px solid rgba(247,240,230,.18); border-radius: 50%; }
.story-badge {
  position: absolute;
  right: -55px;
  bottom: 58px;
  width: 170px;
  height: 170px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 18px 50px rgba(232,50,34,.32);
}
.story-badge strong { font: 600 46px/.9 "Cormorant Garamond", serif; }
.story-badge small { margin-top: 8px; font-size: 8px; line-height: 1.5; letter-spacing: .12em; text-transform: uppercase; }
.story-copy > p:nth-of-type(2) { margin: 31px 0 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; border-top: 1px solid var(--line); padding-top: 29px; }
.story-stats div { display: flex; align-items: center; gap: 12px; }
.story-stats strong { color: var(--red); font: 600 35px/1 "Cormorant Garamond", serif; }
.story-stats span { color: #989188; font-size: 8px; line-height: 1.45; letter-spacing: .12em; text-transform: uppercase; }

.gallery { background: #f1e9de; color: #141311; }
.gallery .kicker { color: var(--red); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.gallery-heading .text-link { color: #181613; }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 13px; height: 550px; margin-top: 68px; }
.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  color: white;
  background-image: linear-gradient(0deg, rgba(7,7,7,.82), rgba(7,7,7,.02) 67%), url('./number-one-hero.png');
  background-size: cover;
  transition: transform .5s ease, filter .4s ease;
}
.gallery-card::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); }
.dish-tagine { background-position: 68% center; }
.dish-pizza { background-image: linear-gradient(0deg, rgba(7,7,7,.82), rgba(7,7,7,.02) 67%), url('./number-one-pizza.png'); background-position: center; }
.dish-cafe { background-image: linear-gradient(0deg, rgba(7,7,7,.82), rgba(7,7,7,.02) 67%), url('./number-one-cafe.png'); background-position: center; }
.gallery-card > span { font-size: 9px; letter-spacing: .2em; }
.gallery-card div, .gallery-card > b { position: relative; z-index: 2; }
.gallery-card small { font-size: 8px; letter-spacing: .25em; text-transform: uppercase; }
.gallery-card h3 { margin: 6px 0 0; font: italic 600 38px/1 "Cormorant Garamond", serif; }
.gallery-card > b { position: absolute; top: 26px; right: 26px; font-size: 20px; font-weight: 400; transition: transform .3s ease; }
.gallery-card:hover { transform: translateY(-6px); }
.gallery-card:hover > b { transform: translateX(4px); }

.contact { position: relative; overflow: hidden; text-align: center; background: #090807; }
.contact-glow { position: absolute; inset: 18% 24%; border-top: 1px solid rgba(232,50,34,.28); border-bottom: 1px solid rgba(247,240,230,.1); }
.contact > *:not(.contact-glow) { position: relative; z-index: 2; }
.contact > p:nth-of-type(2) { max-width: 600px; margin: 34px auto 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.contact-actions { display: flex; justify-content: center; gap: 12px; margin-top: 39px; }

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 63px clamp(24px, 7vw, 110px) 35px;
  border-top: 1px solid var(--line);
  background: #050504;
}
footer p { color: #8f8880; font-size: 10px; line-height: 1.8; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { justify-self: end; display: flex; gap: 24px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a:hover { color: var(--red); }
footer > small { grid-column: 1 / -1; margin-top: 30px; padding-top: 23px; border-top: 1px solid var(--line); color: #625e59; font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }

@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbitReverse { to { transform: rotate(-360deg); } }
@keyframes heroZoom { from { transform: scale(1.01); } to { transform: scale(1.055); } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 190px 1fr 170px; padding-inline: 28px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 9px; }
  .header-cta { padding-inline: 13px; font-size: 8px; }
  .hero { padding-inline: 35px; }
  .hero-content { width: 58vw; }
  .open-card { right: 28px; }
  .experience-rail { left: 13%; right: 3%; }
  .experience-rail a { gap: 14px; font-size: 8px; }
  .section { padding-inline: 55px; }
}

@media (max-width: 760px) {
  .announcement { min-height: 27px; padding-inline: 10px; font-size: 6px; letter-spacing: .2em; }
  .announcement p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .site-header, .site-header.scrolled {
    top: 27px;
    height: 71px;
    padding-inline: 18px;
    grid-template-columns: 1fr auto;
    background: rgba(8,8,7,.88);
    backdrop-filter: blur(14px);
  }
  .brand span { font-size: 27px; }
  .brand small { margin-top: 4px; font-size: 5px; }
  .header-cta { display: none; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    border: 1px solid var(--line);
    background: transparent;
  }
  .menu-toggle span { display: block; width: 100%; height: 1px; background: var(--paper); transition: transform .25s ease; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 98px 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 22px;
    background: rgba(8,8,7,.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s ease, opacity .35s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; font-size: 12px; border-bottom: 1px solid var(--line); }
  .hero {
    min-height: 875px;
    align-items: flex-start;
    padding: 165px 20px 145px;
  }
  .hero-image {
    background-image:
      linear-gradient(180deg, rgba(8,8,7,.2), #080807 64%),
      linear-gradient(90deg, #080807 0%, rgba(8,8,7,.25)),
      url('./number-one-hero.png');
    background-position: center, center, 64% top;
    background-size: cover;
    opacity: .63;
  }
  .hero-content { width: 100%; padding-top: 226px; }
  .eyebrow { margin-bottom: 18px; font-size: 7px; gap: 8px; }
  .eyebrow i { width: 18px; }
  .hero h1 { font-size: clamp(45px, 13.5vw, 62px); line-height: .91; }
  .hero-copy { margin-top: 19px; font-size: 12px; line-height: 1.65; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; margin-top: 24px; }
  .button { min-height: 51px; padding-inline: 20px; font-size: 8px; }
  .text-link { font-size: 8px; }
  .open-card, .scroll-cue, .orb { display: none; }
  .experience-rail { left: 18px; right: 18px; bottom: 25px; min-height: 78px; }
  .experience-rail a { flex-direction: column; gap: 4px; text-align: center; font-size: 6px; }
  .experience-rail b { font-size: 25px; }
  .section { padding: 90px 20px; }
  .section-intro { display: block; }
  h2 { font-size: clamp(39px, 12vw, 57px); }
  .section-intro > p:last-child { margin-top: 25px; font-size: 13px; }
  .flavour-grid { grid-template-columns: 1fr; margin-top: 43px; }
  .flavour-card { min-height: 370px; padding: 26px; }
  .card-top { margin-bottom: 55px; }
  .flavour-card a { left: 26px; bottom: 26px; }
  .story { grid-template-columns: 1fr; gap: 74px; }
  .story-visual { margin: 0 22px; }
  .story-badge { width: 115px; height: 115px; right: -21px; bottom: -28px; }
  .story-badge strong { font-size: 32px; }
  .story-badge small { font-size: 6px; }
  .story-copy > p:nth-of-type(2) { font-size: 13px; }
  .story-stats { gap: 10px; }
  .story-stats div { display: block; }
  .story-stats span { display: block; margin-top: 6px; font-size: 6px; }
  .gallery-heading { display: block; }
  .gallery-heading .text-link { margin-top: 27px; }
  .gallery-grid { grid-template-columns: 1fr; height: auto; }
  .gallery-card { min-height: 370px; }
  .contact-actions { flex-direction: column; }
  .contact-actions .button { width: 100%; }
  footer { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  footer > small { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
