﻿:root {
  --bg: #1a141b;
  --bg-soft: #2b1d2d;
  --text: #f3ece8;
  --muted: #d9c8c2;
  --gold: #c98b4a;
  --gold-bright: #e3a96a;
  --rose: #d9b8a7;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 35px 90px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 184, 167, 0.22), transparent 16%),
    radial-gradient(circle at 90% 0%, rgba(201, 139, 74, 0.22), transparent 22%),
    radial-gradient(circle at bottom left, rgba(76, 40, 79, 0.3), transparent 24%),
    linear-gradient(180deg, #130d14 0%, #211423 40%, #342038 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
  opacity: 0.2;
}

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

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.blog-page {
  min-height: calc(100vh - 90px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem 5vw;
  background: rgba(26, 20, 27, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227, 169, 106, 0.18);
}

.brand {
  display: grid;
  gap: 0.25rem;
}

.brand-mark,
h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
}

.brand-mark {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.nav a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.section {
  padding: 5.25rem 5vw;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.2rem;
  align-items: center;
  min-height: calc(100vh - 76px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/images/about-bg/corporate.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: heroSlides 20s infinite, heroPan 20s ease-in-out infinite alternate;
  transform: scale(1.06);
  filter: blur(3px) saturate(0.92);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(18, 13, 20, 0.82), rgba(33, 20, 35, 0.68));
}

.eyebrow,
.mini-tag {
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 0.94;
  max-width: 20ch;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
}

.hero-text {
  max-width: 60ch;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #241a18;
  box-shadow: 0 14px 32px rgba(201, 139, 74, 0.28);
}

.button-secondary {
  border: 1px solid rgba(227, 169, 106, 0.34);
  background: rgba(255, 255, 255, 0.045);
}

.inline-button {
  margin-top: 1.2rem;
}

.hero-points,
.package-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-points li,
.package-list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
}

.hero-points li::before,
.package-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(227, 169, 106, 0.78);
}

.rates-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hero-visual,
.stack-grid {
  display: grid;
  gap: 1.1rem;
}

.card,
.logo-card,
.stat-card,
.footer {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::after,
.logo-card::after,
.stat-card::after,
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(227, 169, 106, 0.08), transparent 28%, transparent 72%, rgba(217, 184, 167, 0.06));
}

.logo-card {
  padding: 1rem;
  border-radius: 2rem 2rem 5rem 2rem;
}

.logo-card img {
  width: 100%;
  border-radius: 1.4rem 1.4rem 4.2rem 1.4rem;
}

.stat-card,
.card {
  padding: 1.65rem;
  border-radius: 1.45rem;
}

.stat-card {
  width: min(290px, 100%);
  justify-self: end;
}

.stat-number {
  display: block;
  color: var(--gold-bright);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.stat-label {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.7;
}

.card-highlight {
  background: linear-gradient(180deg, rgba(227, 169, 106, 0.16), rgba(217, 184, 167, 0.08));
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 2.2rem;
}

.grid {
  display: grid;
  gap: 1.4rem;
}

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

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

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

.top-gap {
  margin-top: 1.4rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr 0.85fr;
  gap: 1.4rem;
  align-items: start;
}

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

.card p,
.footer-copy,
.form-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.82;
}

.contact-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold-bright);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.booking-form span {
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.95rem;
  padding: 0.98rem 1rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.booking-form select,
.booking-form option {
  color: #f3ece8;
  background: #2b1d2d;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(243, 236, 232, 0.68);
}

.booking-form textarea {
  resize: vertical;
}

.footer {
  margin: 0 5vw 3rem;
  padding: 1.9rem;
  border-radius: 1.6rem;
}

.footer-copy {
  overflow-wrap: anywhere;
}

.blog-hero {
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  gap: 1.4rem;
}

.blog-card {
  max-width: 38rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0.55rem;
  border: 1px solid rgba(227, 169, 106, 0.3);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: var(--gold-bright);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.menu-open span:nth-child(1) {
  transform: rotate(45deg);
}





.about-section {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  margin: 0 5vw;
  isolation: isolate;
}

.about-section::before,
.section:not(.hero)::before,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(18, 13, 20, 0.72), rgba(33, 20, 35, 0.62)),
    url("assets/images/about-bg/corporate.jpg") top left / 32% 50% no-repeat,
    url("assets/images/about-bg/juices.jpg") top right / 32% 50% no-repeat,
    url("assets/images/about-bg/traditional.jpg") bottom left / 32% 50% no-repeat,
    url("assets/images/about-bg/buffet.jpg") bottom right / 32% 50% no-repeat,
    linear-gradient(180deg, rgba(227, 169, 106, 0.08), rgba(217, 184, 167, 0.05));
}

