/* ==========================================================================
   Look at Me Now — shared page styles (document-mode port of live config 47)
   Design DNA from the live site: white base, ink #171A20 bands, blue #3E6AE1
   labels/links/chips, amber #FFAC00 conversion CTAs (uppercase, letterspaced,
   4px radius), system sans, semibold headings, 12px white cards.
   ========================================================================== */

.lamn {
  --lamn-amber: #FFAC00;
  --lamn-amber-hover: #E89C00;
  --lamn-blue: #3E6AE1;
  --lamn-blue-soft: #EEF2FD;
  --lamn-blue-border: #D6E0F8;
  --lamn-ink: #171A20;
  --lamn-ink-2: #393C41;
  --lamn-bg: #FFFFFF;
  --lamn-bg-alt: #F5F5F5;
  --lamn-text: #171A20;
  --lamn-text-2: #4B5563;
  --lamn-muted: #5C5E62;
  --lamn-border: #E5E7EB;
  --lamn-radius: 12px;
  --lamn-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --lamn-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --lamn-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--lamn-bg);
  color: var(--lamn-text);
  font-family: var(--lamn-sans);
  line-height: 1.5;
}
.lamn * { box-sizing: border-box; }
.lamn img { max-width: 100%; }

/* Container matches the live site exactly: content caps at 1400px inside 48px
   gutters (border-box, so the cap is 1400 + 96 = 1496), dropping to 16px gutters
   under 640px. Was 1280/32, which rendered every document page ~184px narrower
   than the original at desktop — the "full-width looks different" report. */
.lamn-container { max-width: 1496px; margin: 0 auto; padding: 0 48px; }
/* 80px is the live site's section rhythm (measured: section padding 80px 48px).
   Was 96px, which made every band read taller than the original. */
.lamn-section { padding: 80px 0; }
.lamn-section-alt { background: var(--lamn-bg-alt); }

/* Labels + headings (blue letterspaced eyebrow, semibold ink title) */
.lamn-label {
  font-size: 13px; color: var(--lamn-blue); font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; margin: 0 0 14px;
}
.lamn-title {
  font-size: clamp(30px, 4.5vw, 44px); line-height: 1.12; font-weight: 600;
  letter-spacing: -0.015em; margin: 0 0 16px; color: var(--lamn-text);
}
.lamn-subtitle {
  font-size: 17px; color: var(--lamn-muted); max-width: 720px;
  margin: 0 0 48px; line-height: 1.6;
}
.lamn-center { text-align: center; }
.lamn-center .lamn-subtitle { margin-left: auto; margin-right: auto; }

/* CTAs — amber conversion buttons exactly like live (uppercase, 1.5px tracking, 4px radius) */
.lamn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--lamn-amber); color: var(--lamn-ink);
  font-size: 15px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 18px 32px; border-radius: 4px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.lamn-cta:hover { background: var(--lamn-amber-hover); }
.lamn-cta-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(255, 255, 255, 0.08); color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 15px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 18px 32px; border-radius: 4px; text-decoration: none; transition: background 0.2s;
}
.lamn-cta-ghost:hover { background: rgba(255, 255, 255, 0.18); }
.lamn-cta-book {
  display: flex; align-items: center; justify-content: center; width: 100%;
  min-height: 54px; background: var(--lamn-ink); color: #FFFFFF;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 6px; text-decoration: none; transition: background 0.2s;
}
.lamn-cta-book:hover { background: #000000; }
.lamn-link { color: var(--lamn-blue); font-weight: 500; text-decoration: none; font-size: 16px; }
.lamn-link:hover { text-decoration: underline; }

/* White cards */
.lamn-card {
  background: #FFFFFF; border: 1px solid var(--lamn-border);
  border-radius: var(--lamn-radius); box-shadow: var(--lamn-shadow-sm);
  overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s;
}
.lamn-card:hover { transform: translateY(-3px); box-shadow: var(--lamn-shadow); }

/* Blue area chips (live "Areas We Serve") */
.lamn-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.lamn-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--lamn-blue-soft); border: 1px solid var(--lamn-blue-border);
  color: var(--lamn-blue); padding: 9px 18px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
}
.lamn-chip svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Blue-tile info rows (address / phone / hours on live map sections) */
.lamn-info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.lamn-info-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: var(--lamn-blue-soft); display: flex; align-items: center; justify-content: center;
}
.lamn-info-icon svg { width: 20px; height: 20px; color: var(--lamn-blue); }
.lamn-info-row h4 { font-size: 16px; font-weight: 600; margin: 0 0 2px; color: var(--lamn-text); }
.lamn-info-row p { font-size: 15px; color: var(--lamn-muted); margin: 0; }

