/* =========================================
   PROTIP LANDING PAGE CSS
   ========================================= */

/* Variables */
:root {
  --maroon: #791A1C;
  --maroon-deep: #4F0E0F;
  --cream-bg: #FDF6E3;
  --cream-card: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #555555;
  --cornflower: #D4E5F0;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-hand: 'Caveat', cursive;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utility */
.hand {
  font-family: var(--font-hand);
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--maroon);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(121, 26, 28, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}

.btn-outline:hover {
  background-color: var(--maroon);
  color: #fff;
}

/* Marquee */
.marquee {
  background: #f3d8d1;
  color: #000;
  padding: 5px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marquee-content span {
  margin: 0 2rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: sticky;
  top: 0;
  background-color: var(--maroon);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.navbar .btn-outline {
  background-color: #fff;
}

.navbar.scrolled {
  padding: 15px 5%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-container {
  height: 35px;
}

.logo-container img {
  height: 100%;
  width: auto;
}


/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 40px 6vw 90px;
  position: relative;
  background: #f1cdc1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--maroon);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 600;
  color: var(--ink);
  max-width: 11ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--maroon);
}

.hero-sub {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38ch;
}

.cta-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--maroon);
  color: var(--butter);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 100px;
  border: 1.5px solid var(--maroon);
  transition: all 0.2s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--maroon-deep);
  border-color: var(--maroon-deep);
}

.cta-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.badge-safe {
  display: inline-flex;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon);
  background: var(--cornflower);
  padding: 8px 16px;
  border-radius: 100px;
}

/* ---------- HERO VISUAL ---------- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: var(--cornflower);
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(2px);
}

.bottle {
  position: relative;
  width: 150px;
  background: var(--cream-card);
  border-radius: 16px 16px 10px 10px;
  box-shadow: 0 30px 60px -20px rgba(121, 26, 28, 0.35), 0 2px 0 rgba(0, 0, 0, 0.03) inset;
  padding: 0 0 20px;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.bottle-cap {
  height: 26px;
  background: linear-gradient(180deg, var(--metallic-c), var(--metallic-b) 55%, var(--metallic-a));
  border-radius: 16px 16px 4px 4px;
  margin: 0 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.bottle-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 34px 34px 0;
  border-color: transparent var(--maroon) transparent transparent;
  border-radius: 0 16px 0 0;
}

.bottle-label {
  text-align: center;
  padding: 18px 14px 0;
}

.bottle-label .tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.bottle-label .brand {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--maroon);
  margin: 10px 0 6px;
}

.bottle-swirl {
  width: 46px;
  height: 46px;
  margin: 6px auto 10px;
  border: 5px solid var(--cornflower-deep);
  border-right-color: var(--maroon);
  border-radius: 50%;
  transform: rotate(35deg);
}

.bottle-label .kind {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
}

.bottle-label .kind b {
  color: var(--ink);
  font-weight: 600;
}

.bottle-label .rule {
  width: 22px;
  height: 2px;
  background: var(--maroon);
  margin: 10px auto;
}

.bottle-label .flavor {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
}

.bottle-label .vol {
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-soft);
}

/* sticky note / chemistry callout — SIGNATURE ELEMENT */
.lab-note {
  position: absolute;
  right: -8px;
  bottom: 56px;
  width: 190px;
  background: #fffdf6;
  border: 1px solid rgba(121, 26, 28, 0.18);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.18);
  padding: 12px 14px 14px;
  transform: rotate(4deg);
  z-index: 3;
  border-radius: 2px;
}

.lab-note::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 20px;
  width: 36px;
  height: 16px;
  background: rgba(212, 229, 240, 0.85);
  border: 1px solid rgba(121, 26, 28, 0.12);
}

.lab-note .hand {
  font-size: 19px;
  line-height: 1.15;
  color: var(--maroon);
}

