@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:opsz,wght@14..32,100..900&display=swap');

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

:root {
  --bg: #ede0cf;
  --brand: #3a2e2a;
  --card-dark: #3a2e2a;
  --card-light: #faf4ec;
  --card-light-alt: #ffffff;
  --text-primary: #1c1812;
  --text-muted: #7a6c5e;
  --text-light: #b0a090;
  --btn-bg: #3a2e2a;
  --font-allura: 'Allura', cursive;
  --font-cormorant: 'Cormorant Garamond', serif;
  --font-inter: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================
   NAVIGATION
   ============================ */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  background: rgba(58, 46, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 8px 16px;
  pointer-events: all;
}

.nav__logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(58, 46, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 10px 24px;
  pointer-events: all;
}

.nav__links li + li::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.25);
  margin: 0 14px;
  vertical-align: middle;
}

.nav__links a {
  text-decoration: none;
  color: rgba(237, 224, 207, 0.75);
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: 'opsz' 32;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--bg);
}

.nav__links a.active {
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav__cta {
  text-decoration: none;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  letter-spacing: -0.02em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.2s;
  flex-shrink: 0;
  pointer-events: all;
}

.nav__cta:hover {
  opacity: 0.85;
}

/* Hamburger button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--brand);
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  flex-shrink: 0;
  border-radius: 100px;
  pointer-events: all;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ============================
   HERO - HOME
   ============================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__title {
  font-family: var(--font-allura);
  font-size: clamp(157.5px, 19.25vw, 315px);
  color: var(--bg);
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.15);
  margin-bottom: 16px;
}

.hero__tagline {
  font-family: var(--font-inter);
  font-size: clamp(38.5px, 4.9vw, 73.5px);
  color: var(--bg);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variation-settings: 'opsz' 32;
}

/* ============================
   INTRO SECTION (Home)
   ============================ */

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(60px, 8vh, 120px) 60px;
  align-items: center;
}

.intro__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

.intro__content {}

