:root {
  --ink: #171715;
  --ink-soft: #24231f;
  --cream: #f5f1e8;
  --paper: #fbf9f4;
  --muted: #726f67;
  --line: rgba(23, 23, 21, .15);
  --accent: #b96842;
  --accent-light: #d99b70;
  --white: #fff;
  --max: 1240px;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--accent); }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  background: var(--white); color: var(--ink); padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 130px 0; }

.eyebrow {
  margin: 0 0 20px;
  color: rgba(255,255,255,.68);
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
}
.eyebrow.dark { color: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .98; }
h2 { font-size: clamp(3rem, 6vw, 5.8rem); letter-spacing: -.04em; margin-bottom: 0; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  color: var(--white); transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled { background: rgba(23,23,21,.96); box-shadow: 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.header-inner {
  width: min(calc(100% - 48px), 1380px); height: 100px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  transition: height .35s ease;
}
.site-header.scrolled .header-inner { height: 76px; }
.brand { width: 118px; position: relative; z-index: 2; }
.brand img { height: 78px; object-fit: contain; transition: height .35s ease; }
.site-header.scrolled .brand img { height: 60px; }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: .82rem; font-weight: 600; letter-spacing: .05em; }
.main-nav a { position: relative; opacity: .78; transition: opacity .2s ease; }
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px;
  background: var(--white); transition: right .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.nav-cta { padding: 12px 18px; border: 1px solid rgba(255,255,255,.45); }
.menu-toggle { display: none; border: 0; padding: 10px; background: transparent; }
.menu-toggle span { display: block; width: 26px; height: 1px; margin: 6px 0; background: var(--white); transition: .25s ease; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--ink); }
.hero-media { position: absolute; inset: 0; background: url("images/hero.webp") center 54%/cover no-repeat; transform: scale(1.03); animation: heroZoom 12s ease-out both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,9,.88) 0%, rgba(10,10,9,.56) 48%, rgba(10,10,9,.14) 100%), linear-gradient(0deg, rgba(10,10,9,.56), transparent 42%); }
.hero-content { position: relative; z-index: 1; padding-top: 100px; }
.hero h1 { max-width: 790px; margin: 0 0 26px; font-size: clamp(4rem, 9.5vw, 9rem); letter-spacing: -.055em; }
.hero h1 em { color: var(--accent-light); font-weight: 400; }
.hero-copy { max-width: 610px; margin-bottom: 36px; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.7vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  min-height: 54px; padding: 0 24px; border: 1px solid transparent;
  font-size: .83rem; font-weight: 700; letter-spacing: .04em; transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; fill: currentColor; }
.button-primary { background: var(--accent); color: var(--white); }
.button-primary:hover { background: #c5764e; }
.button-ghost { border-color: rgba(255,255,255,.55); color: var(--white); }
.button-ghost:hover { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.hero-scroll { position: absolute; z-index: 2; right: 4vw; bottom: 42px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.65); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right center; }
.scroll-line { display: block; width: 52px; height: 1px; background: rgba(255,255,255,.5); }
@keyframes heroZoom { from { transform: scale(1.11); } to { transform: scale(1.03); } }

.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.story-heading { position: sticky; top: 130px; }
.story-copy { max-width: 680px; }
.story-copy .lead { font-family: var(--serif); font-size: clamp(1.6rem, 2.7vw, 2.4rem); line-height: 1.35; color: var(--ink); }
.story-copy > p:not(.lead) { color: var(--muted); max-width: 620px; }
.story-stat { margin-top: 56px; padding-top: 34px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 24px; }
.story-stat strong { font-family: var(--serif); font-size: 4.8rem; line-height: 1; font-weight: 400; color: var(--accent); }
.story-stat span { color: var(--muted); font-size: .92rem; line-height: 1.5; }

.feature-image { position: relative; height: min(72vh, 760px); min-height: 520px; overflow: hidden; display: flex; align-items: end; color: var(--white); }
.feature-image-bg { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.66), rgba(0,0,0,.06) 60%), url("images/brasas.webp") center/cover; }
.feature-quote { position: relative; z-index: 1; padding-bottom: 70px; }
.feature-quote p { max-width: 830px; margin: 0; font-family: var(--serif); font-size: clamp(2.3rem, 5vw, 5rem); line-height: 1.08; }

