:root {
      --bg-main: #f6eee4;
      --bg-alt: #f0e1cd;
      --bg-dark: #2b1b14;
      --primary: #8b5e3c;
      --accent: #c7894a;
      --text-main: #3f2a20;
      --text-muted: #6f5545;
      --pill: #f7e1c4;
      --radius-card: 18px;
      --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.15);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: var(--bg-main);
      color: var(--text-main);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(1120px, 100% - 2rem);
      margin: 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.7rem 1.6rem;
      border-radius: 999px;
      border: none;
      background: var(--accent);
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      cursor: pointer;
      box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
      transition: background 0.20s ease, transform 0.15s ease, box-shadow 0.15s ease;
      white-space: nowrap;
    }

    .btn:hover {
      background: #ac6c30;
      transform: translateY(-1px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid rgba(63, 42, 32, 0.35);
      color: var(--text-main);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.85);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(246, 238, 228, 0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 0.8rem 0;
    }

    .logo {
      font-family: "Playfair Display", serif;
      font-size: 1.3rem;
      letter-spacing: 0.06em;
      color: var(--text-main);
    }

    .logo span {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      font-size: 0.95rem;
    }

    .nav-links a {
      position: relative;
      font-weight: 500;
      color: var(--text-muted);
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.35rem;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--accent);
      transition: width 0.18s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.4rem;
      cursor: pointer;
    }


    .hero {
      position: relative;
      min-height: 80vh;
      background-image: url("assets/hero-coffee.jpg"); 
      background-size: cover;
      background-position: center;
      color: #fff;
      display: flex;
      align-items: center;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 15% 20%, rgba(255, 219, 164, 0.15), transparent 55%),
      linear-gradient(120deg, rgba(21, 11, 6, 0.9), rgba(23, 12, 7, 0.75));
      z-index: -1;
    }

    .hero-inner {
      padding: 4.5rem 0 3.5rem;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
      gap: 3rem;
      align-items: center;
    }

    .hero-copy-eyebrow {
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      opacity: 0.85;
      margin-bottom: 0.8rem;
    }

    .hero-title {
      font-family: "Playfair Display", serif;
      font-size: clamp(2.3rem, 4vw, 3.2rem);
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      max-width: 420px;
      opacity: 0.9;
      margin-bottom: 1.6rem;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .hero-note {
      font-size: 0.8rem;
      opacity: 0.9;
    }

    .hero-image-card {
      background: rgba(35, 20, 13, 0.76);
      border-radius: 26px;
      padding: 1.2rem 1.2rem 1.4rem;
      box-shadow: 0 32px 50px rgba(0, 0, 0, 0.3);
      max-width: 360px;
      margin-left: auto;
    }

    .hero-image-card img {
      border-radius: 18px;
      margin-bottom: 0.9rem;
      object-fit: cover;
      height: 220px;
      width: 100%;
    }

    .hero-image-card h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.1rem;
      margin-bottom: 0.2rem;
    }

    .hero-image-card p {
      font-size: 0.85rem;
      color: #f1dfd1;
    }

    .section {
      padding: 4rem 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .section-kicker {
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-family: "Playfair Display", serif;
      font-size: 2rem;
      margin-bottom: 0.4rem;
    }

    .section-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 520px;
      margin: 0.1rem auto 0;
    }

    .story {
      background: #f2e3d3;
    }

    .story-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    .story-text p {
      margin-bottom: 0.9rem;
      font-size: 0.95rem;
      color: var(--text-main);
    }

    .story-text ul {
      margin-left: 1.1rem;
      margin-top: 0.4rem;
      color: var(--text-muted);
      font-size: 0.92rem;
    }

    .story-photo-stack {
      position: relative;
      max-width: 370px;
      margin: 0 auto;
    }

    .story-main-photo {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .story-tag {
      position: absolute;
      bottom: -14px;
      left: 10%;
      background: var(--pill);
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      font-size: 0.8rem;
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
    }

    .products {
      background: var(--bg-main);
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 1.8rem;
    }

    .product-card {
      background: #fff;
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
    }

    .product-card img {
      height: 180px;
      object-fit: cover;
    }

    .product-body {
      padding: 1rem 1.1rem 1.1rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .product-name {
      font-weight: 600;
      font-size: 0.98rem;
    }

    .product-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .product-price {
      font-weight: 600;
      color: var(--primary);
    }

    .pricing {
      background: #f1e1cd;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.8rem;
    }

    .pricing-card {
      background: #fff;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-soft);
      padding: 1.6rem 1.5rem 1.7rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .pricing-label {
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }

    .pricing-name {
      font-family: "Playfair Display", serif;
      font-size: 1.3rem;
    }

    .pricing-price-row {
      display: flex;
      align-items: baseline;
      gap: 0.35rem;
    }

    .price-new {
      font-weight: 700;
      color: var(--primary);
    }

    .price-old {
      font-size: 0.82rem;
      color: var(--text-muted);
      text-decoration: line-through;
    }

    .pricing-list {
      list-style: none;
      font-size: 0.9rem;
      color: var(--text-muted);
      margin: 0.4rem 0 0.8rem;
    }

    .pricing-list li::before {
      content: "•";
      margin-right: 0.4rem;
      color: var(--accent);
    }

    .btn-block {
      width: 100%;
      justify-content: center;
    }

    .events {
      background: var(--bg-main);
    }

    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.8rem;
    }

    .event-card {
      background: #fff;
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
    }

    .event-card img {
      height: 190px;
      object-fit: cover;
    }

    .event-body {
      padding: 1rem 1.1rem 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .event-body h3 {
      font-size: 1rem;
    }

    .event-body p {
      font-size: 0.86rem;
      color: var(--text-muted);
    }

    .event-meta {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }

    .link-btn {
      margin-top: 0.3rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      cursor: pointer;
    }

    .link-btn i {
      font-size: 0.8rem;
    }

    .cta-organizer {
      background: #e2c29d;
      border-radius: 20px;
      padding: 1.6rem 1.8rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 3rem;
    }

    .cta-organizer h3 {
      margin-bottom: 0.3rem;
      font-size: 1.1rem;
    }

    .cta-organizer p {
      font-size: 0.88rem;
      color: var(--text-muted);
      max-width: 480px;
    }

    .site-footer {
      background: #321f17;
      color: #f7e1ce;
      padding: 3rem 0 1.8rem;
      margin-top: 3rem;
      font-size: 0.86rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-brand h3 {
      font-family: "Playfair Display", serif;
      margin-bottom: 0.6rem;
    }

    .footer-brand p {
      color: #eacfb7;
    }

    .footer-block h4 {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #f3d5b1;
    }

    .footer-block p {
      margin-bottom: 0.2rem;
    }

    .footer-block i {
      margin-right: 0.4rem;
      color: var(--accent);
    }

    .footer-newsletter input {
      width: 100%;
      padding: 0.6rem 0.8rem;
      border-radius: 999px;
      border: none;
      margin-top: 0.4rem;
      margin-bottom: 0.7rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 0.8rem;
      text-align: center;
      color: #eacfb7;
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
      }

      .hero-image-card {
        margin: 0;
      }
    }

    @media (max-width: 768px) {
      .header-inner {
        padding-inline: 0.2rem;
      }

      .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        background: rgba(246, 238, 228, 0.98);
        padding: 1rem 1.5rem 1.4rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        transform-origin: top;
        transform: scaleY(0.8);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
      }

      .nav-links.nav-open {
        opacity: 1;
        pointer-events: auto;
        transform: scaleY(1);
      }

      .header-actions {
        display: none;
      }

      .nav-toggle {
        display: inline-flex;
        color: var(--text-main);
      }

      .hero {
        min-height: 70vh;
      }

      .hero-inner {
        padding-top: 3.6rem;
      }

      .cta-organizer {
        padding: 1.3rem 1.2rem;
      }
    }

    @media (max-width: 520px) {
      .section {
        padding-block: 3rem;
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-organizer h3 {
        font-size: 1rem;
      }
    }
    .brand-mark {
      width: 60px;
      height: 60px;
      border-radius: 10%;
      overflow: hidden;
      display: inline-block;
      margin-right: 12px;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: var(--bg-main);
      color: var(--text-main);
      min-height: 100vh;
    }


    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      z-index: 100;
    }

    .login-modal {
      background: var(--bg-main);
      border-radius: 24px;
      max-width: 960px;
      width: 100%;
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(139, 94, 60, 0.2);
      overflow: hidden;
    }

    .login-head {
      padding: 1rem 1.4rem;
      background: linear-gradient(135deg, #3a2418, #2b1b14);
      color: #f7e1c4;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .login-title {
      font-family: "Playfair Display", serif;
      font-size: 1.1rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .close {
      border: none;
      background: transparent;
      color: #f7e1c4;
      font-size: 0.9rem;
      cursor: pointer;
      padding: 0.3rem 0.6rem;
      border-radius: 999px;
      transition: background 0.15s ease, transform 0.12s ease;
    }

    .close:hover {
      background: rgba(247, 225, 196, 0.12);
      transform: translateY(-1px);
    }

    .contact-container {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 22px;
      padding: 18px 22px 22px;
    }

    .illustration-img {
      max-width: 400px;
      border-radius: 22px;
      object-fit: cover;
      box-shadow: var(--shadow-soft);
    }

    .contact {
      background: #fff7ec;
      border-radius: 20px;
      padding: 1.2rem 1.5rem 1.5rem;
      box-shadow: var(--shadow-soft);
      max-width: 380px;
      flex: 1 1 280px;
    }

    .profile-contact-img {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #f6eee4;
      margin-bottom: 0.4rem;
    }

    .contact h1 {
      font-size: 1.3rem;
      margin-bottom: 0.1rem;
    }

    .contact p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    .contact h4 {
      font-size: 0.88rem;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }

    .form-container {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .input-container {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      background: #ffffff;
      padding: 0.55rem 0.75rem;
      border-radius: 16px;
      border: 1px solid rgba(139, 94, 60, 0.18);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
    }

    .icon {
      margin-top: 0.25rem;
      font-size: 0.9rem;
      color: var(--accent);
    }

    .form-input {
      position: relative;
      width: 100%;
    }

    .input-item,
    .textarea {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      font-size: 0.9rem;
      font-family: inherit;
      padding: 0.25rem 0;
      color: var(--text-main);
    }

    .textarea {
      resize: vertical;
      min-height: 80px;
    }

    .form-label {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.78rem;
      color: var(--text-muted);
      pointer-events: none;
      transition: 0.15s ease;
    }

    .textarea + .form-label {
      top: 0.65rem;
      transform: none;
    }

    .input-item:focus + .form-label,
    .input-item:not(:placeholder-shown) + .form-label,
    .textarea:focus + .form-label,
    .textarea:not(:placeholder-shown) + .form-label {
      font-size: 0.68rem;
      top: -0.55rem;
      color: var(--accent);
    }

    .submit {
      margin-top: 0.4rem;
      width: 100%;
      border: none;
      border-radius: 999px;
      padding: 0.65rem 1.2rem;
      background: var(--accent);
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
      transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.12s ease;
    }

    .submit:hover {
      background: #ac6c30;
      transform: translateY(-1px);
      box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
    }

    @media (max-width: 768px) {
      .login-modal {
        max-width: 100%;
      }

      .illustration-img {
        max-width: 100%;
      }
    }

    @media (max-width: 480px) {
      .login-head {
        padding-inline: 1rem;
      }

      .contact {
        padding-inline: 1.1rem;
      }
    }