/* WoodArt Cabinets — Master Stylesheet
   Palette: wood brown, charcoal black, warm copper accent — matched to logo. */

:root {
  --c-wood: #8B5A2B;
  --c-wood-dark: #5C3A1C;
  --c-wood-light: #B47C4A;
  --c-black: #1A1A1A;
  --c-charcoal: #2C2C2C;
  --c-copper: #C9A876;
  --c-copper-dark: #A88857;
  --c-bg: #FAFAF7;
  --c-cream: #F5F2EE;
  --c-border: #E5DFD6;
  --c-muted: #6B6B6B;
  --c-success: #2F7D4F;
  --c-error: #C0392B;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 16px 40px rgba(26,26,26,.12), 0 4px 12px rgba(26,26,26,.06);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1380px;
  --header-h: 104px;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-black);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-wood-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-copper-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-black);
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--c-charcoal); line-height: 1.7; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 880px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-cream { background: var(--c-cream); }
.section-dark { background: var(--c-black); color: var(--c-cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.text-center { text-align: center; }
.eyebrow {
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--c-copper-dark);
  margin: 0 0 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--c-wood); color: #fff; border-color: var(--c-wood); }
.btn-primary:hover { background: var(--c-wood-dark); border-color: var(--c-wood-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--c-black); color: #fff; border-color: var(--c-black); }
.btn-dark:hover { background: #000; color: var(--c-copper); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--c-black); border-color: var(--c-black); }
.btn-outline:hover { background: var(--c-black); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: #fff; color: var(--c-black); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--c-wood-dark); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--c-copper-dark); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-full { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.topbar {
  background: var(--c-black);
  color: var(--c-cream);
  font-size: .82rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--c-cream); }
.topbar a:hover { color: var(--c-copper); }
.topbar-meta { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-cta { display: flex; gap: 18px; align-items: center; }

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform .2s ease;
}
.brand:hover { transform: translateY(-1px); }
.brand-mark {
  height: 52px;
  max-height: 52px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.brand-mark:hover { opacity: 0.85; }
.brand { display: inline-flex; align-items: center; padding: 6px 0; }
.brand:hover .brand-mark { transform: scale(1.02); }
.brand-mark.footer-logo {
  width: 220px;
  max-height: 60px;
  /* Use the dedicated white-version PNG; no filter needed */
  filter: none;
  opacity: 1;
  opacity: .96;
}
.brand-mark.footer-logo:hover { opacity: 1; }
.brand-mark.fallback {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2rem;
  color: var(--c-wood-dark);
  letter-spacing: -.01em;
}
.brand-mark.fallback .art { color: var(--c-black); }
.brand-mark.fallback small {
  display: block;
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .38em;
  color: var(--c-charcoal);
  font-weight: 500;
  margin-top: -4px;
}
@media (max-width: 900px) {
  .brand-mark { width: 220px; max-height: 60px; }
}
@media (max-width: 600px) {
  .brand-mark { width: 180px; max-height: 52px; }
}
.nav-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 22px;
  align-items: center;
  white-space: nowrap;
}
.nav-menu > li { position: relative; }
.nav-menu a {
  color: var(--c-black);
  font-weight: 500;
  font-size: .92rem;
  padding: 8px 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .nav-menu { gap: 16px; }
  .nav-menu a { font-size: .88rem; }
}
.nav-menu a:hover { color: var(--c-wood-dark); }
.nav-menu .has-sub > a::after {
  content: '▾';
  font-size: .65em;
  margin-left: 4px;
  color: var(--c-muted);
}
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 12px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}
.submenu.wide { min-width: 520px; columns: 2; column-gap: 12px; }
.has-sub:hover .submenu, .has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-weight: 400;
  font-size: .92rem;
  break-inside: avoid;
}
.submenu a:hover { background: var(--c-cream); color: var(--c-wood-dark); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-black);
  margin: 5px auto;
  transition: all .25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(26,26,26,.78), rgba(91,58,28,.55)),
              url('../images/projects/woodart-cabinets-san-antonio-055-large.jpg') center/cover no-repeat;
  padding: 80px 0;
}
.hero-content { max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero .eyebrow { color: var(--c-copper); }
.hero p { font-size: 1.2rem; opacity: .92; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.hero-badge svg { flex-shrink: 0; color: var(--c-copper); }

/* Grid */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--c-copper); }
.card-media {
  aspect-ratio: 4 / 3;
  background: var(--c-cream) center/cover no-repeat;
  position: relative;
}
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin: 0 0 10px; font-size: 1.25rem; }
.card-body p { color: var(--c-muted); margin: 0 0 16px; flex: 1; }
.card-link { color: var(--c-wood-dark); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 4px; }
.card-link::after { content: '→'; transition: transform .2s; }
.card-link:hover::after { transform: translateX(4px); }

/* Service grid icons */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-wood-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* Section header */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }

/* Why-choose / feature list */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-wood);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature-list h4 { margin: 0 0 4px; }
.feature-list p { margin: 0; color: var(--c-muted); }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* Gallery preview */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--c-copper); display: block; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: .9rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .12em; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