.intro__heading {
  font-family: var(--font-cormorant);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.intro__label {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.intro__body {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 440px;
}

/* ============================
   SECTION HEADINGS
   ============================ */

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading--mixed {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}

.section-heading__serif {
  font-family: var(--font-cormorant);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.section-heading__script {
  font-family: var(--font-allura);
  font-size: clamp(64px, 7vw, 100px);
  color: var(--text-primary);
  line-height: 1;
}

.section-heading__script--large {
  font-family: var(--font-allura);
  font-size: clamp(72px, 8vw, 120px);
  color: var(--text-primary);
  line-height: 1;
  display: block;
  text-align: center;
}

/* ============================
   PRODUCT CARDS
   ============================ */

.cards-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.cards-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  gap: 24px;
}

.card {
  border-radius: 16px;
  overflow: hidden;
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.card--dark {
  background: var(--card-dark);
  color: #fff;
}

.card--light {
  background: var(--card-light-alt);
  color: var(--text-primary);
}

.card--light-tan {
  background: var(--card-light);
  color: var(--text-primary);
}

.card__image-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  flex-shrink: 0;
}

.card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card__image-wrap img:hover {
  transform: scale(1.04);
}

.card__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__name {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.card--dark .card__name {
  color: #fff;
}

.card--light .card__name,
.card--light-tan .card__name {
  color: var(--text-primary);
}

.card__desc {
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
}

.card--dark .card__desc {
  color: rgba(255,255,255,0.6);
}

.card--light .card__desc,
.card--light-tan .card__desc {
  color: var(--text-muted);
}

.card__price {
  display: block;
  text-align: right;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}

.card--dark .card__price {
  color: rgba(255,255,255,0.9);
}

.card--light .card__price,
.card--light-tan .card__price {
  color: var(--text-primary);
}

/* ============================
   FAVOURITES SECTION (Home)
   ============================ */

.favourites {
  padding: clamp(60px, 8vh, 120px) 60px;
  text-align: center;
}

.favourites .cards-grid {
  margin-top: 0;
}

/* 2 on top, 1 centered below */
.favourites-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.favourites-cards__row {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 24px;
}

/* ============================
   PRE-ORDER CTA (Home)
   ============================ */

.preorder {
  text-align: center;
  padding: clamp(60px, 8vh, 120px) 60px;
}

.preorder__title-bold {
  font-family: var(--font-inter);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -3px;
}

.preorder__title-script {
  font-family: var(--font-allura);
  font-size: clamp(72px, 9vw, 120px);
  color: var(--text-primary);
  line-height: 1.05;
  display: block;
  margin-top: 4px;
}

.preorder__btn {
  display: inline-block;
  margin-top: 36px;
  background: var(--btn-bg);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 40px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.preorder__btn:hover {
  opacity: 0.85;
}

/* ============================
   VISIT US (Home)
   ============================ */

.visit-us {
  padding: clamp(40px, 5vh, 80px) 60px clamp(60px, 7vh, 100px);
  max-width: 700px;
}

.visit-us__heading {
  font-family: var(--font-cormorant);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.visit-us__hours {
  font-family: var(--font-inter);
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.visit-us__address {
  font-family: var(--font-inter);
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.visit-us__address a {
  color: var(--text-primary);
  text-decoration: underline;
}

.visit-us__signature {
  font-family: var(--font-allura);
  font-size: 52px;
  color: var(--text-primary);
  line-height: 1;
  display: block;
}

/* ============================
   FOOTER
   ============================ */

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 60px 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.5;
}

.footer__cols {
  display: flex;
  gap: 100px;
}

.footer__col-title {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer__col ul a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
}

.footer__col ul a:hover {
  color: var(--text-primary);
}

.footer__col p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}

.footer__col a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
}

.footer__bottom {
  text-align: center;
  padding: 14px 60px 24px;
  font-size: 11px;
  color: var(--text-light);
}

/* ============================
   ABOUT PAGE — BRAND STORY HERO
   ============================ */

.brand-story {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: clamp(60px, 8vh, 120px) 60px 0;
}

.brand-story__image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: clamp(380px, 50vw, 560px);
}

.brand-story__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.brand-story__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.44);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
}

.brand-story__title {
  font-family: var(--font-allura);
  font-size: clamp(52px, 6vw, 90px);
  color: #fff;
  margin-bottom: 22px;
  line-height: 1;
}

.brand-story__text {
  font-family: var(--font-inter);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  max-width: 660px;
}

/* ============================
   FOUNDER SECTION
   ============================ */

.founder {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.founder__name {
  font-family: var(--font-allura);
  font-size: clamp(42px, 4.5vw, 68px);
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.1;
}

.founder__title {
  font-family: var(--font-inter);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.founder__body {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
}

.founder__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
}

/* ============================
   CRAFT PHILOSOPHY
   ============================ */

.philosophy {
  max-width: 780px;
  margin: 0 auto 80px;
  padding: 0 60px;
}

.philosophy__heading {
  font-family: var(--font-allura);
  font-size: clamp(48px, 5.5vw, 80px);
  color: var(--text-primary);
  margin-bottom: 28px;
  line-height: 1;
}

.philosophy__body {
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 2;
  color: var(--text-muted);
}

.philosophy__body p {
  margin-bottom: 16px;
}

.philosophy__body p:last-child {
  margin-bottom: 0;
}

.philosophy__signature {
  font-family: var(--font-allura);
  font-size: 52px;
  color: var(--text-primary);
  margin-top: 28px;
  line-height: 1;
  display: block;
}

/* ============================
   GALLERY GRID (About)
   ============================ */

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 20px 40px;
  margin-top: 20px;
}

.gallery__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 15px;
}

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

.gallery__item img:hover {
  transform: scale(1.03);
}

/* ============================
   MENU PAGE
   ============================ */

.menu-section {
  padding: clamp(60px, 8vh, 100px) 60px;
  max-width: 1440px;
  margin: 0 auto;
}


