:root {
  --ink: #080706;
  --espresso: #17110d;
  --coffee: #3a2418;
  --mocha: #6e4a2f;
  --cream: #f5ead8;
  --beige: #d8c1a0;
  --gold:  #deb537; /* #c9a15d; */
  --green: #4f6b4b;
  --white: #fffaf2;
  --muted: rgba(245, 234, 216, 0.72);
  --glass: rgba(255, 250, 242, 0.08);
  --border: rgba(245, 234, 216, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


/* ── MOBILE OVERFLOW FIXES ── */

/* 1. Ensure hero clips its scaled background */
.hero-section {
  overflow: hidden; /* already there — make sure it's not overridden */
}

/* 2. Ensure the body/html hard-clamp (add if missing) */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* 3. Fix product grid on mobile — tile-large min-height is too tall */
@media (max-width: 767.98px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .tile-large {
    grid-row: auto;
    min-height: 320px;    /* already in your CSS — confirm it's applied */
  }
  .product-tile {
    min-height: 220px;    /* add this — prevents overflow */
  }
}

/* 4. Prevent instagram grid images from overflowing */
.instagram-grid {
  overflow: hidden;
}
.instagram-grid img {
  width: 100%;
  max-width: 100%;
}

/* 5. Contain menu cards */
.menu-card {
  overflow: hidden;     /* already there — make sure not overridden */
  max-width: 100%;
}

/* 6. Fix contact form inputs on mobile */
@media (max-width: 767.98px) {
  input, textarea {
    max-width: 100%;
  }
  .contact-form {
    overflow: hidden;
  }
}

body {
  margin: 0;
  color: var(--cream);
  background: black;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::selection {
  color: var(--ink);
  background: var(--gold);
}

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

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

p {
  color: rgba(245, 234, 216, 0.76);
  line-height: 1.8;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #070605;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: grid;
  gap: 1.15rem;
  justify-items: center;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loader-mark img {
  width: min(360px, 72vw);
  height: auto;
  filter: drop-shadow(0 16px 42px rgba(0, 0, 0, 0.7));
}

.loader-mark span {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(201, 161, 93, 0.35);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.luxury-nav {
  padding: 1.1rem 0;
  background: rgba(8, 7, 6, 0.32);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: all 0.35s ease;
}

.luxury-nav.nav-scrolled {
  padding: 0.72rem 0;
  background: rgba(8, 7, 6, 0.78);
  border-bottom-color: var(--border);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.navbar-brand img {
  width: clamp(142px, 16vw, 214px);
  height: auto;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.5));
}

.footer-brand img {
  width: min(260px, 78vw);
  height: auto;
}

.nav-link {
  color: rgba(245, 234, 216, 0.76);
  font-weight: 600;
  margin: 0 0.25rem;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.navbar-brand:hover,
.footer-brand:hover {
  color: var(--gold);
}

.navbar-toggler {
  border-color: rgba(245, 234, 216, 0.25);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(201, 161, 93, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.btn-premium {
  color: #100b08;
  background: linear-gradient(135deg, var(--gold), #f1d69e);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 42px rgba(201, 161, 93, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-premium:hover {
  color: #100b08;
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(201, 161, 93, 0.3);
}

.btn-glass {
  color: var(--cream);
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-glass:hover {
  color: var(--white);
  background: rgba(255, 250, 242, 0.14);
  transform: translateY(-2px);
}

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

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}


.hero-overlay {
  background:
    linear-gradient(90deg, rgb(7 6 5 / 26%), rgba(7, 6, 5, 0.48) 52%, rgba(7, 6, 5, 0.18)), linear-gradient(0deg, rgba(7, 6, 5, 0.88), transparent 44%)
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display-title,
.section-title {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.display-title {
  max-width: 760px;
  margin-bottom: 1.3rem;
  font-size: clamp(3.4rem, 9vw, 7.8rem);
  line-height: 0.9;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.8);
  /* font-size: clamp(1.05rem, 2vw, 1.28rem); */
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 250, 242, 0.3);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scrollCue 1.7s ease infinite;
}

.section-spacer {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.about-section,
.products-section,
.instagram-section {
  background:
    black;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-title {
  margin-bottom: 1.4rem;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
}

.lead-copy {
  font-size: 1.04rem;
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.image-main,
.image-float {
  object-fit: cover;
}

.image-main {
  height: 580px;
  border-radius: 28px;
}

.image-float {
  position: absolute;
  right: -4%;
  bottom: -2rem;
  width: 46%;
  height: 260px;
  border-radius: 22px;
}

.stats-band {
  padding: 1rem 0;
}

.stat-card,
.quote-card,
.newsletter-panel,
.contact-form {
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.1), rgba(255, 250, 242, 0.035));
  border: 1px solid var(--border);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.stat-card {
  min-height: 150px;
  padding: 1.4rem;
  border-radius: 22px;
}

.stat-card strong {
  display: block;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4.1rem);
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.menu-section {
     background-color: black;
}

.menu-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
}

.menu-card::after {
  position: absolute;
  inset: 0;
  content: "";
  /* background: linear-gradient(180deg, transparent 34%, rgba(7, 6, 5, 0.9)); */
  z-index: 1;
}

.menu-card img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.menu-card:hover img {
  transform: scale(1.08);
}

.menu-card-content {
  position: relative;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 2;
}

.menu-card-content span,
.product-tile span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.product-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.product-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(7, 6, 5, 0.82));
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-tile:hover img {
  transform: scale(1.08);
}

.product-tile span {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  z-index: 2;
  margin: 0;
  color: var(--white);
}

.tile-large {
  grid-row: span 2;
  min-height: 536px;
}

.testimonials-section {
  background: black;
}

.quote-card {
  height: 100%;
  padding: 2rem;
  border-radius: 24px;
}

.quote-card p {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.35;
}

.quote-card span {
  color: var(--gold);
  font-weight: 800;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.instagram-grid img:hover {
  opacity: 0.82;
  transform: translateY(-6px);
}

.newsletter-section {
  padding: 2rem 0;
}

.newsletter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 30px;
}

.newsletter-panel h2 {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  width: min(100%, 520px);
}

input,
textarea {
  width: 100%;
  color: var(--cream);
  background: rgba(8, 7, 6, 0.44);
  border: 1px solid rgba(245, 234, 216, 0.17);
  border-radius: 18px;
  outline: 0;
  padding: 0.95rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 234, 216, 0.52);
}

input:focus,
textarea:focus {
  border-color: rgba(201, 161, 93, 0.72);
  box-shadow: 0 0 0 0.2rem rgba(201, 161, 93, 0.13);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-list a,
.contact-list span {
  color: var(--cream);
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-form {
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border-radius: 28px;
}

.contact-form button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.form-status {
  min-height: 1.5rem;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-success {
  color: var(--gold);
}

.form-status.is-error {
  color: #ffb4a8;
}

.footer {
  padding: 4rem 0 2rem;
  background: #070605;
  border-top: 1px solid var(--border);
}

.footer h3 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  color: rgba(245, 234, 216, 0.58);
  border-top: 1px solid rgba(245, 234, 216, 0.1);
  font-size: 0.9rem;
}

.toast-message {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  max-width: min(360px, calc(100% - 2rem));
  padding: 1rem 1.2rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  transform: translateY(120%);
  transition: transform 0.35s ease;
  font-weight: 800;
}

.toast-message.is-visible {
  transform: translateY(0);
}

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

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@media (max-width: 991.98px) {
  .luxury-nav {
    background: rgba(8, 7, 6, 0.82);
  }

  .navbar-collapse {
    padding: 1rem 0;
  }

  .image-stack {
    min-height: auto;
  }

  .image-main {
    height: 480px;
  }

  .image-float {
    right: 1rem;
    bottom: 1rem;
    width: 42%;
  }

  .newsletter-panel,
  .newsletter-form {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (max-width: 767.98px) {
  .display-title {
    /* font-size: clamp(3rem, 17vw, 5rem); */
  }

  .hero-section .row {
    padding-top: 5rem;
  }

  .hero-overlay {
     /* background:
     linear-gradient(180deg, rgba(7, 6, 5, 0.42), rgba(7, 6, 5, 0.94) 68%),
      linear-gradient(90deg, rgba(7, 6, 5, 0.8), rgba(7, 6, 5, 0.35)); */
              background: linear-gradient(176deg, rgb(7 6 5 / 0%), rgb(7 6 5 / 57%) 68%), linear-gradient(90deg, rgb(7 6 5 / 0%), rgb(179 179 179 / 0%));
  }

  .hero-actions .btn {
    width: 100%;
  }

  .image-main {
    height: 420px;
    border-radius: 22px;
  }

  .image-float {
    display: none;
  }

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

  .tile-large {
    grid-row: auto;
    min-height: 320px;
  }

  .menu-card,
  .menu-card img {
    min-height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .section-spacer {
    padding: 4.5rem 0;
  }

  .instagram-grid {
    gap: 0.75rem;
  }

  .stat-card {
    min-height: 132px;
    padding: 1rem;
  }
}

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