/* Testimonial */
.testimonial {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
}
.stars { color: var(--c-copper); margin-bottom: 12px; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial blockquote { margin: 0 0 18px; font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.5; color: var(--c-charcoal); flex: 1; }
.testimonial cite { font-style: normal; font-weight: 600; font-size: .95rem; color: var(--c-black); display: block; }
.testimonial cite small { display: block; font-weight: 400; color: var(--c-muted); font-size: .85rem; margin-top: 2px; }

/* Forms */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form label { display: block; font-weight: 500; font-size: .92rem; margin-bottom: 6px; color: var(--c-charcoal); }
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form input[type=password],
.form input[type=number],
.form select,
.form textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-black);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--c-wood);
  box-shadow: 0 0 0 3px rgba(139,90,43,.15);
}
.form textarea { min-height: 120px; resize: vertical; }
.form input[type=file] {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px dashed var(--c-border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--c-charcoal);
  cursor: pointer;
}
.form input[type=file]:hover { border-color: var(--c-wood); background: var(--c-cream); }
.form input[type=file]::file-selector-button {
  margin-right: 12px;
  padding: 8px 14px;
  background: var(--c-wood);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
}
.form input[type=file]::file-selector-button:hover { background: var(--c-wood-dark); }
.form-help { font-size: .82rem; color: var(--c-muted); }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--c-charcoal); }
.form-check input { margin-top: 3px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--c-wood), var(--c-wood-dark));
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { font-size: 1.15rem; opacity: .94; max-width: 640px; margin: 0 auto 28px; }
.cta-band .btn-primary { background: #fff; color: var(--c-wood-dark); border-color: #fff; }
.cta-band .btn-primary:hover { background: var(--c-black); color: #fff; border-color: var(--c-black); }

/* Locations strip */
.locations-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.location-chip {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: .88rem;
  color: var(--c-charcoal);
  transition: all .2s;
}
.location-chip:hover { background: var(--c-wood); color: #fff; border-color: var(--c-wood); }

/* Breadcrumb */
.breadcrumb {
  padding: 18px 0;
  font-size: .85rem;
  color: var(--c-muted);
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb a { color: var(--c-charcoal); }
.breadcrumb a:hover { color: var(--c-wood-dark); }
.breadcrumb .sep { margin: 0 8px; color: var(--c-border); }

/* Page header */
.page-header {
  padding: 80px 0 56px;
  background: var(--c-cream);
  text-align: center;
}
.page-header h1 { margin-bottom: 14px; }
.page-header p { max-width: 720px; margin: 0 auto; color: var(--c-muted); font-size: 1.1rem; }

/* Shop — line catalog (b2bcabinet-style) */
.shop-line { padding: 56px 0 24px; }
.shop-line:nth-child(odd) { background: var(--c-cream); }
.shop-line-header { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.shop-line-header h2 {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--c-black);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-copper);
}
.shop-line-header p { color: var(--c-muted); }
.shop-line-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .shop-line-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) { .shop-line-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .shop-line-grid { grid-template-columns: repeat(2, 1fr); } }
.shop-line-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all .25s ease;
}
.shop-line-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--c-copper); }
.shop-line-media {
  aspect-ratio: 1 / 1;
  background: var(--c-cream) center/cover no-repeat;
}
.shop-line-body {
  padding: 14px 14px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.shop-line-body h3 {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-black);
  margin: 0;
}
.shop-line-body .btn { width: 100%; max-width: 140px; }
.shop-filter-line {
  margin-top: 14px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-copper-dark);
  font-weight: 700;
  padding: 6px 0 2px;
  border-bottom: 1px solid var(--c-border);
}
.shop-filter-line:first-child { margin-top: 0; }

/* Shop — style page sidebar/grid */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--c-border); flex-wrap: wrap; margin-bottom: 28px; }
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 36px; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }
.shop-filters { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 22px; height: fit-content; position: sticky; top: 120px; }
.shop-filters h4 { margin-top: 0; font-family: var(--font-sans); font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; }
.shop-filters ul { list-style: none; padding: 0; margin: 0 0 22px; }
.shop-filters li a { display: block; padding: 6px 0; color: var(--c-charcoal); font-size: .92rem; }
.shop-filters li a:hover { color: var(--c-wood-dark); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 700px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
.product-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; transition: all .2s; }
.product-card:hover { box-shadow: var(--shadow-md); border-color: var(--c-copper); }
.product-card .product-media { aspect-ratio: 4 / 3; background: var(--c-cream) center/cover no-repeat; }
.product-card .product-body { padding: 16px; }
.product-card h4 { margin: 0 0 4px; font-family: var(--font-sans); font-size: .95rem; }
.product-card .sku { font-size: .8rem; color: var(--c-muted); margin: 0 0 8px; }
.product-card .price { font-weight: 600; color: var(--c-black); margin: 0 0 12px; }
.product-card .btn { width: 100%; padding: 9px 12px; font-size: .82rem; }

/* Footer */
.site-footer {
  background: var(--c-black);
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
  font-size: .92rem;
}
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: .85rem; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 18px; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--c-copper); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .85rem; }
.footer-brand .brand-mark { color: #fff; font-size: 1.4rem; }
.footer-brand .brand-mark .art { color: var(--c-copper); }
.footer-brand p { color: rgba(255,255,255,.6); margin-top: 12px; }
.footer-contact { display: grid; gap: 6px; font-size: .9rem; }
.footer-contact strong { color: #fff; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--c-wood-dark); font-size: 1.6rem; font-weight: 300; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { border-bottom: 1px solid var(--c-border); }
.faq details > div { padding: 16px 24px 24px; color: var(--c-charcoal); }

/* Utilities */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 32px; }
.row-center { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.row-center.center { justify-content: center; }
.hide-mobile { display: initial; }
.show-mobile { display: none; }
@media (max-width: 800px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: initial; }
  .nav-menu { display: none; }
  .menu-toggle { display: block; }
  .nav-cta .btn-outline { display: none; }
  .topbar-meta { display: none; }
  .section { padding: 56px 0; }
  .hero { min-height: 80vh; padding: 60px 0; }
}

/* Mobile menu (open state) */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--c-border);
  padding: 8px 0 24px;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0 20px; margin: 0; }
.mobile-menu a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--c-cream); color: var(--c-black); font-weight: 500; text-decoration: none; }
.mobile-menu a:last-child { border-bottom: none; }

/* Mobile menu — expandable groups using <details>/<summary> */
.mobile-menu details { border-bottom: 1px solid var(--c-cream); }
.mobile-menu details > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-weight: 600;
  color: var(--c-black);
  cursor: pointer;
  user-select: none;
}
.mobile-menu details > summary::-webkit-details-marker { display: none; }
.mobile-menu details > summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--c-copper);
  transition: transform .2s ease;
}
.mobile-menu details[open] > summary::after { content: "−"; }
.mobile-menu details > ul {
  padding: 0 0 10px 16px;
  border-top: 1px solid var(--c-cream);
}
.mobile-menu details > ul > li > a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 4px;
  color: var(--c-text);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mobile-menu details > ul > li:last-child > a { border-bottom: none; }
.mobile-menu .mobile-menu-secondary {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 2px solid var(--c-cream);
}
.mobile-menu .mobile-menu-secondary > li > a {
  padding: 12px 4px;
  font-size: 0.92rem;
  color: var(--c-muted);
  font-weight: 500;
}
.mobile-menu .mobile-menu-cta {
  margin: 16px 20px 4px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mobile-menu .mobile-menu-cta .btn { flex: 1; text-align: center; }

/* Tags / pills */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-cream);
  color: var(--c-wood-dark);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Blog */
