/* Letterlock - unified preview. Brand: black + red from their logo (since 1982). */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, iframe { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

:root {
  --ink: #0A0A0A;
  --red: #B80701;
  --red-dark: #8F0501;
  --paper: #FFFFFF;
  --paper-2: #F6F5F2;
  --line: rgba(10, 10, 10, 0.14);
  --line-soft: rgba(10, 10, 10, 0.08);
  --mute: #57534E;
  --font: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --page: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --nav-h: 72px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); }
body { background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 16.5px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

.container { max-width: var(--page); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.9rem; }
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 650; letter-spacing: -0.02em; line-height: 1.12; }
.lede { color: var(--mute); margin-top: 1rem; max-width: 62ch; }
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section + .section { border-top: 1px solid var(--line-soft); }
.rule-top { border-top: 1px solid var(--line); }

/* Buttons: one fill, one ghost. 2px radius, tracked caps, no arrows. */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.5rem; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 2px; border: 1px solid transparent; transition: background 160ms ease, color 160ms ease, border-color 160ms ease; }
.btn-fill { background: var(--red); color: #fff; }
.btn-fill:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost--light { color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-ghost--light:hover { background: #fff; color: var(--ink); }

/* ===== NAV ===== */
.nav { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--page); margin: 0 auto; padding: 0 var(--gutter); height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: none; align-items: center; gap: 1.7rem; font-size: 0.86rem; font-weight: 500; }
.nav-links > a:hover, .dd-trigger:hover > a { color: var(--red); }
.dd { position: relative; }
.dd > a { display: inline-flex; align-items: center; gap: 0.35rem; }
.dd-caret { width: 9px; height: 9px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dd-menu { position: absolute; top: 100%; left: -1rem; min-width: 250px; background: var(--paper); border: 1px solid var(--line); border-top: 2px solid var(--red); padding: 0.5rem 0; display: none; }
.dd:hover .dd-menu, .dd.is-open .dd-menu { display: block; }
.dd-menu a { display: block; padding: 0.6rem 1.25rem; font-size: 0.86rem; }
.dd-menu a:hover { background: var(--paper-2); color: var(--red); }
.nav-cta { display: none; }
@media (min-width: 980px) { .nav-links { display: flex; } .nav-cta { display: inline-flex; } .nav-burger { display: none; } }
.nav-burger { background: none; border: 0; width: 42px; height: 42px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); }
.mobile-menu { display: none; background: var(--paper); border-bottom: 1px solid var(--line); padding: 0.75rem var(--gutter) 1.5rem; }
.mobile-menu.is-open { display: block; }
.mobile-menu a { display: block; padding: 0.7rem 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .mm-sub { padding-left: 1rem; font-size: 0.92rem; color: var(--mute); }
.mobile-menu .btn { margin-top: 1rem; width: 100%; }
@media (min-width: 980px) { .mobile-menu { display: none !important; } }

/* ===== HERO SLIDER (their rotating banner, working) ===== */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.slides { position: relative; min-height: clamp(420px, 58vh, 560px); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 700ms ease; pointer-events: none; display: flex; align-items: flex-end; }
.slide.is-active { opacity: 1; pointer-events: auto; }
.slide-bg { position: absolute; inset: 0; }
.slide-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.25) 45%, rgba(10,10,10,0.82) 100%); }
.slide-content { position: relative; z-index: 2; max-width: var(--page); margin: 0 auto; width: 100%; padding: 0 var(--gutter) clamp(3rem, 6vw, 4.5rem); }
.slide-kicker { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 0.85rem; }
.slide h2 { font-size: clamp(1.9rem, 4.5vw, 3.1rem); font-weight: 650; letter-spacing: -0.02em; line-height: 1.08; max-width: 22ch; }
.slide p { margin-top: 0.9rem; max-width: 58ch; color: rgba(255,255,255,0.85); font-size: clamp(0.95rem, 1.2vw, 1.05rem); }
.slide-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.slider-controls { position: absolute; right: var(--gutter); bottom: 1.4rem; z-index: 5; display: flex; align-items: center; gap: 1rem; }
.slider-arrow { background: none; border: 1px solid rgba(255,255,255,0.5); color: #fff; width: 38px; height: 38px; border-radius: 2px; display: inline-flex; align-items: center; justify-content: center; transition: background 150ms ease; }
.slider-arrow:hover { background: rgba(255,255,255,0.15); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.4); padding: 0; }
.slider-dot.is-active { background: #fff; }
@media (max-width: 640px) { .slider-controls { bottom: 0.9rem; } .slider-arrow { width: 32px; height: 32px; } }

/* ===== PILLARS ===== */
.pillars { display: grid; gap: 0; border: 1px solid var(--line); }
@media (min-width: 880px) { .pillars { grid-template-columns: 1fr 1fr 1fr; } }
.pillar { padding: 2.25rem 2rem 2.5rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; }
@media (min-width: 880px) { .pillar { border-top: 0; } .pillar + .pillar { border-left: 1px solid var(--line); } }
.pillar:first-child { border-top: 0; }
.pillar-img { aspect-ratio: 16 / 9; overflow: hidden; margin: -2.25rem -2rem 1.75rem; border-bottom: 1px solid var(--line); }
.pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.pillar:hover .pillar-img img { transform: scale(1.04); }
.pillar h3 { font-size: 1.25rem; font-weight: 650; letter-spacing: -0.01em; }
.pillar p { color: var(--mute); font-size: 0.95rem; margin-top: 0.7rem; }
.pillar ul { list-style: none; margin-top: 1.1rem; display: grid; gap: 0.45rem; }
.pillar li { font-size: 0.92rem; color: var(--mute); padding-left: 1.1rem; position: relative; }
.pillar li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; background: var(--red); }
.pillar .pillar-link { margin-top: auto; padding-top: 1.5rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.pillar .pillar-link:hover { color: var(--red-dark); }

/* ===== SPLIT SECTIONS ===== */
.split { display: grid; gap: 2.5rem 4rem; align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; } .split--flip > .split-media { order: 2; } }
.split-media { overflow: hidden; }
.split-media img { width: 100%; height: auto; }
.split-body p + p { margin-top: 1rem; }
.split-body p { color: var(--mute); }
.split-body .strongline { color: var(--ink); font-weight: 600; }

