/* ========================================
   C&T Pedi Spa — Main Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --white: #ffffff;
  --warm-brown: #624841;
  --burgundy: #7e3e4b;
  --tan-gold: #dac3a9;
  --true-black: #000000;
  --gold-accent: #e6b641;
  --off-white: #f9f7f4;
  --light-cream: #f3ece4;

  --bg-primary: var(--white);
  --bg-dark: var(--warm-brown);
  --bg-elegant: var(--true-black);
  --text-primary: var(--warm-brown);
  --text-heading: var(--burgundy);
  --text-light: var(--white);
  --accent: var(--tan-gold);
  --accent-gold: var(--gold-accent);

  --font-heading: 'Cinzel', serif;
  --font-body: 'proxima-nova', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--true-black);
  color: var(--white);
}

.section-cream {
  background: var(--off-white);
}

.section-brown {
  background: var(--warm-brown);
  color: var(--white);
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tan-gold);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--tan-gold);
  margin: 0 auto;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 20px; }
h5 { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn-gold {
  background: var(--tan-gold);
  color: var(--warm-brown);
}

.btn-gold:hover {
  background: var(--gold-accent);
  color: var(--true-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(218, 195, 169, 0.4);
}

.btn-dark {
  background: var(--true-black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--warm-brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(98, 72, 65, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--warm-brown);
  color: var(--warm-brown);
}

.btn-outline:hover {
  background: var(--warm-brown);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--tan-gold);
  border-color: var(--tan-gold);
  color: var(--warm-brown);
}

.btn-burgundy {
  background: var(--burgundy);
  color: var(--white);
}

.btn-burgundy:hover {
  background: var(--warm-brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126, 62, 75, 0.3);
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(218, 195, 169, 0.2);
}

.site-header.header-dark {
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(218, 195, 169, 0.1);
}

.site-header.header-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  flex-wrap: nowrap;
  overflow: hidden;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-brown);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--tan-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--burgundy);
}

.nav-link:hover::after {
  width: 100%;
}

.header-dark .nav-link {
  color: rgba(255, 255, 255, 0.7);
}

.header-dark .nav-link:hover {
  color: var(--tan-gold);
}

.header-cta {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--tan-gold);
  color: var(--warm-brown);
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.header-cta:hover {
  background: var(--gold-accent);
  transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--warm-brown);
  transition: all 0.3s ease;
}

.header-dark .toggle-bar {
  background: var(--white);
}

.toggle-active .toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.toggle-active .toggle-bar:nth-child(2) {
  opacity: 0;
}

.toggle-active .toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--true-black);
  padding: 80px 0 40px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-address,
.footer-phones {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-phones a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-phones a:hover {
  color: var(--tan-gold);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--tan-gold);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan-gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

/* ---- Card Components ---- */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.card-img {
  overflow: hidden;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.card-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text-heading);
  margin-bottom: 8px;
  font-weight: 500;
}

.card-text {
  font-size: 14px;
  color: rgba(98, 72, 65, 0.6);
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-top: 16px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.card-link:hover {
  gap: 14px;
  color: var(--gold-accent);
}

.card-link::after {
  content: '\2192';
}

/* ---- Grid Utilities ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- Filter Buttons ---- */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(218, 195, 169, 0.3);
  background: transparent;
  color: var(--warm-brown);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--tan-gold);
  border-color: var(--tan-gold);
  color: var(--warm-brown);
}

/* ---- Form Elements ---- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(218, 195, 169, 0.4);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--warm-brown);
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--tan-gold);
}

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

/* ---- Homepage Hero ---- */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.home-hero-bg {
  position: absolute;
  inset: 0;
}

.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.4) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 80px 60px;
}

.home-hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.home-hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Pillars Strip */
.home-pillars {
  background: var(--true-black);
  padding: 48px 0;
  border-top: 1px solid rgba(218,195,169,0.15);
}

.pillar {
  text-align: center;
  padding: 16px;
}

.pillar h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--tan-gold);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* Showroom Section */
.home-showroom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.home-showroom-img {
  overflow: hidden;
}

.home-showroom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-showroom-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: var(--warm-brown);
}

