/*
Theme Name:  KreativDigitals
Theme URI:   https://kreativdigitals.com
Author:      KreativDigitals
Description: Premium full-service digital agency theme — motion-driven, conversion-focused, fully responsive.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: kreativdigitals
Tags:        agency, portfolio, full-width-template, custom-menu, featured-images
*/

/* ============================================================
   TABLE OF CONTENTS
   01. Design Tokens (CSS Variables)
   02. Reset & Base
   03. Typography
   04. Layout Utilities
   05. Buttons
   06. Custom Cursor
   07. Navigation
   08. Mobile Menu
   09. Hero Section
   10. Marquee Strip
   11. Stats Section
   12. Services Section
   13. Portfolio Section
   14. Process Section
   15. Why Us Section
   16. Testimonials Section
   17. Contact / Conversion Section
   18. Final CTA Section
   19. Footer
   20. Scroll Animations
   21. Form Styles
   22. Inner Page: Services
   23. Inner Page: Portfolio
   24. Inner Page: Blog
   25. Inner Page: About
   26. Inner Page: Contact Page
   27. Inner Page: Get Quote
   28. Inner Page: Book Consultation
   29. Inner Page: Single Post
   30. Page Hero (reusable)
   31. 404 Page
   32. Responsive Breakpoints
   33. Accessibility & Reduced Motion
   ============================================================ */


/* ============================================================
   01. DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --black:      #0D0D0D;
  --dark:       #111111;
  --dark-card:  #1a1a1a;
  --dark-mid:   #1e1e1e;
  --white:      #F5F3EF;
  --white-pure: #ffffff;
  --warm:       #F0EDE6;
  --muted:      #888884;
  --muted-dark: #555552;
  --border-d:   rgba(255,255,255,0.07);
  --border-l:   rgba(0,0,0,0.08);
  --gold:       #C8A96E;
  --teal:       #2ABFBF;
  --green:      #4CAF7D;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --gap-xs:  8px;
  --gap-sm:  16px;
  --gap-md:  24px;
  --gap-lg:  48px;
  --gap-xl:  80px;
  --gap-2xl: 120px;

  /* Border Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:     0.18s ease;
  --t-base:     0.30s var(--ease);
  --t-slow:     0.60s var(--ease-out);

  /* Layout */
  --container:   1380px;
  --container-m: 1100px;
  --container-s: 760px;
  --nav-h:       80px;

  /* Z-index layers */
  --z-base:    1;
  --z-nav:     100;
  --z-mobile:  90;
  --z-overlay: 200;
  --z-cursor:  9999;
}


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

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

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}

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

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

ul, ol { list-style: none; }

button {
  font-family: var(--font-sans);
  border: none;
  background: none;
  cursor: none;
}

input, select, textarea {
  font-family: var(--font-sans);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */

/* Heading scale */
h1 { font-size: clamp(44px, 6vw, 88px); }
h2 { font-size: clamp(34px, 4vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p { line-height: 1.75; }

/* Utility type classes */
.serif        { font-family: var(--font-serif); }
.sans         { font-family: var(--font-sans); }
.italic       { font-style: italic; }
.gold         { color: var(--gold); }
.teal         { color: var(--teal); }
.muted        { color: var(--muted); }
.muted-dark   { color: var(--muted-dark); }
.text-center  { text-align: center; }
.text-white   { color: var(--white); }
.fw-400       { font-weight: 400; }
.fw-500       { font-weight: 500; }
.fw-600       { font-weight: 600; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--gap-sm);
}
.eyebrow-gold  { color: var(--gold); }
.eyebrow-light { color: rgba(255,255,255,0.4); }


/* ============================================================
   04. LAYOUT UTILITIES
   ============================================================ */
.container   { max-width: var(--container);   margin: 0 auto; padding: 0 40px; }
.container-m { max-width: var(--container-m); margin: 0 auto; padding: 0 40px; }
.container-s { max-width: var(--container-s); margin: 0 auto; padding: 0 40px; }

section { position: relative; overflow: hidden; }

/* Section backgrounds */
.bg-white  { background: var(--white); }
.bg-warm   { background: var(--warm);  }
.bg-dark   { background: var(--dark);  color: var(--white); }
.bg-black  { background: var(--black); color: var(--white); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }

/* Flex helpers */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.gap-sm       { gap: var(--gap-sm); }
.gap-md       { gap: var(--gap-md); }
.gap-lg       { gap: var(--gap-lg); }

/* Section padding */
.section-pad { padding: var(--gap-2xl) 0; }
.section-pad-sm { padding: var(--gap-xl) 0; }


/* ============================================================
   05. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  cursor: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Arrow icon for buttons */
.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* Variants */
.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover {
  background: transparent;
  color: var(--black);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: rgba(0,0,0,0.2);
}
.btn-outline-dark:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.03);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8996a;
  border-color: #b8996a;
}

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }


/* ============================================================
   06. CUSTOM CURSOR
   ============================================================ */
.kd-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 7px; height: 7px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, transform 0.1s ease;
  will-change: top, left;
}
.kd-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  will-change: top, left;
}
.kd-cursor-ring.is-hover {
  width: 60px; height: 60px;
  border-color: var(--gold);
}
/* Invert on dark backgrounds */
.kd-cursor-dot.is-dark  { background: var(--white); }
.kd-cursor-ring.is-dark { border-color: rgba(255,255,255,0.5); }


/* ============================================================
   07. NAVIGATION
   ============================================================ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: var(--z-nav);
  transition: background var(--t-base), backdrop-filter var(--t-base), height var(--t-base), box-shadow var(--t-base);
}
#site-nav.is-scrolled {
  height: 64px;
  background: rgba(11,11,11,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-d);
}

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

/* Logo */
.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo .accent { color: var(--gold); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--t-base);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px; height: 32px;
  cursor: pointer;
  padding: 2px;
}
.nav-burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ============================================================
   08. MOBILE MENU
   ============================================================ */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: var(--z-mobile);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: var(--gap-2xl) var(--gap-lg);
}
#mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
  text-align: center;
}
.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 600;
  color: var(--white);
  transition: color var(--t-fast);
}
.mobile-menu-links a:hover { color: var(--gold); }

.mobile-menu-cta { margin-top: var(--gap-lg); }


/* ============================================================
   09. HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Animated background gradients */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 65% 25%, rgba(200,169,110,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 5% 85%,  rgba(42,191,191,0.06)  0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--gap-xl) 40px var(--gap-xl);
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--r-full);
  background: rgba(200,169,110,0.07);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: var(--gap-md);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 960px;
  margin-bottom: var(--gap-md);
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.50);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: var(--gap-lg);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.25);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}


/* ============================================================
   10. MARQUEE STRIP
   ============================================================ */
#marquee-strip {
  background: var(--dark-card);
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.marquee-item:hover { color: rgba(255,255,255,0.45); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   11. STATS SECTION
   ============================================================ */
#stats {
  padding: var(--gap-xl) 0;
  background: var(--white);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-l);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.stat-cell {
  padding: var(--gap-lg) var(--gap-md);
  text-align: center;
  border-right: 1px solid var(--border-l);
  transition: background var(--t-base);
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--warm); }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
  color: var(--black);
  margin-bottom: 10px;
}
.stat-num .accent { color: var(--gold); }
.stat-lbl {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}


/* ============================================================
   12. SERVICES SECTION
   ============================================================ */
#services {
  padding: var(--gap-2xl) 0;
  background: var(--warm);
}
.services-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-xl);
}
.services-top-left h2 { max-width: 480px; }
.services-top-right {
  max-width: 300px;
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.7;
  text-align: right;
  flex-shrink: 0;
}

/* Primary (large) service cards */
.services-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  margin-bottom: var(--gap-md);
}
/* Secondary (smaller) service cards */
.services-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

/* Card base */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  color: var(--black);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

/* Gold accent top-border reveal */
.svc-card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.svc-card:hover .svc-card-bar { transform: scaleX(1); }

