:root {
  --bg: #0a0a0a;
  --bg-soft: #111;
  --card: #141414;
  --gold: #c7a56a;
  --text: #f4f1eb;
  --muted: #bfb7a9;
  --line: rgba(199, 165, 106, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(700px at 0% 0%, rgba(199, 165, 106, 0.15), transparent 55%),
    radial-gradient(700px at 100% 100%, rgba(199, 165, 106, 0.1), transparent 55%),
    var(--bg);
  z-index: -1;
}

.container {
  width: min(1160px, calc(100% - 3rem));
  margin: 0 auto;
}

.section-space {
  padding: 6.5rem 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border-color: var(--line);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-family: Marcellus, serif;
  letter-spacing: 0.08em;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.brand span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.brand img {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(280px, 48vw);
}

.main-nav {
  display: flex;
  gap: 1.75rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.mobile-nav-btn {
  display: none;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 4s ease;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7)),
    url("2.jpg")
      center/cover no-repeat;
  background-position:
    center,
    center calc(50% + var(--parallax-offset, 0px));
  will-change: background-position;
}

.hero-slide:nth-child(2) {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7)),
    url("1.jpg")
      center/cover no-repeat;
  background-position:
    center,
    center calc(50% + var(--parallax-offset, 0px));
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  padding-top: 3rem;
  text-align: center;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  margin: 0 0 1rem;
}

h1,
h2 {
  font-family: Marcellus, serif;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  margin-bottom: 1rem;
}

h2.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.6rem;
}

.hero p {
  margin: 0 auto 2rem;
  max-width: 700px;
  color: #e8e0d3;
}

.btn {
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--gold);
  padding: 0.9rem 1.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: all 0.25s ease;
}

.btn:hover {
  background: var(--gold);
  color: #1f1b14;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: var(--gold);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 4;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  padding: 0;
  transition: all 0.25s ease;
}

.dot.active {
  width: 24px;
  background: var(--gold);
}

.feature-grid,
.chef-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chef {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, #121212, #0d0d0d);
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.chef:hover {
  transform: translateY(-6px);
  border-color: var(--line);
}

.feature-intro,
.feature-subtitle {
  text-align: center;
}

.feature-subtitle {
  max-width: 620px;
  margin: -0.5rem auto 2.4rem;
  color: #d4cdc2;
  line-height: 1.8;
}

.feature-card {
  min-height: 340px;
  padding: 2rem;
  border: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--image-src) center/cover no-repeat;
  background-position:
    center,
    center calc(50% + var(--parallax-offset, 0px));
  background-size: auto, 120%;
  will-change: background-position;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.feature-card h3,
.chef h3 {
  font-family: Marcellus, serif;
  font-size: 1.4rem;
  margin-top: 0;
}

.feature-card p,
.about p,
.counter span,
.testimonial blockquote,
.hours-col p {
  color: var(--muted);
  line-height: 1.8;
}

.feature-card a {
  text-decoration: none;
  color: #f7efe3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 0.72rem;
  margin-top: 0.4rem;
  transition: all 0.25s ease;
}

.feature-card a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1d160b;
}

.about-grid,
.hours-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2.8rem;
  align-items: center;
}

.about-content {
  max-width: 100%;
}

.about-content h3 {
  margin: 1.1rem 0 0.5rem;
  font-family: Marcellus, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #efe7da;
}

.about-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.about-image-primary,
.about-image-secondary {
  background: var(--image-src) center/cover no-repeat;
  background-position:
    center,
    center calc(50% + var(--parallax-offset, 0px));
  will-change: background-position;
}

.about-image-primary {
  min-height: 560px;
  min-width: 380px;
}

.about-image-secondary {
  min-height: 480px;
}