.article-content { max-width: 760px; margin: 0 auto; }
.article-content h2 { margin-top: 1.8em; }
.article-content h3 { margin-top: 1.4em; }
.article-content p { font-size: 1.08rem; }
.article-content ul, .article-content ol { padding-left: 1.4em; }
.article-content li { margin-bottom: .4em; }
.article-meta { color: var(--c-muted); font-size: .9rem; margin-bottom: 24px; }

/* Print */
@media print {
  .site-header, .site-footer, .floating-call, .sticky-promo, .nav-cta, .hero-carousel button { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .section { padding: 24px 0; }
}

/* ───────────────────────────────────────────────────────────
   MODERNIZATION LAYER — bigger type, softer corners, scroll
   animations, glass header, premium buttons. Appended last so
   it cleanly overrides earlier defaults.
   ─────────────────────────────────────────────────────────── */

/* Bolder type scale */
h1 { font-size: clamp(2.6rem, 5.8vw, 4.8rem); line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; }
.section { padding: 120px 0; }
.section-sm { padding: 72px 0; }
@media (max-width: 800px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
}

/* Glass-effect header with subtle border */
.site-header {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(229, 223, 214, 0.6);
}

/* Modern hero — bigger, more dramatic */
.hero {
  min-height: 760px;
  background:
    linear-gradient(135deg, rgba(26,26,26,.82) 0%, rgba(91,58,28,.45) 60%, rgba(201,168,118,.25) 100%),
    url('../images/projects/woodart-cabinets-san-antonio-055-large.jpg') center/cover no-repeat;
}
.hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p { font-size: clamp(1.1rem, 1.7vw, 1.35rem); max-width: 640px; }
.hero .eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(201, 168, 118, 0.18);
  border: 1px solid rgba(201, 168, 118, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: .82rem;
}

/* Premium button — soft gradient + bigger shadow */
.btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #A36A38 0%, #8B5A2B 50%, #6B4423 100%);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(139, 90, 43, .28), inset 0 1px 0 rgba(255,255,255,.12);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #B27840 0%, #9A6535 50%, #7A4F28 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(139, 90, 43, .42), inset 0 1px 0 rgba(255,255,255,.16);
}
.btn-dark { box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-outline { border-width: 1.5px; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--c-wood-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.cta-band .btn-primary:hover {
  background: var(--c-black);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.32);
}

/* Cards — softer corners, deeper hover */
.card { border-radius: var(--radius-lg); border-color: rgba(229,223,214,.6); }
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -8px rgba(26,26,26,.18), 0 8px 16px -4px rgba(91,58,28,.08);
  border-color: rgba(201,168,118,.5);
}
.card-media { aspect-ratio: 4 / 3; transition: transform .5s ease; }
.card:hover .card-media { transform: scale(1.03); }
.card-body { padding: 28px; }

/* Section header — bigger eyebrow */
.eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  font-weight: 700;
}
.section-header { margin-bottom: 72px; }

/* Stats — bolder, more spaced */
.stat-num {
  font-size: clamp(2.6rem, 4vw, 4rem);
  background: linear-gradient(135deg, #B47C4A, #6B4423);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats { gap: 48px; }

/* Testimonials — softer */
.testimonial {
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  transition: all .3s ease;
}
.testimonial blockquote { font-size: 1.2rem; line-height: 1.55; }

/* FAQ — modernized */
.faq details {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229,223,214,.6);
  background: #fff;
  transition: all .25s ease;
  margin-bottom: 14px;
}
.faq details:hover { border-color: rgba(201,168,118,.5); box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.faq details[open] { box-shadow: 0 12px 32px rgba(0,0,0,.06); border-color: rgba(201,168,118,.5); }
.faq summary { padding: 24px 28px; font-size: 1.05rem; }
.faq details > div { padding: 20px 28px 28px; }

/* Forms — modernized */
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form input[type=password],
.form input[type=number],
.form select,
.form textarea {
  border-radius: var(--radius);
  border-width: 1.5px;
  padding: 15px 16px;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--c-wood);
  box-shadow: 0 0 0 4px rgba(139, 90, 43, 0.12);
}

/* Location chips — bigger */
.location-chip {
  padding: 10px 20px;
  font-size: .9rem;
  border-width: 1.5px;
  transition: all .25s ease;
}
.location-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139,90,43,.2);
}

/* Page header — more dramatic */
.page-header {
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 118, .12) 0%, transparent 70%),
    var(--c-cream);
  position: relative;
}
.page-header h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.page-header p { font-size: 1.2rem; }

/* CTA band — modernized */
.cta-band {
  padding: 96px 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(201, 168, 118, .35) 0%, transparent 50%),
    linear-gradient(135deg, var(--c-wood) 0%, var(--c-wood-dark) 60%, #4A2F18 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.08) 0%, transparent 40%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-band p { font-size: 1.2rem; }

/* Footer — modernized */
.site-footer {
  padding: 88px 0 32px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 168, 118, .08) 0%, transparent 60%),
    var(--c-black);
}

/* Topbar — slightly more refined */
.topbar { font-size: .8rem; padding: 10px 0; }

/* Shop line cards — modernized */
.shop-line-card { border-radius: var(--radius-lg); }
.shop-line-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26,26,26,.14);
}
.shop-line-media { transition: transform .4s ease; }
.shop-line-card:hover .shop-line-media { transform: scale(1.04); }
.shop-line-header h2 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  letter-spacing: .24em;
}

/* Product cards */
.product-card { border-radius: var(--radius-lg); transition: all .25s ease; }
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,.08);
}

/* Floating call — refined */

.floating-call:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(139,90,43,.55); }

/* Gallery — modern */
.gallery-grid { gap: 18px; }
.gallery-grid a { border-radius: var(--radius-lg); }
.gallery-grid a:hover img { transform: scale(1.08); }

/* Feature list icons */
.feature-list .feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--c-wood), var(--c-wood-dark));
  box-shadow: 0 6px 16px rgba(139,90,43,.28);
  font-size: 1.15rem;
}

/* Scroll-fade animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance */
.hero-content > * { animation: fadeUp .9s ease both; }
.hero-content > *:nth-child(1) { animation-delay: .05s; }
.hero-content > *:nth-child(2) { animation-delay: .15s; }
.hero-content > *:nth-child(3) { animation-delay: .25s; }
.hero-content > *:nth-child(4) { animation-delay: .35s; }
.hero-content > *:nth-child(5) { animation-delay: .45s; }

