/* ============================================
   AWARD-GRADE CSS — INTERIOR DESIGN PORTFOLIO
   Refined Design System · Cinematic Animations
   ============================================ */

/* === Design Tokens === */
:root {
  /* Luxury Interior Palette */
  --bg: #f7f5f2;
  --bg-deep: #eae6e0;
  --bg-dark: #1b1915;
  --bg-card: #ffffff;
  --accent: #b08968;
  --accent-light: #c4a882;
  --accent-dark: #8c6a4a;
  --accent-rich: #7c5832;
  --accent-glow: rgba(176, 137, 104, 0.18);
  --accent-gradient: linear-gradient(135deg, #c4a882 0%, #b08968 40%, #8c6a4a 100%);
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --text-primary: #1b1915;
  --text-body: #3d3730;
  --text-muted: #8a837a;
  --border: rgba(176, 137, 104, 0.15);
  --border-light: rgba(176, 137, 104, 0.08);
  --shadow-sm: 0 2px 12px rgba(27, 25, 21, 0.06);
  --shadow-md: 0 8px 30px rgba(27, 25, 21, 0.1);
  --shadow-lg: 0 20px 60px rgba(27, 25, 21, 0.15);
  --shadow-xl: 0 32px 80px rgba(27, 25, 21, 0.2);

  /* Glass */
  --glass-bg: rgba(247, 245, 242, 0.92);
  --glass-border: rgba(255, 255, 255, 0.6);

  /* Spacing — 4px base */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* Typography */
  --font-display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --fs-sm: clamp(0.825rem, 0.78rem + 0.25vw, 0.9375rem);
  --fs-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
  --fs-md: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --fs-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
  --fs-xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
  --fs-2xl: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  --fs-3xl: clamp(2.5rem, 1.8rem + 3.5vw, 4.25rem);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --dur-fast: 0.18s;
  --dur-normal: 0.35s;
  --dur-slow: 0.6s;
  --dur-cinematic: 0.9s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga' 1, 'calt' 1;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg);
  overflow-x: hidden;
}

/* Ambient background glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(176, 137, 104, 0.07), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(212, 168, 83, 0.04), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

::selection { background: var(--accent); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* === Container === */
.container {
  width: 100%;
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* =============================================
   KEYFRAMES — Cinematic Motion Library
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 50px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translate3d(0, -30px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translate3d(-40px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translate3d(40px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes scaleReveal {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.45); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes borderDraw {
  0%   { clip-path: inset(0 100% 100% 0); }
  50%  { clip-path: inset(0 0 100% 0); }
  100% { clip-path: inset(0 0 0 0); }
}
@keyframes textReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Reveal system */
.reveal {
  opacity: 0;
  transform: translate3d(0, 35px, 0);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translate3d(0, 25px, 0);
  transition: opacity var(--dur-normal) var(--ease-out),
              transform var(--dur-normal) var(--ease-out);
}
.stagger-children.active > *:nth-child(1)  { transition-delay: 0ms; }
.stagger-children.active > *:nth-child(2)  { transition-delay: 70ms; }
.stagger-children.active > *:nth-child(3)  { transition-delay: 140ms; }
.stagger-children.active > *:nth-child(4)  { transition-delay: 210ms; }
.stagger-children.active > *:nth-child(5)  { transition-delay: 280ms; }
.stagger-children.active > *:nth-child(6)  { transition-delay: 350ms; }
.stagger-children.active > *:nth-child(7)  { transition-delay: 420ms; }
.stagger-children.active > *:nth-child(8)  { transition-delay: 490ms; }
.stagger-children.active > *:nth-child(9)  { transition-delay: 560ms; }
.stagger-children.active > *:nth-child(10) { transition-delay: 630ms; }
.stagger-children.active > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: box-shadow var(--dur-normal) var(--ease-smooth),
              background var(--dur-normal);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(247, 245, 242, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-5) 0;
  gap: var(--s-6);
}

.brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-lg);
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
}
.brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--dur-normal) var(--ease-out);
}
.brand:hover { color: var(--accent-dark); }
.brand:hover::after { width: 100%; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-1);
}
.nav a {
  position: relative;
  padding: var(--s-2) var(--s-4);
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-sm);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav a:hover {
  color: var(--accent-dark);
  background: var(--accent-glow);
}
.nav a.cta {
  background: var(--accent-gradient);
  color: #fff;
  padding: var(--s-3) var(--s-6);
  font-weight: 600;
  border-radius: var(--r-full);
  box-shadow: 0 4px 18px rgba(176, 137, 104, 0.3);
  transition: all var(--dur-fast) var(--ease-bounce);
}
.nav a.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(176, 137, 104, 0.4);
  background: var(--accent-gradient);
  color: #fff;
}
.nav a.cta:active { transform: translateY(0); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--accent-dark);
  cursor: pointer;
  padding: var(--s-2);
  border-radius: var(--r-sm);
  transition: background var(--dur-fast);
}
.nav-toggle:hover { background: var(--accent-glow); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: var(--s-24) 0 var(--s-20);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(27, 25, 21, 0.78) 0%, rgba(140, 106, 74, 0.45) 50%, rgba(27, 25, 21, 0.82) 100%),
    url('https://images.unsplash.com/photo-1507667981372-6b6c0d38d0a6?q=80&w=1600&auto=format&fit=crop&ixlib=rb-4.0.3&s=mnop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: -1;
}

