@import url("https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,700;9..40,800&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap");

/* ============================================================
   SIMPLY SOUTHERN — THIRD CHOICE DESIGN SYSTEM
   Bold dark-luxury / industrial tone · Multi-page
   ============================================================ */
:root {
  --ink:        #0c0a09;
  --ink-light:  #1c1816;
  --wood:       #7a3d1c;
  --wood-rich:  #5a2c12;
  --amber:      #d4873a;
  --amber-glow: #e8a450;
  --cream:      #faf3ea;
  --smoke:      #f5efe8;
  --taupe:      #8a7a6e;
  --white:      #ffffff;
  --glass:      rgba(255, 250, 242, 0.18);
  --glass-border: rgba(255, 255, 255, 0.15);

  --shadow-soft: 0 20px 60px rgba(12, 10, 9, 0.10);
  --shadow-3d:   0 30px 80px rgba(12, 10, 9, 0.18), 0 10px 30px rgba(12, 10, 9, 0.08);
  --shadow-deep: 0 50px 120px rgba(12, 10, 9, 0.25);
  --shadow-glow: 0 0 60px rgba(212, 135, 58, 0.15);

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-display: "Anton", "Archivo Black", Impact, sans-serif;
  --font-serif:  "Playfair Display", Georgia, serif;
  --font-body:   "DM Sans", system-ui, -apple-system, sans-serif;
  --font-accent: "Bebas Neue", Impact, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(212, 135, 58, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(122, 61, 28, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(250, 243, 234, 0.6) 0%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(122, 61, 28, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(122, 61, 28, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--amber); color: #fff; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 99px; }

.site-shell { min-height: 100vh; }

.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

.section-pad { padding: clamp(80px, 10vw, 140px) 0; }
.section-tint { background: linear-gradient(180deg, transparent, var(--smoke), transparent); }

/* Scroll progress bar */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 1200;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--amber), var(--amber-glow));
  transition: width 0.1s linear;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1200px, calc(100% - 40px));
  padding: 10px 12px 10px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(250, 243, 234, 0.75);
  box-shadow: 0 15px 45px rgba(12, 10, 9, 0.10);
  backdrop-filter: blur(24px) saturate(1.2);
  transform: translateX(-50%) translateZ(0);
  transition: padding 0.4s var(--ease-out), box-shadow 0.4s ease, background 0.4s ease;
}

.site-header.is-scrolled {
  padding-block: 6px;
  background: rgba(250, 243, 234, 0.88);
  box-shadow: 0 20px 55px rgba(12, 10, 9, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s var(--ease-out);
}
.brand:hover { transform: scale(1.03); }

.brand img {
  width: auto;
  height: 44px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
  transition: transform 0.4s var(--ease-out), height 0.4s var(--ease-out);
}
.site-header.is-scrolled .brand img { height: 38px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-text span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
}

.main-nav a {
  position: relative;
  padding: 8px 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}

.main-nav a::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.main-nav a:hover, .main-nav a.active { color: var(--wood); transform: translateY(-2px); }
.main-nav a:hover::before, .main-nav a.active::before { transform: scaleX(1); transform-origin: left; }

.main-nav .nav-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, var(--amber), #c1782a, var(--wood-rich));
  background-size: 200% 200%;
  font-family: var(--font-accent);
  font-size: 17px;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 26px rgba(193, 120, 42, 0.30);
  animation: gradient-shift 5s ease-in-out infinite;
}
.main-nav .nav-cta-link::before { display: none; }
.main-nav .nav-cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(193, 120, 42, 0.4);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, var(--wood), var(--wood-rich));
  font-family: var(--font-accent);
  font-size: 18px;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(90, 44, 18, 0.28);
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s ease;
}
.header-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 40px rgba(90, 44, 18, 0.35); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wood-rich);
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
  perspective: 1200px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(12, 10, 9, 0.92) 0%, rgba(28, 24, 22, 0.72) 38%, rgba(250, 243, 234, 0.55) 100%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80&auto=format&fit=crop") center/cover fixed;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -30% -15%;
  height: 45%;
  z-index: -1;
  background: linear-gradient(0deg, var(--cream) 20%, transparent 100%);
}