.lab-note .molecule {
  font-family: 'Inter', monospace;
  font-size: 9.5px;
  color: var(--ink-soft);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.lab-line {
  position: absolute;
  right: 150px;
  bottom: 150px;
  width: 70px;
  height: 1px;
  background: var(--maroon);
  opacity: 0.4;
  transform: rotate(-18deg);
}

/* ---------- MOMENTS STRIP ---------- */
.moments {
  background: var(--maroon);
  color: var(--butter);
  padding: 64px 6vw 72px;
}

.moments-head {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}

.moments-title {
  text-align: center;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  margin-bottom: 44px;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.moment {
  padding: 0 24px;
  border-left: 1px solid rgba(253, 246, 227, 0.2);
}

.moment:first-child {
  border-left: none;
  padding-left: 0;
}

.moment .hand {
  font-size: 24px;
  color: var(--cornflower);
  margin-bottom: 10px;
  display: block;
}

.moment p {
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0.85;
}

/* ---------- SCALLOP DIVIDER ---------- */
.scallop {
  height: 26px;
  background:
    radial-gradient(circle at 13px 0, transparent 13px, var(--butter) 13.5px) 0 -13px / 26px 26px repeat-x;
  background-color: var(--maroon);
}


/* Hero Section */
/*.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 60px 40px;
  background: rgba(253, 246, 227, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(121, 26, 28, 0.1);
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 25px;
  color: var(--maroon);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero p {
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.badge-safe {
  display: inline-block;
  margin-top: 25px;
  background: var(--cornflower);
  color: var(--maroon);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}*/

/* Common Section Styles */
.section {
  padding: 100px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--maroon);
  margin-bottom: 15px;
}

.section-header p {
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Product Showcase */
.product-showcase {
  background-color: var(--cream-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.product-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-image-wrap img {
  width: 100%;
  transition: transform 0.7s ease;
}

.product-image-wrap:hover img {
  transform: scale(1.05);
}

.product-details h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--maroon);
  margin-bottom: 20px;
}

.product-details p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.product-molecule {
  font-family: monospace;
  font-size: 0.9rem;
  background: var(--cream-bg);
  padding: 15px;
  border-left: 3px solid var(--maroon);
  color: var(--ink);
  margin-bottom: 30px;
}

/* Moments (Features Grid) */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.moment-card {
  background: var(--cream-card);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  border: 1px solid rgba(121, 26, 28, 0.05);
}

.moment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(121, 26, 28, 0.1);
  border-color: rgba(121, 26, 28, 0.2);
}

.moment-card .hand {
  font-size: 2.2rem;
  color: var(--maroon);
  display: block;
  margin-bottom: 15px;
}

.moment-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}

/* How It Works (4 Steps - Cards) */
.how-it-works-4-steps {
  background-color: #fff;
  color: var(--ink);
}

.how-it-works-4-steps .section-header h2 {
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 500;
}

.steps-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--cream-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.step-card-image {
  position: relative;
  width: 100%;
}

.step-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f44336;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-bottom-right-radius: 8px;
  z-index: 2;
  letter-spacing: 0.05em;
}

.step-card-content {
  padding: 20px;
  flex-grow: 1;
}

.step-card-content h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-card-content p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Before/After Section */
.before-after-section {
  background-color: var(--cream-bg);
}

.ba-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  aspect-ratio: 16 / 9;
  --position: 50%;
}

@media (max-width: 768px) {
  .ba-wrapper {
    aspect-ratio: 4 / 3;
  }
}

.ba-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
  z-index: 2;
}

.ba-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background-color: rgba(121, 26, 28, 0.5);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
}

.ba-slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: var(--cream-card);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.ba-slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
}

.ba-label {
  position: absolute;
  top: 20px;
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: var(--ink);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.label-before {
  left: 20px;
}

.label-after {
  right: 20px;
}

/* Truth Section */
.truth-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.truth-card {
  background: var(--cream-card);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(121, 26, 28, 0.08);
}

.truth-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.truth-row:last-child {
  border-bottom: none;
}

.truth-row .no {
  color: #a14a4c;
  text-decoration: line-through;
}

.truth-row .yes {
  color: var(--maroon);
  font-weight: 600;
}

.truth-content h3 {
  font-size: 2rem;
  color: var(--maroon);
  margin-bottom: 20px;
}

.truth-content p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.truth-tag {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  color: var(--maroon);
  display: block;
  margin-top: 30px;
}

/* Founding Partners Form */
.founding-partners {
  background-color: var(--cream-card);
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--cream-bg);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(121, 26, 28, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-group input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  transition: var(--transition-smooth);
}

.form-group input:focus {
  outline: none;
  border-bottom-color: var(--maroon);
}

.form-container .btn {
  width: 100%;
  margin-top: 15px;
}

.form-fine {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 25px;
}

.form-fine a {
  color: var(--maroon);
  text-decoration: underline;
}

.batch-note {
  font-size: 0.85rem;
  color: var(--maroon);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.batch-dot {
  width: 8px;
  height: 8px;
  background-color: #5f9e6f;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(95, 158, 111, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(95, 158, 111, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(95, 158, 111, 0);
  }
}

/* Footer */
.footer {
  background-color: var(--ink);
  color: #fff;
  padding: 80px 5% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-tag {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--cornflower);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {

  .product-showcase,
  .truth-section {
    grid-template-columns: 1fr;
  }

  .product-image-wrap,
  .truth-card {
    order: -1;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .step-item:not(:last-child)::after {
    content: '↓';
    right: auto;
    bottom: -40px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .steps-4-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .steps-4-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 5%;
  }

  .form-container {
    padding: 30px 20px;
  }
  
  section.hero {
    grid-template-columns: 1fr;
}

.hero-copy {
    order: 2;
}

.hero-visual {
    min-height: auto;
}

section.hero {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
}

.hero-copy {
    order: 2;
}

.hero-visual {
    min-height: auto;
}

.navbar a.btn.btn-outline {
    padding: 7px 12px;
    font-size: 12px;
}

.hero h1 {
    font-size: 2.4rem;
    max-width: none;
}

.hero h1 br {
    /* display: none; */
}

.hero-visual .inamge > img {
    max-width: 300px;
}

section.hero {
    gap: 10px;
}
}