:root {
  --black: #050505;
  --white: #ffffff;
  --neutral-50: #fafafa;
  --neutral-100: #f2f2f2;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-900: #171717;
  --gold: #eab308;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
}

img,
svg {
  display: block;
}

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

.page {
  min-height: 100vh;
  padding-bottom: 0;
  background: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--neutral-100);
  background: rgba(255, 255, 255, 0.97);
}

.brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--neutral-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-tabs a {
  padding-bottom: 4px;
  transition: color 180ms ease;
}

.brand-tabs a:hover,
.brand-tabs .active {
  color: var(--black);
}

.brand-tabs .active {
  border-bottom: 1px solid var(--black);
}

.location {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  font-size: 14px;
  font-weight: 500;
}

.location svg,
.button svg,
.mobile-phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 80vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--neutral-900);
  text-align: center;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 55%, rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 16px;
  color: var(--white);
  animation: floatIn 900ms ease both;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--neutral-400);
  letter-spacing: 0.4em;
}

.hero h1 {
  margin: 0 0 32px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(56px, 7.6vw, 128px);
  font-weight: 400;
  line-height: 0.98;
}

.hero h1 em {
  font-style: italic;
}

.hero h1 span {
  font-style: normal;
}

.hero-copy {
  max-width: 620px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 20px 40px;
  border: 0;
  border-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: scale(1.045);
}

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

.button-light:hover {
  background: var(--neutral-100);
}

.button-dark {
  min-height: 80px;
  padding: 26px 64px;
  background: var(--black);
  color: var(--white);
  letter-spacing: 0.3em;
}

.button-dark:hover {
  background: #262626;
}

.button-dark svg {
  width: 24px;
  height: 24px;
}

.benefits {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  overflow: hidden;
  padding: 16px 24px;
  border-bottom: 1px solid var(--neutral-100);
  background: var(--neutral-50);
  white-space: nowrap;
}

.benefits span {
  margin: 0 16px;
  color: var(--neutral-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.favorites {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px;
}

.favorites,
.editorial,
.testimonials,
.seo-strip,
.final-cta {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-title {
  margin: 0 auto 80px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 56px);
  font-weight: 400;
}

.section-title > span {
  display: block;
  width: 80px;
  height: 1px;
  margin: 24px auto 0;
  background: var(--black);
}

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

.product-card {
  cursor: pointer;
}

.product-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  margin-bottom: 24px;
  overflow: hidden;
  background: #f3eee8;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 700ms ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.03);
}

.product-photo strong {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  padding: 7px 12px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.product-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card:hover .product-hover {
  opacity: 1;
}

.product-hover a {
  padding: 14px 24px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  transition: color 180ms ease;
}

.product-card:hover h3 {
  color: var(--neutral-600);
}

.product-card p {
  margin: 0 0 16px;
  color: var(--neutral-500);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.consult {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consult span {
  font-size: 18px;
  line-height: 1;
}

.editorial {
  background: var(--neutral-50);
}

.editorial-row {
  display: flex;
  min-height: 70vh;
}

.editorial-row.reverse {
  flex-direction: row-reverse;
}

.editorial-image,
.editorial-text {
  width: 50%;
}

.editorial-image {
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  object-fit: cover;
}

.editorial-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 96px;
}

.editorial-text > div {
  max-width: 450px;
}

.editorial-text.light {
  background: var(--white);
}

.editorial-text.dark-panel {
  background: var(--neutral-900);
  color: var(--white);
}

.editorial-text h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.12;
}

.editorial-text p {
  margin: 0;
  color: var(--neutral-500);
  font-size: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}

.dark-panel p {
  color: var(--neutral-300);
}

.editorial-text span {
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 32px;
  background: currentColor;
}

.testimonials {
  padding: 96px 24px;
  border-top: 1px solid var(--neutral-100);
}

.testimonials .section-title {
  margin-bottom: 64px;
}

.section-title.compact h2 {
  margin-bottom: 8px;
  font-size: 36px;
}

.section-title.compact p {
  margin: 0;
  color: var(--neutral-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1152px;
  margin: 0 auto;
}

.testimonial {
  padding: 32px;
  border: 1px solid var(--neutral-100);
  background: var(--neutral-50);
}

.testimonial-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.avatar {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: var(--neutral-200);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.stars {
  margin: 0;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0;
}

.testimonial > p {
  margin: 0;
  color: var(--neutral-600);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

.seo-strip {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 24px 24px;
  text-align: center;
}

.seo-strip h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
}

.seo-strip p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--neutral-500);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.final-cta {
  padding: 128px 24px;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}

.mobile-bar {
  display: none;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

@media (max-width: 860px) {
  .page {
    padding-bottom: 96px;
  }

  .site-header {
    gap: 10px;
    padding: 16px;
  }

  .brand-tabs {
    gap: 12px;
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .location span {
    display: none;
  }

  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .button {
    width: 100%;
    max-width: 360px;
    padding-inline: 24px;
  }

  .benefits {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .favorites,
  .testimonials {
    padding: 72px 20px;
  }

  .section-title {
    margin-bottom: 56px;
  }

  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .editorial-row,
  .editorial-row.reverse {
    flex-direction: column;
    min-height: auto;
  }

  .editorial-image,
  .editorial-text {
    width: 100%;
  }

  .editorial-image {
    height: 60vh;
  }

  .editorial-image img {
    min-height: 0;
  }

  .editorial-text {
    min-height: 42vh;
    padding: 56px 32px;
    text-align: center;
  }

  .editorial-text span {
    margin-right: auto;
    margin-left: auto;
  }

  .final-cta {
    padding: 88px 20px;
  }

  .final-cta .button {
    display: none;
  }

  .mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    gap: 16px;
    padding: 16px;
    border-top: 1px solid var(--neutral-100);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
  }

  .mobile-whatsapp {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .mobile-phone {
    display: flex;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--neutral-200);
    background: var(--white);
  }
}

@media (max-width: 460px) {
  .brand-tabs {
    max-width: 250px;
  }

  .hero-content {
    padding: 32px 18px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    min-height: 60px;
    font-size: 10px;
  }

  .section-title h2,
  .final-cta h2 {
    font-size: 40px;
  }
}