.counter {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.counter-wrap:not(.mission-strip) p {
  margin: 0;
  font-family: Marcellus, serif;
  font-size: clamp(3rem, 10vw, 5.2rem);
  color: var(--gold);
}

.counter-wrap h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.counter-wrap span {
  max-width: 760px;
  display: inline-block;
}

.mission-strip .section-label {
  margin-bottom: 0.35rem;
}

.mission-strip h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.mission-strip span {
  color: var(--muted);
  line-height: 1.85;
}

.ddc-difference {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.difference-grid {
  display: grid;
  grid-template-columns: 2fr minmax(220px, 1fr);
  gap: 3.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.difference-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.difference-logo img {
  width: min(320px, 100%);
  height: auto;
  transform: translateY(-1.25rem);
}

.difference-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.difference-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

.difference-list li:last-child {
  margin-bottom: 0;
}

.difference-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, #141414, #0d0d0d);
  padding: 1.5rem 1.35rem;
}

.service-card h3 {
  font-family: Marcellus, serif;
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  font-weight: 400;
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.92rem;
}

.faq-list {
  text-align: left;
  margin-top: 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 0.65rem;
  border-radius: 2px;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 500;
  color: var(--text);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  color: var(--gold);
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.clients-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: -0.5rem 0 1.5rem;
}

.clients-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.final-cta-block {
  text-align: center;
}

.final-cta-block h3 {
  font-family: Marcellus, serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-top: 0;
}

.customer-reviews {
  padding-top: 2.5rem;
  background: linear-gradient(160deg, #111, #0b0b0b);
  border-top: 1px solid rgba(199, 165, 106, 0.18);
  border-bottom: 1px solid rgba(199, 165, 106, 0.14);
}

.reviews-wrap {
  max-width: 1180px;
  /* background: linear-gradient(160deg, rgba(199, 165, 106, 0.06), rgba(0, 0, 0, 0.3)); */
  /* border: 1px solid rgba(199, 165, 106, 0.28); */
  padding: clamp(2.2rem, 5vw, 3rem) clamp(1.2rem, 4vw, 2rem);
  text-align: center;
  border-radius: 16px;
  /* box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35); */
}

.reviews-title {
  margin: 0 0 1.3rem;
  color: var(--text);
  font-family: Marcellus, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 4.2vw, 2.45rem);
}

.review-carousel {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  column-gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.review-slide {
  display: none;
}

.review-slide.active {
  display: block;
}

.review-stars {
  margin: 0 0 0.95rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 0.9rem;
}

.review-stars span {
  color: rgba(199, 165, 106, 0.35);
}

.review-slide blockquote {
  margin: 0;
  font-family: Marcellus, serif;
  font-style: italic;
  color: #e7e0d2;
  line-height: 1.72;
  font-size: 1.26rem;
  min-height: 90px;
}

.review-author {
  margin: 0.95rem 0 0;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.review-role {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.84rem;
}

.review-nav {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(199, 165, 106, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(199, 165, 106, 0.7);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-size: 1.3rem;
  transition: all 0.2s ease;
}

.review-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(199, 165, 106, 0.1);
}

.review-dots {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.review-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(199, 165, 106, 0.35);
  cursor: pointer;
}

.review-dot.active {
  width: 22px;
  background: var(--gold);
}

.parallax-banner {
  padding: 0;
}

.parallax-image,
.split-image {
  background: var(--image-src) center/cover no-repeat;
  background-position:
    center,
    center calc(50% + var(--parallax-offset, 0px));
  will-change: background-position;
  /* border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
}

.parallax-image {
  min-height: 52vh;
}

.menu-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.tab {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  letter-spacing: 0.05em;
}

.tab.active {
  color: #1a1409;
  background: var(--gold);
}

.menu-list {
  display: none;
}

.menu-list.active {
  display: block;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.menu-item span:first-child {
  font-family: Marcellus, serif;
  letter-spacing: 0.05em;
}

.menu-item span:last-child {
  color: var(--gold);
}

.gallery-split {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.split-image {
  min-height: 560px;
}

.split-content {
  background: #17191f;
  padding: 2.6rem 2.2rem;
}

.split-content .btn {
  margin-top: 1.2rem;
}

.cross-parallax {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.cross-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.cross-cell {
  min-height: 360px;
}

.cross-image {
  background: var(--image-src) center/cover no-repeat;
  background-position:
    center,
    center calc(50% + var(--parallax-offset, 0px));
  /* border: 1px solid rgba(255, 255, 255, 0.04); */
  will-change: background-position;
}

.cross-content {
  padding: 2.6rem clamp(1.2rem, 6vw, 4.2rem);
  background: linear-gradient(160deg, #181a21, #111318);
  /* border: 1px solid rgba(255, 255, 255, 0.04); */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cross-content h3 {
  margin: 0 0 0.9rem;
  font-family: Marcellus, serif;
  font-size: 2rem;
  font-weight: 400;
}

.cross-content p {
  color: var(--muted);
  line-height: 1.8;
}

.cross-content p strong {
  color: #e8e0d3;
}

.cross-content .btn {
  margin-top: 1rem;
  width: fit-content;
}

.chef {
  min-height: 180px;
  display: grid;
  place-content: center;
  text-align: center;
}

.chef p {
  margin-bottom: 0;
  color: var(--gold);
}

.testimonial {
  background: linear-gradient(160deg, rgba(199, 165, 106, 0.08), rgba(0, 0, 0, 0.25));
}

.testimonial-wrap {
  text-align: center;
  max-width: 860px;
}

.testimonial blockquote {
  font-size: 1.14rem;
  margin: 0 auto 1rem;
}

.testimonial cite {
  color: var(--gold);
  font-style: normal;
}

.hours-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.hours-col h3 {
  font-family: Marcellus, serif;
  font-weight: 400;
}

.site-footer {
  margin-top: 0;
}

.footer-hours-band {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-hours-bg {
  position: absolute;
  inset: 0;
  background: var(--image-src) center/cover no-repeat;
  background-position:
    center,
    center calc(50% + var(--parallax-offset, 0px));
  will-change: background-position;
}

.footer-hours-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
}

.footer-hours-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 3rem 0;
  text-align: center;
}

.footer-hours-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-hours-left {
  text-align: center;
}

.footer-hours-right {
  text-align: center;
}

.footer-we-are {
  margin: 0 0 0.35rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  font-weight: 500;
}

.footer-open-title {
  margin: 0 0 0.75rem;
  font-family: Marcellus, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: #fff;
  line-height: 1.05;
}

.footer-hours-center-line {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.footer-hours-days {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-hours-time {
  display: block;
  color: #fff;
  font-family: Marcellus, serif;
  font-size: clamp(1.05rem, 2.2vw, 1.65rem);
  font-weight: 400;
}

.footer-lower {
  background: #3e2b23;
  padding: 2.75rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-lower-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem 2.5rem;
  padding-bottom: 2.25rem;
}

.footer-loc {
  text-align: left;
}

.footer-loc h3 {
  margin: 0 0 1rem;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-loc p {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.footer-brand-center {
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.footer-icon-mark {
  margin-bottom: 0.35rem;
  display: flex;
  justify-content: center;
}

.footer-brand-name {
  margin: 0;
  font-family: Marcellus, serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
}

.footer-est {
  display: block;
  margin-top: 0.45rem;
  color: #c9a86a;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.footer-social-link svg {
  display: block;
  flex-shrink: 0;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0 1.35rem;
  text-align: center;
}

.footer-legal p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal-links {
  display: inline-flex;
  gap: 0.75rem;
  margin-left: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

@media (max-width: 720px) {
  .footer-hours-grid {
    grid-template-columns: 1fr;
    padding: 2.5rem 0;
  }

  .footer-hours-center {
    order: -1;
  }

  .footer-lower-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.25rem;
  }

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

  .footer-socials {
    justify-content: center;
  }

  .footer-legal-links {
    display: flex;
    margin-left: 0;
    margin-top: 0.65rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 960px) {
  .feature-grid,
  .chef-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid.feature-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .hours-grid,
  .difference-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .difference-logo img {
    width: min(240px, 70vw);
    transform: none;
  }

  .about-media {
    grid-template-columns: 1fr 1fr;
  }

  .split-image {
    min-height: 420px;
  }

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

  .cross-cell {
    min-height: 300px;
  }

}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav.open {
    display: flex;
  }

  .mobile-nav-btn {
    display: inline-block;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    padding: 0.45rem 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7rem;
  }

  .feature-grid,
  .chef-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid.feature-grid-4 {
    grid-template-columns: 1fr;
  }

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

  .section-space {
    padding: 4.5rem 0;
  }

  [data-parallax] {
    --parallax-offset: 0px !important;
  }
}

.consultation-page {
  min-height: 100vh;
}

.consultation-main {
  padding-top: 8rem;
}

.consultation-wrap {
  background: linear-gradient(160deg, #141414, #0f0f0f);
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2.6rem);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
  border-radius: 18px;
  backdrop-filter: blur(4px);
}

.consultation-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.consultation-subtext {
  margin: 0.9rem 0 2rem;
  color: var(--muted);
  max-width: 820px;
  line-height: 1.65;
}

.consultation-form {
  margin-top: 1rem;
  border-top: 1px solid rgba(199, 165, 106, 0.2);
  padding-top: 1.2rem;
}

.consultation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.consultation-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.consultation-field label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.consultation-field input,
.consultation-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font: inherit;
  padding: 0.84rem 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 10px;
}

.consultation-field input::placeholder,
.consultation-field textarea::placeholder {
  color: rgba(191, 183, 169, 0.7);
}

.consultation-field input:focus,
.consultation-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(199, 165, 106, 0.16);
}

.consultation-field textarea {
  min-height: 130px;
  resize: vertical;
}

.consultation-field input:hover,
.consultation-field textarea:hover {
  border-color: rgba(199, 165, 106, 0.55);
}

.consultation-field input.has-error,
.consultation-field textarea.has-error {
  border-color: #d85f5f;
  box-shadow: 0 0 0 2px rgba(216, 95, 95, 0.16);
}

.field-error {
  min-height: 1rem;
  margin: 0.1rem 0 0;
  font-size: 0.74rem;
  color: #f18989;
}

.consultation-field.full {
  grid-column: 1 / -1;
}

.consultation-actions {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.consultation-submit {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, rgba(199, 165, 106, 0.24), rgba(199, 165, 106, 0.12));
  color: var(--text);
  cursor: pointer;
  border-radius: 10px;
  min-width: 150px;
}

.consultation-submit:hover {
  background: var(--gold);
  color: #1f1b14;
}

.consultation-link {
  color: var(--muted);
  text-decoration: none;
}

.consultation-link:hover {
  color: var(--gold);
}

.consultation-header-link {
  padding-inline: 1.2rem;
}

.form-status {
  min-height: 1.2rem;
  margin-top: 0.85rem;
  color: #f7b96e;
  font-size: 0.86rem;
}

.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.72);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 100;
  padding: 1rem;
}

.success-modal.open {
  opacity: 1;
  visibility: visible;
}

.success-modal-card {
  width: min(520px, 100%);
  background: linear-gradient(160deg, #181818, #111);
  border: 1px solid rgba(199, 165, 106, 0.55);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  padding: 1.4rem 1.5rem;
}

.success-modal-card h2 {
  margin: 0.4rem 0 0.45rem;
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
}

.success-modal-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .consultation-main {
    padding-top: 7rem;
  }

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

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

  .consultation-submit {
    width: 100%;
  }

  .review-carousel {
    grid-template-columns: 1fr;
    row-gap: 0.9rem;
  }

  .review-nav {
    display: none;
  }

  .review-slide blockquote {
    font-size: 1.08rem;
    min-height: 0;
  }
}
