:root {
  --bg-paper: #FDFBF7; 
  --bg-section-alt: #F4F2ED; 
  --bg-dark: #121212;
  --ink: #2C2C2C;      
  --ink-light: #595959;
  --gold: #C6A87C;     
  --accent: #D48C70;   
  --warm-gray: #E8E6E1;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  --font-hand: 'Dancing Script', cursive;
  
  --shadow-soft: 0 20px 40px -10px rgba(0,0,0,0.08);
  --shadow-card: 0 10px 30px rgba(0,0,0,0.05);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400; 
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, .logo {
  font-family: var(--font-serif);
  font-weight: 500; 
  color: var(--ink);
}

.serif-italic {
  font-style: italic;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* TOOLBAR (ANNOUNCEMENT BAR) */
.toolbar {
  background-color: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1001; /* Above navbar */
}
.toolbar__content {
  display: flex; justify-content: space-between; align-items: center;
  width: 90%; max-width: 1300px; margin: 0 auto; padding: 0;
}
.toolbar__text { font-weight: 500; letter-spacing: 0.05em; }
.toolbar__links { display: flex; gap: 1.5rem; }
.toolbar__links a {
  color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s;
}
.toolbar__links a:hover { color: #fff; }

/* NAVBAR */
.navbar {
  position: sticky; /* Changed from fixed to sticky so it sits below toolbar naturally */
  top: 0; 
  width: 100%; 
  padding: 1.5rem 0; 
  z-index: 1000;
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
/* If sticking is an issue with fixed toolbar, we might need JS adjustment or just use sticky which works well usually */

.navbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  width: 90%; /* Match hero width percentage */
  max-width: 1300px; /* Match hero max-width */
  margin: 0 auto; 
  padding: 0; /* Remove padding to align exactly with hero grid edges */
}
.logo {
  font-size: 1.8rem; 
  letter-spacing: -0.01em; 
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
}
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a {
  text-decoration: none; 
  color: var(--ink); 
  font-size: 0.85rem;
  font-weight: 500; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  position: relative; 
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { 
  border: 1px solid var(--ink);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
}
.nav-cta:hover {
  background: var(--ink);
  color: #fff !important;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .toolbar__links { display: none; }
  .toolbar__content { justify-content: center; }
}

/* HERO */
.hero-wrapper {
  position: relative;
  min-height: 80vh; /* Reduced from 90vh to lift content */
  padding-top: 0;   /* Removed top padding for better vertical centering */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, #F4EBE2 0%, transparent 70%);
  opacity: 0.8;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
}

.container.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-text {
  padding-right: 2rem;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFF;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.text-highlight {
  font-family: var(--font-hand);
  color: var(--accent);
  font-weight: 400;
  font-size: 1.1em; 
  display: block;
}

.hero-desc-box {
  margin-bottom: 3rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

.hero-description {
  font-family: var(--font-serif); 
  font-size: 1.4rem; 
  color: var(--ink-light);
  line-height: 1.5;
  font-style: italic; 
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--ink);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(212, 140, 112, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #fff;
  border-color: var(--ink);
}

/* HERO IMAGE */
.hero-visual {
  position: relative;
  height: 650px;
}

.img-composition {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-img-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  z-index: 1;
}
.main-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.hero-wrapper:hover .main-img-frame img {
  transform: scale(1.03);
}

.floating-card {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 280px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.floating-card h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.floating-card p {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 1rem;
}
.mini-gallery {
  display: flex;
  gap: 0.5rem;
}
.mini-gallery img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.decorative-star {
  position: absolute;
  top: 15%;
  left: -20px;
  font-size: 3rem;
  color: var(--gold);
  animation: spin 10s linear infinite;
  z-index: 3;
}
@keyframes spin { 100% { transform: rotate(360deg); } }


/* --- SECTION PRODUCTS --- */
.section { padding: 8rem 0; }
.section--products { background: #fff; padding-top: 4rem; padding-bottom: 8rem; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.products-header { margin-bottom: 4rem; text-align: center; }
.section-title.center { text-align: center; }
.section-subtitle { font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink-light); font-style: italic; }

.products-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.product-item { text-align: center; }
.product-thumb {
  position: relative; background: var(--bg-paper); padding: 4rem; margin-bottom: 2rem; border-radius: 4px; overflow: hidden;
  transition: transform 0.3s ease;
}
.product-item:hover .product-thumb { transform: translateY(-10px); }
.product-thumb img {
  width: 100%; max-width: 300px; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: rotate(-5deg); transition: transform 0.5s ease;
}
.product-item:hover img { transform: rotate(0deg) scale(1.05); }
.product-badge {
  position: absolute; top: 20px; right: 20px; background: var(--gold); color: #fff; padding: 5px 10px;
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 2px;
}
.product-info h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.product-price { font-family: var(--font-sans); color: var(--ink-light); margin-bottom: 1.5rem; }
.btn-buy {
  display: inline-block; padding: 1rem 3rem; background: var(--ink); color: #fff; text-decoration: none;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; transition: background 0.3s;
}
.btn-buy:hover { background: var(--accent); }


/* --- SECTION ABOUT (REDESIGNED) --- */
.section--about { background: var(--bg-section-alt); padding: 10rem 0; }
.about-new-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}

.about-visuals { position: relative; height: 600px; }
.about-collage-main {
  width: 85%; height: 85%; overflow: hidden; border-radius: 4px; position: absolute; top: 0; left: 0;
  box-shadow: var(--shadow-card);
}
.about-collage-main img { width: 100%; height: 100%; object-fit: cover; }
.about-collage-detail {
  width: 50%; height: 50%; position: absolute; bottom: 0; right: 0;
  border: 8px solid var(--bg-section-alt); border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-collage-detail img { width: 100%; height: 100%; object-fit: cover; }

.about-editorial { max-width: 500px; }
.editorial-label {
  display: block; font-family: var(--font-sans); font-size: 0.75rem; 
  text-transform: uppercase; letter-spacing: 0.25em; color: var(--accent); margin-bottom: 1.5rem;
}
.editorial-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 2.5rem; }

.editorial-content p {
  font-size: 1.1rem; color: var(--ink-light); margin-bottom: 1.5rem; text-align: justify;
}
.drop-cap {
  float: left; font-family: var(--font-serif); font-size: 3.5rem; line-height: 0.8; 
  padding-right: 0.5rem; color: var(--ink); font-style: italic;
}

.editorial-signature { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.sign-text { font-family: var(--font-serif); font-style: italic; color: var(--ink-light); }
.sign-name {
  font-family: var(--font-hand); font-size: 2.5rem; color: var(--accent); transform: rotate(-2deg);
}

/* --- REVIEWS CAROUSEL (3-ITEMS) --- */
.section--reviews { background: #fff; padding: 8rem 0; }
.reviews-header { margin-bottom: 4rem; position: relative; }
.carousel-arrows-top {
  position: absolute; top: 50%; right: 0; transform: translateY(-50%); display: flex; gap: 0.5rem;
}
/* On mobile, center title and maybe hide top arrows or keep them */
@media (max-width: 768px) {
  .carousel-arrows-top { display: none; }
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden; /* Hide overflow */
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  /* Default 3 items */
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 1rem;
}

.review-card {
  background: var(--bg-paper);
  padding: 2.5rem 1.5rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  height: 100%; /* Uniform height */
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s;
}

.review-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.8rem; }
.review-text {
  font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; line-height: 1.4; color: var(--ink);
  flex-grow: 1; /* Push author down */
}
.review-author { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 1rem; width: 80%; }
.author-name { display: block; font-weight: 600; font-size: 0.8rem; margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.1em; }
.author-pet { font-family: var(--font-serif); font-style: italic; color: var(--ink-light); font-size: 0.9rem; }

.carousel-btn {
  background: transparent;
  border: 1px solid var(--ink-light);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.3s;
}
.carousel-btn:hover { background: var(--ink); color: #fff; }
.carousel-btn svg { width: 18px; height: 18px; }


.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.carousel-indicator {
  border: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #eee;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-indicator.current-slide { background: var(--accent); }

/* --- FAQ (NEW) --- */
.section--faq { background: var(--bg-paper); padding: 8rem 0; }
.faq-container { 
  max-width: 800px; 
  margin: 3rem auto 0; 
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%; text-align: left; padding: 1.5rem 2rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 500;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--bg-section-alt);
  border-radius: 50%;
  font-family: var(--font-sans); font-size: 1.2rem; font-weight: 400; 
  transition: all 0.3s ease;
  color: var(--ink);
}

.faq-item.active .faq-icon { 
  transform: rotate(45deg); 
  background: var(--accent);
  color: #fff;
}

.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: #fff;
}
.faq-answer p {
  padding: 0 2rem 2rem 2rem; 
  color: var(--ink-light); font-size: 1rem; line-height: 1.6;
  margin: 0;
}
.faq-item.active .faq-answer { max-height: 500px; }


/* --- NEWSLETTER --- */
.section--newsletter {
  background: var(--bg-section-alt);
  padding: 6rem 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.newsletter-container {
  display: flex;
  justify-content: center;
}
.newsletter-content {
  text-align: center;
  max-width: 600px;
}
.newsletter-tag {
  display: block; font-family: var(--font-hand); font-size: 1.8rem; color: var(--accent); margin-bottom: 1rem;
}
.newsletter-title { font-size: 2.5rem; margin-bottom: 1rem; }
.newsletter-desc { font-size: 1rem; color: var(--ink-light); margin-bottom: 2rem; }

.newsletter-form {
  display: flex; gap: 1rem; margin-bottom: 1rem;
}
.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input:focus { border-color: var(--accent); }

.btn-newsletter {
  padding: 1rem 2rem;
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-newsletter:hover { background: var(--accent); }

.newsletter-note { font-size: 0.75rem; color: #999; font-style: italic; }

/* --- INSTAGRAM (MOSAIC) --- */
.section--insta { background: #fff; padding-top: 6rem; padding-bottom: 6rem; }
.insta-header-flex {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem;
}
.btn-insta-follow {
  display: inline-block; padding: 0.8rem 2rem; border: 1px solid var(--ink); border-radius: 50px;
  text-decoration: none; color: var(--ink); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  transition: all 0.3s;
}
.btn-insta-follow:hover { background: var(--ink); color: #fff; }

.insta-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 1rem;
}

.mosaic-item { position: relative; overflow: hidden; display: block; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.mosaic-item:hover img { transform: scale(1.1); }

/* Mosaic Layout */
.m-1 { grid-column: 1 / 2; grid-row: 1 / 3; } /* Large left item */
.m-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.m-3 { grid-column: 3 / 5; grid-row: 1 / 2; } /* Wide top right item */
.m-4 { grid-column: 2 / 4; grid-row: 2 / 3; } /* Wide bottom mid item */
.m-5 { grid-column: 4 / 5; grid-row: 2 / 3; }

.mosaic-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.3); opacity: 0;
  display: flex; align-items: center; justify-content: center; transition: opacity 0.3s;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.icon-heart { font-size: 2rem; color: #fff; transform: translateY(20px); transition: transform 0.4s; }
.mosaic-item:hover .icon-heart { transform: translateY(0); }


/* FOOTER */
.footer { background: #f4f2ed; padding: 6rem 0; text-align: center; }
.footer-big-logo { font-family: var(--font-serif); font-size: 8rem; line-height: 1; color: rgba(0,0,0,0.05); display: block; margin-bottom: 2rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 2rem; font-size: 0.8rem; color: var(--ink-light); }
.socials a { text-decoration: none; color: var(--ink); margin-left: 2rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-wrapper { height: auto; padding: 8rem 0 4rem; }
  .container.hero-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-text { padding-right: 0; margin-bottom: 2rem; }
  .hero-btns { justify-content: center; }
  .hero-desc-box { border-left: none; padding-left: 0; border-top: 3px solid var(--accent); padding-top: 1.5rem; margin: 0 auto 2rem; }
  
  .hero-visual { height: 400px; width: 100%; }
  .main-img-frame { width: 100%; height: 100%; border-radius: 20px; right: auto; left: 0; }
  .floating-card { bottom: -20px; left: 50%; transform: translateX(-50%); width: 80%; animation: none; }
  
  .products-grid, .about-new-layout, .dark-layout, .reviews-row { flex-direction: column; grid-template-columns: 1fr; gap: 4rem; }
  .about-visuals { height: 400px; }
  .about-img, .dark-visual { width: 100%; height: auto; }
  
  /* Carousel Responsive: 1 item on mobile, 2 on tablet */
  .carousel-slide { flex: 0 0 100%; max-width: 100%; } 
  /* Tablet? Let's add tablet specific query or just keep mobile simple */
  
  .carousel-wrapper { height: auto; padding: 0 1rem; }
  .carousel-slide { padding: 1rem; }
  .review-card { padding: 2rem; width: 100%; height: auto; }
  .carousel-arrows-top { display: none; }
  
  .newsletter-form { flex-direction: column; }
  
  .insta-header-flex { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
  .insta-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .m-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
  .m-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .m-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
  .m-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .m-5 { grid-column: 2 / 3; grid-row: 3 / 4; }
  
  .footer-big-logo { font-size: 4rem; }
}

@media (min-width: 600px) and (max-width: 900px) {
  .carousel-slide { flex: 0 0 50%; max-width: 50%; }
}