/* ===== HAIRLINE ROWS ===== */
.rows { border-top: 1px solid var(--line); }
.row { display: grid; gap: 0.4rem 3rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 800px) { .row { grid-template-columns: 260px 1fr; } }
.row h3 { font-size: 1.05rem; font-weight: 650; }
.row p { color: var(--mute); font-size: 0.95rem; }
.row ul { list-style: none; display: grid; gap: 0.4rem; margin-top: 0.4rem; }
.row li { font-size: 0.93rem; color: var(--mute); padding-left: 1.1rem; position: relative; }
.row li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 5px; height: 5px; background: var(--red); }

/* ===== TRACKING ===== */
.track-card { border: 1px solid var(--line); border-top: 2px solid var(--red); padding: 2rem; max-width: 660px; }
.track-card h3 { font-size: 1.2rem; font-weight: 650; }
.track-card p { color: var(--mute); font-size: 0.93rem; margin-top: 0.5rem; }
.track-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }
.track-row select, .track-row input { font: inherit; padding: 0.8rem 0.9rem; border: 1px solid var(--line); border-radius: 2px; background: var(--paper); color: var(--ink); font-size: 0.95rem; }
.track-row select { min-width: 150px; }
.track-row input { flex: 1; min-width: 200px; }
.track-row select:focus, .track-row input:focus { outline: none; border-color: var(--red); }
.track-note { font-size: 0.8rem; color: var(--mute); margin-top: 0.8rem; }

