/* ============================================
   BREANNA MALONE — Faux Painting & Textured Walls
   Single continuous plaster surface across entire page
   ============================================ */

:root {
  --charcoal-dk:   #1A1410;
  --charcoal-lt:   #3A3028;
  --bronze:        #7A5C10;
  --bronze-lt:     #9A7218;
  --bronze-xlr:    #B8882A;
  --terra:         #B85C38;
  --terra-lt:      #D07050;
  --cream:         #FAF7F2;
  --body-text:     #2A2018;
  --mid-text:      #4A3A2C;
  --stone:         #D8CFC5;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  --max:    1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  /* Text-shadow helpers for elements on transparent plaster sections.
     --ts-lift: soft cream halo that separates dark letterforms from texture grain.
     --ts-gold: dark drop that gives gold/bronze text depth on the light surface. */
  --ts-lift: 0 0 6px rgba(255,252,248,1), 0 0 16px rgba(255,252,248,0.95), 0 0 36px rgba(255,252,248,0.65);
  --ts-gold: 0 1px 4px rgba(26,20,16,0.50), 0 0 12px rgba(26,20,16,0.30), 0 0 22px rgba(26,20,16,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* =====================================================
   THE WALL — fixed cover-scaled texture behind entire page
   One image, no tiling, no seams, never resets
   ===================================================== */

/* Single GPU-composited layer that never moves.
   Any sub-pixel gap between transparent sections reveals
   this same surface — making the gap imperceptible. */
.texture-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: -1;
  background-color: #F4F1EC;
  background-image: url('texture-services-plaster.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translateZ(0); /* promote to own GPU layer once at init */
  pointer-events: none;
  will-change: auto;
}

body {
  background: transparent;
  color: var(--body-text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 400; }
h1 { font-size: clamp(3.2rem, 8vw, 6rem); line-height: 1.04; letter-spacing: -0.01em; color: var(--cream); }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.18; color: var(--charcoal-dk); margin-bottom: 1.25rem; }
h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; color: var(--charcoal-dk); margin-bottom: 0.6rem; }
p { color: var(--body-text); font-size: 1rem; font-weight: 400; line-height: 1.78; }
em { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-lt);
  margin-bottom: 1rem;
  display: block;
  text-shadow: var(--ts-gold);
}
.center { text-align: center; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--terra);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--terra-lt); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(250,247,242,0.5);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--cream); background: rgba(250,247,242,0.1); transform: translateY(-1px); }

/* ---- NAV — opaque dark anchor ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--charcoal-dk);
  border-bottom: 1px solid rgba(184,140,48,0.18);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--cream); text-decoration: none; letter-spacing: 0.06em; }
.nav-links { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,247,242,0.52); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta { padding: 0.55rem 1.5rem; border: 1px solid rgba(250,247,242,0.3) !important; color: var(--cream) !important; transition: background 0.2s !important; }
.nav-cta:hover { background: rgba(250,247,242,0.08) !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--cream); }

/* ---- HERO — no background, fixed wall shows through seamlessly ---- */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(70px + 5rem) var(--gutter) 6rem;
  background: transparent;
  position: relative;
}
/* Directional gradient — darkens left for text legibility,
   mask-image fades the overlay out before the bottom edge
   so it dissolves into the texture with zero visible line */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 20, 16, 0.78) 0%,
    rgba(26, 20, 16, 0.52) 35%,
    rgba(26, 20, 16, 0.18) 62%,
    rgba(26, 20, 16, 0.00) 100%
  );
  /* Vertical mask: overlay is fully visible top 60%, then
     gradually disappears so the bottom edge has zero darkness */
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image:         linear-gradient(to bottom, black 55%, transparent 100%);
  pointer-events: none;
}
.hero-inner { max-width: 700px; position: relative; z-index: 2; }
.hero-rule { display: block; width: 52px; height: 1px; background: linear-gradient(90deg, var(--bronze-lt), var(--bronze-xlr)); margin-bottom: 1.5rem; }
.hero-inner h1 { margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.08rem; color: rgba(250,247,242,0.90); max-width: 520px; margin-bottom: 1.5rem; line-height: 1.85; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.hero-availability {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #E8C060;
  margin-bottom: 2.5rem;
  opacity: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 0 18px rgba(0,0,0,0.55), 0 0 36px rgba(0,0,0,0.35);
}
.hero-actions { display: flex; gap: 1.1rem; flex-wrap: wrap; }

/* ---- MARQUEE — frosted strip for legibility ---- */
.marquee-wrap {
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
  background: rgba(255, 252, 248, 0.40);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid rgba(184,140,48,0.06);
  border-bottom: 1px solid rgba(184,140,48,0.06);
  position: relative;
}
.marquee-track { display: inline-block; animation: marquee 42s linear infinite; }
.marquee-track span { font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--charcoal-dk); text-shadow: var(--ts-lift); }
.marquee-track .m-accent { color: #6A5010; text-shadow: var(--ts-gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- ALL CONTENT SECTIONS — fully transparent, zero breaks ----
   display:flow-root contains floats + prevents margin collapse
   WITHOUT creating a compositing boundary (unlike overflow:hidden) */
#about, #services, #portfolio, #original-art, #specialty,
#process, #quote, #contact {
  padding: 8rem var(--gutter);
  position: relative;
  display: flow-root;
  overflow: visible;
  background: transparent;
}

