:root {
  --bg: #171314;
  --bg-soft: #211b1c;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: #272020;
  --text: #fbf6ef;
  --muted: #dccfbe;
  --line: rgba(232, 211, 176, 0.2);
  --accent: #b51d24;
  --accent-2: #e2c38f;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(181, 29, 36, 0.24), transparent 28%),
    radial-gradient(circle at bottom right, rgba(226, 195, 143, 0.13), transparent 24%),
    var(--bg);
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
}

body::before {
  top: 9rem;
  right: -4rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  border: 1px solid rgba(226, 195, 143, 0.24);
  box-shadow:
    0 0 0 22px rgba(226, 195, 143, 0.05),
    0 0 0 44px rgba(181, 29, 36, 0.04);
}

body::after {
  bottom: 8rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  background:
    radial-gradient(circle, rgba(226, 195, 143, 0.12) 0 10%, transparent 11% 100%),
    radial-gradient(circle, rgba(181, 29, 36, 0.08) 0 7%, transparent 8% 100%);
  background-size: 3rem 3rem, 3rem 3rem;
  transform: rotate(18deg);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-tag,
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 800;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.section-tag::before,
.section-tag::after {
  content: "";
  width: 1.3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2));
}

.section-tag::after {
  background: linear-gradient(90deg, var(--accent-2), transparent);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(3.7rem, 9vw, 7rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(24, 20, 21, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  font-size: 0.96rem;
  color: var(--muted);
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-2);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 10px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.hero-overlay {
  background:
    linear-gradient(120deg, rgba(15, 15, 16, 0.84), rgba(15, 15, 16, 0.45)),
    linear-gradient(0deg, rgba(15, 15, 16, 0.8), rgba(15, 15, 16, 0.1));
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: auto 6% 10% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 1px solid rgba(226, 195, 143, 0.18);
  box-shadow:
    0 0 0 18px rgba(226, 195, 143, 0.05),
    0 0 0 36px rgba(226, 195, 143, 0.03);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 5rem;
  max-width: 760px;
}

.hero-copy {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #f6eee2;
  max-width: 38rem;
  margin-top: 1.4rem;
}

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

.delivery-highlight {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding: 0 0 1rem;
}

.delivery-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(226, 195, 143, 0.18), rgba(181, 29, 36, 0.12)),
    rgba(34, 28, 28, 0.92);
  border: 1px solid rgba(226, 195, 143, 0.22);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.delivery-banner:hover,
.delivery-banner:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(226, 195, 143, 0.4);
}

.delivery-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #d13831);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.delivery-text {
  display: grid;
  gap: 0.25rem;
}

.delivery-text strong {
  font-size: 1.05rem;
  color: var(--text);
}

.delivery-text small {
  color: var(--muted);
  font-size: 0.95rem;
}

.delivery-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(226, 195, 143, 0.24);
  color: var(--accent-2);
  font-weight: 800;
  white-space: nowrap;
}