.svc-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background var(--t-base);
  flex-shrink: 0;
}
.svc-card:hover .svc-card-icon { background: rgba(200,169,110,0.18); }

.svc-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}
.svc-card-sm .svc-card-title { font-size: 19px; }

.svc-card-desc {
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.7;
  flex: 1;
}

.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.svc-card:hover .svc-card-cta { opacity: 1; transform: translateY(0); }

.svc-card-lg { min-height: 300px; }
.svc-card-sm { padding: 28px; min-height: 200px; }
.svc-card-sm .svc-card-icon { width: 44px; height: 44px; font-size: 20px; }

.services-more {
  text-align: center;
  margin-top: var(--gap-lg);
}


/* ============================================================
   13. PORTFOLIO SECTION
   ============================================================ */
#portfolio {
  padding: var(--gap-2xl) 0;
  background: var(--dark);
}
.portfolio-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--gap-md);
  margin-bottom: var(--gap-md);
}
.portfolio-top h2 { color: var(--white); }

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--gap-lg);
}
.filter-pill {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  background: transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
}
.filter-pill:hover,
.filter-pill.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.pf-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-mid);
  border: 1px solid var(--border-d);
  cursor: pointer;
  display: block;
  transition: transform var(--t-base);
}
.pf-card:hover { transform: translateY(-4px); }

.pf-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.pf-card:hover .pf-card-img { transform: scale(1.06); }

.pf-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  opacity: 0;
  transition: opacity var(--t-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.pf-card:hover .pf-card-overlay { opacity: 1; }

.pf-card-cat  { font-size: 11px; font-weight: 500; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.pf-card-name { font-family: var(--font-serif); font-size: 22px; color: var(--white); margin-bottom: 6px; }
.pf-card-stat { font-size: 13px; color: rgba(255,255,255,0.55); }

/* Placeholder when no image */
.pf-card-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.12);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pf-card-placeholder-icon { font-size: 40px; opacity: 0.4; }

.portfolio-footer {
  text-align: center;
  margin-top: var(--gap-xl);
}


/* ============================================================
   14. PROCESS SECTION
   ============================================================ */
#process {
  padding: var(--gap-2xl) 0;
  background: var(--white);
}
.process-head {
  text-align: center;
  margin-bottom: var(--gap-xl);
}

.process-row {
  display: flex;
  gap: 0;
  position: relative;
  counter-reset: step-counter;
}
/* Connecting line */
.process-row::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(10% + 27px);
  right: calc(10% + 27px);
  height: 1px;
  background: var(--border-l);
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--gap-md);
  cursor: default;
}
.process-step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  z-index: 2;
  margin-bottom: var(--gap-md);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.process-step:hover .process-step-num,
.process-step.is-active .process-step-num {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.process-step-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 180px;
}


/* ============================================================
   15. WHY US SECTION
   ============================================================ */
#why-us {
  padding: var(--gap-2xl) 0;
  background: var(--warm);
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-left h2 { margin-bottom: var(--gap-md); }

