/* ============================================================
   LONE STAR CUSTOM TEES — styles.css
   Western Premium Brand Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,700;1,700&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; max-width: 100%; }

:root {
  --wood-darkest:    #0a0300;
  --wood-dark:       #1e0a00;
  --wood-mid:        #3d1800;
  --wood-warm:       #5c2800;
  --wood-light:      #7a3a0e;
  --parchment-dark:  #8A7060;
  --parchment:       #C5B49A;
  --parchment-light: #EAE3D5;
  --parchment-cream: #F4EFE6;
  --gold:            #C5B49A;
  --gold-light:      #EAE3D5;
  --gold-dark:       #3A2A1A;
  --gold-text:       #F4EFE6;
  --gold-btn:        #C5B49A;
  --cream:           #F4EFE6;
  --text-light:      #F4EFE6;
  --text-dark:       #1e0a00;
  --text-parchment:  #2e1500;
  --blue-accent:     #4E7CA1;
  --blue-light:      #8ABED6;
  --blue-dark:       #2B4F72;
  --red-accent:      #8b1a1a;
  --shadow-heavy:    0 8px 32px rgba(0,0,0,0.8);
  --shadow-med:      0 4px 16px rgba(0,0,0,0.5);
  --shadow-light:    0 2px 8px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: 'STIX Two Text', serif;
  font-weight: 700;
  color: var(--text-light);
  background-color: #2a1000;
  background-image: url('images/wood-bg.jpg');
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'STIX Two Text', serif;
  line-height: 1.15;
}
h4, h5, .label-text, .nav-links a, .section-tag {
  font-family: 'STIX Two Text', serif;
}

/* === UTILITY === */
.gold-text    { color: var(--gold-text); }
.cream-text   { color: var(--cream); }
.center       { text-align: center; }
.star-sep     { color: var(--parchment); font-size: 1.1rem; margin: 0 8px; }

.section-tag {
  display: inline-block;
  font-family: 'STIX Two Text', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: linear-gradient(135deg, rgba(78,124,161,0.15), rgba(78,124,161,0.05));
  border: 1px solid rgba(78,124,161,0.45);
  padding: 4px 16px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 20px;
  color: var(--parchment);
  font-size: 0.9rem;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--parchment));
}
.ornament::after {
  background: linear-gradient(to left, transparent, var(--parchment));
}

/* === PARCHMENT TEXTURE === */
.parchment-bg {
  background-color: #EAE3D5;
  background-image: url('images/bounty-bg.jpg');
  background-repeat: repeat;
  background-size: auto;
  color: var(--text-parchment);
  /* Inset shadows make the paper feel like it's sitting ON the wood, not floating */
  box-shadow:
    inset 0 12px 40px rgba(0,0,0,0.35),
    inset 0 -12px 40px rgba(0,0,0,0.30);
  position: relative;
}
/* Torn-edge feel at top and bottom of each parchment section */
.parchment-bg::before,
.parchment-bg::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right,
    var(--gold-dark), var(--parchment), var(--gold-dark),
    var(--parchment), var(--gold-dark)
  );
  opacity: 0.6;
}
.parchment-bg::before { top: 0; }
.parchment-bg::after  { bottom: 0; }

.dark-section {
  background-color: #2a1000;
  background-image:
    linear-gradient(rgba(8,2,0,0.55), rgba(8,2,0,0.55)),
    url('images/wood-bg.jpg');
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
}


/* === HELP SEPARATOR === */
.help-separator {
  height: 640px;
  background-image: url('images/background/help.jpg');
  background-size: cover;
  background-position: center bottom;
}

/* === EXAMPLES STRIP === */
/* ============================================================
   VIDEO SHOWCASE
   ============================================================ */
.video-showcase {
  padding: 60px 24px;
  text-align: center;
}

.video-showcase-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.video-showcase-player {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  border: 2px solid var(--gold-dark);
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
}

.video-showcase-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.examples-strip-section {
  background: #1a0a00;
  padding: 60px 20px;
}

