/* ==========================================================================
   Culture — Thane boutique landing page
   Warm heritage-meets-modern: plum/magenta primary, crimson-marigold-forest
   flourishes, ivory ground. Fraunces for display, Inter for body.
   ========================================================================== */

:root {
  --plum: #7A1E4C;
  --plum-dark: #521433;
  --plum-light: #9C3B6E;
  --crimson: #C13A3A;
  --marigold: #E8A93C;
  --forest: #2C6B4F;
  --ivory: #FBF3E7;
  --ivory-soft: #F6EADA;
  --ivory-deep: #EFE0C8;
  --cream: #FFF8EE;
  --ink: #2C1B22;
  --ink-soft: #5B4650;
  --border-soft: rgba(122, 30, 76, 0.14);
  --shadow-soft: 0 20px 50px -25px rgba(82, 20, 51, 0.35);
  --shadow-card: 0 14px 34px -18px rgba(44, 27, 34, 0.28);
  --radius: 12px;
  --radius-lg: 22px;
  --font-display: 'Fraunces', 'Playfair Display', serif;
  --font-body: 'Inter', 'Satoshi', -apple-system, sans-serif;
  --whatsapp-green: #25A25A;
  --whatsapp-green-dark: #1C8248;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--ivory);
  background-image:
    radial-gradient(circle at 15% 8%, rgba(122, 30, 76, 0.045), transparent 40%),
    radial-gradient(circle at 85% 92%, rgba(44, 107, 79, 0.05), transparent 45%),
    repeating-linear-gradient(120deg, rgba(122,30,76,0.015) 0px, rgba(122,30,76,0.015) 1px, transparent 1px, transparent 8px);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
section { position: relative; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--marigold));
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--plum-dark);
  margin: 0.2em 0 0.5em;
  line-height: 1.15;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

.section-pad { padding: 96px 0; }
@media (max-width: 768px) { .section-pad { padding: 64px 0; } }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.icon-wa { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--plum);
  color: var(--cream);
  box-shadow: 0 12px 26px -12px rgba(122, 30, 76, 0.55);
}
.btn-primary:hover { background: var(--plum-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(122, 30, 76, 0.6); }

.btn-outline {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--cream); transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(37, 162, 90, 0.55);
}
.btn-whatsapp:hover { background: var(--whatsapp-green-dark); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.86rem; }

/* ---- Header --------------------------------------------------------------*/
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(251, 243, 231, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122,30,76,0.09);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(44,27,34,0.4); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand-logo { display: flex; align-items: center; height: 56px; }
.brand-logo img { height: 100%; width: auto; }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--crimson);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--plum-dark); border-radius: 2px; }

@media (max-width: 900px) {
  .main-nav { position: fixed; top: 78px; left: 0; right: 0; background: var(--ivory); border-bottom: 1px solid var(--border-soft); max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .main-nav.is-open { max-height: 400px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 10px 28px 20px; }
  .main-nav li { border-bottom: 1px solid rgba(122,30,76,0.08); }
  .main-nav a { display: block; padding: 14px 0; }
  .nav-toggle { display: flex; }
  .header-cta .btn-outline { display: none; }
}

@media (max-width: 400px) {
  .site-header .container { height: 74px; }
  .brand-logo { height: 44px; }
  .header-cta { gap: 8px; }
  .btn-whatsapp.btn-sm { padding: 9px 14px; font-size: 0.8rem; }
  .main-nav { top: 74px; }
}

/* ---- Hero ---------------------------------------------------------------*/
.hero {
  padding-top: 78px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}
.hero-copy h1 span { color: var(--crimson); font-style: italic; }
.hero-copy p {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  background: var(--ivory-deep);
}
.hero-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 10px solid var(--cream);
  border-radius: var(--radius-lg);
  z-index: 3;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 4;
}
.hero-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.55);
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero-dots button.is-active { background: var(--marigold); transform: scale(1.25); }

.hero-flourish {
  position: absolute;
  top: -18px; right: -18px;
  width: 84px; height: 84px;
  z-index: 4;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; }
  .hero-copy p { max-width: 100%; }
  .hero { min-height: unset; }
}
@media (max-width: 400px) {
  .hero { padding-top: 74px; }
}

