@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Lato:wght@400;700&display=swap");

:root {
      --primary-rose: #be185d;
      --cream: #fffbeb;
      --dark-brown: #451a03;
      --light-gray: #f5f5f0;
      --border-gray: #e0e0d0;
      --text-dark: #2d2d2d;
      --text-light: #666;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Lato', sans-serif;
      background-color: var(--cream);
      color: var(--text-dark);
      line-height: 1.7;
    }

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

    /* Header & Navigation */
    header {
      background-color: #fff;
      border-bottom: 1px solid var(--border-gray);
      padding: 1.5rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-cluster {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .brand-name {
      font-family: 'Nunito', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--dark-brown);
      letter-spacing: -0.5px;
    }

    .brand-tagline {
      font-size: 0.75rem;
      color: var(--primary-rose);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    nav {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    nav a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.3s ease;
      position: relative;
    }

    nav a:hover {
      color: var(--primary-rose);
    }

    nav a.active {
      color: var(--primary-rose);
    }

    nav a.active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--primary-rose);
    }

    /* Main Content */
    main {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0;
    }

    section {
      padding: 4rem 2rem;
    }

    h1, h2, h3 {
      font-family: 'Nunito', sans-serif;
      color: var(--dark-brown);
      margin-bottom: 1rem;
    }

    h1 {
      font-size: 3.5rem;
      font-weight: 700;
      letter-spacing: -1px;
      line-height: 1.1;
    }

    h2 {
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 0.5rem;
    }

    h3 {
      font-size: 1.3rem;
      font-weight: 600;
    }

    .subheading {
      font-size: 1.1rem;
      color: var(--primary-rose);
      font-weight: 600;
      margin-bottom: 2rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    p {
      color: var(--text-light);
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }

    /* Hero Section */
    #hero_restaurant {
      background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
      padding: 5rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-text h1 {
      margin-bottom: 1rem;
    }

    .hero-text .subheading {
      margin-bottom: 2rem;
    }

    .hero-text p {
      font-size: 1.05rem;
      margin-bottom: 2rem;
      max-width: 90%;
    }

    .hero-image {
      height: 500px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

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

    .cta-button {
      display: inline-block;
      background-color: var(--primary-rose);
      color: #fff;
      padding: 0.85rem 2rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
      width: fit-content;
    }

    .cta-button:hover {
      background-color: #a01650;
      transform: translateY(-2px);
    }

    /* Dining Identity Section */
    #dining_identity {
      background-color: #fff;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .dining-image {
      height: 450px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      order: -1;
    }

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

    .dining-text ul {
      list-style: none;
      margin-bottom: 2rem;
    }

    .dining-text li {
      padding-left: 2rem;
      margin-bottom: 1rem;
      position: relative;
      color: var(--text-light);
    }

    .dining-text li::before {
      content: '◆';
      position: absolute;
      left: 0;
      color: var(--primary-rose);
      font-size: 0.8rem;
    }

    /* Trust Credentials Section */
    #trust_credentials {
      background-color: var(--light-gray);
      padding: 3rem 2rem;
    }

    .trust-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .trust-container h2 {
      text-align: center;
      margin-bottom: 3rem;
    }

    .credentials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .credential-item {
      background-color: #fff;
      padding: 2rem;
      border-radius: 6px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border-top: 3px solid var(--primary-rose);
    }

    .credential-stat {
      font-family: 'Nunito', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--dark-brown);
      margin-bottom: 0.5rem;
    }

    .credential-label {
      font-size: 0.9rem;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Ambience Section */
    #ambience_intro {
      background-color: #fff;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .ambience-image {
      height: 450px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

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

    .ambience-text p {
      margin-bottom: 1.5rem;
    }

    .ambience-text strong {
      color: var(--dark-brown);
      font-weight: 700;
    }

    /* Visitor Journey Section */
    #visitor_journey {
      background-color: var(--cream);
      padding: 4rem 2rem;
    }

    .journey-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .journey-container h2 {
      text-align: center;
      margin-bottom: 3rem;
    }

    .journey-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .step-card {
      background-color: #fff;
      padding: 2rem;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .step-number {
      display: inline-block;
      width: 50px;
      height: 50px;
      background-color: var(--primary-rose);
      color: #fff;
      border-radius: 50%;
      line-height: 50px;
      text-align: center;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .step-card h3 {
      margin-bottom: 1rem;
      color: var(--dark-brown);
    }

    .step-card p {
      font-size: 0.95rem;
    }

    /* Closing Invitation Section */
    #closing_invitation {
      background: linear-gradient(135deg, var(--dark-brown) 0%, #5c2a0a 100%);
      color: var(--cream);
      padding: 5rem 2rem;
      text-align: center;
    }

    #closing_invitation h2 {
      color: var(--cream);
      margin-bottom: 1rem;
    }

    #closing_invitation .subheading {
      color: #ffd4e5;
    }

    #closing_invitation p {
      color: rgba(255, 251, 235, 0.9);
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .closing-cta {
      display: inline-block;
      background-color: var(--primary-rose);
      color: #fff;
      padding: 1rem 2.5rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .closing-cta:hover {
      background-color: #a01650;
      transform: translateY(-2px);
    }

    /* Footer */
    footer {
      background-color: var(--dark-brown);
      color: var(--cream);
      padding: 3rem 2rem 1.5rem;
      margin-top: 4rem;
    }

    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 2rem;
    }

    .footer-column h3 {
      color: var(--cream);
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      font-family: 'Nunito', sans-serif;
    }

    .footer-column p {
      color: rgba(255, 251, 235, 0.8);
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }

    .footer-column a {
      display: block;
      color: rgba(255, 251, 235, 0.8);
      text-decoration: none;
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: var(--cream);
    }

    .footer-nav {
      list-style: none;
    }

    .footer-nav li {
      margin-bottom: 0.8rem;
    }

    .footer-contact-info {
      font-size: 0.9rem;
      color: rgba(255, 251, 235, 0.8);
      line-height: 1.8;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 251, 235, 0.2);
      padding-top: 2rem;
      text-align: center;
      color: rgba(255, 251, 235, 0.6);
      font-size: 0.85rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      header {
        padding: 1rem;
      }

      .header-inner {
        flex-direction: column;
        gap: 1rem;
      }

      nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
      }

      nav a {
        width: 100%;
        text-align: center;
      }

      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 1.8rem;
      }

      #hero_restaurant,
      #dining_identity,
      #ambience_intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
      }

      .hero-image,
      .dining-image,
      .ambience-image {
        height: 300px;
      }

      .dining-image {
        order: 0;
      }

      section {
        padding: 3rem 1.5rem;
      }

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

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

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.5rem;
      }

      .brand-name {
        font-size: 1.2rem;
      }

      nav {
        gap: 1rem;
      }

      nav a {
        font-size: 0.85rem;
      }

      section {
        padding: 2rem 1rem;
      }

      #hero_restaurant,
      #dining_identity,
      #ambience_intro {
        padding: 2.5rem 1rem;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
