/* ============================================================
   PUNIYA INTERIORS — Master Stylesheet
   Design System: Earthy Editorial & Spatial Elegance (Japandi)
   Author: Built for Puniya Interiors, Dhanori, Pune
   ============================================================ */

/* ── 1. GOOGLE FONTS IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Manrope:wght@300;400;500;600&display=swap');

/* ── 2. CSS CUSTOM PROPERTIES (DESIGN TOKENS) ── */
:root {
  /* Colors */
  --bg-primary:     #F7F5F0;   /* Warm Alabaster */
  --bg-secondary:   #EAE6DF;   /* Soft Stone */
  --bg-dark:        #2C2A28;   /* Charred Oak */
  --accent:         #A67C52;   /* Raw Terracotta */
  --accent-light:   #C4A07A;   /* Lighter clay for hover */
  --text-primary:   #2C2A28;
  --text-secondary: #6B6560;
  --text-muted:     #9C958E;
  --border:         #D1CCC4;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Manrope', system-ui, sans-serif;

  /* Spacing Scale (Golden Ratio influenced) */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   7rem;
  --space-xxl: 10rem;

  /* Section padding */
  --section-padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 6vw, 8rem);

  /* Border radius */
  --radius-sm:  4px;
  --radius-md:  12px;
  --radius-arch: 999px 999px 0 0; /* Architectural arch shape */

  /* Transitions */
  --transition-slow:   all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:   all 0.25s ease;

  /* Shadows */
  --shadow-soft:   0 8px 40px rgba(44, 42, 40, 0.08);
  --shadow-medium: 0 16px 60px rgba(44, 42, 40, 0.14);
}

/* ── 3. RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── 4. TYPOGRAPHY SYSTEM ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--text-secondary);
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

/* ── 5. UTILITY CLASSES ── */
.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 6vw, 6rem);
}

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ── 6. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover { background: #1db954; }

/* ── 7. ARCH IMAGE COMPONENT ── */
/* The signature "arch" motif for featured images */
.arch-image {
  border-radius: var(--radius-arch);
  overflow: hidden;
  position: relative;
}

.arch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.arch-image:hover img { transform: scale(1.05); }

/* ── 8. NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem clamp(1.5rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-medium);
  /* Always visible on every page */
  background: rgba(247, 245, 240, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(44, 42, 40, 0.06);
}

/* Scrolled state - fully opaque + slightly tighter */
.nav.scrolled {
  background: rgba(247, 245, 240, 1);
  padding-block: 0.85rem;
  box-shadow: 0 4px 30px rgba(44, 42, 40, 0.10);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.nav-logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.65rem 1.5rem !important;
  background: var(--accent);
  color: #fff !important;
  border-radius: 2px;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--bg-dark) !important; color: #fff !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition-fast);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 1050;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-primary);
  transition: color 0.25s ease;
}

.nav-mobile a:hover { color: var(--accent); }

/* ── 9. HERO SECTION ── */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  /* Parallax controlled via JS */
}

/* Warm editorial overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 42, 40, 0.55) 0%,
    rgba(44, 42, 40, 0.2) 60%,
    rgba(166, 124, 82, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--section-padding);
  padding-top: 9rem;
  padding-bottom: 5rem;
  max-width: 900px;
}

.hero-eyebrow {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  color: #E8D5BE;
}

.hero-subtext {
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  max-width: 44ch;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 6vw, 6rem);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll::before {
  content: '';
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── 10. TRUST BAR ── */
.trust-bar {
  background: var(--bg-dark);
  padding: 1.5rem clamp(1.5rem, 6vw, 6rem);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(166, 124, 82, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; }

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.12);
}

.trust-rating {
  display: flex;
  gap: 3px;
  color: #F5C842;
  font-size: 0.85rem;
}

/* ── 11. SERVICES SECTION (Editorial Card Layout) ── */
.services {
  padding: var(--section-padding);
}

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.service-card {
  background: var(--bg-primary);
  padding: 2.5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover { background: var(--bg-secondary); }

.service-arch {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-arch);
  overflow: hidden;
  background: var(--bg-secondary);
}