.examples-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.example-thumb {
  border-radius: 6px;
  overflow: hidden;
  border: 3px solid var(--gold-dark);
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
  position: relative;
}

.example-thumb::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 35%;
  height: 35%;
  background: url('images/logo.png') no-repeat center / contain;
  opacity: 0.55;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.7));
}

.example-thumb img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.example-thumb--video video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.examples-feature-video {
  max-width: 900px;
  margin: 0 auto 24px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--gold-dark);
  box-shadow: 0 10px 48px rgba(0,0,0,0.7);
  position: relative;
}

.examples-feature-video video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.video-mute-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,0.65);
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.video-mute-btn:hover {
  background: rgba(0,0,0,0.85);
}

.example-thumb:hover img {
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .examples-strip { grid-template-columns: 1fr; }
  .example-thumb img { height: 260px; }
}

/* === PROMO POSTER === */
.promo-poster-section {
  background: #1a0a00;
  padding: 60px 20px;
  text-align: center;
}

.promo-poster-inner {
  max-width: 480px;
  margin: 0 auto;
}

.promo-poster-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 4px solid var(--gold-dark);
  box-shadow: 0 8px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}

/* === ABOUT SECTION === */
.about-cliffs-section {
  background-color: #1a0800;
  background-image:
    linear-gradient(rgba(6,1,0,0.62), rgba(6,1,0,0.62)),
    url('images/wood-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
}

/* === ROPE DIVIDER === */
.rope-divider {
  width: 100%;
  height: 16px;
  background-image: repeating-linear-gradient(
    -45deg,
    #C5B49A 0px, #C5B49A 5px,
    #3A2A1A 5px, #3A2A1A 10px,
    #EAE3D5 10px, #EAE3D5 15px,
    #5A4030 15px, #5A4030 20px
  );
  opacity: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background-color: #0a0300;
  background-image:
    linear-gradient(rgba(2,0,0,0.82), rgba(2,0,0,0.82)),
    url('images/wood-bg.jpg');
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
  border-bottom: 3px solid var(--gold-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

/* Logo Images */
.nav-logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
  flex-shrink: 0;
}

.hero-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
}

.hero-logo-row .hero-side-btn {
  flex: 1 1 0;
  min-width: 0;
  max-width: 160px;
}

.hero-logo-row .hero-side-btn {
  display: inline-flex;
}

.hero-logo-img {
  width: 225px;
  height: 225px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}

.footer-logo-img {
  width: 142px;
  height: 142px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Badge Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-text .line2 {
  font-family: 'STIX Two Text', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--cream);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.nav-logo-text .line3 {
  font-family: 'STIX Two Text', serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--parchment);
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-family: 'STIX Two Text', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--parchment);
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--parchment-light);
  background: rgba(197,180,154,0.12);
}

.nav-cta-link a {
  background: linear-gradient(135deg, #C5B49A, #5A4030);
  color: var(--wood-darkest) !important;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(58,42,26,0.3);
}
.nav-cta-link a:hover {
  background: linear-gradient(135deg, #EAE3D5, #C5B49A) !important;
  color: var(--wood-darkest) !important;
}

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

.nav-social a {
  color: var(--parchment);
  font-size: 1.1rem;
  transition: color 0.3s;
  text-decoration: none;
}
.nav-social a:hover { color: var(--parchment-light); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold-dark);
  border-radius: 3px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--parchment);
  font-size: 1.2rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  display: grid;
  grid-template-rows: 220px auto;
  grid-template-columns: 1fr;
  text-align: center;
  background-color: #5a8fba;
}

.hero-strip {
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  height: 220px;
  background: url('images/background/help.jpg') no-repeat top center / cover;
  z-index: 0;
}

.hero-bg {
  grid-row: 2;
  grid-column: 1;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}

.hero-inner {
  grid-row: 1 / 3;
  grid-column: 1;
  align-self: start;
  justify-self: center;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  padding: 6px 24px 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.95);
}