.home-showroom-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  margin-bottom: 16px;
}

.home-showroom-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.7;
}

.showroom-address {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--tan-gold);
  margin-bottom: 28px;
}

/* Feature Row (kids booster, accessories) */
.home-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.home-feature-img {
  overflow: hidden;
}

.home-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.home-feature-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-feature-body h3 {
  font-size: 22px;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.home-feature-body p {
  font-size: 15px;
  color: rgba(98,72,65,0.7);
  margin-bottom: 16px;
  line-height: 1.7;
}


/* ---- Testimonials Slider ---- */
.testimonials-slider {
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 24px;
}

.testimonial-stars {
  font-size: 22px;
  color: var(--gold-accent);
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.testimonial-slide blockquote {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-slide cite {
  font-size: 15px;
  color: var(--tan-gold);
  font-style: normal;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.testimonial-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.testimonial-prev,
.testimonial-next {
  background: none;
  border: 1px solid rgba(218,195,169,0.3);
  color: var(--white);
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--tan-gold);
  border-color: var(--tan-gold);
  color: var(--warm-brown);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--tan-gold);
  transform: scale(1.2);
}

/* ---- Hero Split ---- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
}

.hero-split-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--true-black);
}

.hero-split-text .section-label {
  margin-bottom: 20px;
}

.hero-split-text h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-split-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-split-img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--off-white);
}

.hero-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Page Banner ---- */
.page-banner {
  background: var(--true-black);
  text-align: center;
  padding: 80px 40px 60px;
  margin-top: var(--header-height);
}

.page-banner .section-label {
  margin-bottom: 16px;
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
}

/* ---- CTA Banner ---- */
.cta-banner {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--warm-brown), var(--burgundy));
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: rgba(98, 72, 65, 0.5);
}

.breadcrumbs a {
  color: rgba(98, 72, 65, 0.5);
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: var(--burgundy);
}

.breadcrumbs .current {
  color: var(--burgundy);
}

/* ---- Features Grid ---- */
.feature {
  text-align: center;
  padding: 24px 16px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(218, 195, 169, 0.15);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: rgba(98, 72, 65, 0.6);
}

/* ---- Testimonial ---- */
.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial cite {
  font-size: 14px;
  color: var(--tan-gold);
  font-style: normal;
  letter-spacing: 1px;
}

/* ---- Hero Buttons ---- */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Blog ---- */
.blog-featured {
  display: block;
  background: var(--true-black);
  border-radius: 8px;
  padding: 60px;
  margin-bottom: 48px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.blog-featured:hover {
  transform: translateY(-4px);
}

.blog-featured-content {
  max-width: 600px;
}

.blog-featured h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}

.blog-featured-excerpt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--tan-gold);
}

.blog-featured .blog-meta {
  color: var(--tan-gold);
}

.blog-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan-gold);
  margin-bottom: 12px;
}

.blog-card .card-body {
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.blog-card .blog-meta {
  margin-top: auto;
  padding-top: 16px;
  color: rgba(98, 72, 65, 0.4);
}

/* Article */
.article-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.article-header h1 {
  color: var(--burgundy);
  margin-bottom: 16px;
}

.article-header .blog-meta {
  justify-content: center;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.9;
  color: var(--warm-brown);
}

.article-body p {
  margin-bottom: 20px;
}

.article-body h2 {
  font-size: 28px;
  color: var(--burgundy);
  margin: 40px 0 16px;
}

.article-body h3 {
  font-size: 22px;
  color: var(--burgundy);
  margin: 32px 0 12px;
}

.article-body ul,
.article-body ol {
  margin: 16px 0 24px 24px;
  list-style: disc;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body strong {
  font-weight: 600;
  color: var(--warm-brown);
}

.article-footer {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  background: var(--off-white);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  z-index: 10;
  padding: 8px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 48px;
  cursor: pointer;
  padding: 16px;
  z-index: 10;
  transition: color 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--tan-gold);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ---- Product Detail ---- */
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.pdp-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}

.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp-thumb {
  width: 80px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--off-white);
  padding: 0;
}

.pdp-thumb.active {
  border-color: var(--tan-gold);
}