/* Smooth focus rings */
*:focus-visible {
  outline: 2px solid var(--c-copper);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection */
::selection { background: var(--c-copper); color: var(--c-black); }

/* Image rendering polish */
img { image-rendering: -webkit-optimize-contrast; }

/* Slight glass tint on submenu */
.submenu {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 16px;
  border-color: rgba(229,223,214,.6);
  box-shadow: 0 20px 48px rgba(0,0,0,.1);
}
.submenu a { border-radius: 6px; padding: 10px 14px; }

/* Mobile menu */
.mobile-menu {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
}

/* Header shadow after scroll */
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  background: rgba(255,255,255,.92);
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}



/* ============== v10 hero refinements ============== */
.hero {
  min-height: 100vh;
  position: relative;
  background-position: center center; /* fully centered */
  background-attachment: scroll; /* fixed breaks on mobile */
}
.hero::before {
  /* Lighter gradient — image stays visible, text still readable */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,12,8,0.55) 0%,
    rgba(15,12,8,0.30) 55%,
    rgba(15,12,8,0.08) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;       /* tighter width = more composed */
  padding: 80px 28px 100px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero p, .hero .hero-sub {
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 620px;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero .hero-eyebrow,
.hero .eyebrow {
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 22px;
  color: #d8a86b;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
}
.hero-badge svg { color: #d8a86b; flex-shrink: 0; }

/* ============== Bigger logos ============== */
.brand-mark {
  height: 60px !important;
  max-height: 60px !important;
  width: auto;
}
.brand-mark.footer-logo {
  width: 380px !important;
  max-height: 110px !important;
  height: auto !important;
}

/* ============== Mobile hero ============== */
@media (max-width: 768px) {
  .hero {
    min-height: 640px;
    background-position: 50% 30%; /* keep focal point visible on portrait */
  }
  .hero-content {
    padding: 60px 20px 80px;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .hero p, .hero .hero-sub {
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-badges {
    flex-direction: column;
    gap: 10px;
  }
  .brand-mark {
    height: 50px !important;
    max-height: 50px !important;
  }
  .brand-mark.footer-logo {
    width: 270px !important;
    max-height: 78px !important;
  }
}
@media (max-width: 480px) {
  .hero { min-height: 560px; }
  .hero h1 { font-size: 1.85rem; }
}


/* Make header taller to accommodate bigger logo */
.site-header .nav { min-height: 76px; }
@media (max-width: 768px) { .site-header .nav { min-height: 84px; } }


/* ============== v10 NAV LAYOUT FIX ============== */
/* With 130px logo + 9 menu items, the phone CTA was being pushed off-screen.
   This makes the nav layout more compact and ensures CTA buttons stay visible. */
.site-header .container {
  position: relative;
}
.nav {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;
}
.brand {
  flex-shrink: 0 !important;
  margin-right: 8px !important;
}
.nav-menu {
  display: flex !important;
  gap: 4px !important;
  flex: 1 1 auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
}
.nav-menu > li {
  position: relative;
  white-space: nowrap;
}
.nav-menu > li > a {
  padding: 8px 10px !important;
  font-size: 0.92rem !important;
  white-space: nowrap;
  display: inline-block;
}
.nav-cta {
  flex-shrink: 0 !important;
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
}
.nav-cta .btn {
  white-space: nowrap !important;
  font-size: 0.9rem !important;
  padding: 9px 14px !important;
}

/* At 1280px and below, hide less critical menu items */
@media (max-width: 1280px) {
  .nav-menu > li > a { padding: 8px 7px !important; font-size: 0.88rem !important; }
}
@media (max-width: 1180px) {
  /* hide Financing in nav, still in footer */
  .nav-menu li a[href$="/financing.html"] { display: none; }
}
@media (max-width: 1080px) {
  /* hide Gallery from nav (still in footer) */
  .nav-menu li a[href$="/gallery.html"] { display: none; }
  /* Keep phone button visible at this breakpoint */
}
@media (max-width: 980px) {
  .nav-menu > li > a { font-size: 0.84rem !important; padding: 6px 6px !important; }
}

/* At mobile, the menu becomes hamburger anyway */
@media (max-width: 880px) {
  .nav-menu { display: none !important; }
  .menu-toggle { display: block !important; }
  /* Keep phone button visible at this breakpoint */
}

/* Make sure topbar phone is ALWAYS visible (fallback) */
.topbar { display: block !important; }
.topbar .topbar-cta { display: flex !important; gap: 14px; align-items: center; }
.topbar .topbar-cta a { color: #fff; font-weight: 600; white-space: nowrap; }

/* SLIGHTLY smaller logo on tablet/laptop sizes so it doesn't dominate */
@media (max-width: 1280px) {
  .brand-mark {
    height: 54px !important;
    max-height: 54px !important;
  }
}
@media (max-width: 1080px) {
  .brand-mark {
    height: 56px !important;
    max-height: 56px !important;
  }
}


/* ============== v10 PHONE VISIBILITY — make it impossible to miss ============== */

/* Make the TOPBAR phone number prominent: bigger, accent color, clear */
.topbar {
  background: #1a1410 !important;
  padding: 10px 0 !important;
  display: block !important;
}
.topbar .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-meta {
  color: rgba(255,255,255,0.85);
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.topbar-cta {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
}
.topbar-cta a {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}
.topbar-cta a:hover { color: #d8a86b; }

/* Topbar phone link — plain white text matching Login/Register style */
.topbar-cta a:first-child {
  background: transparent !important;
  color: #fff !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: inherit !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
  text-decoration: none;
}
.topbar-cta a:first-child:hover {
  background: transparent !important;
  color: #d8a86b !important;
}
.topbar-cta a:first-child svg {
  stroke: #fff !important;
  width: 16px !important;
  height: 16px !important;
}

/* Nav-CTA phone button (in main nav) - make it ALWAYS visible */
.nav-cta .btn-outline.hide-mobile { 
  display: inline-flex !important;
  background: #fff !important;
  border: 2px solid #d8a86b !important;
  color: #1a1410 !important;
  font-weight: 700 !important;
}
.nav-cta .btn-outline.hide-mobile:hover {
  background: #d8a86b !important;
  color: #fff !important;
}

/* Hide the .hide-mobile on actual mobile screens */
@media (max-width: 640px) {
  .nav-cta .btn-outline.hide-mobile { display: none !important; }
  .topbar-meta { font-size: 0.78rem; gap: 12px; }
  .topbar-cta a:first-child { font-size: 0.95rem; padding: 6px 14px; }
}

/* Always-visible floating phone button on desktop (was only mobile) */
.floating-call {
  display: inline-flex !important;
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  background: #d8a86b !important;
  color: #fff !important;
  padding: 14px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 6px 22px rgba(216, 168, 107, 0.45) !important;
  z-index: 999 !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  text-decoration: none !important;
  align-items: center !important;
  gap: 8px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.floating-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(216, 168, 107, 0.55) !important;
}
.floating-call svg {
  stroke: #fff !important;
  width: 18px !important;
  height: 18px !important;
}
/* Scroll-aware visibility — hidden until the user has scrolled past the hero, and hidden again near the footer (where the CTA-band already shows the phone). Toggled by JS. */
.floating-call {
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.2s ease !important;
}
.floating-call.is-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(20px) !important;
}

/* === Mobile usability tweaks === */
@media (max-width: 640px) {
  /* Make floating call compact so it doesn't blanket the lower-right corner */
  .floating-call {
    padding: 10px 16px !important;
    font-size: 0.92rem !important;
    bottom: 14px !important;
    right: 14px !important;
    box-shadow: 0 4px 14px rgba(216, 168, 107, 0.5) !important;
  }
  .floating-call svg { width: 16px !important; height: 16px !important; }

  /* Give content room to scroll past the floating button at the very end of the page */
  body { padding-bottom: 70px; }

  /* Bigger tap targets on small text links */
  .topbar-cta a,
  .topbar-meta span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 4px 2px;
  }

  /* Card "more" links — easier to tap */
  .card-link {
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  /* Footer list items — bigger tap targets */
  .footer-list a { padding: 8px 0; display: inline-block; min-height: 36px; }

  /* Footer phone, email, and bottom legal links — bigger tap targets */
  .footer-contact a,
  .footer-bottom a {
    display: inline-block;
    min-height: 36px;
    padding: 4px 0;
    line-height: 1.6;
  }

  /* Service-area-list (added to service pages) — 2 columns on mobile, taller items */
  .service-area-list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px 12px !important;
  }
  .service-area-list li a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 6px 0;
  }

  /* Owner grid on about.html uses inline-styled 2-col grid — force single column */
  .owner-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    justify-items: center;
  }
  .owner-grid > div:first-child > div:first-child {
    margin: 0 auto;
  }
}


/* === Shop-by-Style cards: cabinet door images should show fully (contain not cover) === */
.card-media[style*="assets/images/cabinets/"] {
  background-size: contain !important;
  background-position: center !important;
  background-color: #f5f1ea !important;
  aspect-ratio: 4 / 5 !important;
}

/* ============== Responsive polish — mobile/tablet ============== */
/* Make sure sticky header stays sticky on every viewport */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
}

@media (max-width: 768px) {
  .submenu, .submenu.wide { min-width: auto; max-width: 90vw; }
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .shop-line-grid { grid-template-columns: 1fr; }
}

.floating-call { max-width: calc(100vw - 32px); }

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.4rem);
    text-shadow: 0 1px 10px rgba(0,0,0,0.45);
  }
  .hero p, .hero .hero-sub { font-size: 0.98rem; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .brand-mark { height: 52px !important; max-height: 60px !important; }
}