.delivery-cta i {
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d13831);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1faa52);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-takeaway {
  background: linear-gradient(135deg, #d7a54b, #b8791d);
  color: #fff;
  box-shadow: var(--shadow);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hours-section .split-layout {
  align-items: stretch;
}

.hours-image {
  height: 100%;
}

.hours-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-copy p + p {
  margin-top: 1rem;
}

.section-copy a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.intro-visual img,
.hours-image img,
.gallery-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.ayce {
  padding-top: 0;
}

.ayce-card {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background:
    linear-gradient(140deg, rgba(181, 29, 36, 0.22), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

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

.service-card,
.contact-card,
.hours-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  min-height: 100%;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -2.6rem;
  right: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto auto 1rem 1rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(226, 195, 143, 0.32);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.service-card i {
  font-size: 1.35rem;
  color: #fff;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.85rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 248, 240, 0.88);
}

.service-card p a {
  color: #fff8ec;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 0.2em;
}

.tone-red {
  background:
    linear-gradient(145deg, rgba(181, 29, 36, 0.95), rgba(128, 15, 22, 0.92)),
    var(--panel);
}

.tone-gold {
  background:
    linear-gradient(145deg, rgba(212, 166, 92, 0.96), rgba(154, 111, 43, 0.95)),
    var(--panel);
}

.tone-gold h3,
.tone-gold p {
  color: #fff9f1;
}

.tone-ink {
  background:
    linear-gradient(145deg, rgba(34, 37, 44, 0.96), rgba(18, 20, 25, 0.95)),
    var(--panel);
}

.tone-coral {
  background:
    linear-gradient(145deg, rgba(196, 92, 76, 0.95), rgba(154, 53, 45, 0.94)),
    var(--panel);
}

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

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(15, 15, 16, 0.55)),
    linear-gradient(145deg, rgba(181, 29, 36, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 1;
}

.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 2;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover::before,
.gallery-item:hover::after,
.gallery-item:focus-visible::before,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  transform: translate(-50%, -50%);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: translateY(-4px) scale(1.01);
  filter: saturate(1.1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(181, 29, 36, 0.18), transparent 30%),
    rgba(8, 8, 10, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  margin: 0;
  width: min(100%, 980px);
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.02);
}

.lightbox-caption {
  text-align: center;
  color: #f4ece1;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: rgba(181, 29, 36, 0.45);
  transform: translateY(-2px);
}

.lightbox-close {
  top: 1.1rem;
  right: 1.1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.lightbox-prev {
  left: 1.1rem;
}

.lightbox-next {
  right: 1.1rem;
}

.hours-card {
  padding: 1rem 1.4rem;
  margin-top: 1.2rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--text);
}

.hours-row + .hours-row {
  border-top: 1px solid var(--line);
}

.hours-row span:last-child {
  text-align: right;
  color: var(--accent-2);
  font-weight: 700;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  padding: 1rem;
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 14px;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.contact-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(181, 29, 36, 0.16);
  color: var(--accent-2);
  font-size: 1.1rem;
}

.site-footer {
  padding: 2.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 0.15rem;
}

.footer-brand-copy p {
  max-width: 42ch;
}

.footer-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: center;
}

.footer-icons a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  color: var(--accent-2);
  font-size: 1rem;
}

.footer-icons a:hover,
.footer-icons a:focus-visible {
  background: rgba(181, 29, 36, 0.12);
  border-color: rgba(226, 195, 143, 0.24);
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: rgba(26, 21, 22, 0.96);
  border: 1px solid rgba(226, 195, 143, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.cookie-banner__copy p {
  font-size: 0.95rem;
}

.cookie-banner__copy a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.legal-main {
  padding-top: 2rem;
}

.legal-nav {
  display: flex;
}

.legal-layout {
  display: grid;
  gap: 1.25rem;
}

.legal-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.legal-card a {
  color: var(--accent-2);
}

@media (max-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    z-index: 60;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.9rem;
    background: rgba(18, 18, 20, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav a {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.04);
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .split-layout,
  .contact-grid,
  .ayce-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-links {
    justify-content: flex-start;
  }

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

  .delivery-banner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-icons {
    justify-content: flex-start;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .hero-content {
    padding: 6.5rem 0 4rem;
  }

  .cards-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .menu-links,
  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .menu-links .btn,
  .cookie-banner__actions .btn {
    width: 100%;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 66px);
  }

  .lightbox-next {
    right: calc(50% - 66px);
  }

  .lightbox-image {
    max-height: 70vh;
  }

  .service-card {
    min-height: auto;
  }

  .hours-row {
    flex-direction: column;
  }

  .hours-row span:last-child {
    text-align: left;
  }

  .brand-text {
    font-size: 1.7rem;
  }
}

.hero-content h1,
.section-heading h2,
.section-copy h2 {
  text-wrap: balance;
}