.pdp-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pdp-main-img {
  border-radius: 8px;
  overflow: hidden;
  background: var(--off-white);
  padding: 16px;
  cursor: zoom-in;
}

.pdp-main-img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.pdp-main-img:hover img {
  transform: scale(1.02);
}

.pdp-info h1 {
  color: var(--burgundy);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}

.pdp-info .section-label {
  margin-bottom: 8px;
}

.pdp-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--warm-brown);
  margin-bottom: 28px;
}

.pdp-features {
  margin-bottom: 32px;
}

.pdp-features h5 {
  color: var(--tan-gold);
  margin-bottom: 16px;
}

.pdp-features ul {
  list-style: none;
}

.pdp-features li {
  font-size: 15px;
  line-height: 2.2;
  color: var(--warm-brown);
}

.pdp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pdp-shipping {
  font-size: 13px;
  color: rgba(98, 72, 65, 0.5);
  font-style: italic;
}

/* ---- Story Layout ---- */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-layout-reverse {
  direction: rtl;
}

.story-layout-reverse > * {
  direction: ltr;
}

.story-img {
  border-radius: 8px;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: auto;
}

.story-text .section-label {
  margin-bottom: 12px;
}

.story-text .section-title {
  margin-bottom: 20px;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--warm-brown);
}

/* ---- Differentiators ---- */
.differentiator {
  padding: 32px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.differentiator h3 {
  font-size: 20px;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.differentiator p {
  font-size: 15px;
  color: rgba(98, 72, 65, 0.7);
  line-height: 1.7;
}

/* ---- Values Grid ---- */
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(218, 195, 169, 0.08);
  border-radius: 8px;
}

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--tan-gold);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-col .section-label {
  display: block;
  margin-bottom: 24px;
}

.contact-cta-title {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.2;
  color: var(--warm-brown);
  margin-bottom: 20px;
}

.contact-cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--warm-brown);
  margin-bottom: 32px;
}

.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-cta-email {
  font-size: 14px;
  color: var(--warm-brown);
  opacity: 0.75;
}

.contact-cta-email a {
  color: var(--burgundy);
  text-decoration: underline;
}

.contact-cta-email a:hover {
  color: var(--gold-accent);
}

.contact-info-col .section-label {
  display: block;
  margin-bottom: 24px;
}

.contact-map {
  margin-bottom: 28px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-details {
  display: grid;
  gap: 24px;
}

.contact-detail h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--burgundy);
  margin-bottom: 6px;
}

.contact-detail p,
.contact-detail a {
  font-size: 15px;
  color: var(--warm-brown);
  line-height: 1.8;
}

.contact-detail a:hover {
  color: var(--burgundy);
}

.contact-social {
  display: flex;
  gap: 20px;
}

.contact-social a {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--burgundy);
  transition: color 0.3s;
}

.contact-social a:hover {
  color: var(--gold-accent);
}

/* ---- Full-Page Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: var(--true-black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu-logo {
  margin-bottom: 8px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu-link:hover {
  color: var(--tan-gold);
}

.mobile-menu-cta {
  margin-top: 8px;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.mobile-menu-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu-contact a:hover {
  color: var(--tan-gold);
}

/* Toggle X animation override when menu open */
.toggle-active .toggle-bar {
  background: var(--white);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container { padding: 0 24px; }
  .section { padding: 60px 0; }

  /* Header mobile */
  .header-nav { display: none !important; }
  .header-cta { display: none !important; }
  .mobile-toggle { display: flex; z-index: 10001; }

  /* Grids */
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  /* Hero */
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-text { padding: 60px 24px; }
  .hero-split-img { max-height: 50vh; }

  /* Homepage */
  .home-hero-content { padding: 60px 24px; }
  .home-showroom { grid-template-columns: 1fr; }
  .home-showroom-text { padding: 48px 24px; }
  .home-feature-card { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* PDP */
  .pdp-layout { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; overflow-x: auto; }

  /* Story */
  .story-layout,
  .story-layout-reverse { grid-template-columns: 1fr; gap: 32px; }
  .story-layout-reverse { direction: ltr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