.hero-text-block {
  background: rgba(5, 15, 30, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 14px 22px 18px;
  margin: 4px auto 0;
  display: inline-block;
}

/* hero-badge-img replaced by hero-logo-img (actual logo image) */

.hero-location {
  font-family: 'STIX Two Text', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c49028;
  text-shadow:
    0 1px 2px rgba(0,0,0,1),
    0 2px 6px rgba(0,0,0,1),
    0 4px 16px rgba(0,0,0,1),
    0 8px 32px rgba(0,0,0,0.9),
    0 0 40px rgba(196,144,40,0.6);
  margin-bottom: 4px;
}

.star-sep {
  color: #c49028;
  text-shadow:
    0 1px 2px rgba(0,0,0,1),
    0 2px 6px rgba(0,0,0,1),
    0 4px 16px rgba(0,0,0,1),
    0 8px 32px rgba(0,0,0,0.9),
    0 0 40px rgba(196,144,40,0.6);
  letter-spacing: 0.3em;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--cream);
  text-shadow:
    0 1px 2px rgba(0,0,0,1),
    0 2px 6px rgba(0,0,0,1),
    0 4px 16px rgba(0,0,0,1),
    0 8px 32px rgba(0,0,0,0.9);
  margin-bottom: 4px;
  line-height: 1.1;
}

.hero h1 .gold-line {
  display: block;
  color: var(--gold-text);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 30px rgba(244,239,230,0.2);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--parchment-light);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.hero-sub-gold {
  color: #c49028;
  font-weight: 800;
  font-style: italic;
  text-shadow:
    0 1px 2px rgba(0,0,0,1),
    0 2px 6px rgba(0,0,0,1),
    0 4px 16px rgba(0,0,0,1),
    0 8px 32px rgba(0,0,0,0.9),
    0 0 40px rgba(196,144,40,0.6);
}

.hero-tagline {
  font-family: 'STIX Two Text', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--parchment-light);
  margin-bottom: 12px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'STIX Two Text', serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.btn-gold {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.35);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.btn-gold:hover {
  background: rgba(255,255,255,0.28);
  box-shadow: 0 6px 28px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.35);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.28);
  color: #fff;
  box-shadow: 0 6px 28px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.45);
  transform: translateY(-2px);
}

.btn-dark {
  background: linear-gradient(135deg, #3d1800, #1e0a00);
  color: var(--gold-text);
  border: 2px solid var(--gold-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.btn-dark:hover {
  background: linear-gradient(135deg, #5c2800, #3d1800);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

.btn-phone {
  display: block;
  font-family: 'STIX Two Text', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin-top: 2px;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  background-color: #1e0800;
  background-image:
    linear-gradient(rgba(5,1,0,0.65), rgba(5,1,0,0.65)),
    url('images/wood-bg.jpg');
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
  border-top: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  padding: 28px 24px;
}

.features-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #EAE3D5, #C5B49A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--wood-dark);
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(58,42,26,0.35);
}

.feature-text strong {
  display: block;
  font-family: 'STIX Two Text', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}

.feature-text span {
  font-size: 0.78rem;
  color: var(--parchment);
  line-height: 1.4;
}

/* ============================================================
   SECTION LAYOUTS
   ============================================================ */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 4px;
}

.section-header h2 .gold-line {
  color: var(--gold-text);
}

.section-header p {
  font-size: 1rem;
  color: var(--parchment);
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* Parchment section headers */
.parchment-bg .section-header h2 { color: var(--text-dark); }
.parchment-bg .section-header p  { color: #3a1e00; }
.parchment-bg .ornament           { color: var(--gold-dark); }
.parchment-bg .ornament::before   { background: linear-gradient(to right, transparent, var(--gold-dark)); }
.parchment-bg .ornament::after    { background: linear-gradient(to left, transparent, var(--gold-dark)); }

/* ============================================================
   HERO CHECKLIST
   ============================================================ */
.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 10px;
  text-align: left;
  display: inline-block;
}

.hero-checklist li {
  font-size: 0.96rem;
  color: #FFFFFF;
  font-weight: 800;
  padding: 1px 0;
  letter-spacing: 0.01em;
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-shadow:
    0 1px 3px rgba(0,0,0,1),
    0 2px 8px rgba(0,0,0,0.95),
    0 4px 16px rgba(0,0,0,0.85);
}

.hero-checklist li::before {
  content: "✔";
  color: #c49028 !important;
  font-size: 1rem;
  flex-shrink: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,1), 0 2px 10px rgba(0,0,0,0.9);
}

/* ============================================================
   SERVICES INTRO TEXT
   ============================================================ */
.services-intro-text {
  text-align: center;
  font-size: 1rem;
  color: var(--parchment-light);
  font-weight: 600;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  background-color: #2a1000;
  background-image:
    repeating-linear-gradient(
      89deg,
      transparent 0px, transparent 10px,
      rgba(197,180,154,0.04) 10px, rgba(197,180,154,0.04) 11px
    ),
    linear-gradient(170deg, #3d1800 0%, #2a1000 60%, #1a0800 100%);
  border: 2px solid var(--gold-dark);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.8), 0 0 0 1px var(--parchment);
}

.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, #3d1800, #1a0800);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--gold-dark);
}

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 35%;
  height: 35%;
  background: url('images/logo.png') no-repeat center / contain;
  opacity: 0.55;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.7));
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-img img[src*="bulk"] {
  object-fit: cover;
  object-position: center 30%;
}