@media (max-width: 768px) {
  .shop-filters { position: relative !important; top: auto !important; }
}

.section table { width: 100%; }
@media (max-width: 600px) {
  .section table { font-size: 0.85rem; }
  .section table th, .section table td { padding: 6px 8px !important; }
}

@media (max-width: 900px) and (min-width: 601px) {
  .product-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

@media (max-width: 900px) {
  body { padding-bottom: 80px; }
}

/* ============== Hero carousel (homepage) ============== */
.hero-carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-carousel .slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}
.hero-carousel .slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,12,8,0.55) 0%,
    rgba(15,12,8,0.30) 55%,
    rgba(15,12,8,0.08) 100%
  );
  z-index: 1;
}
.hero-carousel .slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-carousel .slide.active .hero-content > * { animation: fadeUp .9s ease both; }
.hero-carousel .slide.active .hero-content > *:nth-child(1) { animation-delay: .15s; }
.hero-carousel .slide.active .hero-content > *:nth-child(2) { animation-delay: .25s; }
.hero-carousel .slide.active .hero-content > *:nth-child(3) { animation-delay: .35s; }
.hero-carousel .slide.active .hero-content > *:nth-child(4) { animation-delay: .45s; }
.hero-carousel .slide.active .hero-content > *:nth-child(5) { animation-delay: .55s; }
.hero-carousel .slide .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
  padding: 80px 28px 100px;
}

/* Promo badge for discount slide */
.hero-promo-badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--c-copper);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(201,168,118,0.45);
}
.hero-promo-discount {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-promo-discount sup {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 600;
  color: var(--c-copper);
  margin-left: 4px;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}
.carousel-arrow:hover { background: rgba(255,255,255,0.32); border-color: rgba(255,255,255,0.5); }
.carousel-arrow.prev { left: 28px; }
.carousel-arrow.next { right: 28px; }

/* Carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}
.carousel-dot {
  width: 38px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.carousel-dot.active {
  background: var(--c-copper);
  width: 52px;
}

@media (max-width: 768px) {
  .carousel-arrow { width: 42px; height: 42px; font-size: 1.1rem; }
  .carousel-arrow.prev { left: 12px; }
  .carousel-arrow.next { right: 12px; }
  .carousel-dots { bottom: 20px; gap: 8px; }
  .carousel-dot { width: 28px; }
  .carousel-dot.active { width: 40px; }
}

/* ============== Scroll-reveal animations ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-carousel .slide { transition: none; }
}

/* ============== Hero cabinet tiles (slide 3) — bigger, eye-catching ============== */
.hero-content-wide { max-width: 1080px; }
.hero-cab-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 14px 0 36px;
}
.hero-cab-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.30);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform .3s cubic-bezier(.2,.7,.2,1.2),
              background .3s ease,
              border-color .3s ease,
              box-shadow .3s ease;
}
.hero-cab-tile:hover {
  background: rgba(255,255,255,0.24);
  border-color: var(--c-copper);
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 18px 50px rgba(201,168,118,0.45), 0 4px 14px rgba(0,0,0,0.3);
}
.hero-cab-tile::after {
  content: "NEW";
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 4px 10px;
  background: var(--c-copper);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  pointer-events: none;
}
.hero-cab-tile .img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-cab-tile .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  box-sizing: border-box;
  display: block;
  transition: transform .4s ease;
}
.hero-cab-tile:hover .img-wrap img { transform: scale(1.06); }
.hero-cab-tile .name {
  padding: 12px 6px 14px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.18) 100%);
}