.menu-section__heading {
  font-family: var(--font-allura);
  font-size: clamp(72px, 8vw, 110px);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 56px;
  line-height: 1;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.menu-card {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

.menu-card--dark {
  background: var(--card-dark);
  color: #fff;
}

.menu-card--light {
  background: var(--card-light-alt);
  color: var(--text-primary);
  border: 1px solid rgba(0,0,0,0.06);
}

.menu-card__img-wrap {
  height: 320px;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.menu-card__img-wrap img:hover {
  transform: scale(1.04);
}

.menu-card__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card__name {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.menu-card--dark .menu-card__name {
  color: #fff;
}

.menu-card--light .menu-card__name {
  color: var(--text-primary);
}

.menu-card__desc {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
}

.menu-card--dark .menu-card__desc {
  color: rgba(255,255,255,0.6);
}

.menu-card--light .menu-card__desc {
  color: var(--text-muted);
}

.menu-card__price {
  display: block;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}

.menu-card--dark .menu-card__price {
  color: rgba(255,255,255,0.9);
}

.menu-card--light .menu-card__price {
  color: var(--text-primary);
}

/* ============================
   ORDER PAGE
   ============================ */

.reserve {
  text-align: center;
  padding: clamp(80px, 10vh, 140px) 60px clamp(50px, 6vh, 80px);
}

.reserve__title-bold {
  font-family: var(--font-inter);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -4px;
  line-height: 1;
}

.reserve__title-script {
  font-family: var(--font-allura);
  font-size: clamp(80px, 10vw, 130px);
  color: var(--text-primary);
  display: block;
  line-height: 1.05;
  margin-top: 8px;
}

.reserve__subtitle {
  font-family: var(--font-cormorant);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-muted);
  font-style: italic;
  margin-top: 20px;
  margin-bottom: 32px;
}

.reserve__btn {
  display: inline-block;
  background: var(--btn-bg);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 40px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.reserve__btn:hover {
  opacity: 0.85;
}

/* ============================
   CONTACT FORM
   ============================ */

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 60px 60px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group--full {
  margin-bottom: 24px;
}

.form-group label {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--text-primary);
  background: rgba(255,255,255,0.55);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(0,0,0,0.35);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--btn-bg);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.form-submit:hover {
  opacity: 0.85;
}

/* ============================
   CONTACT INFO SECTION
   ============================ */

.contact-info {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}

.contact-info__heading {
  font-family: var(--font-allura);
  font-size: clamp(38px, 4vw, 60px);
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1;
}

.contact-info__body {
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.9;
  font-variation-settings: 'opsz' 32;
  letter-spacing: -0.01em;
}

.contact-info__body a {
  color: var(--text-primary);
  text-decoration: underline;
}

/* ============================
   MAP
   ============================ */

.map-wrap {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 60px;
  border-radius: 12px;
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

/* ============================
   INTER UI TYPOGRAPHY CONFIG
   optical: 32, weight: 600, tracking: -0.02em, line-height: 1
   ============================ */

.nav__links a,
.nav__cta,
.card__name,
.card__price,
.menu-card__name,
.menu-card__price,
.intro__label,
.visit-us__heading,
.visit-us__hours,
.visit-us__address,
.footer__col-title,
.footer__col ul a,
.footer__col p,
.footer__col a,
.footer__bottom,
.form-group label,
.form-submit,
.preorder__title-bold,
.reserve__title-bold,
.founder__title,
.section-heading__serif {
  font-variation-settings: 'opsz' 32;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Body-weight Inter — keep readable line-height but still apply optical sizing */
.intro__body,
.card__desc,
.menu-card__desc,
.founder__body,
.philosophy__body,
.brand-story__text,
.reserve__subtitle,
.contact-info__body {
  font-variation-settings: 'opsz' 32;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================
   UTILITIES
   ============================ */

.container {
  max-width: 1300px;
  margin: 0 auto;
}

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

a {
  color: inherit;
}

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

/* Large desktops */
@media (max-width: 1280px) {
  .nav {
    padding: 14px 40px;
  }

  .intro {
    padding: clamp(60px, 8vh, 100px) 40px;
  }

  .favourites {
    padding: clamp(60px, 8vh, 100px) 40px;
  }

  .preorder {
    padding: clamp(60px, 8vh, 100px) 40px;
  }

  .brand-story {
    padding: clamp(60px, 7vh, 100px) 40px 0;
  }

  .founder {
    padding: 0 40px;
    gap: 60px;
  }

  .philosophy {
    padding: 0 40px;
  }

  .menu-section {
    padding: clamp(50px, 6vh, 80px) 40px;
  }

  .contact-form {
    padding: 40px 40px 60px;
  }

  .contact-info {
    padding: 0 40px;
    gap: 60px;
  }

  .map-wrap {
    padding: 0 40px;
  }

  .footer {
    padding: 32px 40px 24px;
  }

  .footer__bottom {
    padding: 14px 40px 24px;
  }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .nav__links {
    gap: 0;
  }

  .intro {
    grid-template-columns: 1fr;
    max-width: 700px;
    gap: 36px;
  }

  .intro__heading {
    max-width: 100%;
  }

  .intro__body {
    max-width: 100%;
  }

  .founder {
    grid-template-columns: 1fr;
    max-width: 640px;
    gap: 36px;
  }

  .founder__image {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .favourites-cards__row {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 640px;
  }

  .footer__cols {
    gap: 60px;
  }
}

/* Tablet portrait / large mobile */
@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 70px;
    left: 20px;
    right: 20px;
    background: rgba(58, 46, 42, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0;
    border-radius: 18px;
    transform: none;
    pointer-events: all;
  }

  .nav__links.nav__links--open {
    display: flex;
  }

  .nav__links li {
    width: 100%;
    text-align: center;
  }

  .nav__links li + li::before {
    display: none;
  }

  .nav__links a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .hero__title {
    font-size: clamp(72px, 18vw, 110px);
  }

  .hero__tagline {
    font-size: 16px;
  }

  .intro {
    padding: 48px 24px;
  }

  .favourites {
    padding: 48px 24px;
  }

  .favourites-cards {
    max-width: 100%;
  }

  .card {
    min-width: 280px;
    width: 100%;
    max-width: 400px;
  }

  .card__image-wrap {
    height: 260px;
  }

  .preorder {
    padding: 60px 24px;
  }

  .visit-us {
    padding: 40px 24px 60px;
  }

  .brand-story {
    padding: 48px 24px 0;
  }

  .brand-story__overlay {
    padding: 32px 24px;
  }

  .brand-story__title {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .brand-story__text {
    font-size: 13px;
  }

  .founder {
    padding: 0 24px;
  }

  .philosophy {
    padding: 0 24px;
  }

  .menu-section {
    padding: 48px 24px;
  }

  .menu-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .menu-card__img-wrap {
    height: 260px;
  }

  .reserve {
    padding: 80px 24px 48px;
  }

  .contact-form {
    padding: 32px 24px 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 0 24px;
  }

  .map-wrap {
    padding: 0 24px;
  }

  .footer {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px 20px;
  }

  .footer__cols {
    gap: 36px;
  }

  .footer__bottom {
    padding: 12px 24px 20px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .nav {
    padding: 12px 20px;
  }

  .hero__title {
    font-size: clamp(60px, 18vw, 90px);
  }

  .section-heading__serif {
    font-size: clamp(44px, 12vw, 64px);
  }

  .section-heading__script {
    font-size: clamp(52px, 14vw, 80px);
  }

  .preorder__title-bold {
    font-size: clamp(44px, 12vw, 72px);
    letter-spacing: -2px;
  }

  .preorder__title-script {
    font-size: clamp(60px, 16vw, 96px);
  }

  .reserve__title-bold {
    font-size: clamp(50px, 14vw, 80px);
    letter-spacing: -2px;
  }

  .reserve__title-script {
    font-size: clamp(64px, 18vw, 100px);
  }

  .menu-section__heading {
    font-size: clamp(60px, 16vw, 90px);
  }

  .card {
    min-width: 0;
    max-width: 100%;
  }

  .card__image-wrap {
    height: 220px;
  }

  .menu-card__img-wrap {
    height: 220px;
  }

  .intro {
    padding: 36px 20px;
  }

  .favourites {
    padding: 36px 20px;
  }

  .preorder {
    padding: 48px 20px;
  }

  .brand-story {
    padding: 36px 20px 0;
  }

  .founder {
    padding: 0 20px;
  }

  .philosophy {
    padding: 0 20px;
  }

  .menu-section {
    padding: 36px 20px;
  }

  .reserve {
    padding: 60px 20px 36px;
  }

  .contact-form {
    padding: 24px 20px 36px;
  }

  .contact-info {
    padding: 0 20px;
  }

  .map-wrap {
    padding: 0 20px;
  }

  .footer {
    padding: 24px 20px 16px;
  }

  .footer__bottom {
    padding: 10px 20px 16px;
  }
}

/* ============================
   KEYFRAMES
   ============================ */

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

@keyframes writeIn {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0%   0 0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================
   HERO ANIMATIONS (on load)
   ============================ */

.hero__img {
  animation: kenBurns 32s ease-in-out infinite alternate;
  transform-origin: center center;
}

.hero__title {
  animation: writeIn 2.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero__tagline {
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2.8s both;
}

/* ============================
   SCROLL REVEAL SYSTEM
   ============================ */

.anim {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity  1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim--left {
  opacity: 0;
  transform: translateX(-34px);
  transition:
    opacity  1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim--right {
  opacity: 0;
  transform: translateX(34px);
  transition:
    opacity  1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim.anim--visible,
.anim--left.anim--visible,
.anim--right.anim--visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays */
.anim--d1 { transition-delay: 0.08s; }
.anim--d2 { transition-delay: 0.18s; }
.anim--d3 { transition-delay: 0.28s; }
.anim--d4 { transition-delay: 0.38s; }
.anim--d5 { transition-delay: 0.48s; }

/* ============================
   CARD HOVER LIFT
   ============================ */

.card {
  transition:
    transform  0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card {
  transition:
    transform  0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover,
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(58, 46, 42, 0.16);
}

/* ============================
   BUTTON HOVER WARMTH
   ============================ */

.preorder__btn,
.reserve__btn,
.form-submit {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.preorder__btn:hover,
.reserve__btn:hover,
.form-submit:hover {
  opacity: 0.88;
  transform: scale(1.04);
}

/* Gallery image hover */
.gallery__item {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item:hover {
  transform: scale(1.015);
}
