/* ===========================================================
   seek art — stylesheet
   Palette: ivory paper + sienna ink. Warm, gallery-like, calm.
   =========================================================== */

:root {
  --ink: #1B1A17;
  --ink-soft: #45423B;
  --muted: #7C7669;
  --line: #E4DED3;
  --line-soft: #F0EBE2;
  --paper: #FFFFFF;
  --cream: #FAF7F2;
  --sand: #F1EAE0;
  --accent: #A0522D;
  --accent-dark: #7C3E1F;
  --accent-tint: #F7EFE8;
  --ok: #3F6B4A;
  --radius: 4px;
  --radius-lg: 10px;
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 1px 2px rgba(27, 26, 23, .04), 0 8px 24px -12px rgba(27, 26, 23, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.1em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); }

.eyebrow {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-cream { background: var(--cream); }
.section-sand { background: var(--sand); }

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.small { font-size: .88rem; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 500;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
  font-family: var(--sans);
}
.btn:hover { background: #000; color: #fff; border-color: #000; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-sm { padding: .6rem 1.1rem; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.link-arrow { font-weight: 500; }
.link-arrow::after { content: " →"; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 16px -12px rgba(27, 26, 23, .3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1.5rem; }

.logo { display: flex; align-items: baseline; gap: .28rem; font-family: var(--serif); font-size: 1.5rem; color: var(--ink); letter-spacing: .01em; }
.logo:hover { color: var(--ink); }
.logo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a { color: var(--ink-soft); font-size: .93rem; position: relative; padding: .2rem 0; }
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); }
.nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 4px auto; }

/* ---------- hero ---------- */
.hero { padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5.5rem); background: var(--cream); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin-bottom: .7rem; }
.hero .lead { max-width: 34ch; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.hero-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: .85rem 1.1rem;
  box-shadow: var(--shadow); font-size: .82rem; color: var(--muted); line-height: 1.5;
}
.hero-badge strong { display: block; font-family: var(--serif); font-size: 1.35rem; color: var(--ink); font-weight: 500; }

/* ---------- trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.5rem 1.2rem; border-right: 1px solid var(--line-soft); }
.trust-item:last-child { border-right: 0; }
.trust-item h4 { margin: 0 0 .2rem; font-size: .92rem; }
.trust-item p { margin: 0; font-size: .84rem; color: var(--muted); line-height: 1.55; }

/* ---------- cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand); }
.card-media.wide { aspect-ratio: 4 / 3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .4rem; }
.card-body .price { font-family: var(--serif); font-size: 1.05rem; color: var(--accent); margin: .5rem 0 0; }
.card-body p:last-of-type { margin-bottom: 0; }
.card-body .btn-row { margin-top: auto; padding-top: 1.2rem; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; counter-reset: step; }
.step { position: relative; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: .5rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.step p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.work { border: 0; padding: 0; background: none; cursor: pointer; text-align: left; font-family: inherit; }
.work-img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand); border-radius: var(--radius-lg); }
.work-img.wide { aspect-ratio: 4 / 3; }
.work-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work:hover .work-img img { transform: scale(1.03); }
.work-meta { padding-top: .9rem; }
.work-meta h3 { font-size: 1.05rem; margin: 0 0 .15rem; }
.work-meta .meta { font-size: .85rem; color: var(--muted); margin: 0; }
.work-meta .price { font-size: .9rem; color: var(--accent); margin: .3rem 0 0; }

.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.2rem; }
.filter-btn {
  padding: .45rem 1rem; border: 1px solid var(--line); background: transparent;
  border-radius: 999px; font-size: .85rem; color: var(--ink-soft); cursor: pointer;
  font-family: var(--sans);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- pricing table ---------- */
