/*
Theme Name: BlazetideHK
Author: BlazetideHK
Version: 1.0
*/
<style>
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --obsidian:     #16161a;
    --charcoal:     #2c2c36;
    --graphite:     #38383f; /* slightly lighter panel bg */
    --slate:        #4a4a54;
    --mid:          #5e5e6a;
    --silver-dim:   #8a8a96;
    --silver:       #b0b0be;
    --silver-light: #d0d0dc;
    --platinum:     #e6e6ef;
    --white:        #f4f4f8;
    --gold:         #c9a96e;
    --gold-dim:     #9e7f4e;
    --gold-light:   #dfc28e;
    --border:       rgba(176,176,190,0.13);
    --border-mid:   rgba(176,176,190,0.22);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--charcoal);
    color: var(--silver-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--obsidian);
    border-bottom: 0.5px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 1.5rem;
    height: 64px;
  }

  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-decoration: none;
  }
  .logo span { color: var(--platinum); }

  .nav-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold);
    border: 0.5px solid var(--gold-dim);
    background: transparent;
    padding: 10px 20px; cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none; display: inline-block;
  }
  .nav-btn:hover { background: var(--gold); color: var(--obsidian); }

  /* ── SECTIONS ── */
  section { padding: 5rem 1.5rem; }

  .label {
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold-dim);
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .label::before {
    content: ''; display: block;
    width: 28px; height: 0.5px; background: var(--gold-dim);
    flex-shrink: 0;
  }

  .label-plain {
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 1.25rem;
    display: block;
  }

  h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300; line-height: 1.1;
    color: var(--platinum);
  }

  .em { color: var(--gold); font-style: italic; }

  .rule {
    width: 40px; height: 0.5px;
    background: var(--gold-dim);
    margin: 1.5rem 0 2rem;
  }

  p { color: var(--silver); font-size: 15px; line-height: 1.8; }
  
 #page > hr{
        display: none;
        margin-block-start: 0.5em;
        margin-block-end: 0.5em;
        margin-inline-start: auto;
        margin-inline-end: auto;
        color: gray;
        unicode-bidi: isolate;
        overflow: hidden;
        border-style: inset;
        border-width: 1px;
  }
  /* ── HERO ── */
  #hero {
    background: var(--obsidian);
    min-height: 90vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 5rem 1.5rem 4rem;
    position: relative; overflow: hidden;
  }

  /* FIX #1: Yunnan mountain photo background */
  #hero-photo {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1598337759408-f63a8e5d77f4?w=1800&q=85&fit=crop&crop=center');
    background-size: cover;
    background-position: center 35%;
    animation: heroZoom 20s ease-in-out infinite alternate;
    filter: brightness(0.55) saturate(0.85);
  }
  @keyframes heroZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.07); }
  }

  #hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(to top, rgba(22,22,26,0.92) 0%, rgba(22,22,26,0.3) 50%, rgba(22,22,26,0.15) 100%),
      radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  #hero .label { position: relative; z-index: 2; }

  #hero h1 {
    font-size: clamp(52px, 12vw, 72px);
    line-height: 1.0;
    position: relative; z-index: 2;
    margin-bottom: 2rem;
  }

  /* FIX #3: Crisp, legible hero paragraph — pure white with strong shadow */
  #hero p {
    max-width: 440px; font-size: 15px;
    position: relative; z-index: 2;
    color: #ffffff;
    text-shadow:
      0 1px 3px rgba(0,0,0,0.95),
      0 2px 10px rgba(0,0,0,0.8),
      0 4px 24px rgba(0,0,0,0.5);
  }

  .hero-bar {
    width: 180px; height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    margin-top: 3rem;
    position: relative; z-index: 2;
  }

  /* ── FIX #2: GOLD TICKER BANNER ── */
  #gold-banner {
    position: relative;
    background: linear-gradient(90deg, #110d00, #1e1500, #110d00);
    border-top: 0.5px solid var(--gold-dim);
    border-bottom: 0.5px solid var(--gold-dim);
    overflow: hidden;
    z-index: 10;
  }
  #gold-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg,
      transparent 0%, rgba(201,169,110,0.1) 40%,
      rgba(223,194,142,0.18) 50%, rgba(201,169,110,0.1) 60%, transparent 100%
    );
    animation: bannerShimmer 4s linear infinite;
    pointer-events: none;
  }
  @keyframes bannerShimmer {
    from { transform: translateX(-100%); }
    to   { transform: translateX(100%); }
  }
  .banner-wrap { overflow: hidden; padding: 0.85rem 0; }
  .banner-track {
    display: flex; align-items: center;
    white-space: nowrap;
    animation: bannerScroll 24s linear infinite;
    will-change: transform;
  }
  .banner-track:hover { animation-play-state: paused; }
  @keyframes bannerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .b-word {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.38em; text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 0 16px rgba(201,169,110,0.35);
    padding: 0 2.2rem;
  }
  .b-dot {
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--gold-dim); display: inline-block;
    flex-shrink: 0; opacity: 0.6;
  }

  /* ── ABOUT ── */
  #about { background: var(--graphite); }
  #about h2 { font-size: clamp(32px, 8vw, 48px); margin-bottom: 1rem; }

  /* ── STATS ── */
  #stats {
    background: var(--obsidian);
    padding: 0;
    display: grid; grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 3rem 1.5rem;
    border-right: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
  }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300;
    color: var(--gold);
    line-height: 1; margin-bottom: 0.5rem;
  }
  .stat-label {
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--silver-dim);
  }

  /* ── QUOTE ── */
  #quote {
    background: var(--obsidian);
    text-align: center;
    padding: 6rem 2rem;
    position: relative; overflow: hidden;
  }
  #quote::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,169,110,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 5vw, 32px);
    font-style: italic; font-weight: 300;
    color: var(--platinum);
    line-height: 1.5; max-width: 560px; margin: 0 auto 2rem;
    position: relative;
  }
  cite {
    font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold-dim); font-style: normal;
  }

  /* ── TEA CARDS ── */
  #collection { background: var(--charcoal); }
  #collection h2 { font-size: clamp(32px, 8vw, 48px); margin-bottom: 0.5rem; }

  .catalogue-link {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold);
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
    margin-bottom: 3rem;
  }
  .catalogue-link:hover { color: var(--gold-light); }

  .tea-card {
    background: var(--graphite);
    border: 0.5px solid var(--border);
    margin-bottom: 1.5rem;
    overflow: hidden;
  }

  .tea-img {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover; display: block;
    background: var(--slate);
  }

  .tea-img-placeholder {
    width: 100%; aspect-ratio: 4/3;
    background: var(--slate);
    display: flex; align-items: center; justify-content: center;
  }

  .tea-img-placeholder svg { opacity: 0.2; }

  .tea-body { padding: 1.75rem 1.5rem; }

  .tea-meta {
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold-dim); margin-bottom: 0.75rem;
  }

  .tea-body h3 {
    font-size: 28px; margin-bottom: 1rem;
  }

  .tea-body p { font-size: 14px; margin-bottom: 1.5rem; }

  .tea-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 0.5px solid var(--border);
    padding-top: 1.25rem;
  }

  .allocation {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-style: italic;
    color: var(--silver-dim);
  }

  .req-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--silver-light);
    border: 0.5px solid var(--silver-dim);
    background: transparent;
    padding: 10px 18px; cursor: pointer;
    transition: all 0.2s;
  }
  .req-btn:hover { border-color: var(--gold); color: var(--gold); }

  /* ── PROCESS ── */
  #process { background: var(--graphite); }
  #process h2 { font-size: clamp(32px, 8vw, 48px); margin-bottom: 0.75rem; }

  .process-item {
    padding: 2.5rem 0;
    border-bottom: 0.5px solid var(--border);
  }
  .process-item:last-child { border-bottom: none; }

  .process-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300;
    color: var(--gold-dim); opacity: 0.5;
    line-height: 1; margin-bottom: 0.5rem;
  }

  .process-item h3 {
    font-size: 22px; margin-bottom: 0.75rem;
  }

  /* ── WHOLESALE ── */
  #wholesale { background: var(--obsidian); }
  #wholesale h2 { font-size: clamp(32px, 8vw, 48px); margin-bottom: 0.75rem; }

  .features { margin: 2.5rem 0; list-style: none; }
  .features li {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 0.5px solid var(--border);
    font-size: 14px; color: var(--silver);
  }
  .features li:first-child { border-top: 0.5px solid var(--border); }
  .diamond {
    color: var(--gold);
    font-size: 10px; margin-top: 5px; flex-shrink: 0;
  }

  /* ── ENQUIRY FORM ── */
  #enquire { background: var(--charcoal); }
  #enquire h2 { font-size: clamp(28px, 7vw, 42px); margin-bottom: 0.5rem; }

  .field { margin-bottom: 1.75rem; }

  .field label {
    display: block;
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--silver-dim);
    margin-bottom: 0.6rem;
  }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
    background: var(--graphite);
    border: 0.5px solid var(--border-mid);
    color: var(--silver-light);
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 300;
    letter-spacing: 0.04em;
    outline: none;
    -webkit-appearance: none; appearance: none;
    transition: border-color 0.2s;
  }

  .field input::placeholder,
  .field textarea::placeholder {
    color: var(--mid);
    font-size: 13px;
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: var(--gold-dim);
  }

  .field textarea { min-height: 120px; resize: vertical; }

  .field select { cursor: pointer; color: var(--mid); }
  .field select option { background: var(--graphite); color: var(--silver-light); }

  .submit-btn {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase;
    background: var(--platinum);
    color: var(--obsidian);
    border: none; padding: 16px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }
  .submit-btn:hover { background: var(--gold-light); }

  /* ── FOOTER ── */
  footer {
    background: var(--obsidian);
    border-top: 0.5px solid var(--border);
    padding: 3.5rem 1.5rem 2rem;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400;
    color: var(--gold); margin-bottom: 1rem;
  }
  .footer-logo span { color: var(--platinum); }

  footer p { font-size: 13px; margin-bottom: 0.5rem; }

  footer a {
    color: var(--silver-dim);
    text-decoration: none; font-size: 13px;
  }
  footer a:hover { color: var(--gold); }

  .footer-nav-label {
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--silver-dim);
    margin-bottom: 1.25rem; margin-top: 2.5rem;
    display: block;
  }

  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 0.75rem; }

  .footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 0.5px solid var(--border);
    display: flex; flex-direction: column; gap: 0.5rem;
  }
  .footer-bottom span { font-size: 11px; color: var(--mid); }

  /* ── IMAGE PLACEHOLDERS ── */
  .img-ph {
    width: 100%; aspect-ratio: 4/3;
    background: var(--slate);
    display: flex; align-items: center; justify-content: center;
  }
  .img-ph-leaf {
    width: 48px; height: 48px; opacity: 0.18;
  }

  /* smooth fade-in on scroll via JS */
  .fade { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade.visible { opacity: 1; transform: none; }



</style>