:root {
  --color-primary: #E8A6B8;
  --color-primary-dark: #C97991;
  --color-secondary: #F8F1E7;
  --color-accent: #D4A72C;
  --color-background: #FFF9F4;
  --color-surface: #FFFFFF;
  --color-text: #3D3535;
  --color-text-light: #756A6A;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", Arial, sans-serif;
  --font-size-small: .875rem;
  --font-size-body: 1rem;
  --font-size-large: 1.125rem;
  --font-size-h3: 1.5rem;
  --font-size-h2: clamp(1.9rem, 4vw, 2.4rem);
  --font-size-h1: clamp(2.15rem, 5vw, 3.15rem);
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;
  --radius-sm: .5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 999px;
  --shadow-sm: 0 2px 8px rgba(61,53,53,.08);
  --shadow-md: 0 6px 20px rgba(61,53,53,.10);
  --shadow-lg: 0 12px 35px rgba(61,53,53,.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: var(--font-size-body); color: var(--color-text); background: var(--color-background); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; }
main { overflow: hidden; }

/* Navbar */
header { background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
nav { max-width: 1200px; margin: 0 auto; padding: .7rem var(--space-md); display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }
.logo { display: inline-flex; align-items: center; }
.logo img { width: 205px; height: 78px; object-fit: contain; }
.nav-links { list-style: none; display: flex; align-items: center; gap: var(--space-lg); }
.nav-links a { font-size: var(--font-size-small); font-weight: 500; transition: color .25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--color-primary-dark); }
.menu-toggle { display: none; border: 0; background: none; color: var(--color-text); font-size: 1.6rem; padding: .35rem; }

/* Shared */
.section-heading { max-width: 680px; margin: 0 auto var(--space-2xl); text-align: center; }
.section-subtitle, .hero-subtitle { margin-bottom: var(--space-xs); color: var(--color-accent); font-size: var(--font-size-small); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.section-heading h2 { margin-bottom: var(--space-sm); font-family: var(--font-heading); font-size: var(--font-size-h2); line-height: 1.2; }
.section-heading > p:last-child { color: var(--color-text-light); }
.btn { display: inline-block; padding: .8rem 1.5rem; border-radius: var(--radius-full); font-weight: 600; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--color-primary-dark); }
.btn-secondary { border: 1px solid var(--color-primary); color: var(--color-primary-dark); background: transparent; }
.btn-secondary:hover { background: var(--color-primary); color: #fff; }

/* Home hero */
.hero { max-width: 1200px; min-height: 76vh; margin: 0 auto; padding: var(--space-2xl) var(--space-md); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: var(--space-2xl); }
.hero-content { max-width: 600px; }
.hero h1 { margin-bottom: var(--space-md); font-family: var(--font-heading); font-size: var(--font-size-h1); line-height: 1.08; }
.hero-description { max-width: 520px; margin-bottom: var(--space-lg); color: var(--color-text-light); font-size: var(--font-size-large); }
.hero-buttons { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; }
.hero-image img { width: 100%; max-width: 520px; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); margin-left: auto; }

/* Home hero slider */
.hero-slider { position: relative; width: 100%; max-width: 520px; margin-left: auto; }
.hero-slides { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--color-secondary); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .65s ease, visibility .65s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--color-text); box-shadow: var(--shadow-sm); font-size: 1.8rem; line-height: 1; }
.slider-arrow:hover { background: #fff; }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-dots { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; padding: 7px 9px; border-radius: var(--radius-full); background: rgba(255,255,255,.82); }
.slider-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(61,53,53,.28); }
.slider-dot.active { background: var(--color-primary-dark); }


