:root {
  --bg: #0b0b0c;
  --bg-soft: #151517;
  --text: #f7f3ea;
  --muted: #bdb7aa;
  --line: rgba(255,255,255,0.12);
  --accent: #d7ff3f;
  --accent-dark: #a4c900;
  --sand: #d7c7a3;
  --card: #1d1d20;
  --white: #ffffff;
  --black: #050505;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 24px 80px rgba(0,0,0,0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

.announcement {
  background: var(--accent);
  color: var(--black);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 14px rgba(215, 255, 63, 0.14));
}

.footer-brand .brand-logo {
  width: 46px;
  height: 46px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--text);
}

.nav-dropdown-toggle span {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle span {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 60;
  display: grid;
  gap: 4px;
  min-width: 185px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: rgba(21,21,23,0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn,
.cart-btn,
.menu-toggle {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
}

.icon-btn,
.cart-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}

.icon-btn svg,
.cart-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-btn span {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 20px;
  background: var(--accent);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
}


.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 6vw;
  min-height: 80vh;
  overflow: hidden;
  background: #0b0b0c;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 11, 12, 0.90) 0%,
    rgba(11, 11, 12, 0.70) 35%,
    rgba(11, 11, 12, 0.15) 60%,
    rgba(11, 11, 12, 0.0) 80%
  );
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 .hero-word {
  color: var(--accent);
  display: inline-block;
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--accent);
  color: var(--black);
}

.btn.primary:hover {
  background: var(--white);
}

.btn.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(11, 11, 12, 0.4);
  backdrop-filter: blur(8px);
}

.btn.secondary:hover {
  border-color: var(--text);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 6vw;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--line);
  position: relative;
  z-index: 5;
  transform: translateY(-40px); /* Pulls stats up slightly to overlap the banner nicely */
}

.stats div {
  padding: 28px;
  background: var(--bg-soft);
}

