:root {
  --ink: #111b19;
  --ink-soft: #31403d;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --orange: #e66c3f;
  --orange-dark: #ba4728;
  --mint: #d7dfc8;
  --line: rgba(17, 27, 25, 0.16);
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.lightbox-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 232, 0.9);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--cream);
  background: var(--ink);
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: .08em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: Georgia, serif; font-size: 17px; font-weight: 500; letter-spacing: .025em; }
.brand-copy small { margin-top: 4px; color: var(--ink-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.desktop-nav { display: flex; gap: clamp(20px, 2.5vw, 38px); align-items: center; }
.desktop-nav a { position: relative; font-size: 14px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.lang-switch { display: flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-btn { min-width: 35px; border: 0; border-radius: 999px; padding: 4px 7px; background: transparent; font-size: 11px; font-weight: 800; cursor: pointer; }
.lang-btn.is-active { color: var(--cream); background: var(--ink); }
.header-cta { display: inline-flex; gap: 14px; align-items: center; padding: 12px 17px; color: white; background: var(--ink); font-size: 13px; font-weight: 700; }
.header-cta svg, .button svg { width: 19px; height: 19px; transition: transform .2s ease; }
.header-cta:hover svg, .button:hover svg { transform: translateX(4px); }

.hero {
  min-height: calc(100vh - 84px);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
  padding: clamp(34px, 5.5vw, 84px) clamp(20px, 4vw, 64px) clamp(44px, 6vw, 88px);
}
.hero-copy { align-self: center; max-width: 650px; padding-right: clamp(24px, 5vw, 80px); }
.eyebrow { margin: 0 0 20px; color: var(--orange-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.045em; }
h1 { margin-bottom: 25px; font-size: clamp(54px, 6.7vw, 102px); line-height: .9; }
h1 em, h2 em { color: var(--orange); font-weight: 400; }
.hero-intro { max-width: 570px; margin-bottom: 32px; color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 14px 22px; border: 1px solid transparent; font-size: 14px; font-weight: 750; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--orange); }
.button-primary:hover { background: var(--orange-dark); }
.text-link { display: inline-flex; gap: 12px; align-items: center; border-bottom: 1px solid var(--ink); padding-bottom: 3px; font-size: 14px; font-weight: 750; }
.hero-notes { margin-top: clamp(42px, 6vw, 78px); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); padding-top: 21px; }
.hero-notes div { display: flex; flex-direction: column; padding: 0 18px; border-left: 1px solid var(--line); }
.hero-notes div:first-child { padding-left: 0; border-left: 0; }
.hero-notes strong { font-family: Georgia, serif; font-size: 20px; font-weight: 500; }
.hero-notes span { color: var(--ink-soft); font-size: 12px; }

.hero-gallery { position: relative; min-height: 650px; display: grid; grid-template-columns: 1.55fr .8fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.hero-gallery figure { margin: 0; overflow: hidden; background: var(--mint); }
.hero-gallery img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.hero-gallery figure:hover img { transform: scale(1.035); }
.hero-main { position: relative; grid-row: 1 / 3; border-radius: 46% 0 0 0; }
.hero-main figcaption { position: absolute; left: 24px; right: 24px; bottom: 22px; display: flex; justify-content: space-between; align-items: end; gap: 14px; color: white; text-shadow: 0 2px 15px #0008; }
.hero-main figcaption span { font-size: 11px; text-transform: uppercase; letter-spacing: .17em; }
.hero-main figcaption strong { font-family: Georgia, serif; font-size: 18px; font-weight: 500; }
.hero-side-top { border-radius: 0 70px 0 0; }
.hero-side-bottom { border-radius: 0 0 70px 0; }
.hero-stamp { position: absolute; z-index: 2; left: 61%; top: 50%; width: 104px; height: 104px; display: grid; place-items: center; transform: translate(-50%, -50%) rotate(-8deg); border: 2px solid var(--cream); border-radius: 50%; color: var(--cream); background: var(--orange); box-shadow: 0 9px 26px #1117; text-align: center; }
.hero-stamp span { position: absolute; font-family: Georgia, serif; font-size: 55px; line-height: 1; opacity: .22; }
.hero-stamp i { position: relative; font-size: 10px; font-style: normal; font-weight: 900; line-height: 1.25; text-transform: uppercase; letter-spacing: .1em; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--ink); color: var(--cream); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 30px; padding: 13px 0; animation: marquee 30s linear infinite; }
.marquee span { font-size: 11px; font-weight: 800; letter-spacing: .22em; }
.marquee i { color: var(--orange); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(78px, 10vw, 150px) clamp(20px, 4vw, 64px); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: end; margin-bottom: clamp(44px, 6vw, 80px); }
.section-heading h2, .gallery-heading h2, .process h2, .about h2, .contact h2 { margin-bottom: 0; font-size: clamp(43px, 5.3vw, 76px); line-height: .98; }
.section-heading > p { max-width: 450px; margin: 0; color: var(--ink-soft); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 42px); }
.service-card { overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.service-image-wrap { position: relative; height: clamp(300px, 36vw, 510px); overflow: hidden; }
.service-image-wrap img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card:hover .service-image-wrap img { transform: scale(1.035); }
.service-image-wrap > span { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 47px; height: 47px; border-radius: 50%; color: var(--ink); background: var(--cream); font-size: 12px; font-weight: 850; }
.service-content { padding: clamp(27px, 4vw, 52px); }
.service-label { margin-bottom: 15px; color: var(--orange-dark); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .17em; }
.service-content h3 { margin-bottom: 18px; font-family: Georgia, serif; font-size: clamp(31px, 3vw, 44px); font-weight: 400; line-height: 1.05; }
.service-content > p:not(.service-label) { color: var(--ink-soft); }
.service-content ul { list-style: none; padding: 12px 0 20px; }
.service-content li { position: relative; padding: 10px 0 10px 26px; border-bottom: 1px solid var(--line); font-size: 14px; }
.service-content li::before { content: "✦"; position: absolute; left: 0; color: var(--orange); font-size: 11px; }
.service-content > a { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 17px; font-weight: 750; }
.service-content > a span:last-child { color: var(--orange); font-size: 20px; }
.service-private { margin-top: 80px; }

.process { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 8vw, 120px); border-top: 1px solid var(--line); }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid var(--line); }
.process-list li:first-child { padding-top: 0; border-top: 0; }
.process-list > li > span { color: var(--orange-dark); font-size: 12px; font-weight: 850; }
.process-list h3 { margin-bottom: 6px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.process-list p { max-width: 560px; margin: 0; color: var(--ink-soft); }

.gallery-section { max-width: none; color: var(--cream); background: var(--ink); }
.gallery-heading { max-width: 900px; margin: 0 auto 55px; text-align: center; }
.gallery-heading .eyebrow { color: #ff9169; }
.gallery-heading p:last-child { max-width: 620px; margin: 22px auto 0; color: #d9ded9; font-size: 17px; }
.food-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(190px, 20vw, 285px); gap: 10px; }
.food-photo { display: block; overflow: hidden; border: 0; padding: 0; background: #263532; cursor: zoom-in; }
.food-photo-wide { grid-column: span 2; }
.food-photo-tall { grid-row: span 2; }
.food-photo img { height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.food-photo:hover img { transform: scale(1.045); filter: saturate(1.08); }
.gallery-note { margin: 32px auto 0; color: #abb7b1; text-align: center; font-size: 13px; text-transform: uppercase; letter-spacing: .16em; }

.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 9vw, 140px); align-items: center; }
.about-image { position: relative; max-width: 520px; padding: 22px 0 0 22px; }
.about-image::before { content: ""; position: absolute; left: 0; top: 0; width: 78%; height: 78%; background: var(--mint); }
.about-image img { position: relative; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.82); }
.about-monogram { position: absolute; right: -27px; bottom: 32px; display: grid; place-items: center; width: 94px; height: 94px; border-radius: 50%; color: var(--cream); background: var(--orange); font-family: Georgia, serif; font-size: 27px; }
.about-copy { max-width: 680px; }
.about-copy h2 { margin-bottom: 32px; }
.about-lead { color: var(--ink); font-family: Georgia, serif; font-size: clamp(21px, 2.2vw, 29px); line-height: 1.35; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--ink-soft); font-size: 17px; }
.dark-link { margin-top: 23px; gap: 18px; }
.dark-link span:last-child { color: var(--orange-dark); }

.contact { max-width: none; min-height: 650px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; padding: 0; color: var(--cream); background: var(--orange-dark); }
.contact-photo { min-height: 650px; overflow: hidden; }
.contact-photo img { height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.04); }
.contact-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 9vw, 140px); }
.eyebrow.light { color: #ffd4bf; }
.contact h2 { max-width: 760px; margin-bottom: 30px; font-size: clamp(48px, 6.3vw, 88px); }
.contact-content > p:not(.eyebrow) { max-width: 650px; color: #ffe9dd; font-size: 18px; }
.contact-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; margin-top: 20px; }
.button-light { color: var(--ink); background: var(--cream); }
.button-light:hover { background: white; }
.whatsapp-icon { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.contact-phone { font-weight: 750; }
.contact-phone span { margin-right: 5px; color: #ffd4bf; font-weight: 500; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; padding: 40px clamp(20px, 4vw, 64px); background: var(--paper); }
footer p, footer > a:last-child { margin: 0; color: var(--ink-soft); font-size: 13px; }
footer > a:last-child { justify-self: end; font-weight: 700; }
.footer-brand .brand-mark { width: 40px; height: 40px; }

.floating-whatsapp { position: fixed; z-index: 15; right: 20px; bottom: 20px; display: none; place-items: center; width: 56px; height: 56px; border: 4px solid var(--cream); border-radius: 50%; color: white; background: #25d366; box-shadow: 0 9px 28px #0003; }
.floating-whatsapp svg { width: 27px; height: 27px; fill: currentColor; stroke: none; }

.lightbox { width: min(92vw, 980px); max-height: 90vh; border: 0; padding: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(9, 14, 13, .92); backdrop-filter: blur(5px); }
.lightbox img { width: 100%; max-height: 88vh; object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; right: -11px; top: -44px; border: 0; color: white; background: transparent; font-size: 38px; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; padding: 25px 0 48px; }
  .hero-gallery { min-height: 670px; }
  .hero-stamp { left: 69%; }
  .contact { grid-template-columns: .75fr 1.25fr; }
  .contact-content { padding-inline: clamp(40px, 7vw, 90px); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .site-header { min-height: 70px; padding: 10px 16px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy small { font-size: 9px; }
  .header-cta { display: none; }
  .header-actions { gap: 0; }
  .hero { min-height: auto; padding: 40px 16px 55px; }
  .hero-copy { padding-top: 6px; }
  h1 { font-size: clamp(50px, 15vw, 76px); }
  .hero-actions { gap: 20px; }
  .hero-notes { grid-template-columns: repeat(3, 1fr); }
  .hero-notes div { padding: 0 8px; }
  .hero-notes strong { font-size: 16px; }
  .hero-notes span { font-size: 10px; line-height: 1.35; }
  .hero-gallery { min-height: 520px; grid-template-columns: 1.55fr .75fr; }
  .hero-main { border-radius: 75px 0 0 0; }
  .hero-side-top { border-radius: 0 50px 0 0; }
  .hero-side-bottom { border-radius: 0 0 50px 0; }
  .hero-main figcaption { left: 15px; right: 15px; bottom: 15px; display: block; }
  .hero-main figcaption span { display: block; }
  .hero-main figcaption strong { font-size: 14px; }
  .hero-stamp { left: 69%; width: 78px; height: 78px; }
  .hero-stamp span { font-size: 42px; }
  .hero-stamp i { font-size: 8px; }
  .section { padding: 80px 16px; }
  .section-heading { display: block; margin-bottom: 38px; }
  .section-heading > p { margin-top: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-private { margin-top: 0; }
  .service-image-wrap { height: 390px; }
  .process { grid-template-columns: 1fr; gap: 45px; }
  .process-list li { grid-template-columns: 40px 1fr; gap: 13px; }
  .food-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .food-photo-wide { grid-column: span 2; }
  .about { grid-template-columns: 1fr; }
  .about-image { max-width: 88%; }
  .about-monogram { right: -24px; }
  .contact { grid-template-columns: 1fr; }
  .contact-photo { min-height: 330px; }
  .contact-content { padding: 70px 20px 90px; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; padding-bottom: 95px; }
  footer .brand, footer > a:last-child { justify-self: center; }
  .floating-whatsapp { display: grid; }
}

@media (max-width: 430px) {
  .brand-copy strong { font-size: 15px; }
  .hero-gallery { min-height: 450px; }
  .hero-side { display: none; }
  .hero-gallery { grid-template-columns: 1fr; }
  .hero-main { border-radius: 70px 70px 0 0; }
  .hero-stamp { left: auto; right: -8px; top: 14%; transform: rotate(7deg); }
  .button { width: 100%; }
  .hero-actions .text-link { margin-left: 4px; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-phone { text-align: center; }
}

@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; }
}