.hero-bg-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.15;
  animation: particle-drift 12s infinite linear;
}
.hero-bg-particles span:nth-child(1) { top: 15%; left: 10%; animation-duration: 14s; animation-delay: -2s; }
.hero-bg-particles span:nth-child(2) { top: 60%; left: 80%; animation-duration: 18s; animation-delay: -5s; width: 6px; height: 6px; }
.hero-bg-particles span:nth-child(3) { top: 30%; left: 50%; animation-duration: 10s; animation-delay: -1s; }
.hero-bg-particles span:nth-child(4) { top: 75%; left: 20%; animation-duration: 16s; animation-delay: -8s; width: 3px; height: 3px; }
.hero-bg-particles span:nth-child(5) { top: 10%; left: 70%; animation-duration: 20s; animation-delay: -3s; }
.hero-bg-particles span:nth-child(6) { top: 50%; left: 40%; animation-duration: 12s; animation-delay: -6s; width: 5px; height: 5px; }

@keyframes particle-drift {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.15; }
  25%  { transform: translateY(-40px) translateX(20px) scale(1.3); opacity: 0.25; }
  50%  { transform: translateY(-80px) translateX(-10px) scale(0.8); opacity: 0.1; }
  75%  { transform: translateY(-40px) translateX(30px) scale(1.2); opacity: 0.2; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.15; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 540px);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.hero-copy { color: #fff; transform-style: preserve-3d; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  transform: translateZ(20px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 90px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  transform: translateZ(40px);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 .word-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--amber-glow), var(--amber), var(--wood));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 20px rgba(212, 135, 58, 0.3));
}

.hero-desc {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  transform: translateZ(20px);
  font-family: var(--font-serif);
  font-style: italic;
}
.hero-em {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transform: translateZ(20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  transform: translateZ(30px);
}

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border: none;
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-accent);
  font-size: 20px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s ease;
  transform: translateZ(0);
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 42%, transparent 68%);
  transform: translateX(-120%) skewX(-16deg);
  transition: transform 0.7s var(--ease-out);
}
.btn:hover::before { transform: translateX(130%) skewX(-16deg); }

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--amber), #c1782a, var(--wood-rich));
  background-size: 200% 200%;
  animation: gradient-shift 4s ease-in-out infinite;
  box-shadow: 0 18px 50px rgba(193, 120, 42, 0.35);
}
.btn-primary:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 24px 60px rgba(193, 120, 42, 0.45); }

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.55); }

.btn-ghost.light { border-color: rgba(255, 255, 255, 0.45); }

/* Dark-surface buttons */
.btn-dark {
  color: #fff;
  background: linear-gradient(145deg, var(--ink-light), var(--wood-rich));
  box-shadow: 0 14px 40px rgba(12, 10, 9, 0.28);
}
.btn-dark:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(12, 10, 9, 0.36); }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 44px;
  transform: translateZ(15px);
}

.hero-proof > div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease-out), background 0.3s ease;
  transform-style: preserve-3d;
}
.hero-proof > div:hover { transform: translateY(-6px) rotateX(4deg); background: rgba(255, 255, 255, 0.12); }

