/* ============================================
   RIO FRESH COFFEE — Design System
   ============================================ */

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

/* ── Tokens ── */
:root {
  --amber: #E8A020;
  --amber-light: #F5C060;
  --amber-pale: #FBF0DC;
  --brown: #6B2D2D;
  --brown-dark: #391b1bef;
  --brown-mid: #7A3535;
  --cream: #FAF7F2;
  --cream-dark: #F0EAE0;
  --off-white: #FDFBF8;
  --text-primary: #2A1A0E;
  --text-muted: #7A6A5A;
  --text-light: #B0A090;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 12px rgba(107, 45, 45, 0.06);
  --shadow-md: 0 8px 40px rgba(107, 45, 45, 0.10);
  --shadow-lg: 0 24px 80px rgba(107, 45, 45, 0.14);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w: 1200px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-wrap {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  pointer-events: none;
}

.navbar {
  pointer-events: all;
  width: 100%;
  max-width: 1100px;
  background: rgba(245, 245, 242, 0.995);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-radius: var(--radius-xl);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(107, 45, 45, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(253, 251, 248, 0.96);
  box-shadow: 0 8px 40px rgba(107, 45, 45, 0.14);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo img {
  height: 45px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.navbar__links a:hover {
  color: var(--brown);
}

.navbar__cta {
  background: var(--brown);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.02em;
  transition: var(--transition) !important;
  box-shadow: 0 2px 10px rgba(107, 45, 45, 0.25);
}

.navbar__cta:hover {
  background: var(--brown-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 45, 45, 0.35) !important;
}

/* ── Mobile hamburger ── */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1001;
  position: relative;
}

.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu overlay */
@media (max-width: 768px) {
  .navbar-wrap {
    top: 12px;
    padding: 0 16px;
  }

  .navbar {
    padding: 12px 20px;
    border-radius: 28px;
  }

  .navbar__burger {
    display: flex;
  }

  /* Hidden state */
  .navbar__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100dvh;

    background: rgba(253, 251, 248, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    z-index: 1000;
    padding: 80px 32px 48px;

    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }

  /* Open state — toggled by JS */
  .navbar.menu-open .navbar__links {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .navbar.menu-open .navbar__burger {
    position: fixed;
    top: 24px;
    right: 36px;
    z-index: 1002;
  }

  .navbar__links a {
    font-size: 26px;
    font-weight: 600;
    color: var(--brown-dark);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    width: 100%;
    text-align: center;
    letter-spacing: -0.01em;
  }

  .navbar__links a:hover {
    color: var(--brown);
  }

  /* CTA button inside open menu */
  .navbar__links .navbar__cta {
    margin-top: 16px;
    font-size: 16px !important;
    padding: 14px 36px !important;
    background: var(--brown) !important;
    color: var(--white) !important;
    width: auto !important;
  }

  /* Burger → X animation */
  .navbar.menu-open .navbar__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar.menu-open .navbar__burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .navbar.menu-open .navbar__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Burger color flips white when over dark video hero */
  .navbar__burger span {
    background: var(--brown);
    transition: background 0.3s ease, transform var(--transition);
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

/* ── Video background ── */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(20, 8, 4, 0.88) 0%,
      rgba(30, 12, 6, 0.72) 50%,
      rgba(20, 8, 4, 0.40) 100%);
}

/* Hero content */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  max-width: 1250px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232, 160, 32, 0.15);
  border: 1px solid rgba(232, 160, 32, 0.25);
  border-color: rgba(232, 160, 32, 0.40);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-top: 100px;
  color: #FAF7F2;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
  text-align: center;
}

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

.hero__subtitle {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(250, 247, 242, 0.78);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
}


.hero__actions {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
  margin-top: 50px;
  justify-content: center;

}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(107, 45, 45, 0.28);
}

.btn--primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107, 45, 45, 0.38);
}

.btn--ghost {
  background: transparent;
  color: #FAF7F2;
  border: 1.5px solid rgba(107, 45, 45, 0.25);
  border-color: rgba(250, 247, 242, 0.35);
}

.btn--ghost1 {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid rgba(107, 45, 45, 0.25);
}

.btn--ghost:hover {
  background: rgba(250, 247, 242, 0.10);
  border-color: rgba(250, 247, 242, 0.65);
}

.btn__arrow {
  font-size: 18px;
  transition: transform var(--transition);
}