/* Product cards */
.featured-products, .why-us, .products-section, .creations-section { max-width: 1200px; margin: 0 auto; padding: var(--space-3xl) var(--space-md); }
.product-grid, .products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); }
.product-card { overflow: hidden; background: var(--color-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-image { overflow: hidden; aspect-ratio: 4/3; background: var(--color-secondary); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-content { padding: var(--space-md); }
.product-content h3 { margin-bottom: var(--space-xs); font-family: var(--font-heading); font-size: 1.35rem; }
.product-content p { margin-bottom: var(--space-sm); color: var(--color-text-light); }
.product-price { display: block; margin-bottom: var(--space-md); font-weight: 600; color: var(--color-primary-dark); }

/* Why us */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-md); }
.feature-card { padding: var(--space-lg); text-align: center; background: var(--color-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.feature-icon { margin-bottom: var(--space-sm); font-size: 2rem; }
.feature-card h3 { margin-bottom: var(--space-xs); font-family: var(--font-heading); font-size: 1.3rem; }
.feature-card p { color: var(--color-text-light); font-size: var(--font-size-small); }

/* Page heroes */
.about-hero, .products-hero, .contact-hero { padding: var(--space-2xl) var(--space-md); text-align: center; background: var(--color-secondary); }
.about-hero-content, .products-hero-content, .contact-hero-content { max-width: 760px; margin: 0 auto; }
.about-hero h1, .products-hero h1, .contact-hero h1 { margin-bottom: var(--space-md); font-family: var(--font-heading); font-size: var(--font-size-h1); line-height: 1.1; }
.about-hero p:last-child, .products-hero p:last-child, .contact-hero p:last-child { max-width: 620px; margin: 0 auto; color: var(--color-text-light); font-size: var(--font-size-large); }

/* About */
.about-story { max-width: 1200px; margin: 0 auto; padding: var(--space-3xl) var(--space-md); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: var(--space-2xl); }
.about-story-image { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-story-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-story-content h2 { margin-bottom: var(--space-md); font-family: var(--font-heading); font-size: var(--font-size-h2); line-height: 1.2; }
.about-story-content p:not(.section-subtitle) { margin-bottom: var(--space-sm); color: var(--color-text-light); }
.about-mission { padding: var(--space-2xl) var(--space-md); background: var(--color-secondary); }
.about-mission .section-heading { margin-bottom: 0; }
.about-cta, .pricing-note { max-width: 1000px; margin: var(--space-3xl) auto; padding: var(--space-2xl) var(--space-md); text-align: center; background: var(--color-primary); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-cta-content, .pricing-note-content { max-width: 680px; margin: 0 auto; }
.about-cta h2, .pricing-note h2 { margin-bottom: var(--space-sm); font-family: var(--font-heading); font-size: var(--font-size-h2); color: #fff; }
.about-cta p, .pricing-note p { margin-bottom: var(--space-lg); color: #fff; }
.about-cta .btn-primary, .pricing-note .btn-primary { background: #fff; color: var(--color-primary-dark); }

/* Products page */
.category-block { margin-bottom: var(--space-2xl); }
.category-title { margin-bottom: var(--space-lg); padding-bottom: .6rem; border-bottom: 1px solid rgba(61,53,53,.12); font-family: var(--font-heading); font-size: 1.8rem; }
.compact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-md); }
.compact-card { overflow: hidden; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.compact-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--color-secondary); }
.compact-card-body { padding: var(--space-sm); }
.compact-card h3 { font-family: var(--font-heading); font-size: 1.08rem; line-height: 1.3; margin-bottom: .25rem; }
.compact-card p { color: var(--color-text-light); font-size: .84rem; }
.compact-card .card-price { color: var(--color-primary-dark); font-size: 1rem; font-weight: 700; }
.creations-section { background: var(--color-secondary); max-width: none; }
.creations-inner { max-width: 1200px; margin: 0 auto; }
.creation-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-md); }
.creation-item { overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); background: #fff; }
.creation-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.creation-item figcaption { padding: .8rem 1rem; color: var(--color-text-light); font-size: var(--font-size-small); }

/* Contact */
.contact-section { max-width: 1000px; margin: 0 auto; padding: var(--space-3xl) var(--space-md); }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-md); }
.contact-card { padding: var(--space-lg); background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); text-align: center; }
.contact-card h2 { margin-bottom: .4rem; font-family: var(--font-heading); font-size: 1.45rem; }
.contact-card p { color: var(--color-text-light); margin-bottom: var(--space-sm); }
.contact-icon { width: 48px; height: 48px; margin: 0 auto var(--space-sm); display: grid; place-items: center; border-radius: 50%; background: var(--color-secondary); color: var(--color-primary-dark); font-size: 1.35rem; font-weight: 700; }
.contact-action { display: inline-block; margin-top: var(--space-xs); padding: .65rem 1rem; border-radius: var(--radius-full); background: var(--color-primary); color: #fff; font-weight: 600; transition: background .25s ease, transform .25s ease; }
.contact-action:hover { background: var(--color-primary-dark); transform: translateY(-2px); }
.contact-note { margin-top: var(--space-xl); padding: var(--space-md); border-radius: var(--radius-md); background: var(--color-secondary); text-align: center; color: var(--color-text-light); }

/* Footer */
.site-footer { margin-top: var(--space-3xl); background: var(--color-secondary); }
.footer-container { max-width: 1200px; margin: 0 auto; padding: var(--space-2xl) var(--space-md); display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: var(--space-2xl); }
.footer-logo img { width: 210px; height: 105px; object-fit: contain; margin-bottom: var(--space-sm); }
.footer-brand p, .footer-contact p { max-width: 360px; color: var(--color-text-light); }
.footer-links h3, .footer-contact h3 { margin-bottom: var(--space-sm); font-family: var(--font-heading); font-size: 1.25rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: var(--space-xs); }
.footer-links a { color: var(--color-text-light); }
.footer-links a:hover { color: var(--color-primary-dark); }
.footer-contact-link { display: inline-block; margin-top: var(--space-sm); color: var(--color-primary-dark); font-weight: 600; }
.footer-socials { display: flex; flex-wrap: wrap; gap: .55rem .9rem; margin-top: var(--space-sm); }
.footer-socials a { color: var(--color-primary-dark); font-size: var(--font-size-small); font-weight: 600; }
.footer-socials a:hover { text-decoration: underline; }
.footer-bottom { padding: var(--space-md); text-align: center; border-top: 1px solid rgba(61,53,53,.1); }
.footer-bottom p { color: var(--color-text-light); font-size: var(--font-size-small); }

@media (max-width: 900px) {
  .product-grid, .products-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .compact-grid { grid-template-columns: repeat(3,1fr); }
  .creation-gallery { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: repeat(2,1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  nav { position: relative; }
  .logo img { width: 160px; height: 62px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; padding: var(--space-lg); flex-direction: column; gap: var(--space-md); background: #fff; box-shadow: var(--shadow-md); }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding: var(--space-2xl) var(--space-md); grid-template-columns: 1fr; text-align: center; gap: var(--space-xl); }
  .hero-content { max-width: 100%; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-image img { max-width: 420px; margin: 0 auto; aspect-ratio: 4/3; }
  .hero-slider { max-width: 430px; margin: 0 auto; }
  .hero-slides { aspect-ratio: 4/3; }
  .slider-arrow { width: 38px; height: 38px; }
  .about-story { grid-template-columns: 1fr; padding: var(--space-2xl) var(--space-md); gap: var(--space-xl); }
  .about-story-content { text-align: center; }
  .compact-grid { grid-template-columns: repeat(2,1fr); }
  .about-cta, .pricing-note { margin: var(--space-2xl) var(--space-md); }
}

@media (max-width: 600px) {
  .featured-products, .why-us, .products-section { padding: var(--space-2xl) var(--space-md); }
  .product-grid, .products-grid, .features-grid, .compact-grid, .creation-gallery, .contact-grid { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: var(--space-xl); }
  .footer-container { grid-template-columns: 1fr; text-align: center; gap: var(--space-xl); }
  .footer-brand { grid-column: auto; }
  .footer-logo img, .footer-brand p, .footer-contact p { margin-left: auto; margin-right: auto; }
  .footer-socials { justify-content: center; }
}

/* Vivid Style by Barirah Rashid updates */
.logo { flex-direction: column; justify-content: center; line-height: 1; }
.brand-byline, .footer-byline { display: block; margin-top: -8px; color: var(--color-primary-dark); font-size: .72rem; font-weight: 600; letter-spacing: .08em; }
.footer-logo { display: inline-flex; flex-direction: column; align-items: center; }
.footer-byline { margin-top: -22px; margin-bottom: var(--space-sm); }
.signature-section { padding: var(--space-3xl) var(--space-md); background: var(--color-secondary); }
.signature-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.signature-inner > img { width: 100%; max-width: 820px; margin: 0 auto var(--space-lg); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.maker-note { max-width: 760px; margin: 0 auto; padding: var(--space-lg); background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.maker-note h3 { margin-bottom: .5rem; font-family: var(--font-heading); font-size: 1.45rem; }
.maker-note p { color: var(--color-text-light); }
.silhouette-feature img { width: 100%; height: 115px; margin-bottom: var(--space-sm); object-fit: cover; object-position: center 35%; border-radius: var(--radius-sm); }
@media (min-width: 901px) { .features-grid { grid-template-columns: repeat(5,1fr); } }
@media (max-width: 768px) { .brand-byline { font-size: .65rem; margin-top: -7px; } }
