@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --bg-deep:       #0d0b09;
  --bg-card:       #141210;
  --bg-elevated:   #1c1915;
  --gold:          #c9922a;
  --gold-light:    #e8b55a;
  --gold-pale:     #f3d48a;
  --green-deep:    #1a3a1e;
  --green-mid:     #2c6636;
  --green-bright:  #4aaa5c;
  --cream:         #e8dcc8;
  --cream-muted:   #a89880;
  --text-primary:  #f0e8d8;
  --text-muted:    #8a7a68;
  --border:        rgba(201,146,42,0.18);
  --shadow-gold:   0 8px 40px rgba(201,146,42,0.15);
  --shadow-deep:   0 20px 60px rgba(0,0,0,0.6);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:auto; }

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.8;
}

.nw-container {
  background-color: var(--bg-deep);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.nw-section { position: relative; }

/* ── HERO ── */
.nw-section-1 {
  height: 100vh;
  min-height: 600px;
  -webkit-clip-path: polygon(0 0,100% 0,100% 82%,0 100%);
  clip-path: polygon(0 0,100% 0,100% 75%,0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Hero background with pan animation */
.nw-section-1::before {
  content: '';
  position: absolute;
  inset: -15%;
  background-image:
    linear-gradient(160deg,rgba(13,11,9,.72) 0%,rgba(13,11,9,.28) 50%,rgba(13,11,9,.76) 100%),
    url(../img/coffee-bg.jfif);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: heroPan 20s ease-in-out infinite;
  z-index: 0;
}

.nw-section-1 > * { position: relative; z-index: 1; }

/* Desktop: smooth gentle pan */
@keyframes heroPan {
  0%   { transform: translate(0%,    0%)   scale(1.15); }
  25%  { transform: translate(-5%,  -5%)   scale(1.15); }
  50%  { transform: translate( 5%,  -5%)   scale(1.15); }
  75%  { transform: translate( 5%,   5%)   scale(1.15); }
  100% { transform: translate(-5%,   5%)   scale(1.15); }
}

/* Mobile: full-bleed cover — fills the entire hero */
@media (max-width: 768px) {
  .nw-section-1::before {
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    animation: none;
    transform: none;
    background-image:
      linear-gradient(
        180deg,
        rgba(13,11,9,0.70) 0%,
        rgba(13,11,9,0.30) 40%,
        rgba(13,11,9,0.55) 70%,
        rgba(13,11,9,0.90) 100%
      ),
      url(../img/coffee-bg.jfif);
  }
}

.nw-section-1::after {
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:1.5px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  z-index: 2;
}

/* ── HERO CIRCLE ── */
.nw-bg-circle-white {
  background: rgba(16,13,10,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 520px;
  height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(201,146,42,.2);
  transition: transform .4s ease, box-shadow .4s ease;
}

.nw-bg-circle-white:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 60px rgba(201,146,42,.28), inset 0 1px 0 rgba(201,146,42,.3);
}

.nw-bg-circle-white img {
  max-width: 280px;
  filter: brightness(1.1) drop-shadow(0 4px 16px rgba(201,146,42,.4));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}

.nw-bg-circle-pad-2 { padding-left: 110px; }

/* ── SECTION 3 – GOAL ── */
.nw-section-3 {
  min-height: 820px;
  -webkit-clip-path: polygon(0 12%,100% 0,100% 88%,0 100%);
  clip-path: polygon(0 12%,100% 0,100% 88%,0 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Section 3 background pan animation */
.nw-section-3::before {
  content: '';
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(160deg,rgba(13,11,9,.72) 0%,rgba(26,58,30,.45) 60%,rgba(13,11,9,.78) 100%),
    url(../img/coffee.jpeg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: coffeePan 22s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes coffeePan {
  0%   { transform: translate(0%,   0%)  scale(1.1); }
  40%  { transform: translate(-5%, -3%)  scale(1.1); }
  70%  { transform: translate( 4%, -1%)  scale(1.1); }
  100% { transform: translate( 1%,  4%)  scale(1.1); }
}

/* Mobile: Goal section — full-bleed cover, no movement */
@media (max-width: 768px) {
  .nw-section-3::before {
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: none;
    transform: none;
  }
}

.nw-section-3::after {
  content:'';
  position:absolute;
  left:0;right:0;bottom:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold-light),transparent);
  z-index: 1;
}

.nw-section-3 > * { position: relative; z-index: 2; }

/* Gold line at top of section 3 */
.nw-section-3-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,transparent,var(--gold-light),transparent);
  z-index: 3;
}

/* ── TYPE ── */
h1,h2,h3 {
  font-family:'Playfair Display',serif;
  letter-spacing:.02em;
}

.nw-color-primary  { color: var(--gold); }
.nw-color-secondary {
  color: var(--green-bright);
  font-weight: 400;
  line-height: 1.4;
}

p {
  color: var(--cream-muted);
  line-height: 1.9;
  font-weight: 300;
  font-size: 1rem;
}

/* ── BUTTONS ── */
.btn {
  padding: 12px 34px;
  font-size: .87rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.nw-btn-primary {
  color: var(--bg-deep);
  background-color: var(--gold);
  border-color: var(--gold);
}
.nw-btn-primary:hover,.nw-btn-primary:focus {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(201,146,42,.4);
}

.nw-btn-secondary {
  color: var(--text-primary);
  background-color: transparent;
  border-color: var(--green-bright);
}
.nw-btn-secondary:hover,.nw-btn-secondary:focus {
  background-color: var(--green-mid);
  border-color: var(--green-bright);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(74,170,92,.25);
}

a.btn:hover { color:inherit; text-decoration:none; }

/* ── IMAGES ── */
.nw-circle-img {
  width: 520px;
  max-width: 100%;
  border-radius: 50%;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  transition: transform .5s ease, box-shadow .5s ease;
  filter: brightness(.88) contrast(1.08);
}
.nw-circle-img:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 16px 60px rgba(201,146,42,.28), var(--shadow-deep);
  filter: brightness(.95) contrast(1.1);
}
.nw-circle-img-container { text-align:right; }

/* ── FORM ── */
.nw-text-container { max-width:440px; }
.nw-flex-center-v { display:flex; flex-direction:column; justify-content:center; }
.nw-contact-form  { max-width:300px; }

.form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,146,42,.35);
  border-radius: 0;
  color: var(--text-primary);
  font-family: 'Jost',sans-serif;
  font-weight: 300;
  padding: 12px 4px;
  transition: border-color .3s;
}
.form-control::placeholder { color:var(--text-muted); font-size:.9rem; letter-spacing:.05em; }
.form-control:focus {
  background-color: transparent;
  box-shadow: none;
  border-color: var(--gold);
  border-width: 1.5px;
  color: var(--text-primary);
  outline: none;
}
textarea.form-control { resize:none; }

.nw-send-btn { padding:10px 30px; letter-spacing:.15em; }

/* ── FOOTER ── */
footer.container {
  padding:40px 30px 30px;
  border-top:1px solid var(--border);
  margin-top:60px;
}
.nw-footer-text  { color:var(--text-muted); font-size:.82rem; letter-spacing:.06em; text-transform:uppercase; }
.nw-footer-link  { color:var(--gold); text-decoration:none; transition:color .2s; }
.nw-footer-link:hover,.nw-footer-link:focus { color:var(--gold-light); text-decoration:none; }

/* ── UTILITY ── */
.pt-2{padding-top:1.5rem;} .pb-2{padding-bottom:1.5rem;} .pb-3{padding-bottom:3rem;}
.mt-4{margin-top:2rem;}    .mb-0{margin-bottom:0;}        .mb-4{margin-bottom:1.5rem;}
.mb-5{margin-bottom:2.5rem;}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from{opacity:0;transform:translateY(24px);}
  to  {opacity:1;transform:translateY(0);}
}
.nw-section h2               { animation:fadeUp .8s .1s ease both; }
.nw-section p:first-of-type  { animation:fadeUp .8s .25s ease both; }
.nw-section .btn             { animation:fadeUp .8s .4s ease both; }

