:root {
  --bg: #0d0d0d;
  --bg-alt: #171412;
  --ink: #f3ece2;
  --ink-soft: #b9aea0;
  --accent: #c9a24b;
  --accent-dark: #e0bc68;
  --on-accent: #0d0d0d;
  --line: #2b2622;
  --radius: 14px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.6; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2.4rem, 9vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 6vw, 2.6rem); text-align: center; margin-bottom: 1.5rem; color: var(--accent); }
h3 { font-size: 1.4rem; margin-bottom: .4rem; }

.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 16px; background: rgba(13,13,13,.94); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.logo-link { display: block; line-height: 0; }
.logo { width: 46px; height: 46px; }
.nav { display: none; gap: 22px; }
.nav a { text-decoration: none; color: var(--ink-soft); }
.nav a:hover { color: var(--accent); }
@media (min-width: 720px) { .nav { display: flex; } }

.btn { display: inline-block; padding: 14px 26px; min-height: 48px; background: var(--accent); color: var(--on-accent); text-decoration: none; border-radius: 999px; font-weight: 500; letter-spacing: .02em; border: 2px solid var(--accent); text-align: center; }
.btn:hover, .btn:focus-visible { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--accent); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--accent); color: var(--on-accent); }
.btn-small { padding: 8px 18px; min-height: 40px; font-size: .95rem; }
.text-link { color: var(--accent); text-underline-offset: 4px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--accent-dark); outline-offset: 3px; }

.hero { text-align: center; padding: 56px 20px 64px; max-width: 760px; margin: 0 auto; }
.hero-logo { width: 120px; height: 120px; margin: 0 auto 20px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; color: var(--accent); margin: 0 0 14px; }
.lead { color: var(--ink-soft); font-size: 1.12rem; margin: 20px auto 30px; max-width: 34em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.section { padding: 64px 16px; }
.section-alt { background: var(--bg-alt); }
.section > * { max-width: 1040px; margin-left: auto; margin-right: auto; }
.center { text-align: center; margin-top: 28px; }
.about-text { text-align: center; max-width: 38em; color: var(--ink-soft); font-size: 1.1rem; }

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
.g-item { display: block; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1 / 1; background: var(--line); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.g-item:hover img { transform: scale(1.04); }

.cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, 1fr); } }
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card h3 { color: var(--accent); }
.card p { margin: 0; color: var(--ink-soft); }

.site-footer { text-align: center; padding: 40px 16px; border-top: 1px solid var(--line); }
.footer-logo { width: 64px; height: 64px; margin: 0 auto 12px; }
.site-footer .links { display: flex; justify-content: center; gap: 12px 22px; flex-wrap: wrap; margin: 12px 0; }
.site-footer .links a { color: var(--ink-soft); }
.site-footer .links a:hover { color: var(--accent); }
.site-footer .small { color: var(--ink-soft); font-size: .85rem; margin: 0; }

dialog#lightbox { border: 0; padding: 0; background: transparent; max-width: 96vw; max-height: 92vh; }
dialog#lightbox::backdrop { background: rgba(0,0,0,.9); }
#lb-img { max-width: 96vw; max-height: 92vh; border-radius: var(--radius); }
.lb-close { position: absolute; top: 8px; right: 8px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(243,236,226,.95); color: #0d0d0d; font-size: 1.8rem; line-height: 1; cursor: pointer; }

/* Phones: get the first lash photo onto the first screen. The header already shows the logo. */
@media (max-width: 719px) {
  .hero { padding: 28px 20px 36px; }
  .hero-logo { display: none; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.6rem); }
  .lead { font-size: 1rem; margin: 14px auto 20px; }
  #portfolio { padding-top: 32px; }
  h2 { margin-bottom: 1rem; }
}
@media (max-width: 360px) {
  .hero { padding: 20px 16px 28px; }
  .hero h1 { font-size: 2rem; }
  .lead { font-size: .95rem; margin: 10px auto 16px; }
  .cta-row { gap: 8px; }
  .cta-row .btn { padding: 11px 20px; min-height: 44px; }
}