.service-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-arch img { transform: scale(1.07); }

.service-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}

.service-card h3 { font-weight: 400; }

.service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.service-link {
  margin-top: auto;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-link:hover { gap: 0.9rem; }

/* ── 12. BEFORE & AFTER SLIDER ── */
.slider-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  box-shadow: var(--shadow-medium);
  margin-top: 3rem;
}

.slider-before,
.slider-after {
  position: absolute;
  inset: 0;
}

.slider-before img,
.slider-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s ease;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.05s ease;
}

.slider-handle-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.slider-label {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(44,42,40,0.75);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
}

.slider-label-before { left: 1.5rem; }
.slider-label-after  { right: 1.5rem; }

/* ── 13. PROCESS SECTION ── */
.process {
  padding: var(--section-padding);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 16.5%;
  right: 16.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 2rem;
  flex-shrink: 0;
  transition: var(--transition-medium);
}

.process-step:hover .process-number {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.process-step h4 { margin-bottom: 0.75rem; }
.process-step p { font-size: 0.87rem; }

/* ── 14. TESTIMONIALS ── */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-dark);
  color: #fff;
}

.testimonials .eyebrow { color: var(--accent-light); }
.testimonials h2 { color: #fff; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--bg-dark);
  padding: 3rem;
  position: relative;
  transition: background 0.4s ease;
}

.testimonial-card:hover { background: #35322F; }

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1.5rem;
  display: block;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 100%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  display: block;
}

.testimonial-location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #F5C842;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* ── 15. FINAL CTA BANNER ── */
.cta-banner {
  background: var(--accent);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle architectural line texture */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 80px
  );
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1.2rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-inline: auto;
  margin-bottom: 2.5rem;
  max-width: 50ch;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-light {
  background: #fff;
  color: var(--accent);
}

.btn-light:hover { background: var(--bg-primary); }

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── 16. FOOTER ── */
.footer {
  background: #201E1C;
  color: rgba(255,255,255,0.6);
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 6vw, 6rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo-name { color: #fff; }
.footer-brand .nav-logo-tagline { color: rgba(255,255,255,0.35); }
.footer-brand p {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 35ch;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s ease;
}
.footer-col a:hover { color: var(--accent-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ── 17. SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Curtain reveal for images */
.curtain-reveal {
  overflow: hidden;
}

.curtain-reveal > * {
  transform: translateY(102%);
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.curtain-reveal.visible > * {
  transform: translateY(0);
}

/* ── 18. PAGE TRANSITION OVERLAY ── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

.page-transition.enter {
  transform: scaleY(1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom;
}

.page-transition.exit {
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

/* ── 19. PLACEHOLDER IMAGE SYSTEM ── */
/* Used until real photos are provided */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #D8D3CB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── 20. INNER PAGE HERO (for sub-pages) ── */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  padding-left: clamp(1.5rem, 6vw, 6rem);
  padding-right: clamp(1.5rem, 6vw, 6rem);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.page-hero-breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-hero-breadcrumb a { transition: color 0.25s ease; }
.page-hero-breadcrumb a:hover { color: var(--accent); }

/* ── 21. FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.6); }
}

/* ── 22. RESPONSIVE — TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .process-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ── 23. RESPONSIVE — MOBILE (max 768px) ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding-top: 8rem; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }

  .trust-bar-inner { justify-content: center; }
  .trust-divider { display: none; }

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

  .slider-wrapper { aspect-ratio: 4/3; }

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

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

/* ── 24. RESPONSIVE — SMALL MOBILE (max 480px) ── */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}


/* ============================================================
   PART 2 — INNER PAGE STYLES
   Covers: Kitchens, Furniture, Portfolio, About, Contact
   ============================================================ */

/* ── 25. INNER PAGE HERO ── */
.inner-hero {
  min-height: 62vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

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

.inner-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 42, 40, 0.85) 0%,
    rgba(44, 42, 40, 0.3) 60%,
    transparent 100%
  );
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
  padding-top: 10rem;
  padding-bottom: 4rem;
  width: 100%;
}

.inner-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
}

.inner-hero-breadcrumb a { transition: color 0.25s ease; }
.inner-hero-breadcrumb a:hover { color: var(--accent-light); }
.inner-hero-breadcrumb span { color: rgba(255,255,255,0.3); }

.inner-hero h1 {
  color: #fff;
  font-weight: 300;
  max-width: 16ch;
}

.inner-hero h1 em { color: #E8D5BE; }

.inner-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  max-width: 46ch;
  margin-top: 1.2rem;
}

/* ── 26. KITCHEN PAGE — FEATURE SPLIT LAYOUT ── */
.kitchen-intro {
  padding: var(--section-padding);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

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

.split-text { display: flex; flex-direction: column; gap: 1.5rem; }
.split-text h2 { line-height: 1.15; }
.split-text p { font-size: 0.93rem; line-height: 1.8; }

.split-image {
  position: relative;
}

.split-image .arch-image {
  width: 100%;
  aspect-ratio: 3/4;
}

/* Floating badge on images */
.split-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-medium);
  z-index: 2;
}