.hero-inner {
  max-width: 820px;
  color: #fff;
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: var(--s-6);
  letter-spacing: -0.01em;
  animation: fadeInUp var(--dur-cinematic) var(--ease-out) both;
}
.hero-lead {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: var(--s-10);
  max-width: 60ch;
  animation: fadeInUp var(--dur-cinematic) var(--ease-out) 0.15s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
  animation: fadeInUp var(--dur-cinematic) var(--ease-out) 0.3s both;
}
.hero-note {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  animation: fadeInUp var(--dur-cinematic) var(--ease-out) 0.45s both;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-8);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-fast) var(--ease-bounce);
  letter-spacing: 0.02em;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::after { opacity: 1; }

.btn.primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(176, 137, 104, 0.35);
}
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(176, 137, 104, 0.45);
}
.btn.primary:active { transform: translateY(-1px); }

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* =============================================
   SECTION TYPOGRAPHY
   ============================================= */
section { position: relative; }

section h2 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--s-6);
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.section-line {
  width: 48px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: var(--r-full);
  margin-bottom: var(--s-6);
}

section h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--text-primary);
}

.muted { color: var(--text-muted); }

/* =============================================
   GRID SYSTEM
   ============================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}

/* =============================================
   CARDS — Service Cards
   ============================================= */
.card {
  position: relative;
  background: var(--bg-card);
  padding: var(--s-8) var(--s-8) var(--s-6);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-normal) var(--ease-out);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-out);
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-normal);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.card:hover::before { transform: scaleX(1); }
.card:hover::after  { opacity: 1; }

.card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 400;
  margin: 0 0 var(--s-3);
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}
.card p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: var(--s-24) 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}
.services h2 { margin-bottom: var(--s-10); }

/* =============================================
   PORTFOLIO — AWARD-GRADE GALLERY
   9 Category Cards · Hover Reveal · Click → Page
   ============================================= */
.portfolio {
  padding: var(--s-24) 0 var(--s-32);
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* Ambient glow behind portfolio */
.portfolio::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(176, 137, 104, 0.08), transparent 70%);
  pointer-events: none;
}

.portfolio h2 {
  color: #fff;
  margin-bottom: var(--s-3);
  text-align: center;
}

.portfolio .section-line {
  margin-inline: auto;
  margin-bottom: var(--s-4);
}

.portfolio > .container > .muted {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--s-16);
  max-width: 55ch;
  margin-inline: auto;
}

/* === Portfolio Grid — 3 × 3 Bento Layout === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--s-5);
  max-width: 1100px;
  margin-inline: auto;
}

/* === Portfolio Card === */
.portfolio-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: #252220;
  text-decoration: none;
  color: #fff;
  display: block;
  isolation: isolate;
  transition: transform var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out);
}

