:root {
  --bg: #fcfaf7;
  --surface: #ffffff;
  --surface-2: #f3ede7;
  --primary: #816b54;
  --primary-dark: #5f4e3d;
  --primary-soft: rgba(129, 107, 84, 0.12);
  --text: #1f1a15;
  --muted: #685b50;
  --line: rgba(31, 26, 21, 0.1);
  --shadow: 0 22px 64px rgba(36, 28, 21, 0.12);
  --radius: 26px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 32px));
  --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(129,107,84,.12), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--bg) 42%, #fff 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 108px 0; position: relative; }
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}
.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading h2,
.intro-copy h2,
.about-copy h2,
.benefits-banner h2,
.contact-copy h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  margin: 14px 0 16px;
}
.section-heading p,
.intro-copy p,
.about-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(252, 250, 247, 0.78);
  border-bottom: 1px solid rgba(31, 26, 21, 0.06);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(31, 26, 21, 0.12);
}
.brand span {
  display: grid;
  line-height: 1.05;
}
.brand strong {
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.brand small {
  color: var(--muted);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .68rem;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.primary-nav a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
  transition: color .2s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--text); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  padding: 0;
  position: relative;
  overflow: clip;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease, transform 6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-slide.is-active .hero-media img { transform: scale(1.05); }
.hero-media,
.hero-media img {
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; transition: transform 6s ease; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 11, 0.82) 0%, rgba(18, 14, 11, 0.52) 38%, rgba(18, 14, 11, 0.2) 100%),
    linear-gradient(180deg, rgba(18, 14, 11, 0.16) 0%, rgba(18, 14, 11, 0.34) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-content: center;
  padding: 96px 0 80px;
  color: #fff;
}
.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .95;
  margin: 18px 0 16px;
  max-width: 720px;
}
.hero-content p {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
  margin: 0;
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 12px 32px rgba(18,14,11,.18);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  background: rgba(255,255,255,.06);
}
.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  max-width: 920px;
}
.mini-card {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}
.mini-card span {
  display: block;
  color: rgba(255,255,255,.76);
  line-height: 1.5;
  font-size: .96rem;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dots button {
  width: 80px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.hero-dots button.is-active {
  transform: scale(1.15);
  background: #fff;
}

.section-intro { padding-top: 84px; }
.intro-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.intro-stats {
  display: grid;
  gap: 16px;
}
.stat-card,
.product-card,
.benefit-card,
.testimonial-card,
.contact-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.stat-card {
  padding: 24px;
}
.stat-card strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.stat-card span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

.products { background: linear-gradient(180deg, rgba(129,107,84,.06), transparent 24%, transparent 100%); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  padding: 24px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
}
.product-card__icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface-2);
}
.product-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card h3,
.benefit-card h3 { margin: 0 0 10px; font-size: 1.3rem; }
.product-card p,
.benefit-card p,
.testimonial-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--primary-dark);
  font-weight: 700;
}
.text-link::after,
.inline-link::after {
  content: "→";
  transition: transform .2s ease;
}
.text-link:hover::after,
.inline-link:hover::after,
.inline-link:focus-visible::after { transform: translateX(4px); }
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.lookbook-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow);
}
.lookbook-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lookbook-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 15, 12, 0.02) 0%, rgba(20, 15, 12, 0.82) 100%);
}
.lookbook-card__body {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
}
.lookbook-card__body span {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .84;
}
.lookbook-card__body h3 {
  margin: 10px 0 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.about { background: linear-gradient(180deg, transparent 0%, rgba(129,107,84,.04) 100%); }
.about-stack {
  position: relative;
  min-height: 660px;
}
.about-main,
.about-float {
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-main {
  width: 60%;
  min-height: 660px;
  margin-left: auto;
}
.about-float {
  position: absolute;
  width: 55%;
  left: 0;
  bottom: 45px;
  min-height: 340px;
  border: 8px solid var(--bg);
}
.about-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.about-points div {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}
.about-points strong {
  display: block;
  margin-bottom: 6px;
}
.about-points span { color: var(--muted); line-height: 1.65; }

.benefits-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(129,107,84,.12), rgba(255,255,255,.9));
  border: 1px solid rgba(129,107,84,.16);
  margin-bottom: 28px;
}
.benefits-banner h2 { margin-bottom: 0; }
.benefits-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.benefit-card,
.testimonial-card {
  padding: 28px;
}
.benefit-card img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}
.testimonials { background: linear-gradient(180deg, rgba(129,107,84,.03), transparent 70%); }
.testimonial-card {
  position: relative;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 22px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(129,107,84,.14);
  font-family: Georgia, serif;
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-right: 42px;
}
.testimonial-card strong {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
}

