:root {
  --black: #050505;
  --black-soft: #0c0c0c;
  --black-card: rgba(9, 9, 9, 0.86);
  --gold: #d7a73f;
  --gold-light: #f3cf77;
  --gold-dark: #9b711b;
  --white: #f7f2ea;
  --muted: #d6d0c8;
  --line: rgba(215, 167, 63, 0.65);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background:
    radial-gradient(
      circle at top,
      #15120d 0%,
      var(--black) 34%,
      #000 100%
    );
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 92px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 64px);
  background: rgba(3, 3, 3, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

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

.nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-family: "Cinzel", serif;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-menu a {
  position: relative;
  padding: 12px 0;
  color: var(--white);
  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-light);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.header-phone {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 8px 0;
  background: var(--gold);
  border-radius: 100px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 90px clamp(22px, 7vw, 130px);
  background: #000;
  border-bottom: 1px solid var(--line);
}

.hero-photo {
  position: absolute;
  top: 0;
  right: -16%;
  z-index: 0;
  width: 78%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.97) 27%,
      rgba(0, 0, 0, 0.78) 44%,
      rgba(0, 0, 0, 0.30) 68%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 10px;
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.hero h1 span {
  display: inline-block;
  color: var(--gold-light);
  font-family: "Parisienne", cursive;
  font-size: 0.48em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-right: 10px;
}

.ornament {
  position: relative;
  width: 270px;
  height: 1px;
  margin: 24px 0 18px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold),
      transparent
    );
}

.ornament::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  background: var(--black);
  padding: 0 10px;
}

.hero-copy {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.btn {
  min-width: 210px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 15px 24px;
  border: 1px solid var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(215, 167, 63, 0.15);
}

.btn-gold {
  color: #080808;
  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-light),
      var(--gold-dark)
    );
}

.btn-outline {
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.35);
}

.about-strip,
.services,
.events,
.gallery,
.testimonial,
.contact {
  padding:
    clamp(42px, 6vw, 78px)
    clamp(18px, 4vw, 64px);
}
#about,
#services,
#events,
#gallery,
#contact {
  scroll-margin-top: 115px;
}

/* ABOUT */

.about-strip {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  align-items: center;
  gap: 34px;
  background:
    linear-gradient(
      180deg,
      #090909,
      #050505
    );
  border-bottom: 1px solid var(--line);
}

.about-card {
  display: grid;
  grid-template-columns: 125px 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--black-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 3.2rem;
}

.about-card p:not(.section-kicker) {
  color: var(--muted);
}

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

.features article {
  min-height: 116px;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  padding: 12px;
  border-left: 1px solid var(--line);
}

.features article:last-child {
  border-right: 1px solid var(--line);
}

.features span {
  color: var(--gold);
  font-size: 2.4rem;
  line-height: 1;
}

.features p {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}

.section-heading span {
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold)
    );
}

.section-heading span:last-child {
  background:
    linear-gradient(
      90deg,
      var(--gold),
      transparent
    );
}

.section-heading h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

/* SERVICES */

.service-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-columns: 38% 1fr;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(215, 167, 63, 0.08),
      transparent 38%
    ),
    #080808;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  background:
    linear-gradient(
      135deg,
      rgba(215, 167, 63, 0.14),
      transparent 42%
    ),
    #090909;
}

.service-img,
.gallery-slide {
  background-position: center;
  background-size: cover;
}

.service-img {
  min-height: 330px;
  filter: saturate(0.9) contrast(1.08);
}

.corporate-lunch {
  background-image:
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=900&q=80");
}

.breakfast {
  background-image:
    url("https://images.unsplash.com/photo-1533089860892-a7c6f0a88666?auto=format&fit=crop&w=900&q=80");
}

.cocktail {
  background-image:
    url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092?auto=format&fit=crop&w=900&q=80");
}

.vip {
  background-image:
    url("https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=900&q=80");
}

.service-text {
  padding: 28px 58px 28px 26px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.48),
      #050505
    );
}

.service-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.service-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}

.service-kicker {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.service-text h3 {
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-summary {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.service-features {
  display: grid;
  gap: 8px;
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.35;
}

.service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--gold);
  font-size: 1.65rem;
}

/* EVENTS */

.events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96),
      rgba(0, 0, 0, 0.7)
    ),
    url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1600&q=80")
    center / cover fixed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-copy h2,
.contact-copy h2 {
  font-family: "Parisienne", cursive;
  color: var(--gold-light);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  font-weight: 400;
}

.event-copy p:last-child,
.contact-copy p:last-child {
  color: var(--muted);
  max-width: 720px;
}

.event-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.event-stats div {
  padding: 28px 18px;
  text-align: center;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid var(--line);
}

.event-stats strong {
  display: block;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 1.7rem;
}

.event-stats span {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* GALLERY */

.gallery-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: var(--shadow);
  padding: 18px 58px;
}