.about-section::after,
.section:not(.hero)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(18, 13, 20, 0.1), rgba(18, 13, 20, 0.3));
}

.about-section .card {
  background: linear-gradient(180deg, rgba(22, 14, 23, 0.82), rgba(35, 23, 38, 0.74));
  backdrop-filter: blur(4px);
}

@keyframes heroSlides {
  0%, 24.99% { background-image: url("assets/images/about-bg/corporate.jpg"); }
  25%, 49.99% { background-image: url("assets/images/about-bg/juices.jpg"); }
  50%, 74.99% { background-image: url("assets/images/about-bg/traditional.jpg"); }
  75%, 100% { background-image: url("assets/images/about-bg/buffet.jpg"); }
}

@keyframes heroPan {
  0% {
    transform: scale(1.06) translateX(0) translateY(0);
    background-position: center center;
  }
  50% {
    transform: scale(1.12) translateX(-1.5%) translateY(-1.5%);
    background-position: center top;
  }
  100% {
    transform: scale(1.08) translateX(1.5%) translateY(1%);
    background-position: center center;
  }
}

@keyframes heroPanMobile {
  0% {
    transform: scale(1.03) translateX(0) translateY(0);
    background-position: center center;
  }
  50% {
    transform: scale(1.08) translateX(-1%) translateY(-1%);
    background-position: center top;
  }
  100% {
    transform: scale(1.04) translateX(1%) translateY(1%);
    background-position: center center;
  }
}

@media (max-width: 1080px) {
  .hero,
  .grid-3,
  .grid-4,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .about-section::before,
  .section:not(.hero)::before,
  .footer::before {
    background:
      linear-gradient(135deg, rgba(18, 13, 20, 0.74), rgba(33, 20, 35, 0.66)),
      url("assets/images/about-bg/corporate.jpg") top left / 50% 32% no-repeat,
      url("assets/images/about-bg/juices.jpg") top right / 50% 32% no-repeat,
      url("assets/images/about-bg/traditional.jpg") bottom left / 50% 32% no-repeat,
      url("assets/images/about-bg/buffet.jpg") bottom right / 50% 32% no-repeat;
  }
}

@media (max-width: 720px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 1rem;
    padding: 1rem 1.2rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 0.6rem;
  }

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

  .section {
    padding: 3.4rem 1.2rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(140px, 0.75fr);
    min-height: auto;
    gap: 0.9rem;
    padding-top: 3.8rem;
    align-items: start;
  }

  .hero-copy,
  .hero-visual {
    min-width: 0;
  }

  .hero-visual {
    justify-items: end;
    align-content: start;
  }

  .logo-card,
  .stat-card {
    width: 100%;
    max-width: 180px;
    margin-left: auto;
  }

  .logo-card {
    border-radius: 1.2rem;
    padding: 0.7rem;
  }

  .logo-card img {
    border-radius: 0.9rem;
  }

  .hero-actions,
  .menu-actions,
  .compact-actions,
  .form-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
  }

  .hero-text,
  .card p,
  .footer-copy,
  .form-note {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 16px;
  }

  .footer {
    margin: 0 1.2rem 1.2rem;
  }

  .about-section {
    margin: 0 1.2rem;
    border-radius: 1.4rem;
  }

  .about-section::before,
  .section:not(.hero)::before,
  .footer::before {
    background:
      linear-gradient(180deg, rgba(18, 13, 20, 0.76), rgba(33, 20, 35, 0.7)),
      url("assets/images/about-bg/corporate.jpg") top left / 50% 33.4% no-repeat,
      url("assets/images/about-bg/juices.jpg") top right / 50% 33.4% no-repeat,
      url("assets/images/about-bg/traditional.jpg") bottom left / 50% 66.6% no-repeat,
      url("assets/images/about-bg/buffet.jpg") bottom right / 50% 66.6% no-repeat;
    filter: saturate(0.9);
  }

  .hero::before {
    animation: heroSlides 20s infinite, heroPanMobile 20s ease-in-out infinite alternate;
    transform: scale(1.03);
    filter: blur(4px) saturate(0.9);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(18, 13, 20, 0.86), rgba(33, 20, 35, 0.74));
  }
}