.why-points { display: flex; flex-direction: column; gap: var(--gap-lg); margin-top: var(--gap-lg); }
.why-point  { display: flex; gap: var(--gap-md); align-items: flex-start; }
.why-point-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: rgba(200,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.why-point-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.why-point-desc { font-size: 14px; color: var(--muted-dark); line-height: 1.7; }

.why-us-visual {
  position: relative;
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.why-us-visual-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(200,169,110,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.why-us-big-num {
  font-family: var(--font-serif);
  font-size: clamp(72px, 10vw, 96px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  position: relative; z-index: 2;
}
.why-us-big-num .accent { color: var(--gold); }
.why-us-visual-label {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  position: relative; z-index: 2;
  margin-top: 12px;
  max-width: 200px;
  line-height: 1.5;
}


/* ============================================================
   16. TESTIMONIALS SECTION
   ============================================================ */
#testimonials {
  padding: var(--gap-2xl) 0;
  background: var(--white);
}
.testi-head {
  text-align: center;
  margin-bottom: var(--gap-xl);
}

/* Featured large quote */
.testi-featured {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 64px;
  margin-bottom: var(--gap-md);
  position: relative;
  overflow: hidden;
}
.testi-featured-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(200,169,110,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.testi-featured-quote {
  position: relative; z-index: 2;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.5;
  color: var(--white);
  max-width: 820px;
  margin-bottom: var(--gap-lg);
}
.testi-featured-quote::before {
  content: '\201C';
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -48px; left: -24px;
  line-height: 1;
  pointer-events: none;
}
.testi-meta {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  position: relative; z-index: 2;
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}
.testi-name  { font-size: 15px; font-weight: 500; color: var(--white); }
.testi-role  { font-size: 13px; color: rgba(255,255,255,0.4); }
.testi-stars { margin-left: auto; font-size: 16px; color: var(--gold); letter-spacing: 3px; }

/* Grid of smaller cards */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); }
.testi-card {
  background: var(--warm);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform var(--t-base);
}
.testi-card:hover { transform: translateY(-3px); }
.testi-card-text {
  font-size: 14px;
  color: var(--muted-dark);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: var(--gap-md);
}
.testi-card-name { font-size: 14px; font-weight: 500; }
.testi-card-role { font-size: 12px; color: var(--muted); }


/* ============================================================
   17. CONTACT / CONVERSION SECTION
   ============================================================ */
#contact-section {
  padding: var(--gap-2xl) 0;
  background: var(--dark);
}
.contact-head {
  text-align: center;
  margin-bottom: var(--gap-xl);
}
.contact-head h2 { color: var(--white); margin-bottom: var(--gap-sm); }
.contact-head p  { color: rgba(255,255,255,0.4); font-size: 18px; }

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: start;
}

/* Left: booking */
.contact-booking-col {
  background: var(--dark-mid);
  border: 1px solid var(--border-d);
  border-radius: var(--r-xl);
  padding: 48px;
}
.contact-booking-col h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-booking-col > p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: var(--gap-lg);
}
.calendly-box {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  padding: 48px var(--gap-md);
  text-align: center;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  line-height: 1.7;
}

/* Right: form */
.contact-form-col {
  background: var(--dark-mid);
  border: 1px solid var(--border-d);
  border-radius: var(--r-xl);
  padding: 48px;
}
.contact-form-col h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--white);
  margin-bottom: var(--gap-lg);
}

.form-note {
  margin-top: var(--gap-md);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.form-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }


/* ============================================================
   18. FINAL CTA SECTION
   ============================================================ */
#final-cta {
  padding: 160px 0;
  background: var(--black);
  text-align: center;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-body { position: relative; z-index: 2; }
.final-cta-body h2 {
  font-size: clamp(44px, 7vw, 96px);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: var(--gap-md);
}
.final-cta-body h2 em { color: var(--gold); font-style: italic; }
.final-cta-body p  { font-size: 20px; color: rgba(255,255,255,0.35); margin-bottom: var(--gap-lg); }
.final-cta-btns    { display: flex; gap: var(--gap-sm); justify-content: center; flex-wrap: wrap; }


/* ============================================================
   19. FOOTER
   ============================================================ */
#site-footer {
  background: var(--dark-card);
  border-top: 1px solid var(--border-d);
  padding: var(--gap-xl) 0 var(--gap-lg);
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: var(--gap-xl);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand-name .accent { color: var(--gold); }
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: var(--gap-md);
}
.footer-social-row { display: flex; gap: var(--gap-md); }
.footer-social-row a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.28);
  transition: color var(--t-fast);
}
.footer-social-row a:hover { color: var(--gold); }

.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: var(--gap-md);
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast);
}
.footer-col-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border-d);
  padding-top: var(--gap-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }


/* ============================================================
   20. SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.is-visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.is-visible { opacity: 1; transform: none; }


/* ============================================================
   21. FORM STYLES (shared)
   ============================================================ */
.kd-form { display: flex; flex-direction: column; gap: var(--gap-sm); }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.form-label.dark { color: var(--muted); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-sm);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(200,169,110,0.06);
}
.form-select option { background: var(--dark); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }

/* Light form (on white backgrounds) */
.form-input.light,
.form-select.light,
.form-textarea.light {
  background: var(--white);
  border-color: var(--border-l);
  color: var(--black);
}
.form-input.light::placeholder,
.form-textarea.light::placeholder { color: var(--muted); }
.form-input.light:focus,
.form-select.light:focus,
.form-textarea.light:focus {
  border-color: var(--gold);
  background: var(--white);
}

/* Form feedback */
.form-feedback {
  display: none;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 13px;
  line-height: 1.5;
}
.form-feedback.success { background: rgba(76,175,125,0.15); color: #4CAF7D; border: 1px solid rgba(76,175,125,0.25); }
.form-feedback.error   { background: rgba(220,80,80,0.15);  color: #e06060; border: 1px solid rgba(220,80,80,0.25); }
.form-feedback.visible { display: block; }


/* ============================================================
   22. INNER PAGE: SERVICES OVERVIEW
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--black);
}
.page-hero h1  { color: var(--white); max-width: 700px; margin-bottom: var(--gap-md); }
.page-hero p   { font-size: 20px; color: rgba(255,255,255,0.45); max-width: 520px; line-height: 1.7; }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  padding: var(--gap-2xl) 0;
}

.svc-full-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 40px;
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  color: var(--black);
}
.svc-full-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.svc-full-card-icon { font-size: 36px; }
.svc-full-card-title { font-family: var(--font-serif); font-size: 24px; font-weight: 600; }
.svc-full-card-desc  { font-size: 14px; color: var(--muted-dark); line-height: 1.7; flex: 1; }
.svc-full-card-link  { font-size: 13px; font-weight: 500; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }


/* ============================================================
   23. INNER PAGE: PORTFOLIO ARCHIVE
   ============================================================ */
.portfolio-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  padding: var(--gap-2xl) 0;
}


/* ============================================================
   24. INNER PAGE: BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
  padding: var(--gap-2xl) 0;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
  color: var(--black);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.07); }
.blog-card-thumb {
  aspect-ratio: 16/9;
  background: var(--warm);
  overflow: hidden;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-body  { padding: var(--gap-md); flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-cat   { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.blog-card-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; line-height: 1.25; }
.blog-card-excerpt { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card-meta  { font-size: 12px; color: var(--muted); border-top: 1px solid var(--border-l); padding-top: 12px; margin-top: auto; }


/* ============================================================
   25. INNER PAGE: ABOUT
   ============================================================ */
.about-intro {
  padding: var(--gap-2xl) 0;
  background: var(--white);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-text h2 { margin-bottom: var(--gap-md); }
.about-intro-text p  { font-size: 16px; color: var(--muted-dark); line-height: 1.8; margin-bottom: var(--gap-sm); }

.about-visual {
  background: var(--dark);
  border-radius: var(--r-xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-visual-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(200,169,110,0.15) 0%, transparent 65%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  padding: var(--gap-2xl) 0;
}
.team-card {
  text-align: center;
  background: var(--warm);
  border-radius: var(--r-lg);
  padding: var(--gap-md);
  transition: transform var(--t-base);
}
.team-card:hover { transform: translateY(-4px); }
.team-card-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto var(--gap-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  overflow: hidden;
}
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card-name { font-family: var(--font-serif); font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.team-card-role { font-size: 12px; color: var(--muted); }


/* ============================================================
   26. INNER PAGE: CONTACT PAGE
   ============================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  padding: var(--gap-2xl) 0;
}
.contact-info-col h2 { margin-bottom: var(--gap-md); }
.contact-info-col p  { font-size: 15px; color: var(--muted-dark); line-height: 1.7; margin-bottom: var(--gap-lg); }
.contact-detail-row  { display: flex; gap: var(--gap-sm); margin-bottom: var(--gap-sm); align-items: flex-start; }
.contact-detail-icon { font-size: 20px; }
.contact-detail-text p { font-size: 14px; color: var(--muted-dark); }
.contact-detail-text strong { color: var(--black); }


/* ============================================================
   27. INNER PAGE: GET QUOTE (multi-step)
   ============================================================ */
.quote-page {
  padding: calc(var(--nav-h) + 60px) 0 var(--gap-2xl);
  background: var(--dark);
  min-height: 100vh;
}
.quote-header { text-align: center; margin-bottom: var(--gap-xl); }
.quote-header h1 { color: var(--white); font-size: clamp(36px, 5vw, 60px); margin-bottom: var(--gap-sm); }
.quote-header p  { color: rgba(255,255,255,0.4); font-size: 18px; }

/* Progress bar */
.quote-progress {
  max-width: 600px;
  margin: 0 auto var(--gap-xl);
}
.quote-progress-track {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  overflow: hidden;
}
.quote-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: var(--r-full);
  transition: width 0.5s var(--ease-out);
  width: 25%;
}
.quote-step-indicators {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.quote-step-dot {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  font-weight: 500;
  transition: color var(--t-base);
}
.quote-step-dot.is-active { color: var(--gold); }

/* Step panels */
.quote-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--dark-mid);
  border: 1px solid var(--border-d);
  border-radius: var(--r-xl);
  padding: 56px;
}
.quote-step-panel { display: none; }
.quote-step-panel.is-active { display: block; }
.quote-step-title {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--white);
  margin-bottom: 8px;
}
.quote-step-sub { font-size: 14px; color: rgba(255,255,255,0.35); margin-bottom: var(--gap-lg); }

/* Service selection chips */
.service-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.service-chip {
  padding: 10px 18px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-fast);
}
.service-chip:hover { border-color: rgba(200,169,110,0.4); color: var(--white); }
.service-chip.is-selected { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* Step nav buttons */
.quote-nav {
  display: flex;
  gap: var(--gap-sm);
  justify-content: space-between;
  margin-top: var(--gap-lg);
  padding-top: var(--gap-md);
  border-top: 1px solid var(--border-d);
}


/* ============================================================
   28. INNER PAGE: BOOK CONSULTATION
   ============================================================ */
.booking-page {
  padding: calc(var(--nav-h) + 60px) 0 var(--gap-2xl);
  background: var(--dark);
  min-height: 100vh;
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking-info h1 { color: var(--white); margin-bottom: var(--gap-md); }
.booking-info p  { color: rgba(255,255,255,0.45); font-size: 16px; line-height: 1.7; margin-bottom: var(--gap-md); }
.booking-points  { display: flex; flex-direction: column; gap: var(--gap-sm); }
.booking-point   { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.55); }
.booking-point-icon { font-size: 16px; flex-shrink: 0; color: var(--gold); }
.booking-embed-box {
  background: var(--dark-mid);
  border: 1px solid var(--border-d);
  border-radius: var(--r-xl);
  padding: 48px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.2);
}
.booking-placeholder p { margin-top: 12px; font-size: 13px; line-height: 1.7; }


