/* ============================================================
   LUNDE — Interior page additions (load AFTER v6.css)
   New shared patterns for resource, contact, story & account pages.
   Uses the same tokens/vocabulary as v6.css. Sharp corners, warm accent.
   ============================================================ */

/* ---------- make the hidden attribute authoritative (v6.css sets .v6-form{display:grid}, which otherwise overrides [hidden]) ---------- */
[hidden] { display: none !important; }

/* ---------- photographic page header (consistent across interior pages) ---------- */
.pg-hero { position: relative; min-height: clamp(360px, 52vh, 560px); display: grid; align-items: end; overflow: hidden; background: var(--black); color: var(--on-dark); }
.pg-hero-media { position: absolute; inset: 0; }
.pg-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.pg-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,7,8,0.74), rgba(5,7,8,0.3) 54%, rgba(5,7,8,0.04)); }
.pg-hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: clamp(88px,10vw,120px) var(--gutter) clamp(38px,5vw,68px); display: grid; gap: 15px; }
.pg-hero .eyebrow { color: rgba(255,255,255,0.85); }
.pg-hero h1 { font-size: clamp(40px, 6vw, 82px); line-height: 0.94; font-weight: 600; letter-spacing: -0.02em; color: var(--on-dark); max-width: 15ch; text-wrap: balance; }
.pg-hero p { max-width: 56ch; color: rgba(255,255,255,0.88); font-size: clamp(16px, 1.2vw, 18px); line-height: 1.55; text-wrap: pretty; }
.pg-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.pg-hero-meta { display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 10px; }
.pg-hero-meta span { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em; color: rgba(255,255,255,0.82); }
.pg-hero-meta svg { width: 17px; height: 17px; fill: none; stroke: #c9a988; stroke-width: 1.5; }
@media (max-width: 640px) {
  .pg-hero::before { background: linear-gradient(180deg, rgba(5,7,8,0.2), rgba(5,7,8,0.82) 74%); }
  .pg-hero-cta .btn { width: 100%; }
}

/* ---------- feature / value cards with icons (info pages) ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.feat-grid.four { grid-template-columns: repeat(4, 1fr); }
.feat-card { border: 1px solid var(--line); background: var(--panel); padding: clamp(24px, 2.6vw, 34px); display: grid; gap: 12px; align-content: start; transition: border-color .2s var(--ease), transform .3s var(--ease); }
.feat-card:hover { border-color: var(--ink); }
.feat-card .ic { width: 36px; height: 36px; color: var(--accent); }
.feat-card .ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.3; }
.feat-card .num { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--accent); }
.feat-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.15; letter-spacing: -0.01em; }
.feat-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .feat-grid, .feat-grid.four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-grid, .feat-grid.four { grid-template-columns: 1fr; } }

/* ---------- full-bleed image band with optional caption ---------- */
.img-band { position: relative; overflow: hidden; }
.img-band img { width: 100%; height: clamp(320px, 46vw, 640px); object-fit: cover; display: block; }
.img-band-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(24px,4vw,56px) var(--gutter); background: linear-gradient(0deg, rgba(5,7,8,0.66), transparent); color: var(--on-dark); }
.img-band-cap p { max-width: var(--maxw); margin-inline: auto; font-family: var(--font-display); font-weight: 500; font-size: clamp(20px,2.4vw,34px); line-height: 1.15; letter-spacing: -0.01em; text-wrap: balance; }

/* ---------- editorial split (image + copy), reusable ---------- */
.ed-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(28px, 5vw, 84px); }
.ed-split.reverse .ed-media { order: 2; }
.ed-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid var(--line); }
.ed-media.wide img { aspect-ratio: 5 / 4; }
.ed-copy { display: grid; gap: 18px; max-width: 34em; }
.ed-copy h2 { font-size: clamp(28px, 3.4vw, 50px); line-height: 1.02; font-weight: 600; letter-spacing: -0.02em; }
.ed-copy p { color: var(--muted); text-wrap: pretty; }
.ed-copy p strong { color: var(--ink); font-weight: 600; }
@media (max-width: 860px) { .ed-split, .ed-split.reverse { grid-template-columns: 1fr; gap: 30px; } .ed-split.reverse .ed-media { order: 0; } .ed-media img, .ed-media.wide img { aspect-ratio: 16 / 11; } }