/* ===== LOCATIONS ===== */
.locations { display: grid; gap: 1.5rem; }
@media (min-width: 880px) { .locations { grid-template-columns: 1fr 1fr; } }
.location { border: 1px solid var(--line); padding: 2rem; }
.location h3 { font-size: 1.2rem; font-weight: 650; }
.location .loc-country { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 0.6rem; }
.location address { font-style: normal; color: var(--mute); margin-top: 0.6rem; font-size: 0.95rem; }
.loc-list { list-style: none; margin-top: 1rem; display: grid; gap: 0.45rem; font-size: 0.93rem; }
.loc-list a { border-bottom: 1px solid var(--line); }
.loc-list a:hover { color: var(--red); border-bottom-color: var(--red); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.1rem; font-size: 0.92rem; }
.hours-table td { padding: 0.45rem 0; border-bottom: 1px solid var(--line-soft); }
.hours-table td:last-child { text-align: right; font-weight: 550; }
.hours-table .closed { color: var(--red); }
.loc-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }

/* ===== BADGES ===== */
.badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 3rem); }
.badges img { height: 56px; width: auto; }
.badges-note { text-align: center; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-bottom: 2rem; }

/* ===== DARK BAND ===== */
.band { background: var(--ink); color: #fff; padding: clamp(3.5rem, 7vw, 5rem) 0; }
.band .h2 { color: #fff; }
.band p { color: rgba(255,255,255,0.78); }
.band .eyebrow { color: #fff; opacity: 0.85; }

/* ===== FORM ===== */
.form { display: grid; gap: 1.1rem; max-width: 640px; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.field input, .field textarea, .field select { font: inherit; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 2px; background: var(--paper); color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-status { display: none; padding: 0.9rem 1.1rem; border: 1px solid var(--red); font-size: 0.93rem; }
.form-status.is-visible { display: block; }

/* ===== AIRTABLE EMBED ===== */
.airtable-wrap { border: 1px solid var(--line); border-top: 2px solid var(--red); }
.airtable-wrap iframe { width: 100%; height: 720px; border: 0; background: var(--paper-2); }
.airtable-fallback { font-size: 0.85rem; color: var(--mute); margin-top: 0.8rem; }
.airtable-fallback a { color: var(--red); border-bottom: 1px solid var(--red); }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.page-hero h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 650; letter-spacing: -0.02em; line-height: 1.1; max-width: 24ch; }
.page-hero .crumb { font-size: 0.78rem; color: var(--mute); margin-bottom: 1rem; }
.page-hero .crumb a:hover { color: var(--red); }
.page-hero .lede { margin-top: 1rem; }

/* ===== NOTICE / QUIET CLAIMS ===== */
.claims-line { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); text-align: center; }

/* ===== PRICE LIST ===== */
.price-rows { border-top: 1px solid var(--line); max-width: 640px; }
.price-row { display: flex; justify-content: space-between; gap: 2rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.price-row strong { font-weight: 650; white-space: nowrap; }
.price-row span { color: var(--mute); }

/* ===== ADDRESS CARD ===== */
.addr-card { border: 1px solid var(--line); border-left: 3px solid var(--red); padding: 1.6rem 1.9rem; max-width: 420px; font-size: 1rem; line-height: 1.8; background: var(--paper-2); }

/* ===== FOOTER ===== */
.footer { background: var(--paper-2); border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 4rem) 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 880px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 3rem; } }
.footer-brand img { height: 34px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--mute); font-size: 0.9rem; max-width: 36ch; }
.footer h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: 0.5rem; font-size: 0.9rem; }
.footer a:hover { color: var(--red); }
.footer-bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; font-size: 0.8rem; color: var(--mute); }
.social-glyph { display: inline-flex; align-items: center; gap: 0.45rem; }
.social-glyph svg { width: 15px; height: 15px; }

/* Border cameras + pick-up tables */
.cams { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.cams figure { margin: 0; }
.cams img { width: 100%; display: block; }
.cams figcaption { font-size: 0.85rem; color: var(--mute); margin-top: 0.6rem; }
.cams figcaption a { color: var(--mute); border-bottom: 1px solid currentColor; }
.pickup-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); margin: 1.4rem 0 0.4rem; }
@media (max-width: 720px) { .cams { grid-template-columns: 1fr; } }
