/* ===========================================================
   Rudra Collection — base
=========================================================== */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: #f7efe1;
  color: #241712;
  font-family: 'Jost', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

::selection { background: #c19a4b; color: #54101a; }

img { max-width: 100%; }

a:focus-visible, button:focus-visible {
  outline: 2px solid #c19a4b;
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 999;
  background: #54101a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: .3px;
  transition: top .25s ease;
}
.skip-link:focus {
  top: 16px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ===========================================================
   Reveal-on-scroll
=========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ===========================================================
   Shared bits: eyebrow rows, section headings, buttons, cards
=========================================================== */
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.eyebrow-row--center { justify-content: center; }
.eyebrow-line { display: inline-block; width: 30px; height: 1px; background: #c19a4b; }
.eyebrow-line--dark { background: #a8763a; }
.eyebrow-dot { display: inline-block; width: 7px; height: 7px; background: #c19a4b; transform: rotate(45deg); }
.eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d8b873;
  font-weight: 500;
}
.eyebrow--dark { color: #7a531e; font-weight: 600; }

.section-head { text-align: center; margin-bottom: 58px; max-width: 1480px; margin-left: auto; margin-right: auto; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.04;
  margin: 0;
  color: #54101a;
}
.section-title--light { color: #f7efe1; }

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 40px;
  transition: background .3s ease, transform .3s ease, color .3s ease;
  border: none;
  cursor: pointer;
}
.btn--gold { background: #c19a4b; color: #54101a; }
.btn--gold:hover { background: #d8b873; transform: translateY(-2px); }
.btn--outline-light {
  background: transparent;
  color: #f3e7d2;
  font-weight: 500;
  border: 1px solid rgba(243,231,210,.5);
}
.btn--outline-light:hover { background: #f3e7d2; color: #54101a; }
.btn--dark { background: #54101a; color: #f3e7d2; font-weight: 500; }
.btn--dark:hover { background: #6d1322; transform: translateY(-2px); }
.btn--whatsapp { background: #1faa54; color: #fff; font-weight: 500; letter-spacing: 1px; padding: 16px 28px; gap: 8px; }
.btn--whatsapp:hover { background: #168a44; transform: translateY(-2px); }
.btn--instagram {
  background: linear-gradient(45deg, #f9a541, #e84c6a 50%, #c33aa6);
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 16px 28px;
}
.btn--instagram:hover { transform: translateY(-2px); }

.col-card { text-decoration: none; display: block; }
.col-frame {
  overflow: hidden;
  border-radius: 120px 120px 14px 14px;
  border: 1.5px solid rgba(193,154,75,.4);
}
.col-frame--arch { border-radius: 220px 220px 14px 14px; border-color: rgba(193,154,75,.45); }
.col-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
}
.col-frame--arch img { aspect-ratio: 3/4.2; }
.col-frame { transition: border-color .35s ease, box-shadow .35s ease; }
.col-card:hover .col-frame img { transform: scale(1.05); }
.col-card:hover .col-frame { border-color: rgba(193,154,75,.85); box-shadow: 0 18px 40px rgba(84,16,26,.22); }
.col-caption { text-align: center; margin-top: 18px; }
.col-caption--gen { margin-top: 22px; }
.col-name { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 26px; color: #54101a; line-height: 1; transition: color .3s ease; }
.col-name--light { color: #f7efe1; font-size: 30px; }
.col-tag { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #7a531e; margin-top: 7px; transition: letter-spacing .3s ease; }
.col-tag--light { color: #d8b873; margin-top: 8px; }
.col-card:hover .col-name { color: #84202f; }
.col-card:hover .col-name--light { color: #f3e7d2; }
.col-card:hover .col-tag { letter-spacing: 3.2px; }

/* ===========================================================
   Floating contact tabs
=========================================================== */
.float-tabs {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.float-tabs.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
}
.float-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f7efe1;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  padding: 0 0 0 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  font-size: 13px;
  letter-spacing: .5px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
  transition: width .4s cubic-bezier(.22,.61,.36,1), background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.float-btn svg { flex-shrink: 0; }
.float-btn span {
  opacity: 0;
  transition: opacity .25s ease;
}
.float-btn:hover,
.float-btn:focus-visible {
  width: 158px;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.34);
}
.float-btn:hover span,
.float-btn:focus-visible span { opacity: 1; }
.float-btn--call { background: #54101a; }
.float-btn--call:hover { background: #6d1322; }
.float-btn--whatsapp { background: #1faa54; color: #fff; }
.float-btn--whatsapp:hover { background: #168a44; }
.float-btn--instagram { background: linear-gradient(45deg, #f9a541, #e84c6a 50%, #c33aa6); color: #fff; }

/* ===========================================================
   Header
=========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: transparent;
  padding: 20px 0 14px;
  transition: background .45s ease, box-shadow .45s ease, padding .45s ease;
}
.site-header.is-scrolled {
  background: rgba(247,239,225,.96);
  box-shadow: 0 1px 0 rgba(84,16,26,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0 12px;
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 0 48px;
}
.logo { text-decoration: none; display: flex; align-items: center; gap: 16px; }
.logo-rule { display: inline-block; width: 34px; height: 1px; background: #c19a4b; }
.logo-dot { display: inline-block; width: 7px; height: 7px; background: #c19a4b; transform: rotate(45deg); }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 5px;
  color: #f3e7d2;
  text-transform: uppercase;
  line-height: 1;
  transition: color .45s ease;
}
.site-header.is-scrolled .logo-text { color: #54101a; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  text-decoration: none;
  color: #f3e7d2;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color .3s ease;
}
.nav-links a[data-nav]:hover { color: #d8b873; }
.site-header.is-scrolled .nav-links a[data-nav] { color: #54101a; }
.site-header.is-scrolled .nav-links a[data-nav]:hover { color: #84202f; }
.nav-cta {
  color: #54101a;
  background: #c19a4b;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 40px;
  transition: background .3s ease;
}
.nav-cta:hover { background: #d8b873; }

.menu-btn {
  display: none;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger { display: block; width: 24px; height: 2px; background: #f3e7d2; border-radius: 2px; }
.site-header.is-scrolled .burger { background: #54101a; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: #54101a;
  padding: 8px 28px 22px;
  margin-top: 13px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: #f3e7d2;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 0;
  border-bottom: 1px solid rgba(243,231,210,.12);
}
.mobile-menu .mobile-contact { color: #c19a4b; font-weight: 600; border-bottom: none; }

/* ===========================================================
   Hero
=========================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: stretch;
  background: #6d1322;
  background-image: radial-gradient(circle at 28% 18%, #84202f 0%, #6d1322 48%, #4e0d15 100%);
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 150px 72px 80px;
}
#home .eyebrow-row { margin-bottom: 26px; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(46px, 5vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.5px;
  margin: 0 0 26px;
  color: #f7efe1;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  font-weight: 300;
  color: #e7d3b8;
  max-width: 430px;
  margin: 0 0 42px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots { display: flex; gap: 10px; margin-top: 50px; align-items: center; }
[data-hero-dot] {
  position: relative;
  display: inline-block;
  height: 9px;
  width: 9px;
  border-radius: 6px;
  background: rgba(243,231,210,.35);
  cursor: pointer;
  transition: all .4s ease;
}
[data-hero-dot]::after {
  content: '';
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
}
[data-hero-dot]:hover { background: rgba(243,231,210,.6); }
[data-hero-dot].is-active { width: 30px; background: #c19a4b; }
[data-hero-dot].is-active:hover { background: #d8b873; }

.hero-arch {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 56px;
  height: 100vh;
}
.hero-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 84%;
  min-height: 460px;
  border-radius: 280px 280px 16px 16px;
  overflow: hidden;
  border: 2px solid rgba(193,154,75,.55);
  box-shadow: 0 36px 90px rgba(0,0,0,.42);
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 2; pointer-events: auto; }

/* ===========================================================
   For every generation
=========================================================== */
.generation {
  padding: 116px 48px;
  background: #6d1322;
  background-image: radial-gradient(circle at 72% 0%, #84202f 0%, #6d1322 55%, #4e0d15 100%);
}
.gen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

/* ===========================================================
   Collections
=========================================================== */
.collections { padding: 118px 48px; max-width: 1480px; margin: 0 auto; }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

/* ===========================================================
   Editorial banner
=========================================================== */
.editorial { position: relative; }
.editorial-img { width: 100%; height: 66vh; min-height: 440px; object-fit: cover; display: block; }
.editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(40,8,12,.66), rgba(40,8,12,.12));
  display: flex;
  align-items: center;
  pointer-events: none;
}
.editorial-container { max-width: 1480px; margin: 0 auto; width: 100%; padding: 0 48px; }
.editorial-inner { max-width: 600px; }
.editorial-inner .btn { pointer-events: auto; }
.editorial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.12;
  color: #f7efe1;
  margin: 0 0 30px;
}
.editorial-inner .eyebrow-row { margin-bottom: 18px; }

/* ===========================================================
   About
=========================================================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #efe2cc;
}
.about-media { position: relative; padding: 60px; display: flex; align-items: center; justify-content: center; }
.about-frame {
  width: 100%;
  max-width: 440px;
  border-radius: 240px 240px 14px 14px;
  overflow: hidden;
  border: 1.5px solid rgba(193,154,75,.5);
  box-shadow: 0 24px 60px rgba(84,16,26,.18);
}
.about-frame img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; display: block; }
.about-content { display: flex; flex-direction: column; justify-content: center; padding: 100px 76px 100px 20px; }
.about .section-title { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.06; margin: 0 0 24px; }
.about-text { font-size: 18px; line-height: 1.8; font-weight: 300; color: #5b3a2e; margin: 0 0 20px; }
.about-text:nth-of-type(2) { margin-bottom: 40px; }
.stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 42px; line-height: 1; color: #84202f; }
.stat-label { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: #7a531e; margin-top: 8px; }

/* ===========================================================
   Testimonials
=========================================================== */
.reviews { padding: 118px 48px; max-width: 1480px; margin: 0 auto; }
#reviews .section-head { margin-bottom: 50px; }
#reviews .section-title { margin-bottom: 22px; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #efe2cc;
  border: 1px solid rgba(193,154,75,.45);
  border-radius: 50px;
  padding: 11px 26px;
}
.rating-num { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 30px; color: #54101a; line-height: 1; }
.rating-stars { color: #7a5a1c; font-size: 18px; letter-spacing: 2px; }
.rating-divider { width: 1px; height: 22px; background: rgba(132,32,47,.25); }
.rating-count { font-size: 14px; color: #5b3a2e; letter-spacing: .5px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
}
.review-card {
  background: #fff;
  border: 1px solid rgba(193,154,75,.3);
  border-radius: 18px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(84,16,26,.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(84,16,26,.14);
  border-color: rgba(193,154,75,.6);
}
.review-stars { color: #7a5a1c; font-size: 17px; letter-spacing: 3px; margin-bottom: 18px; }
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: #3a2620;
  margin: 0 0 26px;
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: 13px; }
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  flex-shrink: 0;
}
.avatar--a { background: #84202f; color: #f3e7d2; }
.avatar--b { background: #c19a4b; color: #54101a; }
.avatar--c { background: #6d1322; color: #f3e7d2; }
.author-name { font-size: 15px; font-weight: 600; color: #54101a; }
.author-source { font-size: 12px; color: #7a531e; letter-spacing: .5px; }
.reviews-cta { text-align: center; margin-top: 46px; }

/* ===========================================================
   Contact
=========================================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #6d1322;
  background-image: radial-gradient(circle at 20% 100%, #84202f 0%, #6d1322 55%, #4e0d15 100%);
}
.contact-info { display: flex; flex-direction: column; justify-content: center; padding: 104px 76px; }
#contact .section-title { font-size: clamp(34px, 3.6vw, 54px); line-height: 1.04; margin: 0 0 34px; }
.contact-block { margin-bottom: 26px; }
.contact-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #d8b873; margin-bottom: 8px; }
.contact-text { font-size: 18px; line-height: 1.7; font-weight: 300; color: #f3e7d2; margin: 0; }
.contact-row { display: flex; gap: 48px; flex-wrap: wrap; margin-bottom: 38px; }
.contact-link { font-size: 18px; font-weight: 300; color: #f3e7d2; text-decoration: none; transition: color .3s ease; }
.contact-link:hover { color: #d8b873; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
#contact .btn--outline-light { padding: 16px 28px; letter-spacing: 1px; font-weight: 500; }

.contact-map { min-height: 520px; padding: 40px 56px 40px 0; display: flex; }
.map-frame {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(193,154,75,.45);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }

/* ===========================================================
   Footer
=========================================================== */
.site-footer { background: #2e0a0f; color: #f3e7d2; padding: 74px 48px 36px; }
.footer-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 320px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 4px;
  color: #f3e7d2;
  text-transform: uppercase;
  line-height: 1;
}
.footer-brand p { font-size: 14.5px; line-height: 1.7; font-weight: 300; color: rgba(243,231,210,.6); margin: 0; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-heading { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #c19a4b; margin-bottom: 14px; }
.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(243,231,210,.82);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 9px;
  transition: color .3s ease;
}
.footer-col a:last-child { margin-bottom: 0; }
.footer-col a:hover { color: #c19a4b; }
.logo { transition: opacity .3s ease; }
.logo:hover { opacity: .82; }
.footer-bottom {
  max-width: 1480px;
  margin: 52px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(243,231,210,.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(243,231,210,.5);
}

/* ===========================================================
   Responsive
=========================================================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 140px 28px 50px; text-align: center; align-items: center; }
  .hero-text .eyebrow-row,
  .hero-text .hero-actions { justify-content: center; }
  .hero-arch { height: 56vh; min-height: 380px; padding: 0 28px 40px; }

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

  .generation,
  .collections,
  .reviews,
  .editorial-container,
  .site-footer { padding-left: 24px; padding-right: 24px; }

  .about-content,
  .contact-info { padding: 64px 28px; }

  .float-tabs { right: 14px; bottom: 14px; gap: 10px; }
  .float-btn { width: 44px; height: 44px; }
  .float-btn:hover, .float-btn:focus-visible { width: 44px; }
  .logo-text { font-size: 24px; letter-spacing: 3px; }
  .logo-rule { width: 20px; }
}