/* Image */
.portfolio-card .pc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-cinematic) var(--ease-out),
              filter var(--dur-normal) var(--ease-smooth);
  will-change: transform;
}

/* Dark gradient overlay — always visible */
.portfolio-card .pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(27, 25, 21, 0.85) 0%,
    rgba(27, 25, 21, 0.25) 50%,
    rgba(27, 25, 21, 0.05) 100%
  );
  z-index: 1;
  transition: background var(--dur-normal);
}

/* Content container */
.portfolio-card .pc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s-8);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Category label */
.portfolio-card .pc-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: var(--s-2);
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--dur-normal) var(--ease-out) 0.05s;
}

/* Title */
.portfolio-card .pc-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 1.25;
  transform: translateY(16px);
  transition: transform var(--dur-normal) var(--ease-out);
}

/* Arrow indicator */
.portfolio-card .pc-arrow {
  position: absolute;
  top: var(--s-6);
  right: var(--s-6);
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: translate(-8px, 8px) scale(0.85);
  transition: all var(--dur-normal) var(--ease-bounce) 0.08s;
}
.portfolio-card .pc-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  transition: transform var(--dur-fast) var(--ease-out);
}

/* === Hover States === */
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.portfolio-card:hover .pc-img {
  transform: scale(1.08);
  filter: brightness(1.05);
}
.portfolio-card:hover .pc-overlay {
  background: linear-gradient(
    0deg,
    rgba(27, 25, 21, 0.9) 0%,
    rgba(27, 25, 21, 0.4) 60%,
    rgba(27, 25, 21, 0.1) 100%
  );
}
.portfolio-card:hover .pc-label {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-card:hover .pc-title {
  transform: translateY(0);
}
.portfolio-card:hover .pc-arrow {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.portfolio-card:hover .pc-arrow svg {
  transform: translate(2px, -2px);
}

/* Focus state for accessibility */
.portfolio-card:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 4px;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: var(--s-20) 0;
}
.about h2 { margin-bottom: var(--s-6); }
.about p {
  max-width: 75ch;
  color: var(--text-muted);
  line-height: 1.85;
}
.about p strong {
  color: var(--accent-dark);
  font-weight: 600;
}

/* =============================================
   STATS
   ============================================= */
.stats {
  padding: var(--s-16) 0;
  margin: var(--s-8) auto;
  max-width: 960px;
}
.stats .grid {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.stat-card {
  position: relative;
  text-align: center;
  padding: var(--s-8) var(--s-4);
  background: var(--bg-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-normal) var(--ease-out);
  overflow: hidden;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  margin-bottom: var(--s-2);
  position: relative;
  z-index: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  color: var(--text-muted);
  font-weight: 600;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

/* =============================================
   WHY CHOOSE
   ============================================= */
.why-choose {
  padding: var(--s-24) 0;
  background: linear-gradient(180deg, var(--bg), var(--bg-deep));
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: var(--s-24) 0;
}
.contact h2 { margin-bottom: var(--s-4); }
.contact > .muted {
  margin-bottom: var(--s-10);
  max-width: 60ch;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-10);
}
.contact.compact .contact-actions { flex-direction: row; }

.contact-form { max-width: 600px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: var(--s-5);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-card);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  transition: all var(--dur-fast) var(--ease-smooth);
  margin-bottom: var(--s-4);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form textarea { min-height: 140px; resize: vertical; }

.form-row { display: flex; gap: var(--s-4); }
.form-row input { flex: 1; }
.contact .btn.primary { background: var(--accent-rich); }

/* =============================================
   REVIEWS — Dynamic Google Reviews
   ============================================= */
.reviews {
  padding: var(--s-24) 0;
  background: linear-gradient(180deg, var(--bg-deep), var(--bg));
}
.reviews h2 { margin-bottom: var(--s-3); }
.reviews .section-line { margin-bottom: var(--s-4); }
.reviews > .container > .muted { margin-bottom: var(--s-10); max-width: 55ch; }

/* Summary bar */
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  margin-bottom: var(--s-10);
  padding: var(--s-6) var(--s-8);
  background: var(--bg-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.summary-left {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.overall-rating {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--text-primary);
  line-height: 1;
}
.rating-stars {
  display: flex;
  gap: 3px;
  font-size: 1.2rem;
  margin-bottom: var(--s-1);
}
.star-filled { color: var(--gold); }
.star-empty  { color: var(--border); }
.total-reviews {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

/* Loading skeletons */
.reviews-loading {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s-5);
}
.review-skeleton {
  height: 220px;
  background: linear-gradient(90deg, var(--bg-deep) 25%, var(--bg) 50%, var(--bg-deep) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--r-xl);
}

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s-5);
}

/* Individual review card */
.review-card {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.review-header {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 2px solid var(--border-light);
  flex-shrink: 0;
}
.review-author-info { min-width: 0; }
.review-author-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--fs-sm);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-time {
  color: var(--text-muted);
  font-size: var(--fs-xs);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--s-3);
  font-size: 0.95rem;
}
.review-text {
  color: var(--text-body);
  font-size: var(--fs-sm);
  line-height: 1.75;
  flex: 1;
  margin: 0;
}

