/* ============================================================
   APEX HOME DESIGN — GLOBAL STYLES
   Premium Interior Design | Orlando, FL
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --wine:       #7B2D3E;
  --wine-dark:  #5E1F2D;
  --wine-hover: #6A2535;
  --wine-tint:  rgba(123, 45, 62, 0.08);
  --beige:      #F3EBE0;
  --beige-mid:  #E8D9C9;
  --beige-dark: #D9C7B2;
  --cream:      #FDFAF7;
  --white:      #FFFFFF;
  --charcoal:   #1A1714;
  --warm-dark:  #2C2420;
  --warm-gray:  #6B5E57;
  --gray-soft:  #A89C95;
  --border:     #DDD3C8;
  --border-light: #EDE5DB;

  --font-serif: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-sans:  'Josefin Sans', system-ui, -apple-system, sans-serif;

  --max-w:        1200px;
  --section-v:    100px;
  --section-v-sm: 64px;
  --gap:          32px;
  --gap-sm:       24px;

  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 12px rgba(26, 23, 20, 0.07);
  --shadow-md: 0 6px 28px rgba(26, 23, 20, 0.10);
  --shadow-lg: 0 16px 56px rgba(26, 23, 20, 0.13);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}
h1 { font-size: clamp(44px, 6vw, 76px); letter-spacing: 0.06em; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: 0.05em; }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
h4 { font-size: 20px; }
p  { color: var(--warm-gray); line-height: 1.75; }

.serif       { font-family: var(--font-serif); }
.serif-italic{ font-family: var(--font-serif); font-style: italic; }
.label       { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wine); font-family: var(--font-sans); }
.lead        { font-size: clamp(17px, 2vw, 20px); color: var(--warm-gray); font-weight: 300; line-height: 1.8; }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

section { padding: var(--section-v) 0; }
.section-sm { padding: var(--section-v-sm) 0; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header .label { margin-bottom: 16px; display: block; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { font-size: 17px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--wine);
  color: var(--white);
  border: 2px solid var(--wine);
}
.btn-primary:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(123, 45, 62, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-wine-outline {
  background: transparent;
  color: var(--wine);
  border: 2px solid var(--wine);
}
.btn-wine-outline:hover {
  background: var(--wine);
  color: var(--white);
  transform: translateY(-1px);
}

/* === DIVIDER === */
.divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--wine);
  margin: 24px auto;
}
.divider-left { margin: 24px 0; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(253, 250, 247, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(26, 23, 20, 0.08);
}
.navbar.transparent { background: transparent; }
.navbar.dark-nav { background: rgba(253,250,247,0.97); padding: 14px 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.navbar.scrolled .logo-main,
.navbar.dark-nav .logo-main { color: var(--charcoal); }
.nav-logo .logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.navbar.scrolled .logo-sub,
.navbar.dark-nav .logo-sub { color: var(--wine); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--wine);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link,
.navbar.dark-nav .nav-link { color: var(--warm-gray); }
.navbar.scrolled .nav-link:hover,
.navbar.dark-nav .nav-link:hover { color: var(--charcoal); }
.navbar.scrolled .nav-link.active,
.navbar.dark-nav .nav-link.active { color: var(--charcoal); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  padding: 5px 12px;
  transition: var(--transition);
}
.navbar.scrolled .lang-toggle,
.navbar.dark-nav .lang-toggle {
  background: var(--beige);
  border-color: var(--border);
}
.lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  padding: 2px 6px;
  border-radius: 1px;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
}
.lang-btn.active {
  background: var(--wine);
  color: var(--white);
}
.navbar.scrolled .lang-btn,
.navbar.dark-nav .lang-btn { color: var(--warm-gray); }
.navbar.scrolled .lang-btn.active,
.navbar.dark-nav .lang-btn.active { color: var(--white); }

.lang-sep { color: rgba(255,255,255,0.3); font-size: 11px; }
.navbar.scrolled .lang-sep,
.navbar.dark-nav .lang-sep { color: var(--border); }

.nav-cta { display: inline-flex; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar.scrolled .hamburger span,
.navbar.dark-nav .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: var(--transition-slow);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-nav .nav-link {
  font-size: 28px;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal);
}
.mobile-nav .nav-link::after { display: none; }
.mobile-lang {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.mobile-lang .lang-btn {
  font-size: 13px;
  color: var(--warm-gray);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.mobile-lang .lang-btn.active {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 23, 20, 0.72) 0%,
    rgba(26, 23, 20, 0.45) 50%,
    rgba(26, 23, 20, 0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-content .label { color: rgba(255,255,255,0.8); }
.hero-content h1 {
  color: var(--white);
  max-width: 700px;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1.08;
}
.hero-content .hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.7;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.2; }
}

/* === DIFFERENTIATORS === */
.diff-section { background: var(--beige); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.diff-item {
  text-align: center;
  padding: 40px 32px;
}
.diff-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.diff-icon svg { width: 26px; height: 26px; color: var(--wine); }
.diff-item h3 { font-size: 22px; margin-bottom: 12px; }
.diff-item p { font-size: 15px; max-width: 260px; margin: 0 auto; }

/* === SERVICES CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 28px 28px 32px; }
.service-card-body .label { margin-bottom: 8px; }
.service-card-body h3 { font-size: 20px; margin-bottom: 12px; }
.service-card-body p { font-size: 14px; line-height: 1.7; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  transition: var(--transition);
}
.service-card-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card-link:hover svg { transform: translateX(4px); }

/* === SPLIT SECTION (About/Approach) === */
.split-section { background: var(--cream); }
.split-section.bg-beige { background: var(--beige); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.reverse .split-img { order: 2; }
.split-grid.reverse .split-text { order: 1; }
.split-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  background: var(--beige-mid);
  z-index: -1;
}
.split-text .label { margin-bottom: 16px; }
.split-text h2 { margin-bottom: 20px; }
.split-text .lead { margin-bottom: 24px; }
.split-text p { margin-bottom: 16px; font-size: 15px; }
.split-text .btn { margin-top: 12px; }

/* === GALLERY PREVIEW === */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(26, 23, 20, 0.35); }
.gallery-overlay-icon {
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
  color: var(--white);
}
.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: scale(1);
}

/* === PROCESS === */
.process-section { background: var(--charcoal); }
.process-section .section-header h2 { color: var(--white); }
.process-section .section-header .label { color: rgba(255,255,255,0.6); }
.process-section .section-header p { color: rgba(255,255,255,0.55); }
.process-section .divider { background: rgba(255,255,255,0.3); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.process-step {
  padding: 0 32px 0 0;
  text-align: center;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--wine);
  border-color: var(--wine);
}
.process-step h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 500;
}
.process-step p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.65;
}