.split-image-badge strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}

.split-image-badge span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  max-width: 70px;
  line-height: 1.3;
}

/* ── 27. HARDWARE / MATERIALS GRID ── */
.materials-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.material-card {
  background: var(--bg-secondary);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.4s ease;
}

.material-card:hover { background: var(--bg-primary); }

.material-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-medium);
}

.material-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
}

.material-card:hover .material-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.material-card:hover .material-icon svg { stroke: #fff; }

.material-card h4 { font-size: 1rem; margin-bottom: 0.6rem; }
.material-card p { font-size: 0.82rem; margin-inline: auto; }

/* ── 28. KITCHEN / FURNITURE GALLERY STRIP ── */
.gallery-strip {
  padding: var(--section-padding);
}

.gallery-strip-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  margin-top: 3rem;
  height: 680px;
}

.gallery-strip-grid .g-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
}

.gallery-strip-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-strip-grid .g-item:hover img { transform: scale(1.06); }

/* First item spans both rows */
.gallery-strip-grid .g-item:first-child {
  grid-row: 1 / 3;
}

/* ── 29. PORTFOLIO PAGE ── */
.portfolio-filters {
  padding: 2rem clamp(1.5rem, 6vw, 6rem) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.portfolio-grid {
  padding: var(--section-padding);
  padding-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  cursor: pointer;
}

.portfolio-item-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.portfolio-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-item-image img { transform: scale(1.08); }

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,42,40,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
}

.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }

.portfolio-item-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.4rem;
}

.portfolio-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 400;
}

.portfolio-item-loc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
}

/* Featured (large) portfolio item */
.portfolio-item.featured {
  grid-column: span 2;
}

.portfolio-item.featured .portfolio-item-image {
  aspect-ratio: 16/9;
}

/* ── 30. ABOUT PAGE ── */
.about-story {
  padding: var(--section-padding);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.about-stat {
  background: var(--bg-primary);
  padding: 2rem 1.5rem;
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent);
  line-height: 1;
  display: block;
}

.about-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

/* Founder image with arch */
.founder-arch {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-arch);
  overflow: hidden;
  background: var(--bg-secondary);
  margin-inline: auto;
}

.founder-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.founder-arch:hover img { transform: scale(1.04); }

/* Values section */
.values-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  transition: var(--transition-medium);
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.value-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  transition: color 0.4s ease;
}

.value-card:hover .value-number { color: var(--accent); }
.value-card h4 { margin-bottom: 0.75rem; }
.value-card p { font-size: 0.86rem; }

