/* ====================================================
   BAGS N BOXES — Redesigned Stylesheet
   Design: White Editorial + Black + Gold Accent Only
   ==================================================== */

/* === DESIGN TOKENS === */
:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --black-soft: #111111;

  --surface: #ffffff;
  --surface-alt: #f6f6f6;

  --text-primary: #0a0a0a;
  --text-secondary: #4a4a4a;
  --text-muted: #888888;

  /* Gold — used sparingly as accent only */
  --gold: #a07c10;
  --gold-rich: #b8960c;
  --gold-light: #c9a830;
  --gold-pale: rgba(176, 140, 20, 0.09);
  --gold-border: rgba(176, 140, 20, 0.28);

  --border: #e4e4e4;
  --border-dark: #cccccc;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 28px rgba(176, 140, 20, 0.18);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'Outfit', system-ui, sans-serif;

  --container: 1200px;
  --nav-h: 76px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--ff-sans);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (pointer: fine) {
  body { cursor: auto; } /* Keep default cursor, glow is decorative only */
}

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

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

ul { list-style: none; }

em {
  font-style: italic;
  color: var(--gold-rich);
}

/* === CURSOR GLOW === */
#cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 140, 20, 0.065) 0%, transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9997;
  transition: left 0.1s linear, top 0.1s linear;
  will-change: left, top;
}

/* === UTILITIES === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold-border);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* === SCROLL ANIMATIONS === */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 15px 34px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

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

.btn-primary:hover {
  background: var(--black-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: rgba(10,10,10,0.3);
}

.btn-outline:hover {
  border-color: var(--black);
  background: rgba(10,10,10,0.04);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
}

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-rich);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.4s ease;
}

#navbar.scrolled .logo-icon {
  color: var(--gold);
}

.logo-text {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.03em;
  transition: color 0.4s ease;
}

#navbar.scrolled .logo-text { color: var(--black); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
}

#navbar.scrolled .nav-link { color: var(--text-secondary); }

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

.nav-link:hover { color: var(--black); }
#navbar.scrolled .nav-link:hover { color: var(--black); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
#navbar.scrolled .nav-link.active { color: var(--black); }

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--black-soft);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

#navbar.scrolled .nav-cta {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

#navbar.scrolled .nav-cta:hover {
  background: var(--black-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all var(--transition);
}

#navbar.scrolled .hamburger span { background: var(--black); }

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

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

/* Subtle dot-grid background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

/* === HERO TEXT COLUMN === */
.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.eyebrow-bar {
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background: var(--gold-rich);
  flex-shrink: 0;
}

/* === HERO TITLE — POP REVEAL ANIMATION === */
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

/* Each line is clipped so text can slide in from below */
.reveal-wrap {
  display: block;
  overflow: hidden;
  line-height: 1.1;
  padding-bottom: 4px;
}

.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(110%) skewY(3deg);
  animation: revealPop 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered reveal — each line after previous */
.reveal-wrap:nth-child(1) .reveal-line { animation-delay: 0.25s; }
.reveal-wrap:nth-child(2) .reveal-line { animation-delay: 0.45s; font-weight: 500; }
.reveal-wrap:nth-child(3) .reveal-line { animation-delay: 0.65s; }

/* Gold italic line — slightly larger, makes it pop */
.reveal-wrap--gold .reveal-line em {
  font-size: 1.08em;
  letter-spacing: -0.02em;
}

@keyframes revealPop {
  0%   { opacity: 0; transform: translateY(110%) skewY(3deg); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) skewY(0deg); }
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 440px;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.0s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.15s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.7s ease 1.3s forwards;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === HERO IMAGE COLUMN === */
.hero-image-col {
  position: relative;
  opacity: 0;
  animation: imageReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes imageReveal {
  from { opacity: 0; transform: translateY(50px) rotate(2deg); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); filter: blur(0); }
}

@keyframes floatSmooth {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Gold accent rectangle — sits behind and offset from the image */
.hero-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 75%;
  height: 75%;
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-xl);
  z-index: 0;
  pointer-events: none;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-alt);
  z-index: 1;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.4s ease;
  animation: floatSmooth 7s ease-in-out infinite;
}

.hero-img-frame:hover {
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

.hero-img-frame:hover .hero-img {
  transform: scale(1.04);
}

/* Floating badge inside the image frame */
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 8px 16px;
  z-index: 2;
}

.hero-img-badge .badge-num {
  font-size: 12px;
  color: var(--gold-rich);
}

.hero-img-badge .badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}

/* === SCROLL INDICATOR (white hero) === */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.6s forwards;
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold-rich), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.35; transform: scaleY(0.6); }
}