.price-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
table.price { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 560px; }
table.price th, table.price td { padding: .95rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
table.price thead th {
  background: var(--sand); font-family: var(--sans); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .09em; color: var(--ink); font-weight: 600;
}
table.price tbody tr:last-child td { border-bottom: 0; }
table.price td:not(:first-child) { color: var(--ink); }
table.price tbody tr:hover { background: #FDFBF8; }
table.price .best { background: var(--accent-tint); }
table.price .best td:first-child::after { content: " most popular"; font-size: .72rem; color: var(--accent); letter-spacing: .04em; }

/* ---------- accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%; background: none; border: 0; padding: 1.35rem 2.5rem 1.35rem 0;
  text-align: left; font-family: var(--sans); font-size: 1.02rem; font-weight: 500;
  color: var(--ink); cursor: pointer; position: relative;
}
.acc-q::after {
  content: "+"; position: absolute; right: .35rem; top: 50%; transform: translateY(-50%);
  font-size: 1.3rem; font-weight: 400; color: var(--accent); line-height: 1;
}
.acc-item.open .acc-q::after { content: "–"; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-a-inner { padding: 0 3rem 1.5rem 0; font-size: .95rem; color: var(--ink-soft); }
.acc-a-inner p:last-child { margin-bottom: 0; }

/* ---------- prose (legal / long text) ---------- */
.prose h2 { margin-top: 2.6rem; font-size: 1.5rem; }
.prose h3 { margin-top: 1.9rem; font-size: 1.12rem; font-family: var(--sans); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.2rem; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5rem; }
.prose table { width: 100%; border-collapse: collapse; font-size: .92rem; margin: 0 0 1.5rem; }
.prose table th, .prose table td { padding: .7rem .9rem; border: 1px solid var(--line); text-align: left; }
.prose table th { background: var(--sand); font-weight: 600; color: var(--ink); }
.note {
  background: var(--accent-tint); border-left: 2px solid var(--accent);
  padding: 1.1rem 1.3rem; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .93rem; margin: 0 0 1.5rem;
}
.note p:last-child { margin-bottom: 0; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.4rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 500; color: var(--ink); }
.field .hint { font-size: .78rem; color: var(--muted); }
input[type="text"], input[type="email"], input[type="url"], select, textarea {
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: .8rem .9rem; background: var(--paper); width: 100%;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(160, 82, 45, .1); }
textarea { resize: vertical; min-height: 130px; }
.checkline { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; }
.checkline input { margin-top: .35rem; flex: none; }

/* ---------- testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.7rem; }
.quote p { font-family: var(--serif); font-size: 1.08rem; color: var(--ink); line-height: 1.55; }
.quote .who { font-size: .84rem; color: var(--muted); margin: 1rem 0 0; font-family: var(--sans); }
.stars { color: var(--accent); font-size: .9rem; letter-spacing: .12em; margin-bottom: .7rem; }

/* ---------- cta band ---------- */
.cta-band { background: var(--ink); color: #EDE9E1; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #B9B3A8; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band .btn { background: var(--accent); border-color: var(--accent); }
.cta-band .btn:hover { background: #fff; border-color: #fff; color: var(--ink); }
.cta-band .btn-ghost { background: transparent; border-color: rgba(255, 255, 255, .35); color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- footer ---------- */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); padding: 3.5rem 0 2rem; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-grid h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: .9rem; font-weight: 600; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a { color: var(--ink-soft); }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; color: var(--muted); font-size: .82rem; }
.footer-note { max-width: 46ch; line-height: 1.6; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(20, 19, 17, .94); align-items: center; justify-content: center; padding: 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 26px; background: none; border: 0;
  color: #fff; font-size: 2rem; line-height: 1; cursor: pointer;
}

/* ---------- misc ---------- */
.page-head { background: var(--cream); padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.2rem, 4vw, 3rem); border-bottom: 1px solid var(--line-soft); }
.page-head h1 { max-width: 18ch; margin-bottom: .6rem; }
.page-head .lead { max-width: 58ch; }
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.media-right .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }

.list-check { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.list-check li { position: relative; padding-left: 1.5rem; margin-bottom: .55rem; font-size: .95rem; }
.list-check li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0 0; }
.stat { border-top: 1px solid var(--line); padding-top: .9rem; }
.stat strong { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--ink); font-weight: 500; line-height: 1.1; }
.stat span { font-size: .84rem; color: var(--muted); }

.badge-pill {
  display: inline-block; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--line); border-radius: 999px;
  padding: .3rem .8rem; background: var(--paper); margin-bottom: 1rem;
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .grid-2 { grid-template-columns: 1fr; }
  .split.media-right .split-media { order: 0; }
  .grid-3, .steps, .gallery, .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { left: 0; bottom: -14px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; background: var(--paper);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem 24px 1.6rem; border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav a.active::after { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .grid-3, .steps, .gallery, .quote-grid, .grid-4, .stat-row, .form-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero-badge { position: static; margin-top: 1rem; box-shadow: none; }
  section { padding: 3rem 0; }
}

@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none; }
}