#quote { padding: 7rem var(--gutter); text-align: center; }

/* ---- ABOUT ---- */
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
  background: rgba(255, 252, 248, 0.45);
  border: 1px solid rgba(180,150,100,0.08);
  border-top: 2px solid rgba(184,140,48,0.20);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 3.5rem;
  transition: background 0.25s, border-top-color 0.25s;
}
.about-inner:hover { background: rgba(255,252,248,0.60); border-top-color: rgba(184,140,48,0.40); }
.about-photo-wrap {
  position: relative;
  /* Outer frame shadow — as if a real frame casts onto the wall */
  box-shadow:
    0 4px 16px rgba(26,20,16,0.25),
    0 8px 32px rgba(26,20,16,0.12);
  /* Visible "moulding" edge */
  border: 6px solid #8A6A1E;
  outline: 2px solid rgba(42,30,12,0.35);
  outline-offset: -1px;
  background: #6A500E;
}
/* Outer bevel — light catch on top/left, shadow on bottom/right */
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 2px solid transparent;
  border-top-color: rgba(212,168,74,0.38);
  border-left-color: rgba(212,168,74,0.28);
  border-bottom-color: rgba(26,20,16,0.30);
  border-right-color: rgba(26,20,16,0.22);
  pointer-events: none;
  z-index: 3;
}
.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%);
  /* Inset shadow — recessed "canvas" feel inside the frame */
  box-shadow:
    inset 0 2px 8px rgba(26,20,16,0.35),
    inset 0 -1px 4px rgba(26,20,16,0.18),
    inset 2px 0 6px rgba(26,20,16,0.15),
    inset -2px 0 6px rgba(26,20,16,0.15);
}
/* Inner mat/liner — thin gold accent border inset from the frame */
.about-photo-frame {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184,140,48,0.40);
  box-shadow:
    inset 0 0 0 1px rgba(212,168,74,0.15),
    0 0 0 1px rgba(26,20,16,0.18);
  pointer-events: none;
  z-index: 2;
}
/* Secondary inner highlight for depth */
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(184,140,48,0.12);
  pointer-events: none;
}
.about-text h2 { color: #1A1410; font-weight: 500; margin-bottom: 1.5rem; }
.about-text p { color: #2A1E16; font-weight: 400; margin-bottom: 1.25rem; }
#about .eyebrow { color: var(--bronze); }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.about-tags span {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(122,92,16,0.28);
  background: rgba(255,252,248,0.55);
}

/* ---- SERVICES ---- */
.services-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.services-header {
  max-width: 600px;
  margin-bottom: 4rem;
}
.services-header h2 { color: #1A1410; font-weight: 500; text-shadow: var(--ts-lift); }
.services-header p { color: #2A1E16; font-weight: 400; text-shadow: var(--ts-lift); }
#services .eyebrow { color: var(--bronze); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  padding: 2.5rem 2rem;
  background: rgba(255, 252, 248, 0.45);
  border: 1px solid rgba(180,150,100,0.08);
  border-top: 2px solid rgba(184,140,48,0.20);
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-top-color 0.25s;
}
.service-card:hover { background: rgba(255,252,248,0.60); border-top-color: rgba(184,140,48,0.40); }
.service-num { display: block; font-family: var(--sans); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.22em; color: var(--bronze-lt); margin-bottom: 1rem; }
.service-card h3 { color: #1A1410; font-size: 1.4rem; font-weight: 400; margin-bottom: 0.75rem; }
.service-card p { color: #3A2A1C; font-size: 0.95rem; line-height: 1.72; }

/* ---- PORTFOLIO ---- */
.portfolio-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.portfolio-header {
  max-width: 560px;
  margin-bottom: 3.5rem;
}
.portfolio-header h2 { color: #1A1410; font-weight: 500; text-shadow: var(--ts-lift); }
.portfolio-header p { color: #2A1E16; font-weight: 400; text-shadow: var(--ts-lift); }
#portfolio .eyebrow { color: var(--bronze); }
/* ---- CAROUSEL (shared by Portfolio & Original Art) ---- */
.carousel-wrap { position: relative; }
.carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0;
  align-items: center;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 auto;
  max-width: 72%;
  min-width: 0;
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
  background: #3A3630;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #5A5550;
  outline: 1px solid rgba(0,0,0,0.15);
  outline-offset: -1px;
  box-shadow:
    0 4px 18px rgba(26,20,16,0.28),
    0 10px 36px rgba(26,20,16,0.14);
}
.carousel-slide::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 2px solid transparent;
  border-top-color: rgba(255,255,255,0.12);
  border-left-color: rgba(255,255,255,0.08);
  border-bottom-color: rgba(0,0,0,0.18);
  border-right-color: rgba(0,0,0,0.12);
  pointer-events: none;
  z-index: 2;
}
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
  z-index: 2;
}
.carousel-slide img {
  display: block;
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.carousel-slide:hover img { transform: scale(1.02); }

/* Carousel arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(26,20,16,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(184,140,48,0.35);
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.carousel-btn:hover {
  background: rgba(26,20,16,0.85);
  border-color: rgba(184,140,48,0.6);
  transform: translateY(-50%) scale(1.08);
}
.carousel-btn-prev { left: 0.75rem; }
.carousel-btn-next { right: 0.75rem; }

/* Placeholder slides for Original Art coming-soon */
.carousel-placeholder {
  background: rgba(255,252,248,0.25) !important;
  border: 6px dashed rgba(184,140,48,0.18) !important;
  outline: none !important;
  box-shadow: none !important;
  min-height: 320px;
}
.carousel-placeholder::before,
.carousel-placeholder::after { display: none !important; }
.placeholder-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-lt);
  text-shadow: var(--ts-gold);
}

#original-art .eyebrow { color: var(--bronze); }

/* ---- SPECIALTY ---- */
.specialty-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.specialty-header {
  max-width: 620px;
  margin-bottom: 4rem;
}
.specialty-header h2 { color: #1A1410; font-weight: 500; text-shadow: var(--ts-lift); }
.specialty-header p { color: #2A1E16; font-weight: 400; text-shadow: var(--ts-lift); }
#specialty .eyebrow { color: var(--bronze); }
.specialty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.specialty-card {
  padding: 2.5rem 2rem;
  background: rgba(255,252,248,0.45);
  border: 1px solid rgba(180,150,100,0.08);
  border-top: 2px solid rgba(184,140,48,0.20);
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-top-color 0.25s;
}
.specialty-card:hover { background: rgba(255,252,248,0.60); border-top-color: rgba(184,140,48,0.40); }
.specialty-card h3 { color: #1A1410; font-size: 1.5rem; font-weight: 400; margin-bottom: 0.85rem; }
.specialty-card p { color: #3A2A1C; font-size: 0.95rem; line-height: 1.75; }

/* ---- STONE DIVIDER — transparent, minimal ---- */
.stone-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem var(--gutter);
  background: transparent;
}
.stone-divider svg { flex-shrink: 0; opacity: 0.35; }
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,140,48,0.22), transparent);
  max-width: 280px;
}

/* Eyebrow overrides for transparent-background sections —
   use darker --bronze (#7A5C10) instead of --bronze-lt (#B88C30)
   for sufficient contrast against the light plaster surface */
#process .eyebrow,
#contact .eyebrow { color: var(--bronze); }

/* ---- PROCESS ---- */
.process-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: rgba(255,252,248,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(184,140,48,0.08);
  padding: 3.5rem;
}
.process-inner h2 { margin-bottom: 3.5rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 1.9rem; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,140,48,0.28), transparent);
  pointer-events: none;
}
.step-num { display: block; font-family: var(--sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; color: var(--bronze); margin-bottom: 1.25rem; }
.process-step h3 { font-size: 1.55rem; font-weight: 500; margin-bottom: 0.75rem; color: #1A1410; }
.process-step p { font-size: 0.95rem; line-height: 1.75; color: #2A1E16; }

/* ---- QUOTE ---- */
#quote blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.45;
  color: #1A1410;
  font-style: normal;
  position: relative;
  z-index: 1;
  text-shadow: var(--ts-lift);
}
#quote blockquote em { font-style: italic; color: #6A4E0A; text-shadow: 0 0 8px rgba(255,252,248,1), 0 0 20px rgba(255,252,248,0.9), 0 0 40px rgba(255,252,248,0.6); }
.quote-attr {
  display: block; margin-top: 2rem;
  font-family: var(--sans); font-size: 0.62rem;
  font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: #5A4A3A;
  text-shadow: var(--ts-gold);
}

/* ---- CONTACT ---- */
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: rgba(255,252,248,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(184,140,48,0.08);
  padding: 3.5rem;
}
.contact-inner h2 { text-shadow: var(--ts-lift); }
.contact-sub { color: #2A2018; max-width: 540px; margin: 0 auto 3rem; font-size: 1.05rem; line-height: 1.8; text-shadow: var(--ts-lift); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(90,70,50,0.20);
  background: rgba(255,252,248,0.92);
  color: var(--body-text);
  font-family: var(--sans); font-size: 0.9rem; font-weight: 400;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(90,74,58,0.60); }
.contact-form select { color: var(--body-text); cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A3A2C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.contact-form select:invalid { color: rgba(90,74,58,0.60); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: rgba(184,140,48,0.5); background: rgba(255,252,248,0.98); }
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary { align-self: flex-start; margin-top: 0.5rem; }

/* ---- STICKY CTA ---- */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  background: var(--charcoal-dk);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(184,140,48,0.25);
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s, background 0.25s, border-color 0.25s;
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover {
  background: #2A2018;
  border-color: rgba(184,140,48,0.5);
}
.sticky-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---- FOOTER — opaque dark anchor ---- */
footer { background: var(--charcoal-dk); padding: 3.5rem var(--gutter); border-top: 1px solid rgba(184,140,48,0.14); }
.footer-inner { max-width: var(--max); margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.footer-inner .wordmark { font-size: 1.6rem; color: var(--cream); margin-bottom: 0.25rem; text-decoration: none; }
.footer-sub { font-family: var(--sans); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,247,242,0.38); }
.footer-copy { font-family: var(--sans); font-size: 0.62rem; font-weight: 300; color: rgba(250,247,242,0.22); }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { max-width: 340px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-grid { grid-template-columns: 1fr; }
  .carousel-slide { max-width: 90%; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--charcoal-dk);
    padding: 1.5rem var(--gutter); gap: 1.5rem;
    border-top: 1px solid rgba(184,140,48,0.12); z-index: 99;
  }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .carousel-slide { max-width: 95%; }
  .carousel-btn { width: 2.6rem; height: 2.6rem; font-size: 1.6rem; }
}