/* Fallback CTA (when API unavailable) */
.reviews-fallback {
  text-align: center;
  padding: var(--s-10) var(--s-6);
  background: var(--bg-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-light);
}
.reviews-fallback p {
  color: var(--text-muted);
  margin-bottom: var(--s-6);
  max-width: 55ch;
  margin-inline: auto;
}
.reviews-fallback .fallback-stars {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: var(--s-4);
}

/* Google attribution */
.google-attribution {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-6);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
.google-attribution img {
  height: 18px;
  width: auto;
}

/* =============================================
   SERVICE AREAS
   ============================================= */
.service-areas { padding: var(--s-24) 0; }
.service-areas h2 { margin-bottom: var(--s-4); }
.service-areas > .muted { margin-bottom: var(--s-10); max-width: 70ch; }
.service-areas .areas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0;
}
.service-areas .areas li {
  background: var(--bg-card);
  padding: var(--s-2) var(--s-5);
  border-radius: var(--r-full);
  border: 1px solid var(--border-light);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--dur-fast) var(--ease-bounce);
  cursor: default;
}
.service-areas .areas li:hover {
  background: var(--accent-glow);
  border-color: var(--accent-light);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: var(--s-24) 0;
  background: linear-gradient(180deg, var(--bg), var(--bg-deep));
}
.faq h2 { margin-bottom: var(--s-10); }

.faq-item { margin-bottom: var(--s-4); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: var(--s-5) var(--s-8);
  padding-right: var(--s-16);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-smooth);
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: var(--s-8);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--dur-fast) var(--ease-bounce);
}
.faq-q:hover {
  border-color: var(--accent-light);
  background: var(--accent-glow);
}
.faq-q.active::after { transform: translateY(-50%) rotate(45deg); }

.faq-a {
  padding: var(--s-5) var(--s-8);
  border-radius: var(--r-md);
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
  margin-top: var(--s-2);
  display: none;
  color: var(--text-muted);
  line-height: 1.75;
  animation: fadeInUp var(--dur-fast) var(--ease-out);
}

/* =============================================
   OWNER PROFILE
   ============================================= */
.owner-profile {
  padding: var(--s-24) 0;
  background: linear-gradient(180deg, var(--bg-deep), var(--bg));
}
.owner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s-16);
  align-items: center;
}
.owner-image { max-width: 380px; }
.owner-image img {
  width: 100%;
  height: auto;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--bg-card);
  transition: all var(--dur-normal) var(--ease-out);
}
.owner-image img:hover {
  transform: scale(1.02) rotate(0.5deg);
  box-shadow: var(--shadow-xl);
}
.owner-details h2 { margin-bottom: var(--s-4); }
.owner-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--accent-dark);
  margin: 0 0 var(--s-2);
}
.owner-title {
  color: var(--accent);
  font-weight: 600;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 var(--s-6);
}
.owner-bio {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: var(--s-8);
  max-width: 55ch;
}
.owner-contact {
  background: var(--bg-card);
  padding: var(--s-5) var(--s-8);
  border-radius: var(--r-xl);
  border-left: 4px solid var(--accent);
  margin-bottom: var(--s-5);
  box-shadow: var(--shadow-sm);
}
.owner-contact p {
  margin: var(--s-2) 0;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.owner-cta {
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  font-size: var(--fs-sm);
}

/* =============================================
   FOOTER — Premium Mega Footer
   ============================================= */
.site-footer {
  position: relative;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-gradient);
}