/* Tablet — keep 5 across with tighter gap */
@media (max-width: 1024px) and (min-width: 601px) {
  .hero-cab-tiles { gap: 14px; }
  .hero-cab-tile .name { font-size: 0.86rem; padding: 10px 4px 12px; }
  .hero-cab-tile::after { font-size: 0.58rem; padding: 3px 8px; top: 6px; right: 6px; }
}
/* Mobile — 3 across with the 4th/5th wrapping to a second row */
@media (max-width: 600px) {
  .hero-cab-tiles {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .hero-cab-tile .name { font-size: 0.82rem; padding: 10px 4px 12px; }
  .hero-cab-tile::after { font-size: 0.56rem; padding: 3px 7px; top: 5px; right: 5px; }
}

/* ============== Directional scroll-reveal variants ============== */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal-up {
  opacity: 0;
  transform: translateY(60px) scale(0.985);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-up.in-view,
.reveal-zoom.in-view {
  opacity: 1;
  transform: none;
}

/* Make the base .reveal stronger too (slide further) */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Stagger children within a revealed grid/list */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.in-view > * { opacity: 1; transform: none; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: .56s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-up, .reveal-zoom,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Carousel: enable horizontal swipe gestures (mobile/tablet) */
.hero-carousel { touch-action: pan-y; }

/* ============== Full-section slide-in (every <section>) ============== */
.section-reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1),
              transform 1s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.section-reveal.in-view {
  opacity: 1;
  transform: none;
}
/* Optional: slide from sides — alternates feel */
.section-reveal.from-left { transform: translateX(-80px) translateY(40px); }
.section-reveal.from-right { transform: translateX(80px) translateY(40px); }
.section-reveal.from-left.in-view,
.section-reveal.from-right.in-view { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .section-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Ensure all hero carousel slide text reads white on the kitchen photo background */
.hero-carousel .slide .hero-content h1,
.hero-carousel .slide .hero-content p,
.hero-carousel .slide .hero-content .hero-sub {
  color: #fff;
}
/* Keep the copper eyebrow accents and badge */
.hero-carousel .slide .hero-content .eyebrow,
.hero-carousel .slide .hero-content .hero-eyebrow { color: var(--c-copper); }

/* Make h2.slide-h visually match the h1 styling on hero slides 2 & 3
   (we demoted them from h1 for proper SEO heading hierarchy) */
.hero-carousel .slide .hero-content h2.slide-h {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.2vw, 4.1rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

/* ═══════════════════════════════════════════════════════════════
   v12 MODERNIZATION LAYER — local-family-business trust patterns
   Inspired by best-in-class US cabinet showroom sites (Lily Ann,
   CliqStudios, RTA Cabinet Store, Cabinets To Go, ProSource).
   ═══════════════════════════════════════════════════════════════ */

/* ---------- Sticky promo bar (top of page) ---------- */
.sticky-promo {
  position: relative;
  z-index: 99;
  background: linear-gradient(90deg, #6B4423 0%, #8B5A2B 45%, #A36A38 100%);
  color: #fff;
  font-size: 0.88rem;
  padding: 9px 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}
.sticky-promo strong { color: #ffe8c4; font-weight: 700; }
.sticky-promo a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.sticky-promo a:hover { color: #ffe8c4; }
.sticky-promo .promo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd084;
  box-shadow: 0 0 0 0 rgba(255, 208, 132, .9);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255, 208, 132, .9); }
  70% { box-shadow: 0 0 0 10px rgba(255, 208, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 208, 132, 0); }
}
@media (max-width: 640px) {
  .sticky-promo { font-size: 0.78rem; padding: 8px 12px; gap: 8px; }
}

/* ---------- Trust-badges row (right under hero) ---------- */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  padding: 22px 0;
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  color: var(--c-charcoal);
}
.trust-item .ti-num {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #B47C4A, #6B4423);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-item .ti-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
}
.trust-item .ti-stars {
  color: #f5b22a;
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
}
.trust-item .ti-small {
  font-size: 0.76rem;
  color: var(--c-muted);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .trust-bar .container { grid-template-columns: repeat(3, 1fr); gap: 18px 12px; }
  .trust-item:nth-child(4), .trust-item:nth-child(5) { display: none; }
  .trust-item .ti-num { font-size: 1.55rem; }
}
@media (max-width: 560px) {
  .trust-bar .container { grid-template-columns: repeat(3, 1fr); }
  .trust-item .ti-num { font-size: 1.35rem; }
  .trust-item .ti-label { font-size: 0.7rem; }
}

/* ---------- How It Works (4-step process) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  counter-reset: step;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-copper) 0 8px, transparent 8px 16px);
  z-index: 0;
  opacity: .6;
}
.step-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26,26,26,.10);
  border-color: rgba(201,168,118,.5);
}
.step-num {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #faf6ef 100%);
  border: 2px solid var(--c-copper);
  color: var(--c-wood-dark);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(201,168,118,.25);
  position: relative;
}
.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 10px;
}
.step-card p { color: var(--c-muted); margin: 0; font-size: 0.96rem; line-height: 1.55; }
.step-card .step-meta {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-copper-dark);
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}
@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; gap: 18px; }
  .step-card { padding: 26px 22px 22px; }
  .step-num { width: 64px; height: 64px; font-size: 1.7rem; }
}

/* ---------- Compare us vs Big Box ---------- */
.compare-table {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.05);
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--c-cream);
  font-size: 0.96rem;
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table thead th {
  background: var(--c-cream);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  font-weight: 700;
  padding: 16px 22px;
  border-bottom: 2px solid var(--c-border);
}
.compare-table thead th.col-us {
  background: linear-gradient(135deg, var(--c-wood) 0%, var(--c-wood-dark) 100%);
  color: #fff;
  position: relative;
}
.compare-table thead th.col-us::after {
  content: "RECOMMENDED";
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffe8c4;
  margin-top: 4px;
}
.compare-table td.feature {
  font-weight: 600;
  color: var(--c-black);
  width: 38%;
}
.compare-table td.col-us {
  background: rgba(201, 168, 118, 0.07);
  color: var(--c-wood-dark);
  font-weight: 600;
}
.compare-table .yes, .compare-table .no {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.compare-table .yes { color: var(--c-success); }
.compare-table .no { color: #b8b8b8; font-weight: 500; }
.compare-table .yes::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(47,125,79,.12);
  color: var(--c-success);
  font-weight: 800;
  font-size: 0.85rem;
}
.compare-table .no::before {
  content: "—";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f1f0ec;
  color: #b8b8b8;
  font-weight: 700;
  font-size: 1rem;
}
@media (max-width: 720px) {
  .compare-table th, .compare-table td { padding: 14px 12px; font-size: 0.86rem; }
  .compare-table thead th { font-size: 0.7rem; padding: 12px 10px; }
  .compare-table thead th.col-us::after { font-size: 0.56rem; }
  .compare-table td.feature { width: 44%; }
}

/* ---------- Owner / family-business intro card ---------- */
.owner-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, #fdfbf6 0%, #faf6ef 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 16px 48px rgba(91,58,28,.06);
}
.owner-portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 18px 40px rgba(91,58,28,.18);
}
.owner-portrait img { width: 100%; height: 100%; object-fit: cover; }
.owner-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--c-wood);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.owner-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--c-black);
  margin: 0 0 18px;
  position: relative;
  padding-left: 24px;
}
.owner-quote::before {
  content: "“";
  position: absolute;
  left: -8px;
  top: -22px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--c-copper);
  opacity: .45;
}
.owner-sign {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.owner-sign-name { font-weight: 700; color: var(--c-black); font-size: 1.05rem; }
.owner-sign-role { font-size: 0.88rem; color: var(--c-muted); }
.owner-sign-divider { width: 2px; height: 38px; background: var(--c-border); }
@media (max-width: 800px) {
  .owner-intro { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px; text-align: center; }
  .owner-portrait { width: 200px; margin: 0 auto; }
  .owner-quote { font-size: 1.2rem; padding-left: 0; }
  .owner-quote::before { display: none; }
  .owner-sign { justify-content: center; }
}

/* ---------- Google-style review widget ---------- */
.review-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.review-widget .rw-google {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  background: conic-gradient(from 0deg at 50% 50%, #4285F4 0deg 90deg, #34A853 90deg 180deg, #FBBC04 180deg 270deg, #EA4335 270deg 360deg);
  position: relative;
  color: #fff;
}
.review-widget .rw-google::after {
  content: "G";
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(45deg, #4285F4 25%, #34A853 25%, #34A853 50%, #FBBC04 50%, #FBBC04 75%, #EA4335 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.45rem;
  font-weight: 700;
}
.rw-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.rw-top { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.rw-score { font-size: 1.5rem; font-weight: 700; color: var(--c-black); line-height: 1; }
.rw-stars { color: #f5b22a; letter-spacing: 1px; font-size: 1.1rem; line-height: 1; }
.rw-count { font-size: 0.88rem; color: var(--c-muted); }
.rw-label { font-size: 0.85rem; color: var(--c-charcoal); }
.rw-cta {
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-wood-dark);
  white-space: nowrap;
}
.rw-cta:hover { color: var(--c-copper-dark); }
@media (max-width: 600px) {
  .review-widget { flex-wrap: wrap; padding: 20px; gap: 14px; }
  .rw-cta { margin-left: 0; width: 100%; padding-top: 8px; border-top: 1px solid var(--c-cream); }
}

/* ---------- Showroom-status pill (Open Now) ---------- */
.showroom-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(47,125,79,.10);
  border: 1px solid rgba(47,125,79,.25);
  color: var(--c-success);
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 999px;
}
.showroom-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 0 rgba(47,125,79,.6);
  animation: pulseGreen 2s ease-out infinite;
}
.showroom-status.closed {
  background: rgba(192, 57, 43, .08);
  border-color: rgba(192, 57, 43, .22);
  color: var(--c-error);
}
.showroom-status.closed .dot { background: var(--c-error); animation: none; }
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(47,125,79,.6); }
  70% { box-shadow: 0 0 0 10px rgba(47,125,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,125,79,0); }
}