/* ---- Brand story ----------------------------------------------------------*/
.brand-story { background: var(--plum); color: var(--cream); overflow: hidden; }
.brand-story .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.brand-story-media { position: relative; }
.brand-story-media img {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
}
.brand-story-media::after {
  content: '';
  position: absolute;
  bottom: -22px; left: -22px;
  width: 60%; height: 60%;
  border: 2px solid var(--marigold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.brand-story-copy .eyebrow { color: var(--marigold); }
.brand-story-copy .eyebrow::before { background: linear-gradient(90deg, var(--marigold), var(--forest)); }
.brand-story-copy h2 { color: var(--cream); font-size: clamp(1.9rem, 3vw, 2.5rem); }
.brand-story-copy p { color: rgba(255,248,238,0.86); font-size: 1.06rem; margin-bottom: 18px; }
.story-badges { display: flex; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
.story-badge { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.4rem; }
.story-badge small { display: block; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,248,238,0.65); font-weight: 500; }

@media (max-width: 900px) {
  .brand-story .container { grid-template-columns: 1fr; }
  .brand-story-media { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ---- Lookbook ------------------------------------------------------------*/
.lookbook { background: var(--ivory-soft); }
.lookbook-grid {
  columns: 3 260px;
  column-gap: 22px;
}
.lookbook-item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lookbook-item.is-visible { opacity: 1; transform: translateY(0); }
.lookbook-item .lb-frame { overflow: hidden; }
.lookbook-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}
.lookbook-item:hover img { transform: scale(1.09); }
.lookbook-item .lb-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(251,243,231,0.92);
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}

@media (max-width: 900px) { .lookbook-grid { columns: 2 220px; } }
@media (max-width: 560px) { .lookbook-grid { columns: 1 100%; } }

/* ---- Testimonials ----------------------------------------------------- */
.testimonials { background: var(--cream); }
.testimonial-track-wrap { max-width: 720px; margin: 0 auto; position: relative; }
.testimonial-slide {
  display: none;
  text-align: center;
  padding: 10px 20px;
}
.testimonial-slide.is-active { display: block; animation: fadeIn 0.6s ease; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-style: italic;
  color: var(--plum-dark);
  line-height: 1.5;
}
.testimonial-quote::before { content: '\201C'; color: var(--marigold); font-size: 1.4em; }
.testimonial-quote::after { content: '\201D'; color: var(--marigold); font-size: 1.4em; }
.testimonial-author { margin-top: 22px; font-weight: 600; color: var(--ink); }
.testimonial-author span { display: block; font-weight: 400; font-size: 0.85rem; color: var(--ink-soft); margin-top: 2px; }
.testimonial-stars { color: var(--marigold); letter-spacing: 3px; margin-top: 8px; font-size: 0.9rem; }

.testimonial-nav { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.testimonial-nav button {
  width: 9px; height: 9px; border-radius: 50%; border: none;
  background: var(--border-soft);
  transition: background 0.25s ease, transform 0.25s ease;
}
.testimonial-nav button.is-active { background: var(--crimson); transform: scale(1.3); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Visit us ------------------------------------------------------------*/
.visit-us .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: stretch;
}
.visit-info {
  background: var(--ivory-soft);
  border-radius: var(--radius-lg);
  padding: 42px;
  border: 1px solid var(--border-soft);
}
.visit-info h3 { font-size: 1.5rem; }
.visit-list { margin-top: 24px; display: flex; flex-direction: column; gap: 20px; }
.visit-list li { display: flex; gap: 14px; align-items: flex-start; }
.visit-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.visit-list strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 2px; }
.visit-list p, .visit-list a { margin: 0; font-weight: 500; color: var(--ink); }
.visit-list a:hover { color: var(--plum); }
.visit-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.visit-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); min-height: 380px; }
.visit-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

@media (max-width: 900px) {
  .visit-us .container { grid-template-columns: 1fr; }
  .visit-info { padding: 32px 26px; }
}

/* ---- Instagram reels ------------------------------------------------------*/
.insta-strip { background: var(--ivory); }
.insta-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; flex-wrap: wrap; gap: 16px; }
.insta-head h2 { margin: 0; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }

.insta-showcase {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
}

.reel-card {
  position: relative;
  display: block;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}
.reel-card-feature { max-width: 320px; margin: 0 auto; }
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink);
}
.reel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,27,34,0) 55%, rgba(44,27,34,0.7) 100%);
  pointer-events: none;
}
.reel-badge {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(251,243,231,0.9);
  color: var(--plum);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  z-index: 2;
}

.insta-feature-copy h3 { font-size: 1.5rem; margin-bottom: 20px; }
.insta-feature-copy .faq-list { max-width: none; margin: 0; }

@media (max-width: 900px) {
  .insta-showcase { grid-template-columns: 1fr; gap: 36px; }
  .reel-card-feature { max-width: 280px; margin: 0 auto; }
  .insta-feature-copy { text-align: center; }
  .insta-feature-copy .faq-question { text-align: left; }
  .insta-feature-copy .faq-answer p { text-align: left; }
}

/* ---- FAQ ------------------------------------------------------------------*/
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--plum-dark);
}
.faq-question .q-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--plum);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--plum);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.is-open .q-icon { background: var(--plum); color: var(--cream); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p { margin: 0 26px 22px; color: var(--ink-soft); max-width: 640px; }

/* ---- Contact / footer -----------------------------------------------------*/
.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-copy p { color: var(--ink-soft); max-width: 420px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-soft);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--plum);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); }
#form-status { font-size: 0.9rem; font-weight: 600; min-height: 1.2em; }
#form-status.ok { color: var(--forest); }
#form-status.err { color: var(--crimson); }

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

footer.site-footer {
  background: var(--plum-dark);
  color: rgba(255,248,238,0.82);
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,248,238,0.14);
}
.footer-brand img { height: 52px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p { max-width: 280px; color: rgba(255,248,238,0.68); font-size: 0.92rem; }
.footer-col h4 { color: var(--cream); font-size: 0.95rem; margin-bottom: 16px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.03em; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,248,238,0.75); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--marigold); }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,248,238,0.28);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--marigold); border-color: var(--marigold); color: var(--plum-dark); }
.icon-wa-social { width: 17px; height: 17px; }
.icon-ig-social { width: 18px; height: 18px; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,248,238,0.55);
}
.footer-bottom a { color: rgba(255,248,238,0.72); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--marigold); }

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

/* ---- Floating WhatsApp button ---------------------------------------------*/
.float-whatsapp {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 400;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37,162,90,0.6);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.icon-wa-float { width: 27px; height: 27px; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 14px 30px -10px rgba(37,162,90,0.6); }
  50% { box-shadow: 0 14px 30px -6px rgba(37,162,90,0.85); }
}

/* ---- Utility --------------------------------------------------------------*/
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
