/* --- HOME PAGE --- */

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 60px 100px 80px;
  background: var(--white);
  position: relative;
  z-index: 2;
}
.hero-text .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 24px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}
.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--caramel);
}
.hero-text p {
  font-size: 1rem;
  color: var(--mid);
  max-width: 380px;
  margin-bottom: 40px;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-text .hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--linen);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--linen) 0%, #D9C4B0 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(45deg, var(--caramel) 0, var(--caramel) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.hero-badge {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--espresso);
  color: var(--white);
  padding: 20px 30px;
  text-align: center;
  min-width: 200px;
  animation: fadeIn 1s 1.2s both;
}
.hero-badge .badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 8px;
}
.hero-badge .badge-brands {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.hero-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--caramel);
}

/* BRANDS STRIP */
.brands-strip {
  background: var(--espresso);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  overflow: hidden;
}
.brands-strip .strip-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,130,0.6);
  white-space: nowrap;
}
.brands-strip .strip-divider {
  width: 1px;
  height: 30px;
  background: rgba(201,168,130,0.3);
}
.brands-strip .strip-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--caramel);
  text-transform: uppercase;
}

/* ABOUT TEASER */
.about-teaser {
  padding: 130px 40px;
  background: var(--white);
}
.about-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-frame {
  aspect-ratio: 3/4;
  background: var(--linen);
  position: relative;
  overflow: hidden;
}
.about-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(44,26,18,0.15) 100%);
}
.about-frame-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-offset {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 70%;
  aspect-ratio: 1;
  background: var(--espresso);
  z-index: -1;
}
.about-offset::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,168,130,0.3);
}
.about-content .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 400;
  margin-bottom: 16px;
}
.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--espresso);
  margin-bottom: 10px;
}
.about-content h2 em {
  font-style: italic;
  color: var(--caramel);
}
.about-content p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-top: 24px;
  margin-bottom: 36px;
}

/* BRANDS SECTION */
.brands-section {
  padding: 130px 40px;
  background: var(--linen);
}
.brands-section .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.brands-section .section-header .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 400;
  margin-bottom: 16px;
}
.brands-section .section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--espresso);
}
.brands-section .section-header h2 em {
  font-style: italic;
}
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}
.brand-card {
  background: var(--white);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--caramel);
  transition: height 0.5s var(--transition);
}
.brand-card:hover { background: var(--espresso); }
.brand-card:hover::before { height: 100%; }
.brand-card:hover .brand-name { color: var(--caramel); }
.brand-card:hover .brand-desc { color: rgba(237,224,212,0.65); }
.brand-card:hover .brand-tag { border-color: rgba(201,168,130,0.3); color: var(--caramel); }
.brand-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.brand-card:hover .brand-number { color: rgba(201,168,130,0.15); }
.brand-name {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--espresso);
  margin-bottom: 16px;
  transition: color var(--transition);
}
.brand-desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 300px;
  transition: color var(--transition);
}
.brand-tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--linen);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  transition: all var(--transition);
}

/* WHY US */
.why-section {
  padding: 130px 40px;
  background: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}
.why-left .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 400;
  margin-bottom: 16px;
}
.why-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--espresso);
}
.why-left h2 em { font-style: italic; color: var(--caramel); }
.why-left p {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.95;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.why-item {
  background: var(--linen);
  padding: 40px 36px;
}
.why-item .why-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--caramel);
}
.why-item h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 10px;
}
.why-item p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.85;
}

/* CTA */
.cta-section {
  padding: 120px 40px;
  background: var(--espresso);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,168,130,0.04) 0, rgba(201,168,130,0.04) 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 20px;
  font-weight: 400;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.cta-section h2 em { font-style: italic; color: var(--caramel); }
.cta-section p {
  font-size: 0.95rem;
  color: rgba(237,224,212,0.65);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.9;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  border-color: rgba(237,224,212,0.5);
  color: var(--linen);
}
.btn-white:hover {
  background: rgba(237,224,212,0.1);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
  .hero-text { padding: 140px 50px 80px 60px; }
  .about-teaser .container { gap: 60px; }
  .why-inner { gap: 60px; }
  .brand-card { padding: 55px 45px; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 140px 40px 70px; }
  .hero-text h1 { font-size: clamp(2.8rem, 7vw, 4.5rem); }
  .hero-visual { height: 420px; }
  .hero-scroll { display: none; }
  .about-teaser .container { grid-template-columns: 1fr; gap: 50px; }
  .about-offset { display: none; }
  .brands-grid { gap: 2px; }
  .why-inner { grid-template-columns: 1fr; gap: 50px; }
  .brands-strip { gap: 30px; flex-wrap: wrap; }
}

@media (max-width: 850px) {
  .hero-text { padding: 120px 24px 60px; }
  .brands-section, .about-teaser, .why-section { padding: 80px 20px; }
  .cta-section { padding: 80px 20px; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .about-teaser, .brands-section, .why-section, .cta-section { padding-top: 60px; padding-bottom: 60px; }
  .brands-grid { grid-template-columns: 1fr; }
  .brand-card { padding: 45px 30px; }
  .hero-text .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .brands-strip { flex-direction: column; gap: 16px; padding: 30px 20px; }
  .brands-strip .strip-divider { width: 40px; height: 1px; }
}