/* === TESTIMONIALS === */
.testimonials-section { background: var(--beige); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--beige-dark);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--wine);
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--beige-dark);
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
}
.testimonial-loc {
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: 2px;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--wine);
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: clamp(28px, 4vw, 46px); }
.cta-section .lead { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 40px; }
.cta-section .label { color: rgba(255,255,255,0.65); }
.cta-section .divider { background: rgba(255,255,255,0.3); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
footer {
  background: var(--warm-dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-main {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  display: block;
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--wine);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* === PAGE HERO (non-home) === */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,23,20,0.4), rgba(26,23,20,0.72));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px 56px;
}
.page-hero-content .label { color: rgba(255,255,255,0.7); margin-bottom: 12px; display: block; }
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 58px);
  max-width: 640px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* === FAQ ACCORDION === */
.faq-section { background: var(--cream); }
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.faq-question h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
  flex: 1;
}
.faq-question:hover h4 { color: var(--wine); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--warm-gray);
}
.faq-item.open .faq-icon {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--warm-gray);
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info .label { margin-bottom: 16px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info .lead { margin-bottom: 40px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--wine-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--wine);
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-text h5 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-detail-text p { font-size: 14px; color: var(--warm-gray); }

.contact-form-wrap {
  background: var(--white);
  padding: 52px 48px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--wine);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5E57' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success.show { display: block; }
.form-success p { color: var(--wine); font-weight: 500; }

/* Map */
.map-wrap {
  height: 380px;
  overflow: hidden;
  background: var(--beige-mid);
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--beige);
  color: var(--warm-gray);
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--wine); opacity: 0.5; }

/* Calendly placeholder */
.calendly-section { background: var(--beige); }
.calendly-wrap {
  background: var(--white);
  padding: 56px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.calendly-wrap h3 { margin-bottom: 12px; }
.calendly-wrap .lead { margin-bottom: 32px; }
.calendly-placeholder {
  height: 480px;
  background: var(--cream);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 0;
}
.calendly-placeholder svg { width: 52px; height: 52px; color: var(--wine); opacity: 0.4; }
.calendly-placeholder p { color: var(--warm-gray); font-size: 14px; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  color: var(--white);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* Chatbot */
.chatbot-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
}
.chat-toggle-btn {
  width: 52px;
  height: 52px;
  background: var(--wine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(123, 45, 62, 0.35);
  transition: var(--transition);
  cursor: pointer;
  color: var(--white);
}
.chat-toggle-btn:hover { transform: scale(1.08); background: var(--wine-dark); }
.chat-toggle-btn svg { width: 24px; height: 24px; }
.chat-window {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 320px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.97);
  transform-origin: bottom right;
  transition: var(--transition);
}
.chat-window.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.chat-header {
  background: var(--wine);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-avatar svg { width: 18px; height: 18px; color: var(--white); }
.chat-header-info .chat-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.chat-header-info .chat-status {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 5px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.chat-messages {
  padding: 20px;
  height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream);
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  max-width: 85%;
}
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }
.msg-bubble {
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--charcoal);
}
.msg.bot .msg-bubble { background: var(--white); border: 1px solid var(--border-light); }
.msg.user .msg-bubble { background: var(--wine); color: var(--white); }
.chat-chips {
  padding: 0 12px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--cream);
}
.chat-chip {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border: 1px solid var(--wine);
  color: var(--wine);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 20px;
  font-family: var(--font-sans);
}
.chat-chip:hover { background: var(--wine); color: var(--white); }
.chat-input-row {
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--border-light);
  background: var(--white);
}
.chat-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--charcoal);
  outline: none;
  background: var(--cream);
  transition: var(--transition);
  border-radius: 0;
}
.chat-input:focus { border-color: var(--wine); background: var(--white); }
.chat-send {
  width: 36px;
  height: 36px;
  background: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  border: none;
  border-radius: 0;
}
.chat-send:hover { background: var(--wine-dark); }
.chat-send svg { width: 16px; height: 16px; }