.hero-proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-proof span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  border: 12px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  box-shadow: var(--shadow-deep);
  transform: rotate(2.5deg) translateZ(0);
  transition: transform 0.6s var(--ease-out);
}
.hero-visual:hover { transform: rotate(0deg) scale(1.01); }
.hero-visual img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.floating-card {
  position: absolute;
  max-width: 220px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  color: #fff;
  background: rgba(12, 10, 9, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(20px);
  animation: float-3d 5s ease-in-out infinite;
  transform-style: preserve-3d;
}
.floating-card span {
  display: block;
  color: var(--amber);
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.floating-card strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}
.card-top { top: 10%; left: -14%; }
.card-bottom { right: -12%; bottom: 12%; animation-delay: -2.5s; }

@keyframes float-3d {
  0%, 100% { transform: translateY(0) rotate(-1deg) translateZ(10px); }
  50% { transform: translateY(-16px) rotate(1deg) translateZ(20px); }
}

/* ===== SECTION HEADINGS ===== */
.section-heading { max-width: 680px; }
.section-heading.center { text-align: center; margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-accent);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--amber);
}
.eyebrow::before {
  content: "";
  width: 36px; height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center .eyebrow::after {
  content: "";
  width: 36px; height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1, h2, h3, h4 { margin-top: 0; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

h1 { font-size: clamp(56px, 8vw, 112px); }
h2 { font-size: clamp(40px, 5.5vw, 84px); color: var(--ink); }

h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

p { margin-top: 0; color: var(--taupe); line-height: 1.7; }

.section-desc { color: var(--taupe); font-size: 16px; line-height: 1.75; max-width: 620px; margin-top: 14px; }
.section-heading.center .section-desc { margin-inline: auto; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; perspective: 1200px; }

.stat {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(122, 61, 28, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(12, 10, 9, 0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease, border-color 0.3s ease;
}
.stat:hover { transform: translateY(-8px) rotateX(3deg); box-shadow: var(--shadow-soft); border-color: rgba(212, 135, 58, 0.3); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--amber-glow), var(--amber), var(--wood));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 80px); align-items: center; }

.about-media { position: relative; padding: 18px; }
.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 135, 58, 0.4);
  border-radius: 42px;
  transform: translate(1.3rem, 1.3rem);
}
.about-img {
  position: relative;
  z-index: 1;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow-3d);
}
.about-img img { width: 100%; height: 540px; object-fit: cover; }

.about-content p { color: var(--taupe); font-size: 16px; line-height: 1.8; margin-bottom: 1.1rem; }

.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--amber);
  padding-left: 1.5rem;
  margin: 2.2rem 0;
}

.about-sign { margin-top: 2.2rem; padding-top: 1.5rem; border-top: 1px solid rgba(122, 61, 28, 0.15); }
.about-sign strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 22px; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); }
.about-sign span { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wood); margin-top: 4px; }

/* ===== SERVICES HOME CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; perspective: 1200px; }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 32px 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(122, 61, 28, 0.10);
  box-shadow: 0 14px 40px rgba(12, 10, 9, 0.06);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-12px) rotateX(4deg) translateZ(20px); box-shadow: var(--shadow-3d); border-color: rgba(212, 135, 58, 0.35); }

.service-num {
  display: inline-flex;
  margin-bottom: 20px;
  font-family: var(--font-accent);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--amber);
}

.service-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--wood);
  background: linear-gradient(145deg, rgba(212, 135, 58, 0.14), rgba(122, 61, 28, 0.08));
  border: 1px solid rgba(212, 135, 58, 0.22);
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease-out), background 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); background: linear-gradient(145deg, var(--amber), var(--wood)); color: #fff; }

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card p { font-size: 15px; color: var(--taupe); line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--wood);
  transition: gap 0.3s ease, color 0.3s ease;
}
.service-link:hover { gap: 14px; color: var(--amber); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; perspective: 1200px; }

.gallery-item {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
  background: var(--smoke);
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}
.gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.gallery-item:nth-child(1) img, .gallery-item:nth-child(4) img { min-height: 420px; }

.gallery-item:hover { transform: scale(1.02) translateZ(20px); box-shadow: var(--shadow-3d); }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  gap: 4px;
  padding: 24px;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 10, 9, 0.82) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
}
.gallery-overlay p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-glow);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; perspective: 1200px; }

.testimonial-card {
  position: relative;
  padding: 38px 32px;
  border: 1px solid rgba(122, 61, 28, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(12, 10, 9, 0.06);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}
.testimonial-card:hover { transform: translateY(-10px) rotateX(3deg) translateZ(15px); box-shadow: var(--shadow-soft); }
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-serif);
  font-size: 90px;
  line-height: 1;
  color: rgba(212, 135, 58, 0.18);
  pointer-events: none;
}

.testimonial-stars { color: var(--amber); font-size: 20px; letter-spacing: 0.12em; margin-bottom: 18px; text-shadow: 0 2px 12px rgba(212, 135, 58, 0.15); }

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
}
.testimonial-author {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--wood);
}

/* ===== CTA ===== */
.cta-band { padding-top: 40px; }

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: clamp(40px, 6vw, 72px);
  border-radius: 44px;
  color: #fff;
  overflow: hidden;
  transform-style: preserve-3d;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(145deg, rgba(12, 10, 9, 0.95), rgba(90, 44, 18, 0.88)),
    url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?w=1600&q=80&auto=format&fit=crop") center/cover;
  transition: transform 0.8s var(--ease-out);
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(212, 135, 58, 0.3), transparent 40%, rgba(212, 135, 58, 0.15));
  padding: 2px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.cta-card:hover::before { transform: scale(1.04); }