/* ============================================================
   29. INNER PAGE: SINGLE BLOG POST
   ============================================================ */
.single-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--black);
}
.single-hero-cat  { color: var(--gold); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--gap-sm); display: block; }
.single-hero h1   { color: var(--white); max-width: 800px; margin-bottom: var(--gap-md); }
.single-hero-meta { font-size: 13px; color: rgba(255,255,255,0.35); }

.single-thumb {
  aspect-ratio: 16/6;
  overflow: hidden;
  background: var(--warm);
}
.single-thumb img { width: 100%; height: 100%; object-fit: cover; }

.single-body {
  max-width: 720px;
  margin: var(--gap-xl) auto;
  padding: 0 40px;
}
.single-body h2,
.single-body h3 { margin: var(--gap-lg) 0 var(--gap-sm); }
.single-body p   { margin-bottom: var(--gap-sm); color: var(--muted-dark); font-size: 16px; line-height: 1.85; }
.single-body ul,
.single-body ol  { padding-left: var(--gap-md); margin-bottom: var(--gap-sm); }
.single-body li  { color: var(--muted-dark); font-size: 16px; line-height: 1.8; margin-bottom: 6px; }
.single-body a   { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.single-body blockquote {
  border-left: 3px solid var(--gold);
  padding: var(--gap-sm) var(--gap-md);
  margin: var(--gap-md) 0;
  background: var(--warm);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.single-body blockquote p { color: var(--black); font-style: italic; }


/* ============================================================
   30. REUSABLE: PAGE HERO COMPONENT
   ============================================================ */
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.page-hero-eyebrow { margin-bottom: var(--gap-sm); }


/* ============================================================
   31. 404 PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  text-align: center;
  padding: var(--gap-xl) var(--gap-md);
}
.error-page-num  { font-family: var(--font-serif); font-size: clamp(120px, 20vw, 220px); font-weight: 600; color: rgba(255,255,255,0.05); line-height: 1; display: block; }
.error-page h2   { font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: var(--gap-sm); }
.error-page p    { color: rgba(255,255,255,0.4); margin-bottom: var(--gap-lg); font-size: 18px; }


/* ============================================================
   32. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  :root { --container: 100%; }
  .container, .container-m, .container-s { padding: 0 var(--gap-lg); }
  .nav-links { gap: 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .services-secondary { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 40px; }
  .portfolio-grid, .portfolio-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid  { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step-desc { max-width: 140px; }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root {
    --gap-xl:  60px;
    --gap-2xl: 80px;
    --nav-h:   64px;
  }
  .container, .container-m, .container-s { padding: 0 var(--gap-md); }

  /* Nav */
  .nav-links, .nav-cta-btn { display: none !important; }
  .nav-burger { display: flex; }
  body { cursor: auto; }
  .kd-cursor-dot, .kd-cursor-ring { display: none; }

  /* Grid collapses */
  .grid-2, .grid-3, .grid-4,
  .services-primary, .services-secondary,
  .contact-cols, .why-us-grid, .about-intro-grid,
  .contact-page-grid, .booking-inner,
  .footer-cols, .testi-grid,
  .services-full-grid, .portfolio-archive-grid,
  .portfolio-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }

  /* Process becomes vertical */
  .process-row { flex-direction: column; gap: var(--gap-md); }
  .process-row::before { display: none; }
  .process-step { flex-direction: row; text-align: left; gap: var(--gap-md); align-items: flex-start; padding: 0; }
  .process-step-num { margin-bottom: 0; flex-shrink: 0; }
  .process-step-desc { max-width: 100%; }

  /* Services header */
  .services-top { flex-direction: column; align-items: flex-start; }
  .services-top-right { text-align: left; max-width: 100%; }

  /* Portfolio header */
  .portfolio-top { flex-direction: column; align-items: flex-start; }

  /* Testimonial featured */
  .testi-featured { padding: var(--gap-md) var(--gap-md); }
  .testi-featured-quote { font-size: 20px; }

  /* Contact */
  .contact-booking-col, .contact-form-col { padding: var(--gap-md); }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-row { grid-template-columns: 1fr 1fr; border-radius: var(--r-lg); }

  /* Quote form */
  .quote-form-wrap { padding: var(--gap-md); }
  .quote-nav { flex-wrap: wrap; }

  /* About */
  .about-visual { aspect-ratio: 4/3; }

  /* Final CTA */
  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: var(--gap-sm); text-align: center; }

  /* Single post */
  .single-body { padding: 0 var(--gap-md); }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(40px, 10vw, 60px); }
  .testi-featured { padding: var(--gap-md); }
  .service-chips { gap: 8px; }
  .service-chip { font-size: 12px; padding: 8px 14px; }
  .hero-badge { font-size: 11px; }
}


/* ============================================================
   33. ACCESSIBILITY & REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee-track { animation: none; }
  .hero-scroll-line { animation: none; }
}

/* Skip link for screen readers */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gap-sm);
  background: var(--gold);
  color: var(--black);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transition: top var(--t-fast);
}
.skip-link:focus { top: var(--gap-sm); }