.btn--primary:hover .btn__arrow {
  transform: translateX(4px);
}


/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
  padding: 120px 0 100px;
  background: var(--cream);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--amber);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--amber);
}

.section-body {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Intro visual - abstract coffee shape */
.intro__visual {
  position: relative;
}

.intro__card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 420px;
  margin: 0 auto;
}

.intro__card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.intro__card--bg {
  inset: 0;
  background: linear-gradient(135deg, #F5C060 0%, #E8A020 50%, #6B2D2D 100%);
  opacity: 0.15;
  transform: rotate(3deg);
}

.intro__card--main {
  inset: 5% 0 0 5%;
  background: var(--brown-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.intro__card-icon {
  width: 82px;
  height: 82px;
  color: var(--amber-light);
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.intro__card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.intro__card-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--amber-light);
  text-align: center;
  line-height: 1.4;
}

.intro__card-sub {
  font-size: 13px;
  color: rgba(245, 192, 96, 0.55);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro__stat-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--amber);
  color: var(--brown-dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
}

.stat-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
  opacity: 0.75;
}

/* ============================================
   PRODUCTS PREVIEW
   ============================================ */
.products-preview {
  padding: 100px 0;
  background: var(--off-white);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
}

.section-header__text {
  max-width: 520px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232, 160, 32, 0.1);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 160, 32, 0.25);
}

.product-card__visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.product-card__visual--amber {
  background: linear-gradient(135deg, #FBF0DC 0%, #F5C060 100%);
}

.product-card__visual--brown {
  background: linear-gradient(135deg, #F0E8E0 0%, #D4A880 100%);
}

.product-card__visual--green {
  background: linear-gradient(135deg, #E8F0E0 0%, #A8C880 100%);
}

.product-card__icon {
  width: 64px;
  height: 64px;
  color: var(--brown);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  transition: transform var(--transition);
}

.product-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.product-card:hover .product-card__icon {
  transform: scale(1.1) rotate(-3deg);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition);
}

.product-card:hover .product-card__image {
  transform: scale(1.04);
}

.product-card__image[src*="YOUR_"] {
  display: none;
}

.product-card__visual:has(.product-card__image[src*="YOUR_"])::after {
  content: ' product image URL ';
  color: var(--text-muted);
  border: 1.5px dashed rgba(107, 45, 45, 0.22);
  border-radius: var(--radius-md);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 24px;
}

.product-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 8px;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
  padding: 100px 0;
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.services-preview::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.services-preview .section-tag {
  color: var(--amber-light);
}

.services-preview .section-tag::before {
  background: var(--amber-light);
}

.services-preview .section-heading {
  color: var(--amber-pale);
}

.services-preview .section-heading em {
  color: var(--amber-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: #FAF7F2;
  border: 1px solid rgba(232, 160, 32, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: #FAF7F2;
  border-color: rgba(232, 160, 32, 0.3);
  transform: translateY(-4px);
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}


.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--brown);
  margin-bottom: 16px;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 120px 0;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 160, 32, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__title em {
  font-style: italic;
  color: var(--amber);
}

.cta-banner__sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brown-dark);
  padding: 72px 0 36px;
  color: rgba(245, 240, 220, 0.6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(1.4) sepia(0.3);
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 160, 32, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.footer__social a:hover {
  background: rgba(232, 160, 32, 0.15);
  border-color: rgba(232, 160, 32, 0.35);
  color: var(--amber-light);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 192, 96, 0.6);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--amber-light);
}

.footer__bottom {
  border-top: 1px solid rgba(232, 160, 32, 0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__visual {
    width: 42%;
  }

  .intro__grid {
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .navbar__links {
    display: flex;
  }

  .navbar__burger {
    display: flex;
  }

  .navbar.menu-open {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    padding: 0;
    border-radius: 0;
    border: none;
    background: rgba(57, 27, 27, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: none;
  }

  .navbar.menu-open .navbar__links {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(253, 251, 248, 0.985);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .navbar.menu-open .navbar__links a {
    font-size: 22px;
    font-weight: 600;
  }

  .hero {
    min-height: 100svh;
    padding: 100px 0 60px;
  }

  .hero__visual {
    display: none;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro__visual {
    order: -1;
  }

  .intro__card-stack {
    max-width: 340px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .emblem-ring {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-grid {
    gap: 14px;
  }
}