.cta-card .eyebrow { color: var(--amber-glow); }
.cta-card h2 { color: #fff; margin-bottom: 16px; }
.cta-card > div > p { max-width: 600px; margin-bottom: 0; color: rgba(255, 255, 255, 0.7); font-size: 17px; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer { padding: 70px 0 40px; color: rgba(255, 255, 255, 0.7); background: #0c0a09; position: relative; }
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 135, 58, 0.3), transparent);
}

.footer-grid { display: grid; grid-template-columns: 1.6fr 0.9fr 0.9fr 1.1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); margin-bottom: 30px; }

.footer-brand img { width: 120px; margin-bottom: 16px; filter: brightness(1.3); opacity: 0.92; }
.footer-brand h3 { color: #fff; font-family: var(--font-display); font-weight: 400; font-size: 22px; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 12px; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 15px; max-width: 280px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s var(--ease-out), background 0.3s ease, color 0.3s ease;
}
.footer-social a:hover { background: var(--amber); border-color: var(--amber); color: #fff; transform: translateY(-3px); }

.footer-col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span {
  display: inline-block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--amber-glow); transform: translateX(6px); }

.footer-bottom { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; color: rgba(255, 255, 255, 0.4); }

/* ===== TO TOP ===== */
.to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--amber), var(--wood));
  color: #fff;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px rgba(193, 120, 42, 0.4);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: 0.35s ease;
}
.to-top.show,
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: clamp(160px, 22vw, 220px) 0 clamp(60px, 8vw, 90px);
  text-align: center;
  overflow: hidden;
  color: #fff;
  perspective: 1000px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(12, 10, 9, 0.92) 0%, rgba(28, 24, 22, 0.75) 55%, rgba(90, 44, 18, 0.7) 100%),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600&q=80&auto=format&fit=crop") center/cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 35%;
  z-index: -1;
  background: linear-gradient(0deg, var(--cream) 20%, transparent 100%);
}

.page-hero .eyebrow { color: var(--amber-glow); justify-content: center; }
.page-hero .eyebrow::after {
  content: "";
  width: 36px; height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.page-hero h1 {
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}
.page-hero h1 span {
  display: block;
  margin-top: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 22px);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== SERVICE HERO (dedicated pages) ===== */
.service-hero {
  position: relative;
  padding: clamp(160px, 22vw, 220px) 0 clamp(60px, 8vw, 90px);
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(12, 10, 9, 0.92) 0%, rgba(28, 24, 22, 0.75) 55%, rgba(90, 44, 18, 0.7) 100%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80&auto=format&fit=crop") center/cover;
}
.service-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 35%;
  z-index: -1;
  background: linear-gradient(0deg, var(--cream) 20%, transparent 100%);
}

