/* Shared stylesheet for the static use-case landing pages (public/*.html).
   Self-contained — no Tailwind, no external fonts (system stacks keep these
   pages fast for Core Web Vitals). Light brand look with a dark variant via
   prefers-color-scheme. */

:root {
  --page: #faf9f6; --card: #ffffff; --ink: #1c1917; --sub: #57534e;
  --faint: #a8a29e; --line: #e7e5e4; --navy: #092332; --gold: #B39B4E;
  --tint: #fdf7ec;
}
@media (prefers-color-scheme: dark) {
  :root {
    --page: #0f0d0c; --card: #1c1917; --ink: #f5f5f4; --sub: #a8a29e;
    --faint: #78716c; --line: #383330; --navy: #e7e5e4; --gold: #cbb36a;
    --tint: #221c12;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--page); color: var(--ink); font-family: Arial, Helvetica, sans-serif; line-height: 1.65; }
.serif { font-family: Georgia, 'Times New Roman', serif; }
a { color: inherit; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 20px; }

header.site { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 34px; height: 34px; }
.brand span { font-family: Georgia, serif; font-size: 22px; letter-spacing: 1px; color: var(--navy); }
.cta { display: inline-block; background: var(--navy); color: var(--page); text-decoration: none;
       padding: 12px 26px; border-radius: 999px; font-size: 13px; font-weight: bold;
       letter-spacing: 1.5px; text-transform: uppercase; }
.cta.small { padding: 9px 18px; font-size: 11px; }

.hero { text-align: center; padding: 48px 0 34px; }
.hero h1 { font-family: Georgia, serif; font-weight: normal; font-size: clamp(30px, 5vw, 44px);
           color: var(--navy); line-height: 1.2; }
.hero h1 em { color: var(--gold); }
.hero p.lead { max-width: 620px; margin: 18px auto 26px; font-size: 17px; color: var(--sub); }
.trust { margin-top: 14px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--faint); }

.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 34px 0; }
/* Labelled sample rows (Ethnic / Western, Women's / Men's). */
.rowlabel { font-size: 11px; font-weight: bold; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin: 26px 0 0; }
.rowlabel + .shots { margin-top: 12px; }
/* Landscape variant — catalog sheets, flat-lays and batch grids are wide. */
.shots.wide { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.shots.wide .shot img { aspect-ratio: 4 / 3; }
.shot { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.shot img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.shot video { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.shot .ph { display: flex; align-items: center; justify-content: center; text-align: center;
            aspect-ratio: 3 / 4; color: var(--faint); font-size: 12px; letter-spacing: 1px;
            text-transform: uppercase; background: linear-gradient(160deg, var(--tint), var(--card)); padding: 12px; }
.shot figcaption { padding: 10px 14px; font-size: 12px; color: var(--sub); border-top: 1px solid var(--line); }

section { padding: 34px 0; border-top: 1px solid var(--line); }
section h2 { font-family: Georgia, serif; font-weight: normal; font-size: 26px; color: var(--navy); margin-bottom: 18px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.step b { display: block; color: var(--gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--sub); }

ul.features { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px 24px; }
ul.features li { padding-left: 22px; position: relative; font-size: 15px; color: var(--sub); }
ul.features li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
ul.features li strong { color: var(--ink); }

.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px;
               padding: 14px 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: bold; font-size: 15px; }
.faq p { margin-top: 10px; font-size: 14px; color: var(--sub); }

.cta-band { text-align: center; background: var(--tint); border: 1px solid var(--line);
            border-radius: 20px; padding: 34px 20px; margin: 40px 0; }
.cta-band h2 { border: 0; font-family: Georgia, serif; font-weight: normal; font-size: 24px; color: var(--navy); margin-bottom: 14px; }

.more { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.more a { display: block; background: var(--card); border: 1px solid var(--line); border-radius: 12px;
          padding: 14px 16px; font-size: 14px; text-decoration: none; color: var(--sub); }
.more a b { display: block; color: var(--ink); margin-bottom: 2px; }

footer.site { border-top: 1px solid var(--line); margin-top: 20px; padding: 26px 0 40px;
              font-size: 12px; color: var(--faint); display: flex; flex-wrap: wrap; gap: 8px 18px; }
footer.site a { color: var(--faint); }