/* Ink band (live dark strips: services ticker, comparison, footer) */
.lamn-band { background: var(--lamn-ink); color: #FFFFFF; }
.lamn-band .lamn-title { color: #FFFFFF; }
.lamn-band .lamn-subtitle { color: rgba(255, 255, 255, 0.65); }

/* ==========================================================================
   Service showcase band — the live site's interactive ink strip.
   On the original this is ONE band: a large image that cross-fades as you pick
   a service from the panels underneath. The rendition had split it into a
   text-only strip (dead panels: no image, nothing to click) plus a second
   comparison band, which is what read as "extra sections" and "dead panels".
   Shared by home + services so both behave identically.
   Live geometry: band padding 56px 48px, stage 1233x550, 5-up grid, 24px gap.
   ========================================================================== */
.lamn-show { padding: 56px 0; }
.lamn-show-frame { position: relative; margin-bottom: 30px; }
.lamn-show-stage {
  position: relative; width: 100%; aspect-ratio: 1233 / 550;
  overflow: hidden; background: #0F1114;
}
.lamn-show-stage img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.45s ease;
}
.lamn-show-stage img.is-active { opacity: 1; }
.lamn-show-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 24px; padding: 80px 28px 26px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 38%, rgba(0, 0, 0, 0.88) 100%);
}
.lamn-show-cap-name { font-size: clamp(20px, 2.4vw, 27px); font-weight: 600; color: #FFFFFF; }
.lamn-show-cap-sub { display: block; font-size: 13.5px; font-weight: 500; color: rgba(255, 255, 255, 0.7); margin-top: 4px; }
.lamn-show-cap .lamn-cta { padding: 14px 26px; font-size: 13px; }

.lamn-show-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.lamn-show-panel {
  display: flex; flex-direction: column; text-align: left; min-width: 0;
  background: none; border: 0; border-top: 2px solid rgba(255, 255, 255, 0.25);
  margin: 0; padding: 16px 0 0; font: inherit; color: inherit; cursor: pointer;
  transition: border-top-color 0.2s;
}
.lamn-show-panel:hover { border-top-color: rgba(255, 255, 255, 0.65); }
.lamn-show-panel.is-active { border-top-color: var(--lamn-amber); }
.lamn-show-panel h3 {
  font-size: 17px; font-weight: 600; margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.6); transition: color 0.2s;
}
.lamn-show-panel:hover h3, .lamn-show-panel.is-active h3 { color: #FFFFFF; }
.lamn-show-meta { display: flex; flex-wrap: wrap; gap: 3px 16px; margin: 0 0 10px; }
.lamn-show-meta span { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); white-space: nowrap; }
.lamn-show-meta b { color: rgba(255, 255, 255, 0.88); font-weight: 600; font-size: 14px; }
.lamn-show-panel p { font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.55); margin: 0; }
.lamn-show-cue {
  margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.35); transition: color 0.2s;
}
.lamn-show-panel:hover .lamn-show-cue, .lamn-show-panel.is-active .lamn-show-cue { color: var(--lamn-amber); }
.lamn-show-foot { margin: 34px 0 0; }
.lamn-show-foot .lamn-link { color: #FFFFFF; }

/* 980/640 are this site's shared grid breakpoints — a 5-up strip needs one
   extra step so the panels never squeeze below a readable column. */
@media (max-width: 1180px) { .lamn-show-grid { grid-template-columns: repeat(3, 1fr); row-gap: 28px; } }
@media (max-width: 980px)  { .lamn-show-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .lamn-show { padding: 48px 0; }
  .lamn-show-grid { grid-template-columns: 1fr; row-gap: 22px; }
  /* At phone width the caption comes OUT of the photo and sits underneath it on
     the band's own ink: the crop changes with every service and a pale one
     (white leather, sky) left the sub-line unreadable over the image. */
  .lamn-show-frame { margin-bottom: 24px; }
  .lamn-show-stage { aspect-ratio: 4 / 3; }
  .lamn-show-cap {
    position: static; display: block; background: none; padding: 16px 0 0;
  }
  .lamn-show-cap-sub { color: rgba(255, 255, 255, 0.6); }
  .lamn-show-cap .lamn-cta { width: 100%; margin-top: 16px; }
}

/* Reviews wall restyle — match live testimonial cards (white, border, blue stars) */
.lamn [data-reviews-wall] .ds-review-card,
.lamn .ds-review-card {
  background: #FFFFFF; border: 1px solid var(--lamn-border);
  border-radius: var(--lamn-radius); box-shadow: var(--lamn-shadow-sm);
}
.lamn .ds-review-stars { color: var(--lamn-blue); }
.lamn .ds-review-text { color: var(--lamn-text-2); }
.lamn .ds-review-author { color: var(--lamn-text); font-weight: 600; }

@media (max-width: 768px) {
  .lamn-section { padding: 64px 0; }
  .lamn-cta, .lamn-cta-ghost { width: 100%; }
}
@media (max-width: 640px) {
  .lamn-container { padding: 0 16px; }
}

/* ==========================================================================
   SEO pages (service-area + blog port) — shared patterns
   ========================================================================== */

/* Page header (chrome-safe top padding, same rhythm as services/testimonials) */
.lamn-pagehead { padding: 150px 0 30px; }
.lamn-pagehead .lamn-subtitle { margin-bottom: 0; }

/* Tag pills (blog) */
.lamn-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 0 20px; }
.lamn-tag {
  background: var(--lamn-blue-soft); border: 1px solid var(--lamn-blue-border);
  color: var(--lamn-blue); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
}

