/* Walrus Detailing — shared styles
   Tokens from the brand handoff:
   Ink #1F2E3E · Brass #C08A3E · Warm white #F7F4EF · Cream white #FFFDF9
   Cream #F2EDE3 · Borders #E4DECF / #D9D2C2 / #34455A */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #F7F4EF;
  font-family: 'Archivo', sans-serif;
  color: #1F2E3E;
}
img { max-width: 100%; display: block; }
a { color: #1F2E3E; }
a:hover { color: #C08A3E; }
input, select, textarea, button { font-family: 'Archivo', sans-serif; }

.container { max-width: 1120px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* ---------- Top bar ---------- */
.topbar { background: #1F2E3E; color: #F2EDE3; font-size: 12.5px; font-weight: 600; }
.topbar .container { padding-top: 8px; padding-bottom: 8px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 18px; }
.topbar a { color: #C08A3E; text-decoration: none; font-weight: 800; }

/* ---------- Header ---------- */
.site-header { background: #FFFDF9; border-bottom: 1px solid #E4DECF; }
.site-header .container { padding-top: 12px; padding-bottom: 12px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo svg { width: 40px; height: 50px; }
.logo-word { display: flex; flex-direction: column; }
.logo-word .w1 { font-family: 'Alfa Slab One', serif; font-size: 20px; font-weight: 400; line-height: 1.1; color: #1F2E3E; }
.logo-word .w2 { font-family: 'Alfa Slab One', serif; font-size: 10.5px; font-weight: 400; letter-spacing: 0.26em; color: #C08A3E; }
.nav { display: flex; align-items: center; gap: 22px; font-size: 13.5px; font-weight: 700; flex-wrap: wrap; }
.nav a { text-decoration: none; }
.nav a.active { color: #C08A3E; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; text-decoration: none; font-weight: 800; border-radius: 5px; cursor: pointer; border: none; }
.btn-nav { background: #1F2E3E; color: #F2EDE3; font-size: 12.5px; letter-spacing: 0.1em; padding: 11px 18px; }
.btn-nav:hover { background: #C08A3E; color: #1F2E3E; }
.btn-primary { background: #1F2E3E; color: #F2EDE3; font-size: 13.5px; letter-spacing: 0.12em; padding: 15px 24px; }
.btn-primary:hover { background: #C08A3E; color: #1F2E3E; }
.btn-gold { background: #C08A3E; color: #1F2E3E; font-size: 13px; letter-spacing: 0.1em; padding: 13px 20px; }
.btn-gold:hover { background: #F2EDE3; color: #1F2E3E; }
.btn-outline { background: transparent; border: 2px solid #1F2E3E; color: #1F2E3E; font-size: 12.5px; letter-spacing: 0.1em; padding: 11px 0; text-align: center; }
.btn-outline:hover { border-color: #C08A3E; color: #C08A3E; }
.phone-link { display: inline-flex; align-items: center; gap: 9px; color: #1F2E3E; text-decoration: none; font-size: 16px; font-weight: 800; }
.phone-link:hover { color: #C08A3E; }
.phone-link.on-dark { color: #F2EDE3; }

/* ---------- Type helpers ---------- */
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; color: #C08A3E; text-transform: uppercase; }
h1.display { margin: 0; font-family: 'Alfa Slab One', serif; font-weight: 400; font-size: 37px; line-height: 1.16; text-wrap: pretty; }
h2.display { margin: 0; font-family: 'Alfa Slab One', serif; font-weight: 400; font-size: 26px; line-height: 1.15; }
.lede { margin: 0; font-size: 16.5px; line-height: 1.6; color: #4A5561; max-width: 520px; }
.section-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; }
.text-link { font-size: 13px; font-weight: 800; text-decoration: none; }

/* ---------- Sections ---------- */
.sec { padding: 64px 0; }
.sec-tight { padding: 56px 0; }
.sec-cream { background: #FFFDF9; }
.sec-warm { background: #F7F4EF; }
.sec-navy { background: #1F2E3E; color: #F2EDE3; }
.bt { border-top: 1px solid #E4DECF; }
.bb { border-bottom: 1px solid #E4DECF; }

/* ---------- Grids & cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr); gap: 48px; align-items: center; }
.card { background: #FFFDF9; border: 1px solid #E4DECF; border-radius: 10px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.card h3 { margin: 0; font-size: 19px; font-weight: 800; }
.card p { margin: 0; font-size: 14px; line-height: 1.55; color: #4A5561; }
.card-navy { background: #1F2E3E; color: #F2EDE3; border: none; position: relative; }
.card-navy h3 { color: #F2EDE3; }
.card-navy p { color: #B9C2CC; }
.card-tag { position: absolute; top: -11px; left: 26px; background: #C08A3E; color: #1F2E3E; font-size: 10.5px; font-weight: 900; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 4px; }
.price-big { font-size: 26px; font-weight: 900; }
.feature-list { display: flex; flex-direction: column; gap: 7px; border-top: 1px solid #E4DECF; padding-top: 12px; font-size: 13px; font-weight: 500; }
.card-navy .feature-list { border-top-color: #34455A; }
.tusk-row { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #E4DECF; padding-top: 14px; font-size: 13px; }
.card-foot .from { color: #6B6350; }
.card-foot .from strong { color: #1F2E3E; }

/* ---------- Photos ---------- */
.ph { border-radius: 10px; overflow: hidden; }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph-hero { height: 420px; }
.ph-hero-sm { height: 360px; }
.ph-230 { height: 230px; }
.ph-240 { height: 240px; }
.ph-260 { height: 260px; }
.ph-300 { height: 300px; }
.ph-380 { height: 380px; }
.ph-r8 { border-radius: 8px; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #FFFDF9; border: 1px solid #E4DECF; border-radius: 8px; padding: 16px 20px; }
.faq.on-cream details { background: #F7F4EF; }
.faq summary { font-size: 15px; font-weight: 800; cursor: pointer; }
.faq p { margin: 10px 0 0; font-size: 14px; line-height: 1.6; color: #4A5561; }

/* ---------- Forms ---------- */
.form-card { display: flex; flex-direction: column; gap: 14px; background: #F7F4EF; border: 1px solid #E4DECF; border-radius: 10px; padding: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; color: #6B6350; }
.form-card input, .form-card select, .form-card textarea {
  font-size: 14.5px; padding: 12px 14px; border: 1px solid #D9D2C2; border-radius: 6px; background: #FFFDF9; color: #1F2E3E; width: 100%;
}
.form-card textarea { resize: vertical; }
.form-note { font-size: 12.5px; color: #8A7F6C; }
.form-success { display: none; flex-direction: column; gap: 10px; align-items: flex-start; background: #F7F4EF; border: 1px solid #E4DECF; border-radius: 10px; padding: 26px; }
.form-success h3 { margin: 0; font-size: 19px; font-weight: 800; }
.form-success p { margin: 0; font-size: 14px; line-height: 1.6; color: #4A5561; }

/* ---------- CTA band ---------- */
.cta-band .container { padding-top: 60px; padding-bottom: 60px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.cta-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: #1F2E3E; color: #F2EDE3; margin-top: 40px; }
.footer-walrus { position: absolute; top: -30px; left: 50%; margin-left: -30px; width: 60px; height: 76px; }
.footer-dots { position: absolute; top: 8px; pointer-events: none; }
.footer-dots.fd-l { left: 50%; margin-left: -156px; }
.footer-dots.fd-r { left: 50%; margin-left: 44px; }
.footer-grid { padding-top: 56px; padding-bottom: 32px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand svg { width: 52px; height: 66px; }
.footer-brand .w1 { font-family: 'Alfa Slab One', serif; font-size: 22px; color: #F2EDE3; line-height: 1.1; }
.footer-brand .w2 { font-family: 'Alfa Slab One', serif; font-size: 10.5px; letter-spacing: 0.3em; color: #C08A3E; }
.footer-blurb { margin: 12px 0 0; font-size: 13.5px; line-height: 1.6; color: #9BA7B4; max-width: 300px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
.footer-col .head { font-size: 11.5px; font-weight: 800; letter-spacing: 0.16em; color: #C08A3E; }
.footer-col span { color: #D7DCE1; }
.footer-col .muted { color: #9BA7B4; }
.footer-col a { color: #D7DCE1; text-decoration: none; }
.footer-col a:hover { color: #C08A3E; }
.footer-col a.tel { color: #F2EDE3; font-weight: 800; }
.footer-strip { border-top: 1px solid #34455A; }
.footer-strip .container { padding-top: 16px; padding-bottom: 16px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12px; color: #8A97A5; }

/* ---------- Widget shells ---------- */
.widget { background: #1F2E3E; color: #F2EDE3; border-radius: 10px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.widget .w-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; color: #C08A3E; }
.widget .w-title { font-size: 20px; font-weight: 900; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { background: transparent; color: #F2EDE3; border: 2px solid #C08A3E; border-radius: 5px; font-size: 12.5px; font-weight: 800; letter-spacing: 0.08em; padding: 11px 18px; cursor: pointer; }
.chip.active { background: #C08A3E; color: #1F2E3E; }
.chip-sm { background: transparent; color: #D7DCE1; border: 1.5px solid #4A5D73; border-radius: 5px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em; padding: 8px 12px; cursor: pointer; }
.chip-sm.active { background: #C08A3E; color: #1F2E3E; border-color: #C08A3E; }
.stat-label { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: #9BA7B4; }
.meter { height: 6px; background: #34455A; border-radius: 3px; }
.meter > div { height: 6px; background: #C08A3E; border-radius: 3px; transition: width .35s ease; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  h1.display { font-size: 29px; }
  h2.display { font-size: 23px; }
  .ph-hero, .ph-hero-sm { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-left { display: none; }
  .site-header .container { gap: 12px; }
  .logo svg { width: 34px; height: 43px; }
  .logo-word .w1 { font-size: 17px; }
  .logo-word .w2 { font-size: 9px; }
  .nav { gap: 14px; font-size: 13px; row-gap: 8px; }
  .sec { padding: 48px 0; }
  .sec-tight { padding: 40px 0; }
  .widget { padding: 20px; }
  .cta-stamp { display: none; }
  .widget-grid { grid-template-columns: 1fr !important; }
}