/* ── BOOTSTRAP CONTAINER OVERRIDES ── */
@media(min-width:576px){.container{max-width:none;}}
@media(min-width:768px){.container{max-width:720px;}}
@media(min-width:992px){.container{max-width:960px;}}
@media(min-width:1200px){.container{max-width:1060px;}}

/* ── FIXED NAV ── */
.nw-fixed-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 999;
  background: rgba(13,11,9,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: opacity 0.35s ease, transform 0.35s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.nw-fixed-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nw-fixed-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.nw-nav-logo-circle--sm {
  width: 44px !important;
  height: 44px !important;
  flex-shrink: 0;
}
.nw-nav-logo--sm {
  width: 34px !important;
  height: 34px !important;
}

/* ── SECTION ARROWS — always at bottom of each section ── */
.nw-section-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: rgba(13,11,9,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: arrowPulse 2.8s ease-in-out infinite;
}

.nw-section-arrow svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nw-section-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(201,146,42,0.55);
  animation: none;
}
.nw-section-arrow:hover svg { stroke: var(--bg-deep); }

@keyframes arrowPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(201,146,42,0.2); }
  50%       { box-shadow: 0 4px 28px rgba(201,146,42,0.5); }
}

/* Positioning */
.nw-section-arrow--up   { top: 72px; }
.nw-section-arrow--down { bottom: 18px; }