/* ---- CTA Banner ---- */
.footer-cta {
  padding: var(--s-20) 0;
  text-align: center;
  position: relative;
}
.footer-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.footer-cta-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--s-4);
  line-height: 1.2;
}
.footer-cta-sub {
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-md);
  margin-bottom: var(--s-8);
  max-width: 50ch;
  margin-inline: auto;
}
.footer-cta-actions {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}
.footer-cta .btn.primary {
  background: var(--accent);
  color: #fff;
}
.footer-cta .btn.ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.footer-cta .btn.ghost:hover {
  border-color: var(--accent);
  background: rgba(176,137,104,0.1);
}

/* ---- Main Footer Grid ---- */
.footer-main {
  padding: var(--s-16) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--s-10);
}

/* Brand column */
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: #fff;
  margin-bottom: var(--s-4);
}
.footer-brand .brand-desc {
  color: rgba(255,255,255,0.45);
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin-bottom: var(--s-6);
  max-width: 30ch;
}
.footer-socials {
  display: flex;
  gap: var(--s-3);
}
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease-bounce);
  font-size: 1rem;
}
.footer-socials a svg {
  width: 18px; height: 18px;
  fill: currentColor;
}
.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(176,137,104,0.3);
}

/* Footer columns */
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--s-5);
  position: relative;
  padding-bottom: var(--s-3);
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: var(--s-3); }
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: all var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--dur-fast) var(--ease-out);
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(6px);
}
.footer-links a:hover::before {
  width: 14px;
}

/* Contact info column */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.footer-contact-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: rgba(176,137,104,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.95rem;
}
.footer-contact-icon svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}
.footer-contact-text {
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.footer-contact-text span {
  display: block;
  color: rgba(255,255,255,0.35);
  font-size: var(--fs-xs);
  margin-bottom: 2px;
}
.footer-contact-text a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-contact-text a:hover { color: var(--accent); }

/* ---- Map Section ---- */
.footer-map {
  padding: 0 0 var(--s-10);
}
.footer-map-wrapper {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  aspect-ratio: 21 / 7;
}
.footer-map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.7) brightness(0.85) contrast(1.1);
  transition: filter var(--dur-normal) var(--ease-out);
}
.footer-map-wrapper:hover iframe {
  filter: saturate(1) brightness(1) contrast(1);
}
.footer-map-label {
  position: absolute;
  bottom: var(--s-4); left: var(--s-4);
  background: rgba(27,25,21,0.85);
  backdrop-filter: blur(12px);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: var(--s-2);
  pointer-events: none;
  z-index: 2;
}
.footer-map-label .pin-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: var(--r-full);
  animation: pulse-ring 2s ease-out infinite;
  position: relative;
}
.footer-map-label .pin-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid var(--accent);
  animation: pulse-ring 2s ease-out infinite 0.3s;
}

/* ---- Bottom Bar ---- */
.footer-bottom {
  padding: var(--s-6) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
}
.footer-copyright {
  margin: 0;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: var(--s-6);
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: var(--fs-xs);
  transition: color var(--dur-fast);
}
.footer-bottom-links a:hover { color: var(--accent); }

/* Back to top button */
.back-to-top {
  position: absolute;
  top: -22px;
  right: var(--s-8);
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: #fff;
  border: 3px solid var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-bounce);
  box-shadow: 0 4px 20px rgba(176,137,104,0.3);
  z-index: 5;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(176,137,104,0.45);
}
.back-to-top svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Animated grain overlay */
.footer-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============================================
   WHATSAPP FLOATING BUTTON — Actual Icon
   ============================================= */
