:root {
  --black: #101010;
  --ink: #171717;
  --muted: #6f6f6f;
  --line: #d7d5cf;
  --paper: #f4f2ec;
  --white: #ffffff;
  --green: #168a48;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --ease: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

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

button,
input {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #888888;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--black);
  transform: translateY(-160%);
  transition: transform var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 94px;
  padding: 1rem var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__logo-wrap {
  width: 56px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  padding: 2px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 50%;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(1) contrast(1.08);
}

.brand__name {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.brand__name span {
  display: block;
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  color: #3a3a3a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  min-height: 44px;
  padding: 0.85rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease);
}

.header-cta:hover {
  background: var(--white);
  color: var(--black);
}

.hero {
  min-height: min(740px, calc(100vh - 94px));
  padding: clamp(4rem, 9vw, 8.5rem) var(--page-pad) 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.45fr);
  gap: clamp(3rem, 8vw, 9rem);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero__content {
  align-self: center;
  max-width: 960px;
}

.eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #aaaaaa;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10.2vw, 10rem);
  font-weight: 800;
  line-height: 0.8;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

.hero__copy {
  max-width: 570px;
  margin: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  color: #bdbdbd;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.negotiable-banner {
  max-width: 620px;
  margin: 0 0 2rem;
  padding: 1rem 1.25rem 1.1rem;
  display: grid;
  gap: 0.25rem;
  background: var(--white);
  border-left: 6px solid var(--green);
  color: var(--black);
}

.negotiable-banner__label {
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.negotiable-banner strong {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.negotiable-banner > span:last-child {
  color: #4d4d4d;
  font-size: 0.9rem;
  font-weight: 700;
}

.button {
  width: fit-content;
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

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

.button--light {
  background: var(--white);
  color: var(--black);
}

.button--light:hover {
  background: transparent;
  color: var(--white);
}

.button--dark {
  background: var(--black);
  color: var(--white);
}

.button--dark:hover {
  background: transparent;
  color: var(--black);
}

.hero__aside {
  align-self: stretch;
  padding-left: clamp(1.5rem, 3vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #343434;
}

.hero__stamp {
  width: clamp(170px, 14vw, 220px);
  aspect-ratio: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border: 1px solid #555555;
  border-radius: 50%;
  transform: rotate(9deg);
}

.hero__stamp::before,
.hero__stamp::after {
  width: 70%;
  height: 1px;
  margin: 0.3rem 0;
  background: #555555;
  content: "";
}

.hero__stamp span {
  color: #999999;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__stamp strong {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.hero__stats {
  margin: 3rem 0 0;
}

.hero__stats div {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #343434;
}

.hero__stats dt,
.hero__stats dd {
  margin: 0;
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__stats dt {
  color: #777777;
}

.hero__stats dd {
  font-weight: 700;
}

.catalog {
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.section-heading h2,
.about h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(2.7rem, 6.5vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
}

.section-heading .eyebrow {
  margin-bottom: 1rem;
  color: var(--muted);
}

.section-heading__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: right;
}

.catalog-toolbar {
  margin-top: clamp(3rem, 5vw, 5rem);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-button {
  min-height: 40px;
  padding: 0.68rem 1rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.search {
  width: min(100%, 290px);
  min-height: 42px;
  padding-left: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.search:focus-within {
  border-color: var(--black);
}

.search svg {
  width: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.search input {
  width: 100%;
  min-width: 0;
  padding: 0.7rem 0.65rem 0.7rem 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 0.78rem;
}

.search input::placeholder {
  color: #8b8b8b;
}

.catalog-meta {
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-meta p {
  margin: 0;
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
}

.product-card {
  min-width: 0;
  opacity: 0;
  animation: card-in 500ms forwards;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e2dfd7;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.82) contrast(1.02);
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1), filter var(--ease);
}

.product-card:hover .product-card__image {
  filter: grayscale(0) contrast(1);
  transform: scale(1.045);
}

.product-card__image-wrap.image-unavailable {
  display: grid;
  place-items: center;
  background: #e2dfd7;
}

.product-card__image-wrap.image-unavailable::after {
  max-width: 12rem;
  padding: 1rem;
  color: #777777;
  content: "F&F - IMAGE COMING SOON";
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-align: center;
}

.product-card__image-wrap.image-unavailable .product-card__image {
  display: none;
}

.product-card__category {
  position: absolute;
  z-index: 1;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__body {
  padding-top: 1.1rem;
}

.product-card__details {
  min-height: 60px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
}

.product-card__title {
  margin: 0 0 0.38rem;
  font-size: 0.96rem;
  line-height: 1.25;
}

.product-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.product-card__price {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.92rem;
  font-weight: 800;
}

.whatsapp-button {
  width: 100%;
  min-height: 45px;
  margin-top: 1rem;
  padding: 0.7rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background var(--ease), border-color var(--ease);
}

.whatsapp-button svg {
  width: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-button span:last-child {
  margin-left: auto;
}

.whatsapp-button:hover {
  background: var(--green);
  border-color: var(--green);
}

.loading-card {
  aspect-ratio: 4 / 5.75;
  background: linear-gradient(100deg, #e4e1da 30%, #f2f0eb 50%, #e4e1da 70%);
  background-size: 300% 100%;
  animation: loading 1.3s infinite;
}

@keyframes loading {
  to {
    background-position-x: -150%;
  }
}

.empty-state {
  padding: clamp(4rem, 9vw, 8rem) 1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.empty-state > span {
  display: block;
  color: #aaaaaa;
  font-size: 4rem;
}

.empty-state h3 {
  margin: 1rem 0 0.5rem;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

.empty-state p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.empty-state .button {
  margin-inline: auto;
}

.about {
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.about__label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--muted);
}

.about__label span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about h2 {
  max-width: 950px;
}

.about__points {
  margin-top: clamp(3rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 3.2rem);
}

.about__points article {
  padding-top: 1.2rem;
  border-top: 1px solid var(--black);
}

.about__points article > span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.about__points h3 {
  margin: 2.2rem 0 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.about__points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.site-footer {
  padding: clamp(4rem, 8vw, 7rem) var(--page-pad) 1.5rem;
  background: var(--black);
  color: var(--white);
}

.footer__top {
  padding-bottom: clamp(4rem, 8vw, 7rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.footer__top .eyebrow {
  color: #888888;
}

.footer__bottom {
  padding-top: 1.3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid #383838;
  color: #888888;
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer__bottom p {
  margin: 0;
  text-align: center;
}

.footer__bottom > a:last-child {
  justify-self: end;
}

.brand--footer .brand__logo-wrap {
  width: 43px;
}

.brand--footer .brand__name {
  color: var(--white);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 3rem;
  }

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

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 78px;
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .brand__logo-wrap {
    width: 46px;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    padding: 0.72rem 0.8rem;
    gap: 0.6rem;
    font-size: 0.62rem;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 7rem);
    line-height: 0.84;
  }

  .hero__aside {
    padding: 2.5rem 0 0;
    border-top: 1px solid #343434;
    border-left: 0;
  }

  .hero__stamp {
    display: none;
  }

  .hero__stats {
    margin: 0;
  }

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

  .section-heading__note {
    text-align: left;
  }

  .filters {
    flex-wrap: nowrap;
    margin-inline: calc(var(--page-pad) * -1);
    padding: 0 var(--page-pad) 0.3rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .catalog-meta span {
    display: none;
  }

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

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

  .about__label > span {
    display: none;
  }

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

  .about__points h3 {
    margin-top: 1.4rem;
  }

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

  .footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .footer__bottom p {
    display: none;
  }
}

@media (max-width: 480px) {
  .brand__name {
    display: none;
  }

  .hero h1 {
    font-size: 17.2vw;
  }

  .hero__copy {
    font-size: 0.96rem;
  }

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

  .product-card__image-wrap {
    aspect-ratio: 4 / 4.7;
  }

  .footer__bottom {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