.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 calc((100% - 48px) / 4);
  min-height: 230px;
  border: 1px solid var(--line);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.gallery-slide:hover {
  transform: scale(1.02);
  border-color: var(--gold-light);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 60px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.82);
  font-size: 2rem;
  cursor: pointer;
}

.gallery-btn:hover {
  background: rgba(215, 167, 63, 0.16);
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.g1 {
  background-image:
    url("assets/PHOTO-2026-06-17-15-46-05 (1).jpg");
}

.g2 {
  background-image:
    url("assets/PHOTO-2026-06-17-15-46-05 (2).jpg");
}

.g3 {
  background-image:
    url("assets/PHOTO-2026-06-17-15-46-05.jpg");
}

.g4 {
  background-image:
    url("assets/PHOTO-2026-06-17-15-47-07 (1).jpg");
}

.g5 {
  background-image:
    url("assets/PHOTO-2026-06-17-15-47-07 (2).jpg");
}

.g6 {
  background-image:
    url("assets/PHOTO-2026-06-17-15-47-07.jpg");
}

.g7 {
  background-image:
    url("assets/PHOTO-2026-06-17-15-48-48 (1).jpg");
}

.g8 {
  background-image:
    url("assets/PHOTO-2026-06-17-15-48-48.jpg");
}

.g9 {
  background-image:
    url("assets/PHOTO-2026-06-17-15-53-11.jpg");
}

.g10 {
  background-image:
    url("assets/PHOTO-2026-06-17-15-53-51.jpg");
}

.g11 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-35 (1).jpg");
}

.g12 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-35.jpg");
}

.g13 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36 (1).jpg");
}

.g14 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36 (2).jpg");
}

.g15 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36 (3).jpg");
}

.g16 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36 (4).jpg");
}

.g17 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36 (5).jpg");
}

.g18 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36 (6).jpg");
}

.g19 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36 (7).jpg");
}

.g20 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36 (8).jpg");
}

.g21 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36 (9).jpg");
}

.g22 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36 (10).jpg");
}

.g23 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36 (11).jpg");
}

.g24 {
  background-image:
    url("assets/PHOTO-2026-06-17-16-16-36.jpg");
}

.g25 {
  background-image:
    url("assets/PHOTO-2026-06-17-17-20-25.jpg");
}

/* TESTIMONIAL */

.testimonial {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.65);
  box-shadow: var(--shadow);
}

.quote-mark {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  line-height: 0.5;
}

blockquote {
  max-width: 870px;
  margin: 0 auto;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-style: italic;
}

.testimonial p {
  margin-top: 22px;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.testimonial-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.testimonial-dot:hover {
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: var(--gold);
}

#testimonial-quote,
#testimonial-author {
  transition: opacity 0.2s ease;
}

/* CONTACT */

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.64);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 16px;
  color: var(--white);
  font-family: inherit;
  background: #090909;
  border: 1px solid rgba(215, 167, 63, 0.38);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--gold-light);
}

.contact-info {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  padding-top: 12px;
  color: var(--gold-light);
}

/* FOOTER */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: #010101;
  color: var(--muted);
}

.footer img {
  width: 100px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 700;
}

/* ANIMATIONS */

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

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

/* TABLET */

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 150px auto auto;
  }

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

  .gallery-slide {
    flex-basis: calc((100% - 16px) / 2);
  }
}

/* PHONE */

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 86px;
  }

  .brand img {
    width: 118px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 18px 28px;
    border-top:
      1px solid rgba(215, 167, 63, 0.18);
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: 660px;
    padding: 74px 22px;
  }

  .hero-photo {
    right: -44%;
    width: 145%;
    height: 100%;
    object-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.64) 36%,
        rgba(0, 0, 0, 0.90) 72%,
        rgba(0, 0, 0, 1) 100%
      );
  }

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

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 4rem);
  }

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

  .about-strip,
  .events,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-icon {
    margin: 0 auto;
  }

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

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

  .service-img {
    min-height: 220px;
  }

  .service-text {
    padding: 24px 54px 26px 22px;
  }

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

  .gallery-slider {
    padding: 14px 46px;
  }

  .gallery-slide {
    flex-basis: 82%;
    min-height: 240px;
  }

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

  .footer {
    flex-direction: column;
    text-align: center;
  }

  html {
    scroll-padding-top: 100px;
  }
  
  #about,
  #services,
  #events,
  #gallery,
  #contact {
    scroll-margin-top: 100px;
  }
}

@media (max-width: 520px) {
  .about-strip,
  .services,
  .events,
  .gallery,
  .testimonial,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .features article {
    border-right: 0 !important;
  }

  .service-text h3 {
    font-size: 0.95rem;
  }

  .service-summary {
    font-size: 0.84rem;
  }

  .service-features li {
    font-size: 0.8rem;
  }

  .gallery-slider {
    padding-left: 42px;
    padding-right: 42px;
  }

  .gallery-slide {
    flex-basis: 88%;
    min-height: 190px;
  }
}