.service-card-img-placeholder {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.6;
}

.service-card-body {
  padding: 24px;
}

.service-card h3 {
  font-family: 'STIX Two Text', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--parchment-light);
  line-height: 1.4;
}

.check-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #EAE3D5, #C5B49A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--wood-dark);
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

/* Full-width service block */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(58,42,26,0.25);
}

.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-img {
  border-radius: 4px;
  overflow: hidden;
  border: 3px solid var(--gold-dark);
  box-shadow: var(--shadow-heavy);
  height: 320px;
  background: linear-gradient(135deg, #3d1800, #1a0800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-block-img-placeholder {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.5;
}

.service-block-content h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 8px;
}

.parchment-bg .service-block-content h2 { color: var(--text-dark); }
.parchment-bg .service-block-content p  { color: #3a1e00; }

.service-block-content p {
  color: var(--parchment);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--parchment), var(--gold-dark));
  border-radius: 2px;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #EAE3D5 0%, #C5B49A 50%, #3A2A1A 100%);
  border-radius: 50%;
  border: 3px solid rgba(244,239,230,0.5);
  box-shadow: 0 4px 16px rgba(58,42,26,0.45), 0 0 0 4px var(--wood-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'STIX Two Text', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--wood-darkest);
  position: relative;
  z-index: 1;
}

.parchment-bg .step-number {
  box-shadow: 0 4px 16px rgba(58,42,26,0.35), 0 0 0 4px var(--parchment-light);
}

.step-card h4 {
  font-family: 'STIX Two Text', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 8px;
}

.parchment-bg .step-card h4 { color: var(--text-dark); }

.step-card p {
  font-size: 0.88rem;
  color: var(--parchment);
  line-height: 1.5;
}