/* === ABOUT PAGE SPECIFIC === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.value-item {
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: var(--transition);
}
.value-item:hover { border-color: var(--wine); box-shadow: var(--shadow-sm); }
.value-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--beige-mid);
  line-height: 1;
  margin-bottom: 16px;
}
.value-item h3 { font-size: 20px; margin-bottom: 12px; }
.value-item p { font-size: 14px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.team-card {
  text-align: center;
}
.team-img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 18px; margin-bottom: 4px; }
.team-card .team-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}

/* === SERVICES PAGE SPECIFIC === */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-feature:last-child { border-bottom: none; }
.service-feature.alt { direction: rtl; }
.service-feature.alt > * { direction: ltr; }
.service-feature-img {
  overflow: hidden;
  aspect-ratio: 5/4;
}
.service-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-feature:hover .service-feature-img img { transform: scale(1.03); }
.service-feature-text .label { margin-bottom: 12px; }
.service-feature-text h3 { font-size: 30px; margin-bottom: 16px; }
.service-feature-text .lead { margin-bottom: 20px; font-size: 17px; }
.service-feature-text p { font-size: 15px; margin-bottom: 16px; }
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 28px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--warm-gray);
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine);
  flex-shrink: 0;
}

/* === GALLERY PAGE === */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--border);
  color: var(--warm-gray);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  border-radius: 0;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-masonry-item .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-masonry-item:hover .img-overlay { background: rgba(26,23,20,0.38); }
.img-overlay svg { color: var(--white); opacity: 0; transform: scale(0.8); transition: var(--transition); }
.gallery-masonry-item:hover .img-overlay svg { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 8, 7, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: var(--font-sans);
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* === ANIMATE ON SCROLL === */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* === STATS BAR === */
.stats-bar {
  background: var(--charcoal);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--wine); }
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  :root { --section-v: 80px; }
  .split-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .diff-grid { gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .process-step { padding: 0; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid .testimonial-card:last-child { grid-column: span 2; max-width: 420px; justify-self: center; }
  .gallery-masonry { columns: 2; }
  .gallery-preview-grid { gap: 12px; }
}

@media (max-width: 768px) {
  :root { --section-v: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 20px; padding-top: 100px; padding-bottom: 60px; }
  .hero-scroll { display: none; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { padding: 13px 22px; font-size: 12px; }

  .diff-grid { grid-template-columns: 1fr; gap: 0; }
  .diff-item { padding: 32px 20px; border-bottom: 1px solid var(--beige-dark); }
  .diff-item:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }

  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-grid.reverse .split-img { order: unset; }
  .split-grid.reverse .split-text { order: unset; }
  .split-img { aspect-ratio: 16/9; }
  .split-img-accent { display: none; }

  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall {
    grid-row: unset;
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  .process-grid { grid-template-columns: 1fr 1fr; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid .testimonial-card:last-child { grid-column: unset; max-width: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-hero { height: 300px; }
  .page-hero-content { padding: 0 20px 40px; }

  .nav-inner { padding: 0 20px; }

  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .service-feature { grid-template-columns: 1fr; gap: 40px; }
  .service-feature.alt { direction: ltr; }
  .gallery-masonry { columns: 1; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .calendly-wrap { padding: 32px 20px; }

  .chat-window { width: calc(100vw - 56px); right: 0; }
  .whatsapp-float { bottom: 104px; right: 20px; }
  .chatbot-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-column: unset; aspect-ratio: 4/3; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; max-width: 280px; }
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
}

/* ============================================================
   ACCESSIBILITY — Focus States (WCAG 2.1 AA)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
  border-radius: 1px;
}
/* Remove default outline only when focus-visible is supported */
:focus:not(:focus-visible) { outline: none; }

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--wine);
  color: var(--white);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ============================================================
   MOTION — Respect prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg { transform: none !important; transition: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-line { animation: none; }
  .status-dot { animation: none; }
}