.contact-grid { align-items: stretch; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.contact-item {
  padding: 22px;
}
.contact-item small {
  display: block;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.contact-item strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.5;
}
.contact-item span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.55;
}
.contact-map {
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-map iframe {
  width: 100%;
  min-height: 100%;
  border: 0;
}
.site-footer {
  padding: 28px 0 112px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-inner p {
  margin: 6px 0 0;
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}
.footer-links a:hover { color: var(--text); }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 32;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f1a15;
  color: #fff;
  box-shadow: 0 18px 38px rgba(0,0,0,.24);
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
}
.whatsapp-float span { font-weight: 700; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .intro-grid,
  .about-grid,
  .contact-grid,
  .products-grid,
  .lookbook-grid,
  .benefits-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-stack { min-height: auto; }
  .about-main { width: 100%; min-height: 520px; }
  .about-float { width: 38%; left: 18px; bottom: 18px; }
  .contact-map { min-height: 420px; }
}

@media (max-width: 860px) {
  :root { --header-height: 80px; }
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .site-header.is-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .primary-nav a {
    padding: 14px 16px;
    border-radius: 14px;
  }
  .primary-nav a:hover,
  .primary-nav a:focus-visible { background: var(--surface-2); }
  .primary-nav a::after { display: none; }

  .hero-content {
    padding-top: 74px;
    padding-bottom: 90px;
    min-height: 760px;
  }
  .hero-mini-cards,
  .contact-cards,
  .products-grid,
  .lookbook-grid,
  .benefits-grid,
  .testimonials-grid,
  .intro-grid { grid-template-columns: 1fr; }
  .benefits-banner,
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .section { padding: 78px 0; }
  .hero-content h1 { max-width: 12ch; }
  .hero-content p { font-size: 1rem; }
  .hero-mini-cards { gap: 12px; }
  .mini-card,
  .stat-card,
  .product-card,
  .benefit-card,
  .testimonial-card,
  .contact-item { padding: 20px; }
  .product-card { grid-template-columns: 1fr; }
  .product-card__icon { width: 82px; height: 82px; }
  .lookbook-card { min-height: 420px; }
  .about-main { min-height: 440px; }
  .about-float {
    position: relative;
    width: 62%;
    left: auto;
    bottom: auto;
    margin-top: -78px;
  }
  .contact-cards { grid-template-columns: 1fr; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}











.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-copy{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
}

.contact-map{
  height:100%;
}

.contact-map iframe{
  width:100%;
  height:100%;
  min-height: 520px;
  display:block;
  border:0;
  border-radius:24px;
}

.contact-actions{
  margin-top: 24px;
}

.site-footer{
  margin-top: 0;
}

.contact-map iframe{
  min-height: 460px;
}

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

  .contact-copy{
    justify-content:flex-start;
  }

  .contact-map iframe{
    min-height: 340px;
  }
}








.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-side{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-map iframe{
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
  border-radius: 24px;
}

.contact-form{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
}

.contact-form__head{
  margin-bottom: 22px;
}

.contact-form__head h3{
  margin: 8px 0 10px;
  font-size: 1.6rem;
  line-height: 1.15;
}

.contact-form__head p{
  margin: 0;
  color: #6b625b;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full{
  grid-column: 1 / -1;
}

.form-field label{
  font-size: .92rem;
  font-weight: 700;
  color: #2b211b;
}

.form-field input,
.form-field textarea{
  width: 100%;
  border: 1px solid #d8d0c8;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: #2b211b;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input:focus,
.form-field textarea:focus{
  border-color: #a79581;
  box-shadow: 0 0 0 4px rgba(167,149,129,.15);
}

.form-field textarea{
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn{
  margin-top: 20px;
}

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

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

  .contact-map iframe{
    height: 320px;
  }

  .contact-form{
    padding: 22px;
  }
}











.contact-top{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-copy,
.contact-form-wrap{
  height: 100%;
}

.contact-form{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:24px;
  padding:28px;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
  height:100%;
}

.contact-form__head{
  margin-bottom:22px;
}

.contact-form__head h3{
  margin:8px 0 10px;
  font-size:1.9rem;
  line-height:1.1;
}

.contact-form__head p{
  margin:0;
  color:#6b625b;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field--full{
  grid-column:1 / -1;
}

.form-field label{
  font-size:.95rem;
  font-weight:700;
  color:#2b211b;
}

.form-field input,
.form-field textarea{
  width:100%;
  border:1px solid #d8d0c8;
  border-radius:16px;
  padding:14px 16px;
  font:inherit;
  background:#fff;
  color:#2b211b;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.form-field input:focus,
.form-field textarea:focus{
  border-color:#a79581;
  box-shadow:0 0 0 4px rgba(167,149,129,.15);
}

.form-field textarea{
  resize:vertical;
  min-height:140px;
}

.contact-form .btn{
  margin-top:20px;
}

.contact-map-full{
  margin-top:32px;
}

.contact-map-full iframe{
  width:100%;
  height:420px;
  display:block;
  border:0;
  border-radius:28px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

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

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

  .contact-form{
    padding:22px;
  }

  .contact-map-full iframe{
    height:340px;
  }
}







.hero-actions .btn-secondary:hover {
  background: #a79680;
  border: 1px solid #a79680;
}

.mini-card:hover {
    backdrop-filter: blur(20px);   
    transform: translateY(-4px);
}

.intro-stats .stat-card:hover {
      background: #a79680;
      transform: translateY(-4px);
}

.intro-stats .stat-card:hover span {
      color: #ffffff;
}

.products-grid .product-card:hover {
      transform: translateY(-4px);
}

.lookbook-grid .lookbook-card:hover {
      transform: translateY(-4px);
}

.about-points > div:hover {
  background: #a79680;
  border: 1px solid #a79680;
}

.about-points > div:hover span {
      color: #ffffff;
}

.benefits-grid .benefit-card:hover {
      transform: translateY(-4px);
}

.benefits-banner .btn-primary:hover {
  background: #00d034;
  color: #ffffff;
}

.testimonials-grid .testimonial-card:hover {
      transform: translateY(-4px);
}

.whatsapp-float:hover {
  background: #00d034;
  color: #ffffff;
}

.contact-actions .btn-primary:hover {
  background: #00d034;
  color: #ffffff;
}

.contact-actions  .btn-secondary {
  background: #a79680;
  border: 1px solid #a79680;
}

.contact-actions  .btn-secondary:hover {
  background: var(--text);
  border: 1px solid var(--text);
}

.btn-primary:hover {
    background: #a79680;
  border: 1px solid #a79680;
  color: #ffffff;
}