/* Hero down arrow above clipped bottom */
.nw-section-1 .nw-section-arrow--down { bottom: 16%; }

/* Goal section arrows adjusted for clip-path */
.nw-section-3 .nw-section-arrow--up   { top: 16%; }
.nw-section-3 .nw-section-arrow--down { bottom: 11%; }

/* ── HERO NAV ── */
.nw-hero-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  z-index: 100;
  background: linear-gradient(180deg, rgba(13,11,9,0.85) 0%, transparent 100%);
  flex-wrap: nowrap;
  gap: 8px;
}

.nw-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nw-nav-logo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 3px rgba(201,146,42,0.3);
  overflow: hidden;
  flex-shrink: 0;
}

.nw-nav-logo {
  width: 145px;
  height: 145px;
  object-fit: contain;
}

.nw-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.nw-nav-link {
  color: #FFFFFF;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.nw-nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nw-nav-link:hover { color: var(--gold-pale); text-decoration: none; }
.nw-nav-link:hover::after { transform: scaleX(1); }

.nw-nav-link-cta {
  color: var(--bg-deep);
  background-color: var(--gold);
  border-color: var(--gold);
  font-weight: 500;
}
.nw-nav-link-cta::after { display: none; }
.nw-nav-link-cta:hover {
  color: var(--bg-deep);
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,146,42,0.35);
}

/* ── BUY NOW SECTION ── */
.nw-buynow-section { padding: 100px 0; }
.nw-buynow-content { max-width: 480px; }
.nw-buynow-features { list-style: none; padding: 0; margin: 0; }
.nw-buynow-features li {
  color: var(--cream-muted);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.nw-buynow-features li:first-child { border-top: 1px solid var(--border); }
.nw-buynow-right { margin-bottom: 50px; }

/* ─────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
───────────────────────────────────────── */
@media(max-width:992px) {
  .nw-bg-circle-white { margin-left:auto; margin-right:auto; }
  .nw-section-left    { margin:50px auto; }
  .nw-circle-img-container { text-align:center; }
  .nw-contact-form { max-width:100%; padding-left:30px; padding-right:30px; }
  .nw-contact-right { margin-bottom:50px; }
  .nw-footer-text { margin-left:30px; margin-right:30px; }
  .nw-buynow-content { max-width:100%; padding:0 30px; margin-bottom:50px; }
}

@media(max-width:768px) {
  /* Fixed nav — one tight row */
  .nw-fixed-nav-inner {
    padding: 8px 14px;
    flex-wrap: nowrap;
    gap: 4px;
  }
  .nw-nav-logo-circle--sm { width:36px !important; height:36px !important; }
  .nw-nav-logo--sm        { width:26px !important; height:26px !important; }
  .nw-fixed-nav .nw-nav-links { flex-wrap:nowrap; gap:2px; }
  .nw-fixed-nav .nw-nav-link  { font-size:0.66rem; padding:6px 9px; letter-spacing:0.05em; }
  .nw-fixed-nav .nw-nav-link::after { display:none; }

  /* Hero nav — one row */
  .nw-hero-nav {
    padding: 10px 14px;
    flex-wrap: nowrap;
    gap: 6px;
    background: rgba(13,11,9,0.9);
  }
  .nw-nav-logo-circle { width:180px; height:180px; }
  .nw-nav-logo        { width:145px; height:145px; }
  .nw-nav-links { flex-wrap:nowrap; gap:2px; }
  .nw-nav-link  { font-size:0.7rem; padding:6px 10px; letter-spacing:0.05em; }

  .nw-section-arrow { width:42px; height:42px; }
  .nw-section-arrow svg { width:18px; height:18px; }
}

@media(max-width:576px) {
  .nw-bg-circle-white { border-radius:28px; width:100%; height:auto; padding:40px 30px; }
  .nw-bg-circle-white img { max-width:200px; }
  img.nw-circle-img { max-width:90%; width:90%; margin:0 auto; display:block; }
  .nw-circle-img-container { margin-bottom:30px; text-align:center; }
  .nw-text-container { max-width:100%; }
  .nw-bg-circle-pad-2 { padding-left:30px; }
  h2 { font-size:1.45rem; }

  .nw-section-1 {
    min-height: 100vh;
    -webkit-clip-path: polygon(0 0,100% 0,100% 94%,0 100%);
    clip-path: polygon(0 0,100% 0,100% 94%,0 100%);
  }
  .nw-section-1 .nw-section-arrow--down { bottom:7%; }

  .nw-section-3 {
    min-height:auto;
    padding-top:130px; padding-bottom:130px;
    -webkit-clip-path:polygon(0 6%,100% 0,100% 94%,0 100%);
    clip-path:polygon(0 6%,100% 0,100% 94%,0 100%);
  }
  .nw-section-3 .nw-section-arrow--up   { top: 10%; }
  .nw-section-3 .nw-section-arrow--down { bottom: 8%; }

  /* Hero nav very small */
  .nw-hero-nav {
    padding: 8px 10px;
    flex-wrap: nowrap;
    gap: 4px;
    background: rgba(13,11,9,0.92);
  }
  .nw-nav-logo-circle { width:180px; height:180px; }
  .nw-nav-logo        { width:145px; height:145px; }
  .nw-nav-link { font-size:0.6rem; padding:5px 7px; letter-spacing:0.03em; }

  /* Fixed nav very small */
  .nw-fixed-nav-inner { padding:6px 10px; }
  .nw-fixed-nav .nw-nav-link { font-size:0.6rem; padding:5px 7px; letter-spacing:0.03em; }

  .nw-buynow-section { padding:60px 0; }
  .nw-buynow-content { padding:0 16px; }
}

@media(max-width:380px) {
  .nw-nav-logo-circle { width:150px; height:150px; }
  .nw-nav-logo        { width:120px; height:120px; }
  .nw-nav-link { font-size:0.56rem; padding:4px 6px; }
}

/* ── ANDROID WIDE PHONE FIX (431px–500px: Galaxy S-series, Pixel 9, etc.) ──
   These devices sit wider than iPhone 14 Pro Max (430px) but narrower than
   576px, so they were getting tablet-scale styles. This block gives them
   the same compact phone treatment as ≤576px. */
@media (min-width: 431px) and (max-width: 500px) {
  /* Nav logo — match the ≤576px shrink */
  .nw-nav-logo-circle { width:180px; height:180px; transform:scale(0.55); transform-origin:left center; }
  .nw-nav-logo        { width:145px; height:145px; }
  .nw-nav-link        { font-size:0.6rem; padding:5px 7px; letter-spacing:0.03em; }

  /* Hero nav */
  .nw-hero-nav { padding:8px 10px; gap:4px; background:rgba(13,11,9,0.92); }

  /* Fixed nav */
  .nw-fixed-nav-inner { padding:6px 10px; }
  .nw-fixed-nav .nw-nav-link { font-size:0.6rem; padding:5px 7px; letter-spacing:0.03em; }

  /* Section 1 clip & arrow */
  .nw-section-1 {
    min-height:100vh;
    -webkit-clip-path:polygon(0 0,100% 0,100% 94%,0 100%);
    clip-path:polygon(0 0,100% 0,100% 94%,0 100%);
  }
  .nw-section-1 .nw-section-arrow--down { bottom:7%; }

  /* Section 3 */
  .nw-section-3 {
    min-height:auto;
    padding-top:130px; padding-bottom:130px;
    -webkit-clip-path:polygon(0 6%,100% 0,100% 94%,0 100%);
    clip-path:polygon(0 6%,100% 0,100% 94%,0 100%);
  }
  .nw-section-3 .nw-section-arrow--up   { top:10%; }
  .nw-section-3 .nw-section-arrow--down { bottom:8%; }

  /* Typography */
  h2 { font-size:1.45rem; }

  /* Images & layout */
  .nw-bg-circle-white { border-radius:28px; width:100%; height:auto; padding:40px 30px; }
  .nw-bg-circle-white img { max-width:200px; }
  img.nw-circle-img { max-width:90%; width:90%; margin:0 auto; display:block; }
  .nw-circle-img-container { margin-bottom:30px; text-align:center; }
  .nw-text-container { max-width:100%; }
  .nw-bg-circle-pad-2 { padding-left:30px; }

  /* Buy now */
  .nw-buynow-section { padding:60px 0; }
  .nw-buynow-content { padding:0 16px; }

  /* Mobile hero overlay */
  .nw-mobile-hero-content { padding-bottom:80px; padding-top:170px; }
}


/* ── MOBILE HERO CONTENT ── */
.nw-mobile-hero-content {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .nw-mobile-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 0 24px 100px;
    position: absolute;
    inset: 0;
    z-index: 10;
    padding-top: 200px; /* clear the nav */
  }

  .nw-mobile-hero-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(201,146,42,0.45);
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
    background: rgba(13,11,9,0.4);
    backdrop-filter: blur(6px);
    animation: fadeUp 0.7s 0.1s ease both;
  }

  .nw-mobile-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 12vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    margin-bottom: 18px;
    text-shadow: 0 4px 32px rgba(0,0,0,0.7);
    animation: fadeUp 0.7s 0.2s ease both;
  }

  .nw-mobile-hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .nw-mobile-hero-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(232, 220, 200, 0.85);
    line-height: 1.65;
    max-width: 300px;
    margin: 0 auto 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    animation: fadeUp 0.7s 0.32s ease both;
  }

  .nw-mobile-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    animation: fadeUp 0.7s 0.42s ease both;
  }

  .nw-tag {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--cream);
    background: rgba(13,11,9,0.55);
    border: 1px solid rgba(201,146,42,0.3);
    padding: 5px 12px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
  }

  .nw-mobile-hero-cta {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: var(--gold);
    border: 1px solid var(--gold);
    padding: 14px 38px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(201,146,42,0.45);
    animation: fadeUp 0.7s 0.52s ease both;
  }

  .nw-mobile-hero-cta:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--bg-deep);
    box-shadow: 0 8px 40px rgba(201,146,42,0.6);
    text-decoration: none;
  }

  /* Hide the mobile hero content from the arrow stacking context */
  .nw-section-1 .nw-section-arrow--down {
    bottom: 12%;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .nw-mobile-hero-content {
    padding-bottom: 80px;
    padding-top: 170px;
  }
}

/* Ensure Samsung-width (480px) mobile hero sub-text has room */
@media (min-width: 431px) and (max-width: 500px) {
  .nw-mobile-hero-sub { max-width: 360px; }
  .nw-mobile-hero-title { font-size: clamp(2.6rem, 10vw, 3.4rem); }
}


@media (max-width: 768px) {
  .nw-nav-logo-circle {
    transform: scale(0.55);
    transform-origin: left center;
  }
}

@media (max-width: 768px) {
  .nw-section-1 .nw-section-arrow--down {
    display: none;
  }
}
