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

    :root {
      --ink:       #0f0f0f;
      --cream:     #f5f0e8;
      --dark:      #1a1a2e;
      --charcoal:  #1e1e1e;
      --amber:     #c8860a;
      --gold:      #e8a020;
      --steel:     #4a6fa5;
      --steelLight:#7da3d0;
      --white:     #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--ink);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 4rem;
      background: rgba(15,15,15,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(200,134,10,0.25);
    }
    .nav-brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 1.1rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
    }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      color: var(--cream); text-decoration: none;
      font-size: 0.85rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      opacity: 0.8; transition: opacity 0.2s, color 0.2s;
    }
    .nav-links a:hover { opacity: 1; color: var(--gold); }

    /* ── HERO ── */
    .hero {
      position: relative; height: 100vh; min-height: 640px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('_media/hero-bg.jpg') center/cover no-repeat;
      transform: scale(1.05);
      animation: heroZoom 18s ease-in-out infinite alternate;
    }
    @keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(26,26,46,0.65) 60%, rgba(15,15,15,0.88) 100%);
    }
    .hero-logo {
      width: min(280px, 60vw); height: auto;
      margin: 0 auto 1.5rem;
      display: block;
      border-radius: 8px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.5);
      animation: fadeUp 0.8s ease both;
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center; padding: 2rem;
      animation: fadeUp 1s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 0.9rem;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1rem;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-weight: 900; font-size: clamp(3.5rem, 9vw, 7.5rem);
      line-height: 0.95; color: var(--white);
      margin-bottom: 0.4rem;
    }
    .hero-title span { color: var(--gold); font-style: italic; }
    .hero-subtitle {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: clamp(1.2rem, 3vw, 2rem);
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--steelLight); margin-bottom: 2rem;
    }
    .hero-tagline {
      font-size: 1rem; font-weight: 300;
      color: rgba(245,240,232,0.7);
      font-style: italic; margin-bottom: 2.5rem;
      letter-spacing: 0.03em;
    }
    .btn {
      display: inline-block; padding: 0.9rem 2.4rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 0.9rem;
      letter-spacing: 0.15em; text-transform: uppercase;
      text-decoration: none; border-radius: 2px;
      transition: all 0.25s;
    }
    .btn-primary {
      background: var(--amber); color: var(--white);
      border: 2px solid var(--amber);
    }
    .btn-primary:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
    .btn-outline {
      background: transparent; color: var(--cream);
      border: 2px solid rgba(245,240,232,0.4); margin-left: 1rem;
    }
    .btn-outline:hover { border-color: var(--cream); transform: translateY(-2px); }
    .scroll-hint {
      position: absolute; bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
      color: rgba(245,240,232,0.4); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      animation: bounce 2.5s ease-in-out infinite;
    }
    @keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
    .scroll-hint svg { width: 20px; opacity: 0.5; }

    /* ── SECTION BASE ── */
    section { padding: 7rem 2rem; }
    .container { max-width: 1160px; margin: 0 auto; }
    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 0.8rem;
      letter-spacing: 0.35em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.8rem);
      line-height: 1.05; margin-bottom: 1.5rem;
    }
    .divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--amber), var(--gold));
      margin-bottom: 2rem; border-radius: 2px;
    }

    /* ── STORY ── */
    #story { background: var(--charcoal); }
    .story-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    .story-image {
      position: relative;
    }
    .story-image img {
      width: 100%; border-radius: 4px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
      display: block;
    }
    .story-image::before {
      content: '';
      position: absolute; inset: -12px -12px 12px 12px;
      border: 2px solid var(--amber); border-radius: 4px;
      z-index: 0; opacity: 0.5;
    }
    .story-image img { position: relative; z-index: 1; }
    .story-text p {
      font-size: 1.05rem; line-height: 1.8;
      color: rgba(245,240,232,0.8); margin-bottom: 1.4rem;
    }
    .story-text p strong { color: var(--gold); font-weight: 600; }
    .pull-quote {
      border-left: 3px solid var(--amber);
      padding: 1rem 1.5rem;
      margin: 2rem 0;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--cream);
      background: rgba(200,134,10,0.08);
      border-radius: 0 4px 4px 0;
    }

    /* ── COFFEE ── */
    #coffee { background: #111118; }
    .coffee-layout {
      display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center;
    }
    .coffee-details { order: -1; }
    .coffee-image img {
      width: 100%; border-radius: 4px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.7);
      display: block;
    }
    .coffee-spec {
      display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
    }
    .spec-chip {
      padding: 0.5rem 1.2rem;
      background: rgba(200,134,10,0.12);
      border: 1px solid rgba(200,134,10,0.35);
      border-radius: 2px;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold);
    }
    .coffee-details p {
      font-size: 1.05rem; line-height: 1.8;
      color: rgba(245,240,232,0.8); margin-bottom: 1.4rem;
    }

    /* ── GALLERY ── */
    #gallery { background: var(--charcoal); padding: 5rem 2rem; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 1rem;
      margin-top: 3rem;
    }
    .gallery-grid img {
      width: 100%; height: 280px; object-fit: cover;
      border-radius: 3px; display: block;
      transition: transform 0.4s, filter 0.4s;
      filter: brightness(0.88) saturate(0.9);
    }
    .gallery-grid img:hover { transform: scale(1.02); filter: brightness(1) saturate(1.1); }
    .gallery-grid img:first-child {
      grid-column: span 2; height: 340px;
    }

    /* ── FIND US ── */
    #findus { background: #0a0a10; }
    .findus-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
    }
    .findus-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(200,134,10,0.2);
      border-radius: 4px; padding: 2.5rem;
    }
    .findus-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 1.3rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.5rem;
    }
    .contact-item {
      display: flex; align-items: flex-start; gap: 1rem;
      margin-bottom: 1.2rem; color: rgba(245,240,232,0.75);
      font-size: 0.95rem; line-height: 1.5;
    }
    .contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--amber); }
    .contact-item a { color: rgba(245,240,232,0.75); text-decoration: none; }
    .contact-item a:hover { color: var(--gold); }
    .mhm-link {
      display: inline-flex; align-items: center; gap: 0.6rem;
      margin-top: 2rem; padding: 0.9rem 2rem;
      background: transparent;
      border: 2px solid var(--steel);
      border-radius: 2px; color: var(--steelLight);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 0.85rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      text-decoration: none;
      transition: all 0.25s;
    }
    .mhm-link:hover { background: var(--steel); color: var(--white); transform: translateY(-2px); }
    .map-placeholder {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 4px; overflow: hidden;
      height: 320px; display: flex; align-items: center; justify-content: center;
    }
    .map-placeholder iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) invert(0.85) hue-rotate(180deg); }

    /* ── FOOTER ── */
    footer {
      background: #080808;
      border-top: 1px solid rgba(200,134,10,0.2);
      padding: 3rem 2rem; text-align: center;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 900; font-size: 1.6rem;
      color: var(--gold); margin-bottom: 0.5rem;
    }
    .footer-sub {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; font-size: 0.8rem;
      color: var(--steelLight); margin-bottom: 1.5rem;
    }
    .footer-copy {
      font-size: 0.8rem; color: rgba(245,240,232,0.3);
    }
    .footer-copy a { color: rgba(245,240,232,0.4); text-decoration: none; }
    .footer-copy a:hover { color: var(--gold); }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { gap: 1.5rem; }
      .story-grid, .coffee-layout, .findus-grid { grid-template-columns: 1fr; gap: 3rem; }
      .coffee-details { order: 0; }
      .story-image::before { display: none; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid img:first-child { grid-column: span 2; }
      section { padding: 5rem 1.5rem; }
    }
    @media (max-width: 480px) {
      .nav-links { display: none; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-grid img:first-child { grid-column: span 1; }
    }
    /* ── CONTACT FORM ── */
    #contact { background: #111118; }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: start; margin-top: 1rem;
    }
    .contact-copy p {
      font-size: 1.05rem; line-height: 1.8;
      color: rgba(245,240,232,0.8); margin-bottom: 1.4rem;
    }
    .contact-copy p strong { color: var(--gold); font-weight: 600; }
    .contact-copy a { color: var(--gold); text-decoration: none; }
    .contact-copy a:hover { color: var(--amber); }

    .contact-form {
      display: flex; flex-direction: column;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(200,134,10,0.2);
      border-radius: 4px; padding: 2.5rem;
      transition: height 0.45s ease; overflow: hidden;
    }
    .contact-form-fields { transition: opacity 0.3s ease; }
    .contact-form-fields.fading { opacity: 0; }

    .form-row { margin-bottom: 1.2rem; }
    .form-row label {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 0.8rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 0.5rem;
    }
    .form-row label .optional {
      color: rgba(245,240,232,0.4); font-weight: 500;
      letter-spacing: 0.06em;
    }
    .form-row input,
    .form-row textarea {
      width: 100%; padding: 0.8rem 0.95rem;
      border-radius: 3px;
      border: 1px solid rgba(245,240,232,0.15);
      background: rgba(0,0,0,0.25);
      color: var(--cream);
      font-family: 'Barlow', sans-serif; font-size: 0.95rem;
      transition: border-color 0.2s;
    }
    .form-row input::placeholder,
    .form-row textarea::placeholder { color: rgba(245,240,232,0.35); }
    .form-row input:focus,
    .form-row textarea:focus { outline: none; border-color: var(--gold); }
    .form-row textarea { min-height: 130px; resize: vertical; }

    /* Honeypot: hidden from real visitors, visible to bots */
    .form-hp {
      position: absolute; left: -9999px;
      width: 1px; height: 1px; overflow: hidden;
    }

    .contact-form .btn {
      width: 100%; text-align: center; cursor: pointer;
      border: 2px solid var(--amber);
    }
    .contact-form .btn:disabled {
      opacity: 0.45; cursor: not-allowed;
      transform: none; pointer-events: none;
    }

    .form-status {
      margin-top: 1rem; font-size: 0.9rem;
      line-height: 1.5; display: none;
    }
    .form-status.error { display: block; color: #ff6b6b; }

    /* Success state: replaces the fields with an animated checkmark */
    .contact-success {
      display: none; flex: 1;
      flex-direction: column; align-items: center; justify-content: center;
      gap: 1.25rem; text-align: center; padding: 1.5rem 0;
    }
    .contact-success.visible { display: flex; }
    .success-check { width: 64px; height: 64px; flex-shrink: 0; }
    .success-check-circle {
      fill: none; stroke: var(--gold); stroke-width: 2;
      stroke-dasharray: 151; stroke-dashoffset: 151;
      animation: success-circle 0.5s ease-out forwards;
    }
    .success-check-mark {
      fill: none; stroke: var(--gold); stroke-width: 3;
      stroke-linecap: round; stroke-linejoin: round;
      stroke-dasharray: 40; stroke-dashoffset: 40;
      animation: success-mark 0.3s ease-out 0.4s forwards;
    }
    .contact-success p {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem; color: var(--cream); line-height: 1.6;
      opacity: 0; animation: success-fade 0.4s ease-out 0.55s forwards;
    }
    @keyframes success-circle { to { stroke-dashoffset: 0; } }
    @keyframes success-mark   { to { stroke-dashoffset: 0; } }
    @keyframes success-fade   { to { opacity: 1; } }
    @media (prefers-reduced-motion: reduce) {
      .success-check-circle, .success-check-mark, .contact-success p {
        animation: none; stroke-dashoffset: 0; opacity: 1;
      }
    }

    @media (max-width: 768px) {
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    }