.parchment-bg .step-card p { color: #3a1e00; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-grid--no-img {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

.about-img {
  border-radius: 4px;
  border: 4px solid var(--gold-dark);
  box-shadow: var(--shadow-heavy);
  background: linear-gradient(135deg, #3d1800, #1a0800);
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-img-placeholder {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.5;
  text-align: center;
}

.about-content .section-tag { margin-bottom: 12px; }

.meredith-note {
  margin: 28px 0 0;
  padding: 26px 28px;
  background: linear-gradient(135deg, #2a0f00, #1a0800);
  border: 1px solid var(--gold-dark);
  border-left: 5px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6), inset 0 0 40px rgba(197,180,154,0.04);
}
.meredith-note__label {
  margin: 0 0 4px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}
.meredith-note__title {
  margin: 0 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  font-weight: 600;
}
.meredith-note blockquote {
  margin: 0 0 16px;
  padding: 0;
  border: none;
}
.meredith-note blockquote p {
  margin: 0;
  font-style: italic;
  color: var(--parchment-light);
  font-size: 0.97rem;
  line-height: 1.8;
}
.meredith-note cite {
  display: block;
  font-size: 0.88rem;
  color: var(--cream);
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  border-top: 1px solid rgba(197,180,154,0.2);
  padding-top: 12px;
  margin-top: 4px;
}
.meredith-note cite span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.about-content h2 span { color: var(--gold-text); }

.about-content p {
  color: var(--parchment);
  line-height: 1.75;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  text-align: center;
  padding: 20px 12px;
  background: rgba(197,180,154,0.1);
  border: 1px solid rgba(58,42,26,0.25);
  border-radius: 3px;
}

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.value-item h5 {
  font-family: 'STIX Two Text', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.78rem;
  color: var(--parchment);
  line-height: 1.4;
  margin: 0;
}

/* ============================================================
   WHY DTF SECTION
   ============================================================ */
.dtf-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 40px auto 0;
}

.compare-col {
  padding: 28px;
  border-radius: 4px;
}

.compare-col.dtf {
  background: linear-gradient(135deg, #2a1000, #3d1800);
  border: 2px solid var(--parchment);
  box-shadow: 0 0 20px rgba(197,180,154,0.2);
}

.compare-col.traditional {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

.compare-col h4 {
  font-family: 'STIX Two Text', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.compare-col.dtf h4 { color: var(--gold-text); }
.compare-col.traditional h4 { color: var(--parchment); }

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-col ul li {
  font-size: 0.9rem;
  line-height: 1.4;
  padding-left: 22px;
  position: relative;
}

.compare-col.dtf ul li { color: var(--parchment-light); }
.compare-col.traditional ul li { color: var(--parchment); opacity: 0.7; }

.compare-col.dtf ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-text);
  font-weight: 900;
}

.compare-col.traditional ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c44;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  text-align: center;
  padding: 72px 24px;
  background-color: #0e1a26;
  background-image:
    linear-gradient(
      to bottom,
      rgba(14,26,38,0.70) 0%,
      rgba(14,26,38,0.55) 50%,
      rgba(14,26,38,0.75) 100%
    ),
    url('images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 3px solid var(--gold-dark);
  border-bottom: 3px solid var(--gold-dark);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  margin-bottom: 12px;
}

.cta-banner h2 .gold-line { color: var(--gold-text); display: block; }

.cta-banner p {
  font-size: 1rem;
  color: var(--parchment);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-contact-info {
  font-family: 'STIX Two Text', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--parchment);
}

.cta-contact-info a {
  color: var(--gold-text);
  text-decoration: none;
}
.cta-contact-info a:hover { text-decoration: underline; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding: 64px 24px;
  text-align: center;
  background-color: #1a2a3a;
  background-image:
    linear-gradient(
      to bottom,
      rgba(5,15,30,0.55) 0%,
      rgba(5,15,30,0.38) 50%,
      rgba(5,15,30,0.62) 100%
    ),
    url('images/background/help.jpg');
  background-size: 150%;
  background-position: top center;
  background-repeat: no-repeat;
  border-bottom: 3px solid var(--gold-dark);
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--cream);
  text-shadow:
    0 1px 2px rgba(0,0,0,1),
    0 2px 6px rgba(0,0,0,1),
    0 4px 16px rgba(0,0,0,1),
    0 8px 32px rgba(0,0,0,0.9);
  margin-bottom: 8px;
}

.page-hero h1 .gold-line { color: var(--gold-text); display: block; }

.page-hero p {
  font-size: 1rem;
  color: #fff;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.page-hero-location {
  color: #fff;
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  font-family: 'STIX Two Text', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.quote-form {
  background-color: #2a1000;
  background-image: linear-gradient(160deg, #3d1800, #1a0800);
  border: 2px solid var(--gold-dark);
  border-radius: 4px;
  padding: 36px;
  box-shadow: var(--shadow-heavy);
}

.quote-form h3 {
  font-family: 'STIX Two Text', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 4px;
}

.quote-form .form-sub {
  font-size: 0.88rem;
  color: var(--parchment);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: 'STIX Two Text', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(58,42,26,0.4);
  border-radius: 2px;
  color: var(--cream);
  font-family: 'STIX Two Text', serif;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(197,180,154,0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-accent);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 2px rgba(78,124,161,0.18);
}

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

.form-group select option {
  background: var(--wood-dark);
  color: var(--cream);
}

.form-note {
  font-size: 0.78rem;
  color: var(--parchment-dark);
  margin-top: 12px;
  text-align: center;
}

/* Contact Info Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-box {
  background-color: #2a1000;
  background-image: linear-gradient(160deg, #3d1800, #1a0800);
  border: 2px solid var(--gold-dark);
  border-radius: 4px;
  padding: 28px;
  box-shadow: var(--shadow-med);
}

.contact-box h4 {
  font-family: 'STIX Two Text', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(58,42,26,0.3);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #C5B49A, #3A2A1A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--wood-dark);
}

.contact-item-text strong {
  display: block;
  font-family: 'STIX Two Text', serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment-dark);
  margin-bottom: 2px;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--cream);
  text-decoration: none;
}

.contact-item-text a:hover { color: var(--gold-text); }

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(58,42,26,0.35);
  border-radius: 2px;
  color: var(--parchment);
  text-decoration: none;
  font-family: 'STIX Two Text', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.social-link:hover {
  background: rgba(197,180,154,0.15);
  color: var(--gold-text);
  border-color: var(--parchment);
}

/* ============================================================
   EXAMPLES GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid var(--gold-dark);
  box-shadow: var(--shadow-med);
  background: linear-gradient(135deg, #3d1800, #1a0800);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.8);
  border-color: var(--parchment);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  text-align: center;
}

.gallery-placeholder span {
  display: block;
  font-family: 'STIX Two Text', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment-dark);
  margin-top: 8px;
  opacity: 0.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #080200;
  background-image:
    linear-gradient(rgba(2,0,0,0.82), rgba(2,0,0,0.82)),
    url('images/wood-bg.jpg');
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
  border-top: 3px solid var(--gold-dark);
  padding: 56px 24px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(58,42,26,0.25);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

/* .footer-badge replaced by .footer-logo-img (actual logo image) */

.footer-brand-name small {
  display: block;
  font-family: 'STIX Two Text', serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--parchment-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(197,180,154,0.1);
  border: 1px solid rgba(58,42,26,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(197,180,154,0.2);
  color: var(--gold-text);
  border-color: var(--parchment);
}

.footer-col h4 {
  font-family: 'STIX Two Text', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(58,42,26,0.25);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.87rem;
  color: var(--parchment-dark);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.87rem;
  color: var(--parchment-dark);
}

.footer-contact-item a {
  color: var(--parchment-dark);
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--gold-text); }

.footer-contact-icon {
  color: var(--gold-dark);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(197,180,154,0.5);
}

.footer-copy a {
  color: rgba(197,180,154,0.65);
  text-decoration: none;
}

.footer-tagline {
  font-family: 'STIX Two Text', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Desktop: 1025px+ ── */
@media (min-width: 1025px) {
  .hero-bg             { content: url('images/background/desktop-help.jpg'); }
  .hero-strip          { background-image: url('images/background/desktop-help.jpg'); }
}

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
  .footer-top               { grid-template-columns: 1fr 1fr; }
  .services-grid            { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .service-block            { gap: 32px; }
  .about-grid               { grid-template-columns: 1.3fr 1fr; gap: 32px; }
  .dtf-compare              { max-width: 100%; }
  .gallery-grid-4           { grid-template-columns: repeat(3, 1fr); }
}

/* ── Mobile: 768px ── */
@media (max-width: 768px) {

  /* Nav */
  .nav-social   { display: none; }
  .nav-toggle   { display: block; }
  .nav-inner    { padding: 10px 16px; min-height: 58px; position: relative; }
  .nav-logo-img { width: 88px; height: 88px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(4,1,0,0.97);
    border-bottom: 2px solid var(--gold-dark);
    padding: 8px 0 16px;
    z-index: 200;
    gap: 0;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a  { padding: 12px 24px; font-size: 1rem; border-radius: 0; }
  .nav-cta-link a {
    margin: 8px 16px 0;
    text-align: center;
    border-radius: 3px;
  }

  /* Sections */
  .section      { padding: 48px 16px; }
  .cta-banner   { padding: 48px 16px; }
  .page-hero    { padding: 48px 16px; }

  /* Hero — mobile just adjusts strip height */
  .hero-strip          { height: 275px; }
  .hero                { grid-template-rows: 275px auto; }
  .hero-bg             { width: 100%; height: auto; object-fit: unset; }
  .hero-inner          { padding: 6px 8px 0; width: 100%; box-sizing: border-box; }
  .hero h1             { font-size: 1.9rem; margin-bottom: 2px; }
  .hero-location       { font-size: 0.75rem; margin-bottom: 2px; }
  .hero-text-block     { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; position: relative; padding: 8px 14px 10px; }
  .hero-text-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: rgba(5, 15, 30, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 0;
  }
  .hero-text-block > * { position: relative; z-index: 1; }
  .hero-checklist { display: block; }
  .hero-checklist li { display: flex; align-items: baseline; gap: 8px; position: relative; z-index: 2; }
  .hero-checklist li::before { content: "✔"; color: #c49028 !important; font-size: 1rem; flex-shrink: 0; text-shadow: 0 1px 4px rgba(0,0,0,1), 0 2px 10px rgba(0,0,0,0.9); }
  .hero-logo-row .hero-side-btn { padding: 8px 8px; font-size: 0.68rem; max-width: 130px; text-align: center; }
  .hero-logo-row .hero-side-btn .btn-phone { font-size: 0.58rem; }
  .hero-logo-img       { width: 100px; height: 100px; flex-shrink: 0; }

  /* Features strip */
  .features-strip-inner { grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 4px; }

  /* Services */
  .services-grid        { grid-template-columns: 1fr; }
  .service-block,
  .service-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .service-block-img    { height: 220px; }
  .section-header h2    { font-size: 1.8rem; }

  /* Steps */
  .steps-grid           { grid-template-columns: 1fr 1fr; gap: 20px; }
  .steps-grid::before   { display: none; }
  .step-number          { width: 56px; height: 56px; font-size: 1.5rem; }

  /* About */
  .about-grid           { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .value-item           { padding: 14px 8px; }

  /* Photo separator */
  .photo-separator          { height: 260px; background-attachment: scroll; }
  .photo-separator-quote    { font-size: 1.1rem; }

  /* Contact */
  .contact-grid         { grid-template-columns: 1fr; }
  .quote-form           { padding: 24px 16px; }

  /* Gallery */
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-4       { grid-template-columns: repeat(2, 1fr); }

  /* DTF compare */
  .dtf-compare          { grid-template-columns: 1fr; }

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

  /* CTA */
  .cta-btns             { flex-direction: column; align-items: center; gap: 12px; }

  /* Footer */
  .footer-top           { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom        { flex-direction: column; text-align: center; gap: 8px; }
  .site-footer          { padding: 40px 16px 20px; }

  /* Fix background-attachment: fixed on iOS (causes blank backgrounds) */
  body,
  .hero, .page-hero, .cta-banner,
  .dark-section, .features-strip,
  .site-nav, .site-footer,
  .about-cliffs-section,
  .photo-separator {
    background-attachment: scroll;
  }
}

/* ── Small mobile: 480px ── */
@media (max-width: 480px) {
  .features-strip-inner { grid-template-columns: 1fr; }
  .steps-grid           { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: 1fr 1fr; }
  .gallery-grid         { grid-template-columns: 1fr; }
  .gallery-grid-4       { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero h1              { font-size: 1.6rem; }
  .hero-logo-img        { width: 110px; height: 110px; }
  .photo-separator      { height: 220px; }
  .photo-separator-quote { font-size: 1rem; }
  .section-header h2    { font-size: 1.5rem; }
  .page-hero h1         { font-size: 1.7rem; }
  .btn                  { width: 100%; justify-content: center; }
  .nav-logo-img         { width: 82px; height: 82px; }
  .hero-btns, .cta-btns { width: 100%; }
  .quote-form           { padding: 20px 12px; }
  .footer-social        { justify-content: center; }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, #100400, #2a1200, #100400);
  border-bottom: 2px solid #9b7a1a;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 22px;
  position: relative;
  z-index: 200;
}

.announcement-bar .ann-item {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--parchment-light);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-bar .ann-item a {
  color: var(--parchment-light);
  text-decoration: none;
}

.announcement-bar .ann-item a:hover {
  color: var(--gold-text);
  text-decoration: underline;
}

.announcement-bar .ann-phone {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 800;
}

.announcement-bar .ann-phone a {
  color: #fff;
}

.announcement-bar .ann-free {
  color: #e8c547;
}

.announcement-bar .ann-sep {
  color: #9b7a1a;
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .announcement-bar .ann-sep { display: none; }
  .announcement-bar { gap: 3px 14px; padding: 8px 12px; }
  .announcement-bar .ann-item { font-size: 0.72rem; }
  .announcement-bar .ann-phone { font-size: 0.8rem; }
}

@media (max-width: 560px) {
  .announcement-bar {
    flex-direction: column;
    gap: 2px;
    padding: 7px 10px;
  }
  .announcement-bar .ann-item { font-size: 0.7rem; }
}

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.floating-call-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 8999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8c547, #9b7a1a);
  color: #1a0800;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(201,162,39,0.55), 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-call-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(201,162,39,0.75), 0 4px 14px rgba(0,0,0,0.6);
  color: #1a0800;
}

.floating-call-btn .fcb-icon {
  font-size: 1.1rem;
  animation: phoneRing 2.8s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 60%, 100% { transform: rotate(0deg); }
  65%  { transform: rotate(-18deg); }
  70%  { transform: rotate(18deg); }
  75%  { transform: rotate(-12deg); }
  80%  { transform: rotate(12deg); }
  85%  { transform: rotate(-6deg); }
  90%  { transform: rotate(0deg); }
}

@media (max-width: 640px) {
  .floating-call-btn .fcb-label { display: none; }
  .floating-call-btn { padding: 17px; border-radius: 50%; }
}

/* ============================================================
   FREE MOCKUP STRIP
   ============================================================ */
.offer-strip {
  background: linear-gradient(180deg, #1a0800 0%, #2a1200 100%);
  border-top: 1px solid rgba(197,180,154,0.15);
  border-bottom: 1px solid rgba(197,180,154,0.15);
  padding: 22px 24px;
}

.offer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

.offer-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.offer-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.offer-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-text);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.offer-text span {
  font-size: 0.72rem;
  color: var(--parchment-dark);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.offer-divider {
  width: 1px;
  height: 40px;
  background: rgba(197,180,154,0.2);
  flex-shrink: 0;
}

.offer-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 28px;
  padding: 11px 24px;
  background: linear-gradient(135deg, #c5a012, #9b7a1a);
  color: #0a0300;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.offer-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #0a0300;
}

.offer-cta i { font-size: 0.85rem; }

@media (max-width: 860px) {
  .offer-strip-inner { gap: 12px 0; }
  .offer-item { padding: 0 18px; min-width: 150px; }
  .offer-divider--hide-sm { display: none; }
  .offer-cta { margin-left: 0; margin-top: 4px; width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .offer-strip { padding: 18px 16px; }
  .offer-strip-inner { flex-direction: column; gap: 14px; }
  .offer-item { padding: 0; width: 100%; justify-content: flex-start; max-width: 280px; }
  .offer-divider { display: none; }
  .offer-cta { width: 100%; max-width: 280px; justify-content: center; }
}