.footer::before {
  content: none;
}

.footer {
  background: linear-gradient(180deg, rgba(34, 23, 36, 0.96), rgba(24, 17, 26, 0.96));
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .topbar {
    position: sticky;
    top: 0;
    padding: 0.9rem 1rem;
  }

  .brand-mark {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .section {
    padding: 2.6rem 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-top: 2.6rem;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    justify-items: stretch;
  }

  .logo-card,
  .stat-card {
    max-width: 100%;
    margin-left: 0;
    justify-self: stretch;
  }

  .hero-text,
  .hero-points li,
  .package-list li,
  .card p,
  .footer-copy,
  .form-note {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero-actions,
  .menu-actions,
  .compact-actions,
  .form-actions {
    gap: 0.75rem;
  }

  .button,
  .contact-link {
    width: 100%;
    justify-content: center;
  }

  .grid,
  .grid-1,
  .grid-3,
  .grid-4,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card,
  .stat-card,
  .booking-form,
  .footer {
    padding: 1.2rem;
  }

  .footer {
    margin: 0 1rem 1rem;
    border-radius: 1.2rem;
  }

  .footer-bottom {
    margin-top: 1rem;
  }

  h1 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.55rem, 7.5vw, 2.2rem);
    line-height: 1.1;
  }

  h3 {
    font-size: 1.12rem;
  }

  .about-section {
    margin: 0 1rem;
  }
}

.menu-toggle::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--gold-bright);
  transform: translateY(-6px);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle {
  position: relative;
}

.menu-toggle.menu-open::before {
  opacity: 1;
  transform: rotate(-45deg);
}

@media (max-width: 720px) {
  .topbar {
    background: rgba(38, 24, 30, 0.96);
    border-bottom: 1px solid rgba(227, 169, 106, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  }

  .menu-toggle {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(227, 169, 106, 0.24);
    background: rgba(77, 53, 58, 0.5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  }

  .menu-toggle span,
  .menu-toggle::before {
    width: 20px;
    height: 2px;
    left: 50%;
    top: 50%;
    margin: 0;
    transform-origin: center;
    background: var(--gold-bright);
  }

  .menu-toggle span {
    position: absolute;
    transform: translate(-50%, -50%);
  }

  .menu-toggle::before {
    transform: translate(-50%, -50%);
  }

  .menu-toggle.menu-open span {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-toggle.menu-open::before {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav {
    margin-top: 0.2rem;
    padding: 0.4rem 0 0.2rem;
    border-top: 1px solid rgba(227, 169, 106, 0.12);
  }

  .nav a {
    padding: 0.75rem 0.1rem;
    font-size: 0.95rem;
    color: var(--text);
  }
}

.about-section::before,
.about-section::after,
.section:not(.hero)::before,
.section:not(.hero)::after {
  content: none !important;
}

.about-section,
.section:not(.hero) {
  background: linear-gradient(180deg, rgba(30, 20, 31, 0.96), rgba(22, 16, 24, 0.96));
}

.topbar {
  position: sticky;
}

.nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 0.8rem;
}

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

.menu-toggle {
  display: inline-flex;
  position: relative;
}

@media (min-width: 721px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 1rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .nav {
    grid-column: 1 / -1;
    margin-top: 0.2rem;
    border-top: 1px solid rgba(227, 169, 106, 0.12);
  }
}
