@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ============================================================================
   COFFI LANDING SITE — GLOBAL STYLES
   
   Color Palette:
   - Base background: #F5F0E8 (soft off white)
   - Main text: #1F1308 (very dark espresso)
   - Primary accent/CTA: #C56935 (warm copper)
   - Secondary accent/headings: #6B4A2C (deep roast)
   - Subtle highlight: #8AA58A (muted sage)
   
   This is a research-driven, minimal design with a bold editorial edge.
   ============================================================================ */

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

html {
  scroll-behavior: smooth;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #F6E7DB;
  color: #1F1308;
  line-height: 1.6;
  font-size: 16px;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: #1F1308;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-family: 'Lexend', sans-serif !important;
}

h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #6B4A2C;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #6B4A2C;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 0.75rem;
  color: #1F1308;
  max-width: 65ch;
  line-height: 1.6;
}

a {
  color: #C56935;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #A74C2A;
}

a:focus {
  outline: 2px solid #C56935;
  outline-offset: 2px;
}

/* ============================================================================
   LAYOUT & SPACING
   ============================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 2.5rem 0;
}

/* ============================================================================
   HEADER
   ============================================================================ */

header {
  background-color: #F6E7DB;
  border-bottom: 1px solid rgba(31, 19, 8, 0.08);
  padding: 0.35rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  transition: padding 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-radius 0.25s ease, transform 0.25s ease;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F1308;
  letter-spacing: 0.05em;
}

.logo-image {
  height: 5.5rem;
  width: auto;
  max-width: 220px;
}

.logo-image:focus {
  outline: 2px solid #C56935;
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  position: relative;
  padding-left: 0.9rem;
}

.nav-join-btn {
  display: none;
}

.nav-links.show-join {
  gap: 1.6rem;
}

.nav-links.show-join .nav-join-btn {
  display: inline-block;
}

.nav-links .btn {
  padding: 0.95rem 2rem;
}

.mobile-cta-row {
  display: none;
}

.mobile-cta-row .btn,
.mobile-cta-row .form-submit {
  width: 100%;
  padding: 0.95rem;
}

/* Condensed header (desktop) */
@media (min-width: 769px) {
  header.header-condensed {
    background-color: transparent;
    border-color: transparent;
  }

  header.header-condensed .header-content {
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(31, 19, 8, 0.12), 0 6px 18px rgba(197, 105, 53, 0.12);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    transform: translateY(6px);
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid rgba(107, 74, 44, 0.08);
    max-width: fit-content;
    margin: 0 auto;
  }

  header.header-condensed .nav-links {
    gap: 0.9rem;
    padding-left: 0.75rem;
  }

  header.header-condensed .nav-links .btn {
    padding: 0.8rem 1.5rem;
  }

  header .logo-image {
    height: 5.2rem;
    transition: height 0.25s ease;
  }

  header.header-condensed .logo-image {
    position: relative;
    height: 4.6rem;
    padding-right: 0.55rem;
    margin-right: 0.55rem;
    border-right: none;
    align-self: center;
  }

  header.header-condensed .logo-image::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 30%;
    height: 40%;
    width: 1px;
    background: rgba(107, 74, 44, 0.28);
  }

  header.header-condensed .nav-links::before {
    content: '';
    position: absolute;
    left: 0;
    top: 28%;
    height: 44%;
    width: 1px;
    background: rgba(107, 74, 44, 0.18);
  }
}

.back-link {
  font-size: 0.95rem;
  color: #6B4A2C;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.back-link:hover {
  color: #C56935;
}

/* ============================================================================
   BUTTONS & INTERACTIVE ELEMENTS
   ============================================================================ */

.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background-color: #C56935;
  color: #F5F0E8;
  box-shadow: 0 12px 28px rgba(197, 105, 53, 0.26), 0 4px 12px rgba(31, 19, 8, 0.12);
}

.btn-primary:hover {
  background-color: #A74C2A;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(197, 105, 53, 0.35), 0 4px 12px rgba(197, 105, 53, 0.2);
}