.service-hero-tag {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-glow);
}

.service-hero h1 { color: #fff; max-width: 900px; margin: 0 auto 20px; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25); }

.service-hero-sub {
  max-width: 680px;
  margin: 0 auto 36px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.service-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== SERVICE OVERVIEW SPLIT ===== */
.service-overview { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }

.service-overview-img { border-radius: 42px; overflow: hidden; box-shadow: var(--shadow-3d); }
.service-overview-img img { width: 100%; height: 520px; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.service-overview-img:hover img { transform: scale(1.06); }

.service-overview-content .eyebrow { margin-bottom: 14px; }
.service-overview-content h2 { margin-bottom: 20px; }
.service-overview-content p { color: var(--taupe); font-size: 16px; line-height: 1.8; margin-bottom: 14px; }

/* ===== SERVICE FEATURES ===== */
.service-features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; perspective: 1200px; }

.service-feature {
  padding: 32px 28px;
  border: 1px solid rgba(122, 61, 28, 0.10);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(12, 10, 9, 0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease, border-color 0.3s ease;
}
.service-feature:hover { transform: translateY(-8px) rotateX(3deg); box-shadow: var(--shadow-soft); border-color: rgba(212, 135, 58, 0.3); }

.service-feature-icon {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 34px;
  color: var(--amber);
}

.service-feature h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-feature p { font-size: 15px; color: var(--taupe); line-height: 1.7; }

/* ===== PROCESS STEPS ===== */
.process-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(122, 61, 28, 0.12);
}
.process-step:last-child { border-bottom: none; }

.process-step-num {
  display: grid;
  place-items: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--amber), var(--wood));
  font-family: var(--font-accent);
  font-size: 28px;
  box-shadow: 0 10px 26px rgba(212, 135, 58, 0.3);
  flex-shrink: 0;
}

.process-step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.process-step p { font-size: 15px; color: var(--taupe); line-height: 1.75; }

/* ===== MATERIAL OPTIONS ===== */
.material-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; perspective: 1200px; }

.material-option {
  text-align: center;
  padding: 36px 28px;
  border: 1px solid rgba(122, 61, 28, 0.10);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(12, 10, 9, 0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease, border-color 0.3s ease;
}
.material-option:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: rgba(212, 135, 58, 0.3); }

.material-option h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.material-option p { font-size: 15px; color: var(--taupe); line-height: 1.65; }

/* ===== INFO LIST (care tips) ===== */
.info-list { list-style: none; max-width: 820px; margin: 0 auto; }

.info-list li {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(122, 61, 28, 0.12);
  align-items: flex-start;
}
.info-list li:last-child { border-bottom: none; }

.info-list-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  color: var(--wood);
  background: linear-gradient(145deg, rgba(212, 135, 58, 0.14), rgba(122, 61, 28, 0.08));
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
}

.info-list-content h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.info-list-content p { font-size: 15px; color: var(--taupe); line-height: 1.75; }

/* ===== SERVICE CTA BANNER ===== */
.service-cta {
  padding: clamp(70px, 9vw, 110px) 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, var(--smoke), transparent);
  border-top: 1px solid rgba(122, 61, 28, 0.08);
  border-bottom: 1px solid rgba(122, 61, 28, 0.08);
}
.service-cta h2 { color: var(--ink); margin-bottom: 14px; }
.service-cta p { color: var(--taupe); max-width: 520px; margin: 0 auto 32px; font-size: 16px; }
.service-cta .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== SERVICE BLOCKS (services page) ===== */
.service-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(122, 61, 28, 0.10);
  box-shadow: 0 14px 40px rgba(12, 10, 9, 0.07);
  margin-bottom: 36px;
  transition: box-shadow 0.5s ease, transform 0.5s var(--ease-out);
}
.service-block:hover { box-shadow: var(--shadow-3d); transform: translateY(-4px); }
.service-block:nth-child(even) .service-block-img { order: 2; }