/* Team section */
.team-section {
  padding: var(--section-padding);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.team-card {
  text-align: center;
}

.team-arch {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 320px;
  border-radius: var(--radius-arch);
  overflow: hidden;
  background: var(--bg-secondary);
  margin-bottom: 1.5rem;
}

.team-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.team-card:hover .team-arch img { transform: scale(1.05); }
.team-card h4 { margin-bottom: 0.3rem; }
.team-card p { font-size: 0.82rem; margin-inline: auto; }

/* ── 31. CONTACT PAGE ── */
.contact-layout {
  padding: var(--section-padding);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
}

.contact-info-item h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 100%;
}

.contact-info-item a { transition: color 0.25s ease; }
.contact-info-item a:hover { color: var(--accent); }

/* Hours table */
.hours-table { width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-secondary); }
.hours-time { color: var(--text-primary); font-weight: 500; }
.hours-closed { color: var(--text-muted); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-secondary);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--bg-dark); }

/* Map embed */
.map-section {
  padding: 0 clamp(1.5rem, 6vw, 6rem) clamp(3rem, 6vw, 6rem);
}

.map-section h3 {
  margin-bottom: 1.5rem;
}

.map-embed {
  width: 100%;
  height: 400px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-secondary);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* WhatsApp CTA strip on contact page */
.whatsapp-strip {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-sm);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.whatsapp-strip p {
  font-size: 0.9rem;
  color: #166534;
  max-width: 100%;
}

.whatsapp-strip strong { color: #14532d; }

/* ── 32. PART 2 RESPONSIVE ── */
@media (max-width: 1024px) {
  .split-layout,
  .split-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-layout.reverse .split-text { order: 1; }
  .split-layout.reverse .split-image { order: 0; }
  .split-image .arch-image { aspect-ratio: 16/9; }
  .split-image-badge { bottom: -1rem; right: 1rem; }

  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .gallery-strip-grid .g-item:first-child { grid-row: auto; }
  .gallery-strip-grid .g-item { aspect-ratio: 4/3; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.featured { grid-column: span 2; }

  .about-story-grid { grid-template-columns: 1fr; }
  .founder-arch { max-width: 360px; aspect-ratio: 1/1; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .materials-grid { grid-template-columns: 1fr 1fr; }
  .about-stat-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.featured { grid-column: span 1; }
  .gallery-strip-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 2rem 1.5rem; }
  .whatsapp-strip { flex-direction: column; text-align: center; }
}


/* ============================================================
   PART 3 — ADDITIONS: Logo, Service Pills, Components, Checklist
   ============================================================ */

/* ── LOGO IMAGE in nav ── */
.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);   /* makes logo white in dark footer */
  opacity: 0.85;
}

.nav-logo-text-wrap {
  flex-direction: column;
  line-height: 1;
}

/* ── ALL-SERVICES PILL GRID ── */
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.svc-pill {
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.8rem 1.2rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.svc-pill:hover {
  background: var(--accent);
  color: #fff;
}

.svc-pill svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  transition: stroke var(--transition-fast);
  flex-shrink: 0;
}

.svc-pill:hover svg { stroke: #fff; }

/* ── FEATURE CHECKLIST ── */
.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-checklist li svg { flex-shrink: 0; }

/* ── COMPONENTS SECTION (Kitchen page) ── */
.comp-category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.comp-category-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comp-category-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.comp-card {
  background: var(--bg-secondary);
  padding: 2rem 1.8rem;
  transition: background 0.4s ease;
  position: relative;
}

.comp-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.comp-card:hover { background: var(--bg-primary); }
.comp-card:hover::after { transform: scaleX(1); }

.comp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: var(--transition-fast);
}