/* Hero [data-animate] override — handled by CSS animations */
.hero [data-animate] {
  opacity: 1 !important;
  transform: none !important;
}

/* === ABOUT === */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-eyebrow {
  justify-content: flex-start;
}

.about-text .section-eyebrow::after {
  display: none;
}

.about-text .section-title {
  text-align: left;
}

.about-desc {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.about-features li:last-child { border-bottom: none; }
.about-features li:hover { color: var(--text-primary); }

.feature-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: box-shadow var(--transition-slow), border-color var(--transition);
}

.about-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.about-card-inner {
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}

.about-card-accent {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(176,140,20,0.07), transparent 70%);
  border-radius: 50%;
}

.about-quote {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 24px;
}

.about-quote-author {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

.about-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: border-color var(--transition);
}

.about-badge:hover { border-color: var(--gold-border); }

.badge-text {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.badge-icon {
  color: var(--gold);
  font-size: 12px;
}

/* === SERVICES === */
.services {
  background: var(--surface-alt);
}

.services-bg-img { display: none; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition-slow);
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

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

.service-card--featured {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.service-card--featured::after {
  transform: scaleX(1);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 4px 12px;
  border-radius: 50px;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold-pale);
  border-color: var(--gold-border);
  color: var(--gold);
}

.service-icon {
  width: 26px;
  height: 26px;
}

.service-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.service-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* === WHY US === */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  background: var(--white);
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-pale);
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card:hover { background: var(--surface-alt); }
.why-card:hover::before { opacity: 1; }

/* border cleanup */
.why-card:nth-child(3n)   { border-right: none; }
.why-card:nth-child(4),
.why-card:nth-child(5),
.why-card:nth-child(6)    { border-bottom: none; }

.why-number {
  font-family: var(--ff-serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(176,140,20,0.12);
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.why-title {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.why-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* === GALLERY === */
.gallery {
  background: var(--surface-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.88) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(1.1);
}

.gallery-item--large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-item--wide {
  grid-column: 2 / 4;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay span {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.02em;
}

.gallery-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition-slow);
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: var(--ff-serif);
  font-size: 110px;
  color: var(--gold-pale);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.testimonial-card--featured {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  color: var(--gold-rich);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* === CONTACT === */
.contact {
  background: var(--surface-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type { border-bottom: none; }

.contact-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.contact-item:hover .contact-item-icon {
  background: var(--gold-pale);
  border-color: var(--gold-border);
  color: var(--gold);
}

.contact-item-icon svg { width: 18px; height: 18px; }

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-link { transition: color var(--transition); }
.contact-link:hover { color: var(--gold); }

.contact-value-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.contact-social {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.social-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.social-links { display: flex; gap: 12px; }

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-btn svg { width: 18px; height: 18px; }

.social-btn:hover {
  border-color: var(--gold-border);
  background: var(--gold-pale);
  color: var(--gold);
  transform: translateY(-2px);
}

/* === CONTACT FORM === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}

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

.btn-submit {
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
  border-radius: var(--radius-sm);
  padding: 16px 32px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.btn-submit:hover {
  background: var(--black-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(39, 174, 96, 0.06);
  border: 1px solid rgba(39, 174, 96, 0.25);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #27ae60;
  font-weight: 500;
}

.form-success.show { display: block; }

/* === FOOTER === */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}

.footer .logo-text { color: var(--white); }
.footer .logo-icon { color: var(--gold-rich); }

.footer-tagline {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 260px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-links li {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}

.footer-copy a {
  color: var(--gold-light);
  transition: color var(--transition);
}

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

.footer-credits {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -4px 0 32px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-link,
  #navbar.scrolled .nav-link { color: var(--text-secondary) !important; font-size: 14px; }
  .nav-link:hover,
  #navbar.scrolled .nav-link:hover { color: var(--text-primary) !important; }

  .nav-cta,
  #navbar.scrolled .nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    border-color: var(--black) !important;
    padding: 12px 28px;
  }

  .hero-title { font-size: clamp(38px, 10vw, 62px); min-height: auto; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }

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

  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .why-card:nth-child(2n) { border-right: none !important; }
  .why-card:nth-child(4)  { border-bottom: 1px solid var(--border) !important; }
  .why-card:nth-child(5),
  .why-card:nth-child(6)  { border-bottom: none; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--large { grid-row: span 1; }
  .gallery-item--wide  { grid-column: span 2; }

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

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

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

  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .why-card:last-child { border-bottom: none !important; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item--large,
  .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
  .gallery-item { height: 220px; }
}