/* ---------- signature quote / manifesto row ---------- */
.sig-quote { text-align: center; }
.sig-quote p { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3.2vw, 44px); line-height: 1.14; letter-spacing: -0.02em; max-width: 22ch; margin-inline: auto; text-wrap: balance; }
.sig-quote em { font-style: normal; color: var(--accent); }
.sig-quote cite { display: block; margin-top: 22px; font-family: var(--font-sans); font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   ACCOUNT / AUTH — premium split-screen (login, register, reset, verify)
   ============================================================ */
.auth-top { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.auth-top-inner { max-width: var(--maxw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 var(--gutter); min-height: 64px; }
.auth-top .v6-brand { justify-self: start; }
/* Brand lockup: stretch "LUNDE" to exactly the width of "Flooring Co." so both
   lines align on the left AND right edges. */
.auth-top .v6-brand { display: inline-block; line-height: 1.08; font-size: 20px; }
.auth-top .v6-brand .bw { display: flex; justify-content: space-between; letter-spacing: 0; font-weight: 700; }
.auth-top .v6-brand .bw > span { display: block; }
.auth-top .v6-brand small { display: block; white-space: nowrap; margin-right: -0.288em; }
.auth-top-back { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.auth-top-back:hover { color: var(--ink); }
.auth-top-back svg { width: 15px; height: 15px; }

.auth { display: grid; grid-template-columns: 1.02fr 0.98fr; min-height: calc(100vh - 65px); }
.auth-media { position: relative; overflow: hidden; background: var(--black); }
.auth-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,8,0.12) 30%, rgba(5,7,8,0.72)); }
.auth-media-copy { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: clamp(30px,4vw,60px); color: var(--on-dark); display: grid; gap: 14px; }
.auth-media-copy .eyebrow { color: #c9a988; }
.auth-media-quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(21px,2vw,30px); line-height: 1.2; letter-spacing: -0.01em; max-width: 20ch; }
.auth-media-cite { font-size: 13px; color: rgba(255,255,255,0.74); }
.auth-media-perks { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 6px; }
.auth-media-perks span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.85); }
.auth-media-perks svg { width: 16px; height: 16px; fill: none; stroke: #c9a988; stroke-width: 1.5; }

.auth-panel { display: grid; place-items: center; padding: clamp(40px,6vw,80px) var(--gutter); }
.auth-card { width: min(430px, 100%); }
.auth-card .eyebrow { display: block; margin-bottom: 14px; }
.auth-card h1 { font-size: clamp(32px,4vw,46px); font-weight: 600; letter-spacing: -0.02em; line-height: 1; margin-bottom: 10px; }
.auth-card > p.sub { color: var(--muted); margin-bottom: 30px; }
.auth-alt { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); text-align: center; }
.auth-alt a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.auth-forgot { justify-self: end; font-size: 12.5px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.auth-forgot:hover { color: var(--ink); }
.auth-field-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.auth-reassure { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.auth-reassure svg { width: 16px; height: 16px; flex: none; margin-top: 1px; fill: none; stroke: var(--accent); stroke-width: 1.5; }
@media (max-width: 860px) {
  .auth { grid-template-columns: 1fr; min-height: 0; }
  .auth-media { min-height: 220px; }
  .auth-media-copy { padding: 22px var(--gutter); }
  .auth-media-quote { font-size: 19px; }
  .auth-panel { padding: 44px var(--gutter) 64px; }
}

/* ---------- contact enrichments ---------- */
.contact-info-ic { width: 30px; height: 30px; color: var(--accent); margin-bottom: 2px; }
.contact-info-ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; }