.comp-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.comp-card:hover .comp-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.comp-card:hover .comp-icon svg { stroke: #fff; }
.comp-card h4 { margin-bottom: 0.6rem; font-size: 1rem; }
.comp-card p { font-size: 0.84rem; line-height: 1.7; }

/* ── RESPONSIVE: pills, components ── */
@media (max-width: 1024px) {
  .components-grid { grid-template-columns: repeat(2, 1fr); }
  .all-services-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .components-grid { grid-template-columns: 1fr; }
  .all-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .all-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SECTION JUMP NAV (Furniture page) ── */
.section-jumpnav {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 900;
}

.jumpnav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.jumpnav-inner::-webkit-scrollbar { display: none; }

.jumpnav-item {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem 1.4rem;
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.jumpnav-item:hover {
  color: var(--accent);
  background: var(--bg-secondary);
}

@media (max-width: 768px) {
  .section-jumpnav { top: 62px; }
  .jumpnav-item { padding: 0.85rem 1rem; font-size: 0.62rem; }
}


/* ============================================================
   HOME PAGE v3 — Hero Split, Trust Ticker, Editorial Services,
   FAQ Accordion. All new classes for the redesigned index.html.
   ============================================================ */

/* ──────────────────────────────────────────
   1. HERO SPLIT LAYOUT
   Left: headline + stats + CTAs
   Right: photo mosaic
────────────────────────────────────────── */
.hero-split {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-dark);
  padding-top: 72px; /* nav height */
  overflow: hidden;
}

/* LEFT — TEXT PANEL */
.hero-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem,6vw,6rem) clamp(2rem,5vw,6rem) clamp(3rem,6vw,6rem) clamp(2rem,7vw,8rem);
}

.hero-split-text .hero-eyebrow {
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.hero-split-text h1 {
  color: #fff;
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.8rem;
}

.hero-split-text h1 em {
  font-style: italic;
  color: #E8D5BE;
}

.hero-subtext {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.88rem,1.2vw,1rem);
  max-width: 42ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* Stats row inside hero */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
  width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9rem 1.4rem;
  background: rgba(255,255,255,0.04);
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--accent-light);
  line-height: 1;
  font-weight: 400;
}

.hero-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 100%;
  min-height: 50px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* RIGHT — IMAGE MOSAIC */
.hero-split-visual {
  position: relative;
  overflow: hidden;
  background: #1E1C1A;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr;
  height: 100%;
  gap: 3px;
}

.mosaic-main {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.mosaic-main:hover img { transform: scale(1.05); }

.mosaic-stack {
  display: grid;
  grid-template-rows: 1fr 1fr 0.6fr;
  gap: 3px;
  height: 100%;
}

.mosaic-sm {
  position: relative;
  overflow: hidden;
}

.mosaic-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.mosaic-sm:hover img { transform: scale(1.06); }

/* The accent tile with stats */
.mosaic-accent {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mosaic-accent-inner {
  text-align: center;
  padding: 1rem;
}

.mosaic-accent-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #fff;
  display: block;
  line-height: 1;
}

.mosaic-accent-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: block;
  margin-top: 4px;
}

.mosaic-accent-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  display: block;
  margin-top: 3px;
}

/* Placeholder tiles — shown when no image */
.mosaic-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  pointer-events: none;
}