/* ---------- Modern testimonial cards with avatar ---------- */
.testimonial-modern {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.testimonial-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26,26,26,.10);
  border-color: rgba(201,168,118,.45);
}
.testimonial-modern .tm-source {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-border);
  font-size: 0.74rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
}
.testimonial-modern .tm-source.google { color: #4285F4; }
.testimonial-modern .tm-source.yelp { color: #d32323; }
.testimonial-modern .tm-source.houzz { color: #7AC142; }
.testimonial-modern .stars {
  color: #f5b22a;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-modern blockquote {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--c-charcoal);
  flex: 1;
}
.tm-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--c-cream);
}
.tm-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-copper), var(--c-wood));
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.tm-meta { display: flex; flex-direction: column; gap: 2px; }
.tm-name { font-weight: 700; font-size: 0.98rem; color: var(--c-black); }
.tm-detail { font-size: 0.82rem; color: var(--c-muted); }

/* ---------- Sample / brochure request card ---------- */
.sample-cta {
  background: linear-gradient(135deg, #faf6ef 0%, #fdfbf6 50%, #fff 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sample-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(201,168,118,.18) 0%, transparent 40%);
  pointer-events: none;
}
.sample-cta > * { position: relative; z-index: 1; }
.sample-cta h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0 0 12px;
}
.sample-cta p { color: var(--c-charcoal); margin: 0 0 18px; font-size: 1.05rem; line-height: 1.55; }
.sample-cta .sample-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.sample-cta .sample-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--c-charcoal);
}
.sample-cta .sample-bullets li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-wood);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sample-cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
@media (max-width: 800px) {
  .sample-cta { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; text-align: center; }
  .sample-cta .sample-bullets { justify-content: center; }
  .sample-cta-actions { min-width: 0; width: 100%; }
}

/* ---------- Section divider (subtle decorative) ---------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 32px;
  color: var(--c-copper);
}
.section-divider::before, .section-divider::after {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--c-copper);
  opacity: .6;
}
.section-divider span {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- Inline trust signal pills (under hero CTA, etc.) ---------- */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: rgba(255,255,255,0.95);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.trust-pill svg { color: var(--c-copper); flex-shrink: 0; }