.stats strong {
  display: block;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.06em;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.section {
  padding: 56px 6vw 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.banner h2,
.about h2,
.newsletter h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.view-all {
  color: var(--accent);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.collection-heading {
  margin-bottom: 34px;
}

.collection-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

.collection-picker label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.collection-picker select {
  min-height: 40px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.collection-card {
  min-height: 360px;
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.collection-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.collection-card.dark {
  background: linear-gradient(135deg, #1c1c20, #050505);
}

.collection-card.light {
  background: linear-gradient(135deg, #e2d5bd, #9a8462);
  color: var(--black);
}

.collection-card.accent {
  background: linear-gradient(135deg, var(--accent), #697d14);
  color: var(--black);
}

.collection-card.muted {
  background: linear-gradient(135deg, #2b2b2f, #5d5d56);
}

.collection-card.is-hidden {
  display: none;
}

.collection-card:target {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.collection-card > * {
  position: relative;
  z-index: 1;
}

.collection-card span {
  display: inline-flex;
  margin-bottom: 18px;
  font-weight: 900;
  opacity: 0.7;
}

.collection-card h3 {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.collection-card p {
  max-width: 290px;
  opacity: 0.75;
}

.collection-card a {
  width: fit-content;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 12px;
  transition: transform 0.22s ease, border 0.22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215,255,63,0.5);
}

.product-image {
  min-height: 315px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: "";
  position: absolute;
  inset: 24px 34px 0;
  border-radius: 30px 30px 0 0;
  background: rgba(255,255,255,0.18);
}

.product-image::after {
  content: "BEYOUTH";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.08em;
  opacity: 0.2;
}

.image-one { background: linear-gradient(135deg, #111, #3d3d3d); }
.image-two { background: linear-gradient(135deg, #504d45, #151515); }
.image-three { background: linear-gradient(135deg, #d8c6a7, #4d4231); }
.image-four { background: linear-gradient(135deg, #25272a, #8b8b7a); }

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--accent);
  color: var(--black);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.product-info {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 4px 14px;
}

.product-info h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.product-info p {
  color: var(--muted);
  font-size: 13px;
}

.product-info strong {
  white-space: nowrap;
}

.add-cart {
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  border: 0;
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.add-cart:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.banner {
  margin: 96px 6vw 0;
  min-height: 420px;
  border-radius: 44px;
  padding: clamp(32px, 6vw, 72px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.2)),
    repeating-linear-gradient(135deg, #2a2a2d 0 14px, #18181a 14px 28px);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.banner::after {
  content: "STREET";
  position: absolute;
  right: -20px;
  top: 28px;
  font-size: clamp(86px, 15vw, 220px);
  font-weight: 900;
  letter-spacing: -0.1em;
  color: rgba(255,255,255,0.05);
}

.banner div {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.banner p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
}

.banner .btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: stretch;
}

.about-image,
.about-content {
  min-height: 520px;
  border-radius: var(--radius-xl);
}

.about-image {
  background:
    radial-gradient(circle at 55% 18%, rgba(215,255,63,0.45), transparent 24%),
    linear-gradient(145deg, #29292d, #060606);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  width: 260px;
  height: 410px;
  border-radius: 130px 130px 24px 24px;
  background: linear-gradient(180deg, #111, #333);
  border: 1px solid rgba(255,255,255,0.12);
}

.about-content {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content p:not(.eyebrow) {
  color: var(--muted);
  max-width: 650px;
  margin: 24px 0;
  font-size: 17px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.newsletter {
  margin: 96px 6vw;
  padding: clamp(34px, 7vw, 82px);
  border-radius: 44px;
  text-align: center;
  background: var(--accent);
  color: var(--black);
}

.newsletter .eyebrow {
  color: rgba(0,0,0,0.65);
}

.newsletter form {
  max-width: 560px;
  margin: 28px auto 0;
  display: flex;
  gap: 10px;
  padding: 8px;
  background: rgba(0,0,0,0.12);
  border-radius: 999px;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: var(--white);
  padding: 0 20px;
  min-height: 52px;
}

.newsletter button {
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  min-height: 52px;
  padding: 0 24px;
  font-weight: 900;
  cursor: pointer;
}

.footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  color: var(--text);
  margin-bottom: 14px;
}

.footer p {
  max-width: 360px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  min-width: min(100%, 280px);
  font-size: 14px;
  font-weight: 700;
}

.footer-contact h3 {
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  max-width: 430px;
  font-size: 14px;
  font-weight: 700;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 1200px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .about {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .navbar {
    padding: 15px 5vw;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    left: 5vw;
    right: 5vw;
    top: 98px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(21,21,23,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: start;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .nav-actions .icon-btn {
    display: none;
  }

/* ... (Keep your existing :root and other styles here) ... */

.hero {
  min-height: 78vh;
  display: flex !important;
  flex-direction: column !important; /* stack: text over the background image */
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 40px 6vw;
  background: #0b0b0c;
  overflow: hidden;
  gap: 0;
}

.hero-content {
  flex: none;
  max-width: 100%;   /* was 50% — that crammed the text into a tall column */
  width: 100%;
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  margin: 0;
}

  .hero h1 {
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.08;
  }

  .hero-text {
    font-size: 16px;
  }

  .section {
    padding: 72px 5vw 0;
  }

  .stats,
  .banner,
  .newsletter {
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .stats {
    grid-template-columns: 1fr;
    transform: translateY(-20px);
  }

  .stats div {
    padding: 22px;
  }

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

  .collection-picker {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    border-radius: 18px;
  }

  .collection-picker select {
    width: 100%;
  }

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

  .product-image {
    min-height: 285px;
  }

  .about-image,
  .about-content {
    min-height: auto;
  }

  .about-image {
    min-height: 380px;
  }

  .newsletter form {
    border-radius: 24px;
    flex-direction: column;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .footer-contact,
  .footer-links {
    width: 100%;
    justify-content: flex-start;
  }
}


/* ── Small phones (≤480px) — finer scaling ── */
@media (max-width: 480px) {
  .hero { min-height: 64vh; padding: 32px 6vw; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-text { font-size: 14px; margin: 16px 0 24px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 5vw 0; }
  .collection-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
}


/* ── Mobile hero readability: darken the photo so text stays legible ── */
@media (max-width: 760px) {
  /* Homepage hero: vertical darkening keeps the headline readable. */
  .hero .hero-image-wrapper::after {
    background: linear-gradient(
      to bottom,
      rgba(11,11,12,0.40) 0%,
      rgba(11,11,12,0.70) 55%,
      rgba(11,11,12,0.96) 100%
    ) !important;
  }
  /* Product collection hero: the description overlaps the bright side of the
     photo, so darken the WHOLE image evenly here for guaranteed contrast. */
  .collection-hero .hero-image-wrapper::after {
    background: rgba(11,11,12,0.66) !important;
  }
  .collection-hero {
    min-height: auto !important;
    align-items: flex-end !important;
    padding: 84px 6vw 36px !important;
  }
  .collection-hero-content { max-width: 100% !important; }
  .collection-hero-content h1 { font-size: clamp(40px, 12vw, 64px) !important; }
  .collection-hero-desc {
    font-size: 14px !important;
    color: #e9e6df !important;   /* lighter than --muted so it reads over the photo */
  }
}
.site-footer { border-top: 1px solid #262626; background-color: #000; margin-top: 60px; color: #fff; }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 80px 24px 56px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; align-items: start; }
.footer-brand { display: flex; flex-direction: column; gap: 28px; }
.footer-brand .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-weight: 800; font-size: 20px; margin: 0; }
.footer-brand .brand-logo { width: 32px; margin: 0; }
.footer-tagline { color: #999; font-size: 14px; line-height: 1.6; max-width: 260px; margin: 0; }
.footer-social h4 { font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1.2px; margin: 0 0 14px 0; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #111; border: 1px solid #2a2a2a; border-radius: 10px; color: #999; text-decoration: none; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.social-icon:hover { color: #ccff00; border-color: #ccff00; transform: translateY(-2px); }
.footer-col h3 { font-size: 12px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1.2px; margin: 0 0 22px 0; }
.footer-col { display: flex; flex-direction: column; }
.footer-col a:not(.brand) { color: #ccc; text-decoration: none; font-size: 14.5px; margin-bottom: 14px; width: fit-content; transition: color .2s ease; }
.footer-col a:not(.brand):hover { color: #ccff00; }
.footer-newsletter p { font-size: 14px; color: #bbb; margin: 0 0 18px 0; line-height: 1.5; }
/* scoped so it overrides unisex.css .notify-form on the footer only */
.site-footer .notify-form { display: flex; flex-direction: column; gap: 10px; background: transparent; border: none; padding: 0; box-sizing: border-box; max-width: none; margin: 0; }
.site-footer .notify-form input { flex: none; width: 100%; min-height: 0; padding: 13px 16px; border: 1px solid #2a2a2a; background: #111; color: #fff; font-family: inherit; font-size: 14px; outline: none; border-radius: 12px; box-sizing: border-box; transition: border-color .2s ease; }
.site-footer .notify-form input:focus { border-color: #ccff00; }
.site-footer .notify-form input::placeholder { color: #777; }
.site-footer .notify-form button { width: 100%; min-height: 0; padding: 13px 20px; border-radius: 12px; background: #ccff00; color: #000; font-weight: 800; border: none; font-size: 14px; cursor: pointer; white-space: nowrap; transition: opacity .2s ease; box-sizing: border-box; }
.site-footer .notify-form button:hover { opacity: .85; background: #ccff00; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 24px 40px; border-top: 1px solid #1a1a1a; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 13px; color: #777; }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a { color: #777; font-size: 13px; text-decoration: none; transition: color .2s ease; }
.footer-bottom-links a:hover { color: #ccff00; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; padding-top: 56px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}