.mosaic-placeholder span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.35);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.mosaic-placeholder-1 { background: linear-gradient(145deg, #3D2B1F 0%, #2A2018 100%); }
.mosaic-placeholder-2 { background: linear-gradient(145deg, #2C2820 0%, #1E1C18 100%); }
.mosaic-placeholder-3 { background: linear-gradient(145deg, #352B20 0%, #241E18 100%); }


/* ──────────────────────────────────────────
   2. TRUST TICKER — Scrolling strip
────────────────────────────────────────── */
.trust-ticker {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
}

.trust-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 1rem 0;
  animation: tickerScroll 28s linear infinite;
  will-change: transform;
}

.trust-ticker:hover .trust-ticker-track {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tick-item {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.tick-star { color: #F5C842; letter-spacing: 1px; }

.tick-sep {
  color: var(--accent);
  font-size: 0.5rem;
  opacity: 0.6;
  flex-shrink: 0;
}


/* ──────────────────────────────────────────
   3. SERVICES — EDITORIAL CARDS
   3 large image cards + 4 smaller tiles
   Clean, creative, no empty cells
────────────────────────────────────────── */
.services-editorial {
  padding: var(--section-padding);
}

/* Large image cards — 3 columns */
.ed-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.ed-card-large {
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
  text-decoration: none;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s ease;
  position: relative;
}

.ed-card-large:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.ed-card-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.ed-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

.ed-card-large:hover .ed-card-img img { transform: scale(1.07); }

/* Warm gradient fallback when no image */
.ed-card-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* img and bg overlay - bg always shows as fallback */
.ed-card-img {
  position: relative;
}
.ed-card-img img {
  position: relative;
  z-index: 1;
}
.ed-card-img-bg {
  z-index: 0;
}

.ed-bg-1 { background: linear-gradient(145deg, #D8D0C4 0%, #C0B4A4 100%); }
.ed-bg-2 { background: linear-gradient(145deg, #D0C8BC 0%, #B8B0A4 100%); }
.ed-bg-3 { background: linear-gradient(145deg, #C8C0B4 0%, #B0A898 100%); }

/* Show bg only when image fails */
/* Ed card bg always visible as fallback layer behind image */

.ed-card-body {
  padding: 1.8rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.ed-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  display: block;
  transition: color 0.3s ease;
}

.ed-card-large:hover .ed-num { color: var(--accent); }

.ed-card-body h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 0.2rem;
}

.ed-card-body p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}

.ed-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.8rem;
  display: inline-block;
  transition: letter-spacing 0.3s ease;
}

.ed-card-large:hover .ed-link { letter-spacing: 0.18em; }

/* Small service tiles — 4 columns */
.ed-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ed-tile {
  background: var(--bg-primary);
  padding: 1.8rem 1.5rem 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.ed-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ed-tile:hover { background: var(--bg-secondary); }
.ed-tile:hover::after { transform: scaleX(1); }

.ed-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: background 0.3s, border-color 0.3s;
}

.ed-tile-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  transition: stroke 0.3s;
}

.ed-tile:hover .ed-tile-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.ed-tile:hover .ed-tile-icon svg { stroke: #fff; }

.ed-tile h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ed-tile p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.ed-tile-arrow {
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: auto;
  padding-top: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-4px);
  display: block;
}

.ed-tile:hover .ed-tile-arrow { opacity: 1; transform: translateX(0); }

/* "See All Services" CTA row */
.ed-cta-row {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-start;
}


/* ──────────────────────────────────────────
   4. FAQ SECTION — Accordion style
────────────────────────────────────────── */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.faq-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.faq-item {
  background: var(--bg-secondary);
  transition: background 0.3s ease;
}

.faq-item[open] { background: var(--bg-primary); }

.faq-q {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  user-select: none;
  transition: color 0.25s ease;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-item[open] .faq-q { color: var(--accent); }

.faq-a {
  padding: 0 2rem 1.8rem;
}

.faq-a p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}


/* ──────────────────────────────────────────
   5. RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-visual { height: 55vw; min-height: 320px; }
  .hero-split-text { padding: 4rem 2rem 3rem; }
  .hero-stats { width: 100%; justify-content: stretch; }
  .hero-stat { flex: 1; }

  .ed-grid-3 { grid-template-columns: 1fr 1fr; }
  .ed-grid-4 { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
  .hero-split-visual { height: 70vw; }
  .mosaic-stack { grid-template-rows: 1fr 1fr 0.55fr; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 calc(50% - 0.5rem); }
  .hero-stat-divider { display: none; }

  .ed-grid-3 { grid-template-columns: 1fr; }
  .ed-grid-4 { grid-template-columns: 1fr 1fr; }

  .ed-cta-row { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-split-text { padding: 3rem 1.5rem 2.5rem; }
  .hero-stats { flex-direction: column; width: 100%; }
  .hero-stat { flex-direction: row; justify-content: space-between; padding: 0.7rem 1rem; }
  .hero-stat-num { font-size: 1.1rem; }
  .ed-grid-4 { grid-template-columns: 1fr; }
}