.service-block-img { min-height: 360px; overflow: hidden; }
.service-block-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.service-block:hover .service-block-img img { transform: scale(1.07); }

.service-block-content { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.service-block-content .num { font-family: var(--font-accent); font-size: 20px; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 10px; }
.service-block-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 40px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.service-block-content p { font-size: 15px; color: var(--taupe); line-height: 1.75; margin-bottom: 10px; }
.service-block-content .btn { margin-top: 22px; align-self: flex-start; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px, 5vw, 72px); align-items: start; }

.contact-info > p { color: var(--taupe); font-size: 16px; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 14px; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(122, 61, 28, 0.10);
  border-radius: 22px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.contact-row:hover { transform: translateX(8px); box-shadow: var(--shadow-soft); }

.contact-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--wood);
  background: linear-gradient(145deg, rgba(212, 135, 58, 0.14), rgba(122, 61, 28, 0.08));
}

.contact-row h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.contact-row p, .contact-row a { font-size: 16px; font-weight: 500; color: var(--ink); }
.contact-row a:hover { color: var(--wood); }

.contact-form-card {
  padding: clamp(32px, 4vw, 52px);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(122, 61, 28, 0.10);
  box-shadow: var(--shadow-soft);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 40px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-form-card > p { font-size: 15px; color: var(--taupe); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wood); margin-bottom: 8px; }

.form-control {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(122, 61, 28, 0.16);
  border-radius: 16px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: 0.3s ease;
}
.form-control::placeholder { color: var(--taupe); opacity: 0.7; }
.form-control:focus { border-color: var(--amber); background: #fff; box-shadow: 0 0 0 4px rgba(212, 135, 58, 0.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='none' stroke='%237a3d1c' stroke-width='2' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-alert { padding: 14px 18px; margin-top: 18px; font-size: 14px; border-radius: 14px; display: none; font-weight: 500; }
.form-alert-success { background: #f2f6ee; color: #4e6b4e; border: 1px solid rgba(78, 107, 78, 0.25); }
.form-alert-error { background: #faf1f1; color: #9a5b5b; border: 1px solid rgba(154, 91, 91, 0.25); }

/* ===== FAQ ===== */
.faq-list { max-width: 860px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(122, 61, 28, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  margin-bottom: 14px;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item.active,
.faq-item.is-open { background: rgba(255, 255, 255, 0.95); box-shadow: var(--shadow-soft); border-color: rgba(212, 135, 58, 0.3); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  user-select: none;
}
.faq-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--wood);
  background: linear-gradient(145deg, rgba(212, 135, 58, 0.14), rgba(122, 61, 28, 0.08));
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.35s var(--ease-out), background 0.3s ease, color 0.3s ease;
}
.faq-item.active .faq-icon,
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: linear-gradient(145deg, var(--amber), var(--wood)); color: #fff; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-out); }
.faq-item.active .faq-answer,
.faq-item.is-open .faq-answer { max-height: 600px; }
.faq-answer p { padding: 0 26px 24px; font-size: 15px; color: var(--taupe); line-height: 1.75; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(12, 10, 9, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox-content { position: relative; max-width: 92%; max-height: 92%; text-align: center; }
.lightbox-img { max-width: 100%; max-height: 76vh; object-fit: contain; border-radius: 24px; box-shadow: var(--shadow-deep); background: #fff; }
.lightbox-caption {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 20px;
}
.lightbox-close {
  position: absolute; top: -3rem; right: 0;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
}
.lightbox-close:hover { color: var(--amber); transform: rotate(90deg); }
.lightbox-btn { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.6rem; color: rgba(255, 255, 255, 0.5); padding: 1rem; transition: color 0.3s ease; }
.lightbox-btn:hover { color: var(--amber); }
.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }

/* ===== THANK YOU PAGE ===== */
.thank-you-hero { min-height: 100dvh; display: grid; place-items: center; text-align: center; padding: 120px 20px 60px; position: relative; overflow: hidden; }
.thank-you-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(12, 10, 9, 0.94) 0%, rgba(90, 44, 18, 0.85) 100%),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600&q=80&auto=format&fit=crop") center/cover;
}
.thank-you-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 30%;
  z-index: -1;
  background: linear-gradient(0deg, var(--cream) 20%, transparent 100%);
}
.thank-you-card { max-width: 640px; color: #fff; }
.thank-you-card .eyebrow { color: var(--amber-glow); justify-content: center; }
.thank-you-card .eyebrow::after {
  content: "";
  width: 36px; height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.thank-you-card h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25); }
.thank-you-card p { color: rgba(255, 255, 255, 0.8); font-size: 17px; margin-bottom: 36px; }
.thank-you-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px) scale(0.97); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

.reveal-left { opacity: 0; transform: translateX(-50px) rotateY(4deg); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); transform-style: preserve-3d; }
.reveal-left.is-visible { opacity: 1; transform: translateX(0) rotateY(0); }

