:root {
  --ink: #1c1714;
  --ink-soft: #302722;
  --espresso: #251914;
  --espresso-2: #120e0c;
  --accent: #ef8e20;
  --accent-deep: #d6740f;
  --gold: #d6a15f;
  --cream: #f5f0e8;
  --paper: #fcfaf6;
  --white: #ffffff;
  --muted: #706761;
  --line: rgba(28, 23, 20, 0.14);
  --shadow: 0 26px 70px rgba(25, 17, 13, 0.14);
  --radius: 2px;
  --container: min(1240px, calc(100vw - 64px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(239, 142, 32, 0.45);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 24px;
  top: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--accent-deep);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
}

.section--dark {
  color: var(--white);
  background: var(--espresso-2);
}

.section--warm {
  background: var(--cream);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light {
  color: #f2b968;
}

.section-title {
  max-width: 770px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.section-title em {
  color: var(--accent);
  font-weight: 500;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.85;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-head > p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.85;
}

.section-head--light > p {
  color: rgba(255, 255, 255, 0.62);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 7px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--accent {
  color: var(--espresso-2);
  background: var(--accent);
}

.button--accent:hover {
  background: #f7a63f;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

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

.button--light:hover {
  color: var(--white);
  background: var(--accent-deep);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--white);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.site-header.is-scrolled {
  background: rgba(20, 14, 11, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.topbar {
  height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.topbar__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.topbar p,
.topbar a {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__links span {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-shell {
  height: 88px;
}

.navbar {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
}

.brand img {
  width: 174px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 30px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 18px 0;
  border: 0;
  color: rgba(255, 255, 255, 0.84);
  background: none;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle svg {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.25s ease;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -24px;
  width: 245px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown__menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
  content: "";
}

.nav-dropdown__menu a {
  display: flex;
  gap: 13px;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-dropdown__menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown__menu a:hover {
  padding-left: 17px;
  color: var(--accent-deep);
}

.nav-dropdown__menu a span {
  color: var(--accent-deep);
  font-size: 0.61rem;
}

.nav-dropdown--wide .nav-dropdown__menu {
  width: 470px;
}

.nav-dropdown__menu--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  left: 50%;
  transform: translate(-50%, 10px);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown--wide:hover .nav-dropdown__menu,
.nav-dropdown--wide:focus-within .nav-dropdown__menu,
.nav-dropdown--wide.is-open .nav-dropdown__menu {
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown__toggle svg,
.nav-dropdown:focus-within .nav-dropdown__toggle svg,
.nav-dropdown.is-open .nav-dropdown__toggle svg {
  transform: rotate(180deg);
}

.nav-quote {
  min-height: 46px;
  padding: 12px 20px;
  margin-left: 4px;
  color: var(--espresso-2);
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--espresso-2);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("stock images/pouring-broth-plate-with-seafood-soup-from-jug_219193-3586.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: heroZoom 15s ease-out both;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(15, 10, 8, 0.94) 0%, rgba(18, 12, 10, 0.75) 42%, rgba(18, 12, 10, 0.2) 75%),
    linear-gradient(0deg, rgba(12, 9, 7, 0.7) 0%, transparent 48%);
}

.hero::after {
  position: absolute;
  right: clamp(18px, 4.5vw, 75px);
  bottom: 0;
  width: 1px;
  height: 32%;
  background: linear-gradient(transparent, rgba(239, 142, 32, 0.78));
  content: "";
}

@keyframes heroZoom {
  from { transform: scale(1.09); }
  to { transform: scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 110px;
}

.hero__copy {
  max-width: 900px;
  padding-top: 30px;
}

.hero h1 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7.4vw, 7.8rem);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.83;
  text-shadow: 0 5px 35px rgba(0, 0, 0, 0.18);
}

.hero h1 em {
  color: var(--accent);
  font-weight: 500;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  position: absolute;
  right: 0;
  bottom: 58px;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__trust > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 175px;
  padding: 19px 22px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__trust strong {
  font-family: var(--serif);
  color: var(--accent);
  font-size: 1.7rem;
  line-height: 1;
}

.hero__trust span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 48px;
  left: clamp(32px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: bottom left;
}

.hero__scroll i {
  width: 50px;
  height: 1px;
  background: var(--accent);
}

/* Intro */
.intro {
  overflow: hidden;
}

.intro::before {
  position: absolute;
  top: -160px;
  right: -200px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(239, 142, 32, 0.2);
  border-radius: 50%;
  content: "";
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.intro__visual {
  position: relative;
}

.intro__image-wrap {
  position: relative;
  height: 680px;
  overflow: hidden;
}

.intro__image-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  content: "";
}

.intro__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.intro__experience {
  position: absolute;
  right: -42px;
  bottom: 78px;
  display: flex;
  width: 205px;
  height: 128px;
  align-items: center;
  gap: 13px;
  padding: 26px;
  color: var(--white);
  background: var(--accent-deep);
  box-shadow: var(--shadow);
}

.intro__experience strong {
  font-family: var(--serif);
  font-size: 2.45rem;
  font-weight: 600;
}

.intro__experience span {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.55;
  text-transform: uppercase;
}

.intro__caption {
  position: absolute;
  bottom: -44px;
  left: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.intro__content > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.intro__content .section-title {
  margin-bottom: 30px;
}

.intro__principles {
  display: grid;
  gap: 0;
  margin: 38px 0 34px;
  border-top: 1px solid var(--line);
}

.intro__principles > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.intro__principles span {
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 700;
}

.intro__principles p {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Services */
.services {
  overflow: hidden;
}

.services::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 120px;
  background: var(--accent);
  content: "";
}

.service-grid {
  display: grid;
  grid-auto-rows: 330px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #30241e;
}

.service-card--large {
  grid-row: span 2;
}

.service-card--wide {
  grid-column: span 2;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.3, 1), filter 0.5s ease;
}

.service-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 7, 5, 0.94) 0%, rgba(10, 7, 5, 0.07) 67%);
  transition: background 0.35s ease;
}

.service-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.service-card__content > span {
  display: block;
  margin-bottom: 11px;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
}

.service-card p {
  max-width: 430px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
  line-height: 1.6;
  transition: margin 0.3s ease;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
}

.service-card:hover img {
  filter: saturate(0.8);
  transform: scale(1.06);
}

.service-card:hover .service-card__shade {
  background: linear-gradient(0deg, rgba(10, 7, 5, 0.98) 0%, rgba(10, 7, 5, 0.17) 72%);
}

.service-card:hover a,
.service-card:focus-within a {
  max-height: 40px;
  margin-top: 18px;
  opacity: 1;
  transform: translateY(0);
}

/* Process */
.process-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(50px, 8vw, 110px);
}

.process__image {
  position: relative;
  min-height: 630px;
}

.process__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process__stamp {
  position: absolute;
  right: -48px;
  bottom: 42px;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50%;
  color: var(--white);
  background: var(--espresso);
  box-shadow: var(--shadow);
}

.process__stamp img {
  width: 40px;
  filter: brightness(0) invert(1);
}

.process__stamp span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.process-steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps li:first-child {
  border-top: 1px solid var(--line);
}

.process-steps > li > span {
  padding-top: 7px;
  color: var(--accent-deep);
  font-size: 0.71rem;
  font-weight: 700;
}

.process-steps h3 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
}

.process-steps p {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Quality */
.quality {
  min-height: 820px;
  display: flex;
  align-items: stretch;
  padding: 0;
  color: var(--white);
  background: var(--espresso-2);
}

.quality__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.14), rgba(18, 14, 12, 0.2)),
    url("stock images/chefs-protective-masks-gloves-prepare-food-kitchen-restaurant-hotel_109285-7800.jpg") center/cover no-repeat;
}

.quality__grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.quality__panel {
  width: min(620px, 58%);
  padding: 100px 78px;
  background: rgba(25, 17, 13, 0.96);
  backdrop-filter: blur(6px);
}

.quality__panel .section-title {
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 5vw, 5.3rem);
}

.quality__panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.check-list {
  padding: 0;
  margin: 34px 0 38px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
}

.check-list li::before {
  position: absolute;
  top: 14px;
  left: 2px;
  color: var(--accent);
  content: "✓";
  font-weight: 700;
}

/* Certificates */
.certificates {
  overflow: hidden;
}

.certificates__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.certificates__copy .section-title {
  margin-bottom: 28px;
}

.certificates__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.certificate-marks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 38px;
}

.certificate-marks span {
  padding: 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.certificate-marks strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.certificate-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  transform: rotate(1.3deg);
}

.certificate-card {
  position: relative;
  padding: 10px;
  border: 0;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(28, 23, 20, 0.09);
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:nth-child(even) {
  transform: translateY(25px);
}

.certificate-card:hover {
  z-index: 2;
  box-shadow: 0 25px 60px rgba(28, 23, 20, 0.18);
  transform: translateY(-5px) rotate(-1.3deg);
}

.certificate-card:nth-child(even):hover {
  transform: translateY(20px) rotate(-1.3deg);
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
}

.certificate-modal {
  width: min(760px, calc(100vw - 36px));
  max-height: 90vh;
  padding: 20px;
  border: 0;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.certificate-modal::backdrop {
  background: rgba(9, 6, 5, 0.86);
  backdrop-filter: blur(5px);
}

.certificate-modal img {
  width: 100%;
  max-height: calc(90vh - 40px);
  object-fit: contain;
}

.certificate-modal button {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent-deep);
  cursor: pointer;
  font-size: 1.5rem;
}

/* Menus */
.menus {
  overflow: hidden;
}

.menus::after {
  position: absolute;
  top: 80px;
  right: -120px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(239, 142, 32, 0.24);
  border-radius: 50%;
  content: "";
}

.menu-showcase {
  position: relative;
  z-index: 1;
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.menu-tab {
  position: relative;
  padding: 19px 14px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.menu-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--accent-deep);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.menu-tab.is-active {
  color: var(--ink);
}

.menu-tab.is-active::after {
  transform: scaleX(1);
}

.menu-display {
  display: grid;
  min-height: 610px;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--white);
  box-shadow: var(--shadow);
}

.menu-display__image {
  overflow: hidden;
}

.menu-display__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-display:hover .menu-display__image img {
  transform: scale(1.025);
}

.menu-panel {
  padding: clamp(45px, 6vw, 82px);
  animation: menuIn 0.35s ease both;
}

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

.menu-panel__number {
  margin-bottom: 28px;
  color: var(--accent-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.menu-panel h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  font-weight: 600;
  line-height: 0.95;
}

.menu-panel__intro {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-panel dl {
  margin-top: 34px;
}

.menu-panel dl > div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.menu-panel dt {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-panel dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

/* Gallery */
.gallery {
  padding-bottom: 0;
  overflow: hidden;
}

.gallery-rail {
  display: grid;
  width: max(100%, 1640px);
  grid-template-columns: 1fr 0.85fr 1.2fr 0.9fr 1fr;
  gap: 8px;
  padding-inline: 8px;
}

.gallery-rail figure {
  position: relative;
  height: 450px;
  margin: 0;
  overflow: hidden;
}

.gallery-rail figure:nth-child(even) {
  height: 380px;
  margin-top: 70px;
}

.gallery-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
}

.gallery-rail figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(7px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-rail figure:hover img {
  filter: brightness(0.68);
  transform: scale(1.05);
}

.gallery-rail figure:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Quote CTA and footer */
.quote-cta {
  color: var(--white);
  background: var(--accent-deep);
}

.quote-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: center;
  gap: 70px;
}

.quote-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.1vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.quote-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.quote-cta__phone small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-cta__phone strong {
  display: block;
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.footer {
  padding: 95px 0 22px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--espresso-2);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr 1fr;
  gap: 65px;
  padding-bottom: 70px;
}

.footer__brand img {
  width: 205px;
  margin-bottom: 24px;
}

.footer__grid h2 {
  margin-bottom: 21px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.footer__grid p,
.footer__grid a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  line-height: 1.75;
}

.footer__grid a:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p,
.footer__bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
}

.footer__bottom div {
  display: flex;
  gap: 24px;
}

.whatsapp {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: #1f9d55;
  box-shadow: 0 10px 30px rgba(11, 64, 35, 0.32);
  transition: transform 0.25s ease;
}

.whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp svg {
  width: 29px;
  fill: var(--white);
}

/* Scroll reveals */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal--delay {
  transition-delay: 0.12s;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Quote page */
.quote-page {
  background: var(--cream);
}

.quote-page .site-header {
  background: rgba(20, 14, 11, 0.97);
}

.quote-hero {
  position: relative;
  padding: 250px 0 110px;
  overflow: hidden;
  color: var(--white);
  background: var(--espresso-2);
}

.quote-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 10, 8, 0.96), rgba(15, 10, 8, 0.55)),
    url("stock images/banquet-table-with-snacks_144627-18359.jpg") center/cover no-repeat;
  content: "";
}

.quote-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.quote-hero h1 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.86;
}

.quote-hero h1 em {
  color: var(--accent);
  font-weight: 500;
}

.quote-hero__inner > p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.quote-main {
  padding: 110px 0 130px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 75px;
}

.quote-form-wrap {
  padding: clamp(34px, 5vw, 68px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form-wrap h2 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.quote-form-wrap > p {
  max-width: 690px;
  margin-bottom: 42px;
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full,
.form-consent,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

.form-field label,
.form-field legend {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent-deep);
  outline: none;
  background: var(--white);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--accent-deep);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.form-actions small {
  color: var(--muted);
  font-size: 0.68rem;
}

.form-status {
  display: none;
  padding: 16px 18px;
  border-left: 3px solid var(--accent-deep);
  color: #315c3a;
  background: #edf7ef;
  font-size: 0.82rem;
}

.form-status.is-visible {
  display: block;
}

.quote-sidebar {
  position: sticky;
  top: 150px;
}

.quote-sidebar__card {
  padding: 36px;
  color: var(--white);
  background: var(--espresso);
}

.quote-sidebar__card + .quote-sidebar__card {
  margin-top: 12px;
  color: var(--ink);
  background: var(--white);
}

.quote-sidebar__card h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
}

.quote-sidebar__card p,
.quote-sidebar__card a {
  display: block;
  margin-bottom: 12px;
  color: inherit;
  font-size: 0.8rem;
  line-height: 1.7;
}

.quote-sidebar__card small {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --container: min(1120px, calc(100vw - 48px));
  }

  .primary-nav {
    gap: 14px;
  }

  .nav-link {
    font-size: 0.66rem;
  }

  .nav-quote {
    padding-inline: 16px;
  }

  .brand img {
    width: 150px;
  }

  .hero__trust {
    right: 0;
  }

  .hero__trust > div {
    min-width: 155px;
    padding-inline: 16px;
  }

  .service-grid {
    grid-auto-rows: 300px;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(920px, calc(100vw - 40px));
  }

  .section {
    padding: 100px 0;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 135px 28px 40px;
    background: rgba(18, 14, 12, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-dropdown__menu,
  .nav-dropdown--wide .nav-dropdown__menu {
    position: static;
    display: none;
    width: 100%;
    padding: 9px 8px 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown__menu--grid {
    grid-template-columns: 1fr;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu,
  .nav-dropdown.is-open .nav-dropdown__menu,
  .nav-dropdown--wide:hover .nav-dropdown__menu,
  .nav-dropdown--wide:focus-within .nav-dropdown__menu,
  .nav-dropdown--wide.is-open .nav-dropdown__menu {
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .nav-dropdown__menu a {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.68);
  }

  .nav-quote {
    width: 100%;
    min-height: 56px;
    margin: 24px 0 0;
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero {
    min-height: 720px;
  }

  .hero__content {
    padding-top: 120px;
  }

  .hero__trust {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

  .intro__grid,
  .certificates__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
  }

  .intro__image-wrap {
    height: 590px;
  }

  .intro__experience {
    right: -25px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-head > p {
    max-width: 670px;
  }

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

  .service-card--large {
    grid-row: span 1;
  }

  .service-card--wide {
    grid-column: span 1;
  }

  .process-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
  }

  .quality__panel {
    width: min(620px, 68%);
  }

  .menu-display {
    grid-template-columns: 1fr 1fr;
  }

  .quote-cta__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .quote-sidebar__card + .quote-sidebar__card {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 32px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .section {
    padding: 82px 0;
  }

  .section-title {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .topbar {
    display: none;
  }

  .nav-shell {
    height: 78px;
  }

  .brand img {
    width: 145px;
  }

  .primary-nav {
    padding-top: 102px;
  }

  .hero {
    height: auto;
    min-height: 760px;
  }

  .hero__media {
    background-position: 62% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(15, 10, 8, 0.92), rgba(15, 10, 8, 0.42)),
      linear-gradient(0deg, rgba(12, 9, 7, 0.82), transparent 60%);
  }

  .hero__content {
    min-height: 760px;
    justify-content: flex-end;
    padding-top: 140px;
    padding-bottom: 72px;
  }

  .hero__copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.6rem);
    line-height: 0.86;
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .intro__grid,
  .certificates__grid,
  .process-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .intro__visual {
    width: calc(100% - 18px);
  }

  .intro__image-wrap {
    height: 540px;
  }

  .intro__experience {
    right: -18px;
    bottom: 40px;
    width: 170px;
    height: 105px;
    padding: 20px;
  }

  .intro__experience strong {
    font-size: 2rem;
  }

  .intro__caption {
    display: none;
  }

  .service-grid {
    display: grid;
    grid-auto-rows: 410px;
    grid-template-columns: 1fr;
  }

  .service-card__content {
    padding: 28px;
  }

  .service-card a {
    max-height: 40px;
    margin-top: 15px;
    opacity: 1;
    transform: none;
  }

  .process__image {
    min-height: 520px;
  }

  .process__stamp {
    right: 12px;
    bottom: -38px;
    width: 125px;
    height: 125px;
  }

  .process-steps li {
    grid-template-columns: 45px 1fr;
  }

  .quality {
    min-height: auto;
    padding-top: 340px;
  }

  .quality__image {
    background-position: 45% top;
  }

  .quality__grid {
    width: 100%;
  }

  .quality__panel {
    width: 100%;
    padding: 70px 24px;
  }

  .certificate-gallery {
    gap: 8px;
  }

  .menu-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(175px, 1fr));
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-display {
    grid-template-columns: 1fr;
  }

  .menu-display__image {
    height: 320px;
  }

  .menu-panel {
    padding: 38px 24px 50px;
  }

  .menu-panel dl > div {
    grid-template-columns: 100px 1fr;
  }

  .gallery-rail {
    width: max(100%, 1180px);
    grid-template-columns: repeat(5, 236px);
  }

  .gallery-rail figure,
  .gallery-rail figure:nth-child(even) {
    height: 340px;
    margin-top: 0;
  }

  .quote-cta__actions {
    align-items: stretch;
  }

  .quote-cta__actions .button {
    width: 100%;
  }

  .footer {
    padding-top: 72px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .quote-hero {
    padding: 180px 0 76px;
  }

  .quote-hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .quote-main {
    padding: 72px 0 90px;
  }

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

  .form-field--full,
  .form-consent,
  .form-actions,
  .form-status {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero__lead {
    font-size: 0.88rem;
  }

  .button {
    padding-inline: 18px;
  }

  .intro__image-wrap {
    height: 460px;
  }

  .service-grid {
    grid-auto-rows: 380px;
  }

  .menu-panel dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .quote-form-wrap {
    padding: 28px 20px;
  }

  .quote-sidebar__card {
    padding: 28px 24px;
  }

  .footer__bottom div {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