#whatsapp-float {
  position: fixed;
  right: var(--s-6);
  bottom: var(--s-6);
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.35),
    0 3px 10px rgba(37, 211, 102, 0.2);
  z-index: 9999;
  transition: all var(--dur-fast) var(--ease-bounce);
  animation: float 3s ease-in-out infinite;
}
#whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
#whatsapp-float:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 12px 40px rgba(37, 211, 102, 0.45),
    0 6px 16px rgba(37, 211, 102, 0.3);
}
/* Pulse ring */
#whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse-ring 2s ease-out infinite;
}

/* =============================================
   PORTFOLIO SUB-PAGE STYLES
   ============================================= */
.portfolio-page {
  padding: var(--s-16) 0 var(--s-24);
  min-height: 70vh;
}
.portfolio-page h1 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--s-3);
}
.portfolio-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-bottom: var(--s-10);
  transition: color var(--dur-fast);
}
.portfolio-page .back-link:hover {
  color: var(--accent-dark);
}
.portfolio-page .back-link svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform var(--dur-fast) var(--ease-bounce);
}
.portfolio-page .back-link:hover svg {
  transform: translateX(-4px);
}

.portfolio-page .gallery-grid {
  columns: 3;
  column-gap: var(--s-5);
}
.portfolio-page .gallery-grid img {
  width: 100%;
  display: block;
  margin-bottom: var(--s-5);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
  transition: all var(--dur-normal) var(--ease-out);
  cursor: pointer;
}
.portfolio-page .gallery-grid img:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.04);
}

.portfolio-page .section-desc {
  color: var(--text-muted);
  max-width: 65ch;
  margin-bottom: var(--s-12);
  line-height: 1.8;
}

/* =============================================
   RESPONSIVE — Full Mobile Support
   ============================================= */