.reveal-right { opacity: 0; transform: translateX(50px) rotateY(-4deg); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); transform-style: preserve-3d; }
.reveal-right.is-visible { opacity: 1; transform: translateX(0) rotateY(0); }

.reveal-scale { opacity: 0; transform: scale(0.85) translateZ(-50px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-scale.is-visible { opacity: 1; transform: scale(1) translateZ(0); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ===== RESPONSIVE: 1024px ===== */
@media (max-width: 1024px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }

  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: calc(100% + 14px);
    left: 0; right: 0;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    background: rgba(250, 243, 234, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a { padding: 14px 12px; }
  .main-nav a::before { display: none; }
  .main-nav .nav-cta-link { min-height: 46px; margin-top: 6px; }

  .header-cta { display: none; }

  .hero-grid,
  .split,
  .process-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-visual { max-width: 600px; margin-inline: auto; }
  .service-grid,
  .review-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .contact-actions { justify-content: flex-start; }

  .about-grid, .service-overview { grid-template-columns: 1fr; gap: 40px; }
  .service-features, .material-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block-img { order: 0; }
  .service-block-img { min-height: 300px; }
}

/* ===== RESPONSIVE: 720px ===== */
@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1200px); }

  .site-header { top: 12px; width: calc(100% - 24px); border-radius: 24px; padding: 8px 10px 8px 16px; }
  .brand img { height: 36px; }
  .site-header.is-scrolled .brand img { height: 32px; }
  .brand-text strong { font-size: 14px; }
  .brand-text span { font-size: 8px; }

  .hero { padding-top: 120px; }

  h1 { font-size: clamp(42px, 14vw, 64px); }
  h2 { font-size: clamp(34px, 10vw, 52px); }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof > div { text-align: center; }
  .hero-visual { transform: none; border-width: 6px; }

  .floating-card { position: static; max-width: none; margin-top: 12px; animation: none; }

  .services-grid,
  .testimonials-grid,
  .review-grid,
  .stats-grid,
  .service-features,
  .material-options,
  .footer-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(1) img, .gallery-item:nth-child(4) img { min-height: 320px; }

  .about-img img { height: 360px; }
  .about-media { padding: 12px; }
  .about-media::before { transform: translate(0.8rem, 0.8rem); }
  .service-overview-img img { height: 300px; }

  .process-step { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .process-step-num { margin-inline: auto; }

  .info-list li { flex-direction: column; text-align: center; align-items: center; gap: 14px; }

  .cta-card { text-align: center; }
  .contact-actions { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .to-top { bottom: 1.25rem; right: 1.25rem; }
  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
  .page-hero h1 span { font-size: 16px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .service-card:hover,
  .step:hover,
  .testimonial-card:hover,
  .gallery-item:hover,
  .stat:hover,
  .hero-visual:hover,
  .service-feature:hover,
  .material-option:hover,
  .contact-row:hover,
  .service-block:hover {
    transform: none !important;
  }

  .hero-bg-particles { display: none; }
}