/* ---------- Showroom info card (visible from hero) ---------- */
.showroom-card {
  position: absolute;
  right: 32px;
  bottom: 60px;
  z-index: 4;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  max-width: 320px;
  border: 1px solid rgba(255,255,255,0.5);
}
.showroom-card .sc-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-copper-dark);
  font-weight: 700;
  margin-bottom: 6px;
}
.showroom-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--c-black);
}
.showroom-card .sc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--c-charcoal);
  margin-bottom: 6px;
}
.showroom-card .sc-row svg { color: var(--c-wood); flex-shrink: 0; }
.showroom-card .sc-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-cream);
}
.showroom-card .sc-actions a {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--c-cream);
  color: var(--c-wood-dark);
}
.showroom-card .sc-actions a:hover { background: var(--c-wood); color: #fff; }
.showroom-card .sc-actions a.primary { background: var(--c-wood); color: #fff; }
.showroom-card .sc-actions a.primary:hover { background: var(--c-wood-dark); }
@media (max-width: 1100px) { .showroom-card { right: 18px; bottom: 90px; max-width: 280px; padding: 18px 20px; } }
@media (max-width: 900px) { .showroom-card { display: none; } }

/* ---------- Promise / guarantee badges ---------- */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.promise-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26,26,26,.08);
  border-color: rgba(201,168,118,.5);
}
.promise-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fdfbf6, #faf2e4);
  border: 1px solid rgba(201,168,118,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-wood-dark);
}
.promise-card h4 { font-family: var(--font-serif); font-size: 1.1rem; margin: 0 0 8px; }
.promise-card p { font-size: 0.9rem; color: var(--c-muted); margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .promise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .promise-grid { grid-template-columns: 1fr; } }

/* ---------- Big-CTA dual button row ---------- */
.cta-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.cta-dual-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cta-dual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cta-dual-card.dark {
  background: linear-gradient(135deg, var(--c-black) 0%, #2a2018 100%);
  color: rgba(255,255,255,0.92);
  border-color: var(--c-black);
}
.cta-dual-card.dark h3, .cta-dual-card.dark p { color: #fff; }
.cta-dual-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c-wood), var(--c-wood-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.cta-dual-card.dark .cta-dual-icon { background: rgba(255,255,255,0.12); color: var(--c-copper); }
.cta-dual-card h3 { margin: 0; font-size: 1.4rem; }
.cta-dual-card p { color: var(--c-muted); margin: 0; }
.cta-dual-card .btn { align-self: flex-start; margin-top: 4px; }
@media (max-width: 700px) { .cta-dual { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- Style-quiz / inspiration teaser ---------- */
.inspire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.inspire-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none;
  background: var(--c-cream) center/cover no-repeat;
}
.inspire-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.78) 100%);
  z-index: 1;
}
.inspire-tile .it-label {
  position: relative;
  z-index: 2;
  padding: 20px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.inspire-tile:hover .it-label { color: var(--c-copper); }
@media (max-width: 700px) { .inspire-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Hours table widget ---------- */
.hours-table {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours-table .hr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--c-cream);
  font-size: 0.95rem;
}
.hours-table .hr-row:last-child { border-bottom: none; }
.hours-table .hr-day { color: var(--c-charcoal); font-weight: 500; }
.hours-table .hr-time { color: var(--c-black); font-weight: 600; }
.hours-table .hr-row.today {
  background: rgba(201,168,118,.10);
  margin: 0 -10px;
  padding: 10px;
  border-radius: var(--radius);
  border-bottom: 0;
}
.hours-table .hr-row.today .hr-day::after {
  content: "TODAY";
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--c-wood);
  color: #fff;
  border-radius: 999px;
}

/* ---------- Sticky bottom action bar (mobile) ---------- */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--c-border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
}
.mobile-action-bar .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-action-bar .btn {
  width: 100%;
  padding: 14px 12px !important;
  font-size: 0.92rem !important;
  border-radius: 12px !important;
  justify-content: center;
}
@media (max-width: 720px) {
  .mobile-action-bar { display: block; }
  body { padding-bottom: 86px; }
  /* Hide floating call on mobile since we have the bar */
  .floating-call { display: none !important; }
}

/* ---------- Small-business "real photo" gallery hover ---------- */
.gallery-grid a {
  position: relative;
  isolation: isolate;
}
.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 1;
}
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid a .g-meta {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-grid a:hover .g-meta { opacity: 1; transform: translateY(0); }

/* ---------- Section eyebrow with line decoration ---------- */
.eyebrow.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow.eyebrow-line::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--c-copper);
}

/* ---------- Improvements to existing components ---------- */
/* Make the gallery preview cards a bit more cinematic */
.gallery-grid { gap: 16px; }
.gallery-grid img { transition: transform .5s ease, filter .5s ease; }
.gallery-grid a:hover img { filter: saturate(1.06) brightness(1.02); }

/* Cleaner stats — more spaced */
.stats { gap: 36px; }
@media (max-width: 700px) { .stats { gap: 22px; } }

/* Polish the location chip area */
.locations-strip { gap: 8px; }

/* ---------- Hero CTA cluster microcopy ---------- */
.hero-cta-microcopy {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
}
.hero-cta-microcopy svg { color: var(--c-copper); flex-shrink: 0; }

/* ---------- Footer modernization (extra polish) ---------- */
.site-footer .footer-brand p { font-size: 0.96rem; line-height: 1.6; }
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 500;
}
.footer-trust-badge svg { color: var(--c-copper); flex-shrink: 0; }
.site-footer .footer-bottom { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.site-footer .footer-bottom a { color: rgba(255,255,255,0.7); }
.site-footer .footer-bottom a:hover { color: var(--c-copper); }

/* ---------- Section number badge (premium feel) ---------- */
.section-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-copper-dark);
  margin-bottom: 14px;
}
.section-num::before {
  content: counter(sec-num, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--c-wood);
}
body { counter-reset: sec-num; }
section[data-counter] { counter-increment: sec-num; }

/* ---------- Improved focus rings & A11y polish ---------- */
.btn:focus-visible { outline: 3px solid var(--c-copper); outline-offset: 3px; }
.location-chip:focus-visible { outline: 2px solid var(--c-copper); outline-offset: 3px; }

/* ---------- Smooth section transitions ---------- */
section { scroll-margin-top: 110px; }

/* ---------- Light-mode color variables (extend existing) ---------- */
:root {
  --c-text: var(--c-black);
  --c-text-muted: var(--c-muted);
  --c-surface: #fff;
}

/* ---------- Hidden helper ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--c-black);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }

