/* ============ CABINOX — base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #ffffff;
  color: #0f172a;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.italic { font-style: italic; }
.accent { color: #2563eb; }

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom-color: rgba(15, 23, 42, 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  letter-spacing: 0.02em;
}
.logo span { color: #2563eb; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #2563eb; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 999px;
  font-size: 13px;
  color: #2563eb;
  transition: all 0.2s ease;
}
.nav-cta:hover { background: #2563eb; color: #ffffff; border-color: #2563eb; }
.nav-toggle { display: none; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 40%, rgba(37, 99, 235, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 70% at 20% 80%, rgba(37, 99, 235, 0.04), transparent 60%),
    #ffffff;
  z-index: 0;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #2563eb;
  margin-bottom: 32px;
}
.eyebrow::before {
  content: ""; display: block; width: 32px; height: 1px; background: #2563eb;
}
.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: #2563eb;
}
.hero p.lede {
  font-size: 18px;
  line-height: 1.65;
  color: #475569;
  max-width: 520px;
  margin: 0 0 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary { background: #2563eb; color: #ffffff; }
.btn-primary:hover { background: #3b7af0; transform: translateY(-1px); }
.btn-ghost { border-color: rgba(15, 23, 42, 0.18); color: #0f172a; }
.btn-ghost:hover { border-color: #2563eb; color: #2563eb; }
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(140deg, #f8fafc 0%, #eef2f7 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-visual-tag {
  position: absolute; top: 24px; left: 24px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: #94a3b8;
}
.hero-visual-tag-r {
  position: absolute; bottom: 24px; right: 24px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  color: #94a3b8;
}
.hero-visual svg.cabin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 75%; max-width: 380px; opacity: 0.85;
}
.hero-visual-note {
  position: absolute; bottom: 24px; left: 24px; right: 100px;
  font-size: 11px; color: #94a3b8;
  font-family: 'Space Grotesk', monospace;
}

/* Hero meta strip */
.hero-meta {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hero-meta-item .num {
  font-family: 'Instrument Serif', serif;
  font-size: 36px;
  color: #0f172a;
  display: block;
  line-height: 1;
}
.hero-meta-item .lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
  margin-top: 8px;
  display: block;
}

/* ============ Sections ============ */
section { position: relative; }
.section-pad { padding: 140px 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: #2563eb; margin-bottom: 24px;
}
.section-eyebrow::before { content: ""; width: 32px; height: 1px; background: #2563eb; }
.section-title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.section-title em { font-style: italic; color: #2563eb; }
.section-sub {
  font-size: 17px; color: #475569; max-width: 620px; line-height: 1.6; margin: 0;
}
.section-head { margin-bottom: 80px; }

/* ============ About ============ */
.about { background: #ffffff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(160deg, #f1f3f8 0%, #f6f7fb 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.about-visual-label {
  position: absolute; top: 24px; left: 24px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: #94a3b8;
}
.about-visual svg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 70%; opacity: 0.8;
}
.about-text h2 { margin-bottom: 32px; }
.about-text p {
  font-size: 17px; line-height: 1.7; color: #475569; margin: 0 0 20px;
}
.about-text p:first-of-type { color: #1e293b; font-size: 19px; }
.about-stats {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.about-stats.about-stats-2 { grid-template-columns: repeat(2, 1fr); max-width: 420px; }
.about-stats .num {
  font-family: 'Instrument Serif', serif;
  font-size: 44px; line-height: 1; color: #2563eb;
  display: block;
}
.about-stats .lbl {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: #64748b; margin-top: 10px; display: block;
}

/* ============ Products ============ */
.products { background: #ffffff; padding-top: 0; }
.products-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; margin-bottom: 64px; }
.products-head .left { max-width: 720px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.10);
}
.product-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 100%);
  overflow: hidden;
}
.product-img::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.product-img svg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 70%; max-width: 220px; opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.5s ease;
}
.product-card:hover .product-img svg { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
.product-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.product-num {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Instrument Serif', serif;
  font-size: 14px; color: #2563eb;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.05em;
}
.product-tag {
  position: absolute; bottom: 16px; right: 16px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
  color: #64748b;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 10px; border-radius: 999px;
}
.product-body { padding: 24px 24px 28px; }
.product-body h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.product-body p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 20px;
}
.product-link {
  font-size: 13px;
  color: #2563eb;
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.02em;
  transition: gap 0.2s ease;
}
.product-link:hover { gap: 14px; }

/* ============ Contact ============ */
.contact { background: #f6f7fb; border-top: 1px solid rgba(15, 23, 42, 0.08); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info h2 { margin-bottom: 32px; }
.contact-info p { font-size: 17px; color: #475569; line-height: 1.7; margin: 0 0 40px; max-width: 480px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 40px; display: grid; gap: 20px; }
.contact-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-list .icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  display: grid; place-items: center;
  color: #2563eb;
}
.contact-list .icon svg { width: 18px; height: 18px; }
.contact-list .label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: #94a3b8; display: block; margin-bottom: 4px;
}
.contact-list .value { font-size: 15px; color: #1e293b; }
.contact-list .value:hover { color: #2563eb; }
/* WhatsApp QR card */
.wa-qr-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  margin-bottom: 32px;
}
.wa-qr-img {
  flex-shrink: 0;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  display: grid;
  place-items: center;
}
.wa-qr-img img { display: block; width: 120px; height: 120px; }
.wa-qr-text { min-width: 0; }
.wa-qr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #25D366;
  font-weight: 500;
  margin-bottom: 6px;
}
.wa-qr-text p {
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
  margin: 0 0 10px;
}
.wa-qr-link {
  font-size: 13px;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.wa-qr-link:hover { gap: 10px; }
@media (max-width: 480px) {
  .wa-qr-card { flex-direction: column; align-items: flex-start; gap: 16px; text-align: left; }
}

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: grid; place-items: center;
  color: #64748b;
  transition: all 0.2s ease;
}
.social-row a:hover { border-color: #2563eb; color: #2563eb; }
.social-row svg { width: 18px; height: 18px; }

/* Form */
.contact-form {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.contact-form h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 8px;
}
.contact-form .form-sub {
  font-size: 14px; color: #64748b; margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: block; margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: #94a3b8; margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: #0f172a;
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 3px;
  transition: border-color 0.2s ease;
  font-family: inherit;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #2563eb;
}
.form-submit {
  width: 100%;
  background: #2563eb;
  color: #ffffff;
  padding: 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 8px;
  transition: background 0.2s ease;
}
.form-submit:hover { background: #3b7af0; }
.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 4px;
  color: #2563eb;
  font-size: 14px;
  display: none;
}
.form-success.show { display: block; }

/* ============ Footer ============ */
.footer { background: #ffffff; border-top: 1px solid rgba(15, 23, 42, 0.08); padding: 48px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-copy { font-size: 13px; color: #94a3b8; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: #64748b; }
.footer-links a:hover { color: #2563eb; }

/* ============ WhatsApp button ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.5s ease-out infinite;
  transition: transform 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-fab:hover .whatsapp-tip { opacity: 1; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 96px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual, .about-visual { aspect-ratio: 5 / 4; max-height: 480px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .products-head { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    padding: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    gap: 20px;
  }
  .nav-toggle {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0f172a;
  }
  .nav-cta { display: none; }
  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about-stats .num { font-size: 32px; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .whatsapp-fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}


/* ============ Council notice bar ============ */
.notice-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 110;
  background: #0f172a;
  color: #f8fafc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}
.notice-bar.hidden { transform: translateY(-100%); pointer-events: none; }
.notice-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 32px;
}
.notice-icon {
  flex-shrink: 0;
  color: #fbbf24;
}
.notice-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #cbd5e1;
  flex: 1;
}
.notice-text strong { color: #ffffff; font-weight: 600; margin-right: 4px; }
.notice-close {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #94a3b8;
  transition: background 0.2s ease, color 0.2s ease;
}
.notice-close:hover { background: rgba(255, 255, 255, 0.08); color: #ffffff; }

/* Push the rest of the page down when notice is visible */
body.has-notice .nav { top: var(--notice-h, 56px); }
body.has-notice { padding-top: var(--notice-h, 56px); }

@media (max-width: 720px) {
  .notice-inner { padding: 10px 20px; gap: 10px; }
  .notice-text { font-size: 12px; line-height: 1.5; }
  .notice-icon { width: 16px; height: 16px; }
  body.has-notice { padding-top: var(--notice-h, 96px); }
  body.has-notice .nav { top: var(--notice-h, 96px); }
}

/* ============ Hero / About real photos ============ */
.hero-img,
.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Hide the gridline pattern when a real photo is in place */
.hero-visual:has(.hero-img)::before,
.about-visual:has(.about-img)::before {
  display: none;
}
/* Ensure tags / labels sit above the photo */
.hero-visual-tag,
.hero-visual-tag-r,
.hero-visual-note,
.about-visual-label {
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
  color: #0f172a;
  white-space: nowrap;
}
/* Move the top-right tag so it doesn't collide with bottom note */
.hero-visual .hero-visual-tag-r {
  top: 24px;
  bottom: auto;
}
.hero-visual-note {
  background: rgba(255, 255, 255, 0.85);
  color: #475569;
  border-radius: 4px;
  padding: 6px 10px;
}
