:root {
        --color-gold: #c5a059;
        --color-gold-light: #e6c885;
        --color-black: #111111;
        --color-dark-grey: #1a1a1a;
        --color-white: #ffffff;
        --color-text-grey: #b0b0b0;
        --font-serif: "Playfair Display", serif;
        --font-sans: "Lato", sans-serif;
      }

      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
        font-family: var(--font-sans);
        background-color: var(--color-black);
        color: var(--color-text-grey);
        line-height: 1.6;
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: var(--font-serif);
        color: var(--color-gold);
        line-height: 1.2;
        margin-bottom: 1rem;
      }

      a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s ease;
      }

      img {
        max-width: 100%;
        display: block;
      }

      ul {
        list-style: none;
      }

      
      .main-header {
        background-color: #1a1a1a;
        padding: 1rem 2rem;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .brand-logo {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .logo-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .logo-glow {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.8) 0%,
          rgba(255, 255, 255, 0) 70%
        );
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
          0 0 40px rgba(255, 255, 255, 0.4);
      }

      .logo-ring {
        position: absolute;
        width: 70%;
        height: 70%;
        border-radius: 50%;
        border: 3px solid #ffa500;
        background: transparent;
      }

      .logo-center {
        position: absolute;
        width: 40%;
        height: 40%;
        border-radius: 50%;
        background: #ffffff;
      }

      .nav-menu ul {
        display: flex;
        gap: 2.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
      }

      .nav-menu a {
        color: #ffffff;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 1px;
        font-family: var(--font-sans);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .nav-menu a:hover {
        color: var(--color-gold);
      }

      
      .burger-menu {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
        background: none;
        border: none;
      }

      .burger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #ffffff;
        transition: all 0.3s ease;
      }

      .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
      }

      .burger-menu.active span:nth-child(2) {
        opacity: 0;
      }

      .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
      }

      
      .hero-section {
        position: relative;
        height: 100vh;
        min-height: 700px;
        background-color: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding-top: 80px;
      }

      
      .hero-tags {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
      }

      .hero-tag {
        position: absolute;
        background-color: #d4a574;
        color: #333333;
        padding: 0.6rem 1.2rem;
        font-weight: 600;
        font-size: 0.85rem;
        font-family: var(--font-sans);
        border-radius: 6px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        white-space: nowrap;
      }

      
      .hero-tag:nth-child(1) {
        top: 15%;
        left: 10%;
        transform: rotate(-10deg);
      }
      .hero-tag:nth-child(2) {
        top: 12%;
        right: 12%;
        transform: rotate(8deg);
      }
      .hero-tag:nth-child(3) {
        top: 40%;
        left: 8%;
        transform: rotate(6deg);
      }
      .hero-tag:nth-child(4) {
        top: 42%;
        right: 10%;
        transform: rotate(-7deg);
      }
      .hero-tag:nth-child(5) {
        bottom: 28%;
        left: 12%;
        transform: rotate(5deg);
      }
      .hero-tag:nth-child(6) {
        bottom: 25%;
        right: 14%;
        transform: rotate(-9deg);
      }

      .hero-content {
        background-color: #fafafa;
        color: var(--color-black);
        padding: 4rem 5rem;
        text-align: center;
        max-width: 850px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        position: relative;
        z-index: 10;
      }

      .hero-content h1 {
        color: #d4a574;
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        line-height: 1.1;
      }

      .hero-content h1 .line-1 {
        display: block;
      }

      .hero-content h1 .line-2 {
        display: block;
      }

      .hero-content h1 .line-3 {
        display: block;
      }

      .hero-content p {
        font-size: 1.1rem;
        color: #333333;
        margin-bottom: 2rem;
        font-family: var(--font-sans);
        font-weight: 400;
      }

      .cta-button {
        display: inline-block;
        background-color: #1a1a1a;
        color: #ffffff;
        padding: 0.9rem 2rem;
        font-weight: 500;
        font-size: 0.9rem;
        text-transform: none;
        border: none;
        border-radius: 6px;
        font-family: var(--font-sans);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
        cursor: pointer;
        text-decoration: none;
      }

      .cta-button:hover {
        background-color: #2a2a2a;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      }

      
      .intro-section {
        padding: 6rem 2rem;
        background-color: #000000;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
      }

      .intro-title {
        text-align: center;
        margin-bottom: 4rem;
      }

      .intro-title .line-1 {
        display: block;
        font-size: 1.2rem;
        font-weight: 400;
        color: #d4a574;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 0.8rem;
      }

      .intro-title .line-2 {
        display: block;
        font-size: 2.8rem;
        font-weight: 700;
        color: #d4a574;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
      }

      .intro-title::after {
        content: "";
        display: block;
        width: 100px;
        height: 1px;
        background-color: #d4a574;
        margin: 0 auto;
        margin-top: 1.2rem;
      }

      .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        align-items: start;
        position: relative;
        padding: 0 3rem;
        max-width: 1100px;
        margin: 0 auto;
      }

      .intro-grid::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background-color: #d4a574;
        transform: translateX(-50%);
        z-index: 1;
        opacity: 0.6;
      }

      .intro-grid .intro-column-left {
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
        padding-right: 4rem;
      }

      .intro-grid .intro-column-right {
        display: flex;
        align-items: center;
        min-height: 100%;
        padding-left: 4rem;
      }

      .intro-item {
        border: 1px solid #d4a574;
        padding: 2.8rem 3rem;
        background-color: #1a1a1a;
        color: #ffffff;
        font-family: var(--font-sans);
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.8;
        text-align: left;
      }

      .intro-item p {
        margin: 0;
        color: #ffffff;
      }

      
      .culinary-section {
        background-color: var(--color-white);
        color: var(--color-black);
        padding: 5rem 2rem;
      }

      .culinary-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 4rem;
        align-items: center;
      }

      .culinary-text {
        flex: 1;
        min-width: 300px;
      }

      .culinary-text h2 {
        color: #bd9b53;
        font-size: 2.5rem;
      }

      .stats-row {
        display: flex;
        gap: 2rem;
        margin-top: 3rem;
        border-left: 2px solid #bd9b53;
        padding-left: 2rem;
      }

      .stat-item span {
        display: block;
      }

      .stat-number {
        font-family: var(--font-serif);
        font-size: 2rem;
        font-weight: 700;
        color: #bd9b53;
      }

      .stat-desc {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #555;
      }

      .culinary-images {
        flex: 1;
        position: relative;
        min-height: 400px;
      }

      .culinary-img-wrapper {
        position: absolute;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }

      .img-main {
        width: 70%;
        top: 0;
        left: 0;
        z-index: 1;
      }

      .img-overlay {
        width: 60%;
        bottom: -50px;
        right: 0;
        z-index: 2;
        border: 5px solid var(--color-white);
      }

      
      .cocktails-section {
        background-color: #f4f6f8;
        padding: 5rem 2rem;
        text-align: center;
      }

      .cocktails-section header {
        max-width: 700px;
        margin: 0 auto 3rem auto;
      }

      .cocktails-section h2 {
        color: var(--color-black);
      }

      .cards-grid {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .card {
        background: var(--color-white);
        border-radius: 12px;
        overflow: hidden;
        width: 350px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
      }

      .card:hover {
        transform: translateY(-10px);
      }

      .card-image {
        height: 250px;
        background-color: #ddd;
        overflow: hidden;
      }

      .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .card-content {
        padding: 2rem;
      }

      .card-content h3 {
        color: var(--color-black);
        font-size: 1.5rem;
      }

      .card-sub {
        color: #bd9b53;
        font-size: 0.8rem;
        text-transform: uppercase;
        margin-bottom: 1rem;
        display: block;
      }

      
      .gallery-section {
        padding: 5rem 2rem;
        background-color: var(--color-dark-grey);
      }

      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
      }

      .gallery-item {
        position: relative;
        background-color: var(--color-black);
        border: 1px solid rgba(197, 160, 89, 0.2);
        overflow: hidden;
      }

      .gallery-item img {
        width: 100%;
        height: auto;
        transition: opacity 0.3s;
      }

      .gallery-caption {
        padding: 1rem;
        text-align: center;
        border-top: 1px solid var(--color-gold);
      }

      .gallery-caption p {
        font-size: 0.9rem;
        color: var(--color-white);
      }

      
      .subscribe-section {
        background-color: var(--color-black);
        padding: 4rem 2rem;
        border-top: 1px solid var(--color-gold);
        border-bottom: 1px solid var(--color-gold);
      }

      .subscribe-container {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        border: 1px solid var(--color-gold);
        padding: 3rem;
        position: relative;
      }

      .subscribe-text {
        flex: 1;
        min-width: 300px;
        padding-right: 2rem;
      }

      .subscribe-form {
        flex: 1;
        display: flex;
        min-width: 250px;
      }

      .subscribe-form input {
        width: 100%;
        padding: 1rem;
        border: none;
        background: #f4f4f4;
      }

      .subscribe-form button {
        padding: 1rem 2rem;
        background-color: #bd9b53;
        color: white;
        border: none;
        cursor: pointer;
        font-weight: 700;
      }

      .subscribe-form button:hover {
        background-color: #a3823d;
      }

      
      .main-footer {
        background-color: #0a0a0a;
        padding: 4rem 2rem 2rem 2rem;
        color: #777;
      }

      .footer-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem;
        margin-bottom: 3rem;
      }

      .footer-brand h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: var(--color-gold);
        text-transform: uppercase;
        letter-spacing: 2px;
      }

      .footer-brand p {
        max-width: 300px;
        margin-bottom: 1rem;
      }

      .footer-col h3 {
        font-size: 1.1rem;
        color: var(--color-white);
        margin-bottom: 1.5rem;
        font-family: var(--font-sans);
      }

      .footer-col ul li {
        margin-bottom: 0.8rem;
      }

      .footer-col ul li a:hover {
        color: var(--color-gold);
      }

      .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #222;
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
      }

      
      .notification {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background-color: #d4a574;
        color: #ffffff;
        padding: 1rem 2rem;
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        font-family: var(--font-sans);
        font-size: 0.95rem;
        z-index: 10000;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
      }

      .notification.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      
      @media (max-width: 768px) {
        .main-header {
          padding: 1rem;
          position: relative;
        }

        .burger-menu {
          display: flex;
        }

        .nav-menu {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background-color: #1a1a1a;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
        }

        .nav-menu.active {
          max-height: 500px;
          border-top: 1px solid rgba(197, 160, 89, 0.2);
        }

        .nav-menu ul {
          flex-direction: column;
          gap: 0;
          padding: 1rem 0;
        }

        .nav-menu li {
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-menu a {
          display: block;
          padding: 1rem 2rem;
          font-size: 0.9rem;
        }

        .hero-content {
          padding: 2rem;
        }
        .hero-content h1 {
          font-size: 2rem;
        }
        .hero-content h1 .line-1,
        .hero-content h1 .line-2,
        .hero-content h1 .line-3 {
          font-size: 1.8rem;
        }

        .intro-section {
          padding: 4rem 1rem;
        }

        .intro-title .line-1 {
          font-size: 1rem;
        }

        .intro-title .line-2 {
          font-size: 2rem;
        }

        .intro-grid {
          grid-template-columns: 1fr;
          padding: 0 1rem;
          gap: 2rem;
        }

        .intro-grid::before {
          display: none;
        }

        .intro-grid .intro-column-left {
          padding-right: 0;
          gap: 2rem;
        }

        .intro-grid .intro-column-right {
          padding-left: 0;
        }

        .intro-item {
          padding: 2rem;
        }

        .culinary-images {
          display: none;
        }
        .subscribe-container {
          flex-direction: column;
          gap: 2rem;
          padding: 1.5rem;
        }
        .subscribe-form {
          width: 80%;
        }
      }

      @media (max-width: 480px) {
        .hero-content h1 .line-1,
        .hero-content h1 .line-2,
        .hero-content h1 .line-3 {
          font-size: 1.5rem;
        }

        .hero-content p {
          font-size: 0.95rem;
        }

        .intro-title .line-2 {
          font-size: 1.6rem;
        }

        .intro-item {
          padding: 1.5rem;
          font-size: 0.9rem;
        }

        .notification {
          bottom: 1rem;
          right: 1rem;
          left: 1rem;
          padding: 0.9rem 1.5rem;
          font-size: 0.9rem;
        }
      }