/* Article (blog post) */
.lamn-art-title {
  font-size: clamp(32px, 4.8vw, 50px); line-height: 1.1; font-weight: 600;
  letter-spacing: -0.018em; margin: 0 0 18px; color: var(--lamn-text); max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.lamn-art-sub { font-size: 19px; color: var(--lamn-muted); max-width: 720px; margin: 0 auto 22px; line-height: 1.6; }
.lamn-art-byline { font-size: 14.5px; color: var(--lamn-muted); margin: 0; }
.lamn-art-byline b { color: var(--lamn-text); font-weight: 600; }
.lamn-art-byline .lamn-dot { color: var(--lamn-border); margin: 0 8px; }
.lamn-art-hero { padding: 40px 0 0; }
.lamn-art-hero img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block;
  border-radius: var(--lamn-radius); border: 1px solid var(--lamn-border);
}
.lamn-art-body { padding: 64px 0 88px; }
.lamn-art-prose { max-width: 760px; margin: 0 auto; }
.lamn-art-prose h2 {
  font-size: clamp(24px, 3vw, 30px); line-height: 1.2; font-weight: 600;
  letter-spacing: -0.01em; margin: 48px 0 16px; color: var(--lamn-text);
}
.lamn-art-prose h2:first-child { margin-top: 0; }
.lamn-art-prose p { font-size: 17px; line-height: 1.75; color: var(--lamn-text-2); margin: 0 0 18px; }

/* Index cards (blog index + service-areas index) */
.lamn-idx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lamn-idx-card { text-decoration: none; color: inherit; }
/* Card interior is ONE scale across the whole site, measured off the live
   original's cards at 1440px: 160px media, 20px body padding, 22/14px type,
   8/16px gaps. These index cards ran a step larger (210px media, 26/28px
   padding, 21/15px type) so the same panel read differently page to page. */
.lamn-idx-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.lamn-idx-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.lamn-idx-meta { font-size: 12px; line-height: 1.5; color: var(--lamn-muted); margin: 0 0 8px; }
.lamn-idx-meta .lamn-dot { color: var(--lamn-border); margin: 0 7px; }
.lamn-idx-body h2, .lamn-idx-body h3 { font-size: 22px; line-height: 1.2; font-weight: 600; margin: 0 0 8px; color: var(--lamn-text); }
.lamn-idx-desc { font-size: 14px; color: var(--lamn-text-2); line-height: 1.43; margin: 0 0 16px; flex: 1; }
.lamn-idx-link { color: var(--lamn-blue); font-weight: 600; font-size: 14px; }

/* Service-area content blocks (amber-rule 2x2 grid) */
.lamn-sa-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 44px; }
.lamn-sa-block { border-top: 2px solid var(--lamn-amber); padding-top: 20px; }
.lamn-sa-block h2 { font-size: 21px; font-weight: 600; margin: 0 0 10px; color: var(--lamn-text); }
.lamn-sa-block p { font-size: 15.5px; line-height: 1.7; color: var(--lamn-text-2); margin: 0; }

/* FAQ (native details/summary) */
.lamn-faq { max-width: 820px; margin: 0 auto; }
.lamn-faq details {
  background: #FFFFFF; border: 1px solid var(--lamn-border);
  border-radius: var(--lamn-radius); margin-bottom: 12px; overflow: hidden;
}
.lamn-faq summary {
  padding: 19px 24px; font-size: 16.5px; font-weight: 600; color: var(--lamn-text);
  cursor: pointer; list-style: none; position: relative; padding-right: 52px;
}
.lamn-faq summary::-webkit-details-marker { display: none; }
.lamn-faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  color: var(--lamn-blue); font-size: 22px; font-weight: 500;
}
.lamn-faq details[open] summary::after { content: "\2212"; }
.lamn-faq details p { padding: 0 24px 20px; margin: 0; font-size: 15.5px; line-height: 1.7; color: var(--lamn-text-2); }

/* Area chip links ("Other Areas We Serve") */
a.lamn-chip { text-decoration: none; transition: background 0.2s; }
a.lamn-chip:hover { background: var(--lamn-blue-border); }

/* Closing CTA band (ink, centered — used across SEO pages) */
.lamn-final { text-align: center; }
.lamn-final .lamn-subtitle { margin-left: auto; margin-right: auto; margin-bottom: 36px; }
.lamn-final-call { margin-top: 22px; font-size: 16px; color: rgba(255, 255, 255, 0.65); }
.lamn-final-call a { color: #FFFFFF; font-weight: 700; text-decoration: none; white-space: nowrap; }

@media (max-width: 980px) {
  .lamn-idx-grid { grid-template-columns: 1fr 1fr; }
  .lamn-sa-blocks { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .lamn-pagehead { padding: 120px 0 20px; }
  .lamn-art-sub { font-size: 17px; }
  .lamn-art-body { padding: 48px 0 64px; }
  .lamn-art-prose p { font-size: 16px; }
  .lamn-idx-grid { grid-template-columns: 1fr; }
  .lamn-art-hero img { aspect-ratio: 4 / 3; }
}