.btn-primary:focus {
  outline: 2px solid #6B4A2C;
  outline-offset: 2px;
}

.btn-outline {
  background-color: transparent;
  color: #C56935;
  border: 2px solid #C56935;
  box-shadow: 0 12px 28px rgba(197, 105, 53, 0.16), 0 4px 12px rgba(31, 19, 8, 0.08);
}

.btn-outline:hover {
  background-color: #C56935;
  color: #F5F0E8;
  box-shadow: 0 0 20px rgba(197, 105, 53, 0.2);
}

.btn-outline:focus {
  outline: 2px solid #6B4A2C;
  outline-offset: 2px;
}

@media (min-width: 769px) {
  header .nav-links .btn {
    border-radius: 999px;
  }
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  padding: 2.1rem 0 1.95rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #F6E7DB 0%, #F9EDDE 100%);
}

.beans-hero {
  position: absolute;
  width: 120px;
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  top: 80px;
  right: 8rem;
  z-index: 1;
  will-change: transform;
}

.hero h1 {
  color: #1F1308;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(107, 74, 44, 0.12);
}

.hero-footer-text {
  text-align: center !important;
  font-size: 0.9rem;
  color: #8aa58a;
  margin-top: 1rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

.problem-intro-text {
  text-align: center !important;
  margin-bottom: 2rem;
  color: #6B4A2C;
  font-size: 0.95rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

.footer-text {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-subheading {
  font-size: 1.25rem;
  color: #6B4A2C;
  max-width: 700px;
  margin: 0 auto 1rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(107, 74, 44, 0.16);
}

.hero-value {
  font-size: 0.95rem;
  color: #1F1308;
  max-width: 600px;
  margin: 0 auto 0.75rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 2rem auto;
  font-size: 1rem;
  color: #1F1308;
}

.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-bullet::before {
  content: '•';
  color: #C56935;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Hero Form */
.hero-form-wrapper {
  max-width: 500px;
  margin: 1.6rem auto 1.9rem;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1.6rem;
  border-radius: 12px;
  border: 1px solid rgba(197, 105, 53, 0.1);
  box-shadow: 0 18px 48px rgba(31, 19, 8, 0.12), 0 8px 20px rgba(197, 105, 53, 0.14);
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-form .form-group {
  margin-bottom: 0;
}

.hero-form .form-submit {
  margin-top: 0.5rem;
}

/* CTA Note */
.cta-note {
  text-align: center !important;
  font-size: 0.9rem;
  color: #8aa58a;
  margin-top: 1.1rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Left Beans Image */
/* Hero Title with Parallax */
.hero-title {
  position: relative;
  z-index: 2;
  will-change: transform;
}

.hero-title h1 {
  margin-bottom: 1rem;
}

.beans-hero-left {
  position: absolute;
  width: 70px;
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  top: 100px;
  left: -40px;
  z-index: 1;
  will-change: transform;
}

.hero-floor-beans {
  position: absolute;
  width: min(380px, 42vw);
  height: auto;
  pointer-events: none;
  opacity: 0.98;
  bottom: -100px;
  left: 20px;
  z-index: 1;
}

.hero-powder-tail {
  position: absolute;
  width: min(460px, 48vw);
  height: auto;
  pointer-events: none;
  opacity: 0.98;
  top: calc(100% - 22px);
  left: -68px;
  z-index: 0;
}

.cafe-hero {
  position: relative;
  overflow: hidden;
}

.cafe-hero-beans {
  position: absolute;
  width: min(360px, 38vw);
  height: auto;
  pointer-events: none;
  opacity: 0.98;
  bottom: -16px;
  left: max(4%, calc(50% - 520px));
  z-index: 1;
}
/* ============================================================================
   CARDS & GRID SECTIONS
   ============================================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDF3EA 100%);
  padding: 1.5rem;
  border-radius: 16px;
  border: 2px solid rgba(107, 74, 44, 0.18);
  box-shadow: 0 10px 30px rgba(31, 19, 8, 0.12), 0 4px 12px rgba(197, 105, 53, 0.12);
  text-align: center;
  transition: none;
  opacity: 1;
  transform: translateY(0);
}

.card.entrance-animate {
  animation: fadeInUp 0.3s ease-out forwards;
}

@media (prefers-reduced-motion: no-preference) {
  .card.entrance-animate {
    animation: fadeInUp 0.3s ease-out forwards;
  }
}

.card h3 {
  color: #C56935;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card p {
  color: #1F1308;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================================
   PROBLEM PROMPTS SECTION
   ============================================================================ */

.problem-prompts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.problem-prompts.entrance-animate {
  animation: fadeInUp 0.3s ease-out forwards;
}

@media (prefers-reduced-motion: no-preference) {
  .problem-prompts.entrance-animate {
    animation: fadeInUp 0.3s ease-out forwards;
  }
}

.problem-prompt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FBF6EE 100%);
  border: 1px solid rgba(107, 74, 44, 0.14);
  box-shadow: 0 8px 18px rgba(31, 19, 8, 0.06);
}

.problem-prompt::before {
  content: '☕';
  color: #C56935;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 2rem;
  text-align: center;
}

.problem-prompt:nth-child(1)::before { content: '📄'; } /* invoices/orders */
.problem-prompt:nth-child(2)::before { content: '📱'; } /* multi-channel */
.problem-prompt:nth-child(3)::before { content: '🚚'; } /* delivery timing */
.problem-prompt:nth-child(4)::before { content: '🗂️'; } /* paperwork */
.problem-prompt:nth-child(5)::before { content: '💸'; } /* margins/cash */
.problem-prompt:nth-child(6)::before { content: '📦'; } /* stock guessing */

@media (max-width: 768px) {
  .problem-prompts {
    grid-template-columns: 1fr;
  }
}

.problem-prompt p {
  margin: 0;
  color: #1F1308;
  font-size: 0.95rem;
}

/* ============================================================================
   MANIFESTO STRIP
   ============================================================================ */

.manifesto-strip {
  background-color: #6B4A2C;
  color: #F5F0E8;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin: 2rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.manifesto-strip p {
  color: #F5F0E8;
  margin: 0;
}

/* ============================================================================
   RESEARCH INVITATION SECTION
   ============================================================================ */

.research-invitation {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid rgba(197, 105, 53, 0.2);
  margin-bottom: 2rem;
}

.research-invitation h3 {
  color: #C56935;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.research-invitation p {
  color: #1F1308;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================================================
   CTA BUTTONS GROUP
   ============================================================================ */

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
}

/* ============================================================================
   FORM STYLES
   ============================================================================ */

.form-section {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid rgba(107, 74, 44, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #6B4A2C;
  font-size: 0.95rem;
}

label .optional {
  font-weight: 400;
  color: #8AA58A;
  margin-left: 0.25rem;
}

input[type='text'],
input[type='email'],
input[type='tel'],
select {
  width: 100%;
  padding: 0.95rem 1.05rem;
  border: 1.5px solid rgba(107, 74, 44, 0.18);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 1rem;
  color: #1F1308;
  box-shadow: 0 6px 16px rgba(31, 19, 8, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.25s ease;
  padding-right: 2.85rem;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus,
select:focus {
  outline: none;
  border-color: #C56935;
  box-shadow: 0 0 0 3px rgba(197, 105, 53, 0.12), 0 8px 20px rgba(31, 19, 8, 0.12);
}

select {
  padding-right: 2.5rem;
}

input[type='email'].error {
  border-color: #C56935;
  background-color: rgba(197, 105, 53, 0.05);
}

.checkbox-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(107, 74, 44, 0.12);
  background: rgba(245, 240, 232, 0.75);
}

input[type='checkbox'] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: #C56935;
  border-radius: 5px;
}

input[type='checkbox']:focus {
  outline: 2px solid #C56935;
  outline-offset: 2px;
}

.checkbox-label {
  margin: 0;
  font-weight: 500;
  color: #1F1308;
  font-size: 0.98rem;
  line-height: 1.5;
}

.form-microcopy {
  font-size: 0.85rem;
  color: #8AA58A;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

.form-submit {
  width: 100%;
  padding: 0.95rem;
  background-color: #C56935;
  color: #F5F0E8;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 28px rgba(197, 105, 53, 0.26), 0 4px 12px rgba(31, 19, 8, 0.12);
}

.form-submit:hover {
  background-color: #A74C2A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 105, 53, 0.2);
}

.form-submit:focus {
  outline: 2px solid #6B4A2C;
  outline-offset: 2px;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submission-status {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
  color: #6B4A2C;
}

.submission-status.error {
  color: #C56935;
}

/* Success message for form submission */
.form-success {
  background-color: #8AA58A;
  color: #F5F0E8;
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-align: center;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  color: #F5F0E8;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: #F5F0E8;
  margin: 0;
  font-size: 0.95rem;
}

/* Error message for form validation */
.form-error {
  color: #C56935;
  font-size: 0.85rem;
  margin-top: 0.35rem;
  display: none;
}

.form-error.show {
  display: block;
}

input.invalid {
  border-color: #C56935;
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.faq-section {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(107, 74, 44, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6B4A2C;
  margin-bottom: 0.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question:hover {
  color: #C56935;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: #C56935;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question.open::after {
  transform: rotate(45deg);
}

.faq-answer {
  color: #1F1308;
  font-size: 0.95rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  background-color: #1F1308;
  color: #F5F0E8;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

footer p {
  margin: 0;
  color: #F5F0E8;
  font-size: 0.95rem;
  text-align: center;
}

footer a {
  color: #C56935;
}

footer a:hover {
  color: #E8B5A0;
}

/* ============================================================================
   SKIP TO CONTENT LINK
   ============================================================================ */

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: #C56935;
  color: #F5F0E8;
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 200;
  border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
  top: 0;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 1.6rem 0;
  }

  .hero-subheading {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }

  .hero-value {
    margin-bottom: 0.6rem;
  }

  .beans-hero {
    width: 70px;
    top: 66px;
    right: 1rem;
    opacity: 0.78;
  }

  .beans-hero-left {
    width: 50px;
    top: 80px;
    left: -20px;
    opacity: 0.75;
  }

  section {
    padding: 1.75rem 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .manifesto-strip {
    font-size: 1.25rem;
    padding: 1.5rem;
  }

  .problem-prompts {
    padding: 1rem;
  }

  .form-section {
    padding: 1.5rem;
  }

  .header-content {
    padding: 0 0.9rem;
    justify-content: center;
  }

  .nav-links {
    gap: 0.9rem;
    display: none;
  }

  .nav-links .btn {
    padding: 0.85rem 1.4rem;
  }

  .hero-floor-beans {
    display: none;
  }

  .hero-powder-tail {
    display: none;
  }

  .hero-form-wrapper {
    margin: 0.75rem auto;
    padding: 1.35rem;
  }

  .hero-form {
    gap: 0.85rem;
  }

  .checkbox-group {
    padding: 0.55rem 0.75rem;
  }

  .cta-note {
    margin-top: 0.45rem;
  }

  .cafe-hero-beans {
    display: none;
  }

  .mobile-cta-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 0.3rem;
  }

  .mobile-book {
    order: 2;
  }

  .mobile-join {
    order: 1;
  }

  .desktop-submit {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  body {
    font-size: 15px;
  }

  section {
    padding: 2rem 0;
  }

  .hero {
    padding: 1.35rem 0;
  }

  .beans-hero {
    display: none;
  }

  .beans-hero-left {
    display: none;
  }

  .hero-subheading {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero-form-wrapper {
    padding: 1.1rem;
    margin: 0.6rem auto;
  }

  .hero-form .form-submit {
    margin-top: 0.25rem;
  }

  .card {
    padding: 1.5rem;
  }

  .manifesto-strip {
    font-size: 1.1rem;
    padding: 1.5rem 1rem;
  }

  .form-section {
    padding: 1.5rem;
  }

  .cta-buttons {
    gap: 1rem;
  }
}