.flavours { background: var(--paper); }
.section-intro { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.section-intro > p { max-width: 510px; margin: 0 0 10px; color: var(--muted); }
.flavour-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 440px); gap: 24px; }
.flavour-card { position: relative; overflow: hidden; min-height: 400px; background: var(--ink); color: var(--white); }
.flavour-card-large { grid-row: 1 / 3; }
.flavour-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.flavour-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,9,.83), rgba(10,10,9,0) 60%); }
.flavour-card:hover img { transform: scale(1.045); }
.flavour-card-copy { position: absolute; z-index: 2; left: 36px; right: 36px; bottom: 32px; }
.flavour-card-copy span { color: rgba(255,255,255,.6); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.flavour-card-copy h3 { margin: 9px 0 12px; font-size: clamp(2rem, 3vw, 3.6rem); }
.flavour-card-copy p { max-width: 500px; margin: 0; color: rgba(255,255,255,.7); font-size: .9rem; }
.menu-strip { margin-top: 70px; border-top: 1px solid var(--line); }
.menu-strip > div { display: grid; grid-template-columns: 180px 1fr; gap: 30px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.menu-strip span { color: var(--accent); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.menu-strip strong { font-weight: 500; }

.gallery { background: var(--ink-soft); color: var(--white); }
.gallery-title { margin-bottom: 60px; }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: 360px 360px; gap: 20px; }
.gallery-grid figure { margin: 0; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-a { grid-row: 1 / 3; }
.gallery-b, .gallery-c { display: none; }
.gallery-d { grid-column: 2; grid-row: 1 / 3; }
.gallery-d img { object-position: 62% center; }

.contact { padding-bottom: 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; margin-bottom: 90px; }
.contact-main > p:not(.eyebrow) { margin-top: 30px; color: var(--muted); }
.contact-actions { margin-top: 44px; display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.text-link { font-weight: 600; border-bottom: 1px solid var(--ink); }
.text-link span { color: var(--accent); }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 0 50px; }
.detail-block { padding: 0 0 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.detail-block:last-child { grid-column: 1 / 3; }
.detail-block > span { display: block; margin-bottom: 14px; color: var(--accent); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.detail-block p { margin: 0 0 12px; }
.detail-block a { font-size: .84rem; font-weight: 600; }
.detail-block small { color: var(--muted); }
.social-links { display: flex; gap: 24px; }
.map-wrap { height: 500px; background: #ddd; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.9); }

.site-footer { padding: 65px 0; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 50px; }
.footer-logo { width: 145px; }
.footer-grid p { margin: 0; color: rgba(255,255,255,.7); }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; color: rgba(255,255,255,.55); font-size: .8rem; }
.footer-meta a { color: var(--white); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .section { padding: 100px 0; }
  .story-grid, .section-intro, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .story-heading { position: static; }
  .flavour-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 600px 360px; }
  .flavour-card-large { grid-column: 1 / 3; grid-row: auto; }
  .contact-details { max-width: 700px; }
  .gallery-grid { grid-template-rows: 300px 300px; }
}

@media (max-width: 760px) {
  .container, .header-inner { width: min(calc(100% - 32px), var(--max)); }
  .header-inner { height: 82px; }
  .brand { width: 92px; }
  .brand img { height: 62px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed; inset: 0; z-index: 1; background: rgba(23,23,21,.99);
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px;
    padding: 100px 32px 50px; font-family: var(--serif); font-size: 2.3rem; letter-spacing: -.02em;
    opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .3s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav-cta { padding: 0; border: 0; }
  body.menu-open { overflow: hidden; }
  .hero-media { background-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(10,10,9,.9), rgba(10,10,9,.35)), linear-gradient(0deg, rgba(10,10,9,.65), transparent 45%); }
  .hero-content { padding-top: 75px; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 6.5rem); }
  .hero-copy { max-width: 90%; font-size: 1rem; }
  .hero-scroll { display: none; }
  .section { padding: 82px 0; }
  h2 { font-size: clamp(2.9rem, 14vw, 4.8rem); }
  .story-copy .lead { font-size: 1.45rem; }
  .story-stat { align-items: flex-start; }
  .story-stat strong { font-size: 3.8rem; }
  .feature-image { height: 65vh; min-height: 480px; }
  .feature-quote { padding-bottom: 42px; }
  .section-intro { margin-bottom: 44px; }
  .flavour-grid { display: block; }
  .flavour-card { min-height: 470px; margin-bottom: 16px; }
  .flavour-card-copy { left: 24px; right: 24px; bottom: 24px; }
  .menu-strip { margin-top: 48px; }
  .menu-strip > div { grid-template-columns: 1fr; gap: 8px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 330px 220px; gap: 10px; }
  .gallery-a { grid-column: 1 / 3; grid-row: 1; }
  .gallery-b, .gallery-c { display: block; grid-row: 2; }
  .gallery-d { display: none; }
  .contact-grid { margin-bottom: 65px; }
  .contact-details { grid-template-columns: 1fr; }
  .detail-block:last-child { grid-column: auto; }
  .map-wrap { height: 390px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-meta { align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero-actions .button { width: 100%; }
  .contact-details { display: block; }
  .contact-actions { align-items: flex-start; flex-direction: column; }
  .gallery-grid { grid-template-rows: 290px 180px; }
}

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