/* ---- Tablet landscape ---- */
@media (max-width: 1024px) {
  .grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .owner-wrapper {
    grid-template-columns: 1fr;
    gap: var(--s-10);
    text-align: center;
  }
  .owner-image { margin-inline: auto; }
  .owner-bio { max-width: 100%; margin-inline: auto; }

  .reviews-grid,
  .reviews-loading { grid-template-columns: repeat(2, 1fr); }

  .portfolio-page .gallery-grid { columns: 2; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-map-wrapper { aspect-ratio: 16 / 7; }
}

/* ---- Tablet portrait / large phones ---- */
@media (max-width: 768px) {
  /* Sections spacing tighten */
  .services,
  .why-choose,
  .reviews,
  .faq,
  .owner-profile,
  .service-areas,
  .contact { padding: var(--s-16) 0; }
  .portfolio { padding: var(--s-16) 0 var(--s-20); }

  .hero {
    min-height: auto;
    padding: var(--s-16) 0 var(--s-12);
  }
  .hero::before { background-attachment: scroll; }
  .hero-title { font-size: var(--fs-2xl); }

  /* Nav hamburger */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: var(--s-4); right: var(--s-4);
    background: var(--bg-card);
    padding: var(--s-5);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: var(--s-1);
    animation: slideDown var(--dur-fast) var(--ease-out);
    border: 1px solid var(--border-light);
    z-index: 100;
  }
  .nav.active { display: flex; }
  .nav a {
    padding: var(--s-3) var(--s-4);
    text-align: center;
    border-radius: var(--r-sm);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav a.cta { margin-top: var(--s-2); border-radius: var(--r-full); }
  .nav-toggle { display: flex; }

  /* Portfolio cards */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .portfolio-card { aspect-ratio: 3 / 3.5; }
  .portfolio-card .pc-content { padding: var(--s-5); }
  .portfolio-card .pc-title { font-size: var(--fs-md); }
  .portfolio-card .pc-arrow { width: 36px; height: 36px; top: var(--s-4); right: var(--s-4); }

  /* Forms */
  .form-row { flex-direction: column; }
  .contact-actions,
  .contact.compact .contact-actions { flex-direction: column; }
  .btn {
    min-height: 48px;
    padding: var(--s-4) var(--s-6);
  }

  /* Reviews */
  .reviews-summary {
    flex-direction: column;
    text-align: center;
    gap: var(--s-4);
  }
  .summary-left {
    flex-direction: column;
    gap: var(--s-2);
  }
  .reviews-grid,
  .reviews-loading { grid-template-columns: 1fr; }

  /* Gallery sub-pages */
  .portfolio-page .gallery-grid { columns: 2; }
  .portfolio-page { padding: var(--s-10) 0 var(--s-16); }
  .portfolio-page h1 { font-size: var(--fs-xl); }

  /* Owner */
  .owner-image { max-width: 280px; }
  .owner-contact { padding: var(--s-4) var(--s-5); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer-cta-title { font-size: var(--fs-xl); }
  .footer-cta-actions { flex-direction: column; align-items: center; }
  .footer-cta-actions .btn { width: 100%; max-width: 300px; text-align: center; }
  .footer-map-wrapper { aspect-ratio: 4 / 3; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: var(--s-3); }
  .footer-bottom-links { justify-content: center; }
}

/* ---- Mobile phones ---- */
@media (max-width: 480px) {
  .container { padding-inline: var(--s-4); }

  .portfolio-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .portfolio-card { aspect-ratio: 4 / 3; }

  .stats .grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
  .stat-card { padding: var(--s-5) var(--s-3); }
  .stat-number { font-size: var(--fs-xl); }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  #whatsapp-float {
    width: 52px; height: 52px;
    right: var(--s-4); bottom: var(--s-4);
  }
  #whatsapp-float svg { width: 26px; height: 26px; }

  .service-areas .areas {
    gap: var(--s-2);
  }
  .service-areas .areas li {
    padding: var(--s-2) var(--s-4);
    font-size: var(--fs-xs);
  }

  /* Gallery sub-pages */
  .portfolio-page .gallery-grid { columns: 1; }
  .portfolio-page .section-desc { font-size: var(--fs-sm); }

  /* Cards */
  .card { padding: var(--s-5) var(--s-5) var(--s-4); }
  .card h3 { font-size: var(--fs-base); }

  /* Reviews */
  .review-card { padding: var(--s-5); }
  .review-avatar { width: 36px; height: 36px; }

  /* FAQ */
  .faq-q { padding: var(--s-4) var(--s-12) var(--s-4) var(--s-5); font-size: var(--fs-sm); }
  .faq-q::after { right: var(--s-5); }
  .faq-a { padding: var(--s-4) var(--s-5); font-size: var(--fs-sm); }

  /* Owner */
  .owner-image { max-width: 220px; }
  .owner-name { font-size: var(--fs-lg); }
  .owner-wrapper { gap: var(--s-8); }
  .owner-bio { font-size: var(--fs-sm); }

  /* Footer */
  .footer-cta { padding: var(--s-12) 0; }
  .footer-cta-title { font-size: var(--fs-lg); }
  .footer-cta-sub { font-size: var(--fs-sm); }
  .footer-socials { justify-content: center; }
  .footer-brand { text-align: center; }
  .footer-brand .brand-desc { max-width: 100%; margin-inline: auto; }
  .footer-col h4::after { margin-inline: auto; left: auto; right: auto; }
  .footer-map-wrapper { aspect-ratio: 1 / 1; border-radius: var(--r-xl); }
  .back-to-top { right: var(--s-4); width: 38px; height: 38px; }
}

/* ---- Very small screens ---- */
@media (max-width: 360px) {
  .container { padding-inline: var(--s-3); }
  .hero-title { font-size: var(--fs-xl); }
  .stat-number { font-size: var(--fs-lg); }
  .brand { font-size: var(--fs-md); }
  .header-inner { padding: var(--s-3) 0; }
  .portfolio-card .pc-content { padding: var(--s-4); }
  .portfolio-card .pc-title { font-size: var(--fs-base); }
  .portfolio-card .pc-label { font-size: 0.65rem; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .site-header, .nav-toggle, #whatsapp-float, .btn, .contact-form { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { background: none; color: #000; padding: var(--s-6) 0; min-height: auto; }
  .portfolio { background: #fff; color: #000; }
  .card, .stat-card { box-shadow: none; border: 1px solid #ccc; }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
button:focus-visible, a:focus-visible, input:focus-visible,
textarea:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

