:root {
  --paper: #ece7d9;
  --paper-deep: #e2dcc9;
  --card: #f6f2e6;
  --ink: #2b2620;
  --ink-soft: #5c554a;
  --teal: #2f4d4d;
  --teal-deep: #1f3737;
  --teal-tint: #e4ebe9;
  --rust: #c17a4f;
  --line: #dcd4bd;
  --radius: 10px;
  --shadow: 0 18px 40px -20px rgba(43, 38, 32, 0.35);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #1b1913;
    --paper-deep: #14120d;
    --card: #23201a;
    --ink: #ece6d8;
    --ink-soft: #b3a996;
    --teal: #7bae9c;
    --teal-deep: #16302a;
    --teal-tint: #23302c;
    --rust: #dc9a6d;
    --line: #3a352a;
    --shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.6);
  }
}
:root[data-theme="dark"] {
  --paper: #1b1913;
  --paper-deep: #14120d;
  --card: #23201a;
  --ink: #ece6d8;
  --ink-soft: #b3a996;
  --teal: #7bae9c;
  --teal-deep: #16302a;
  --teal-tint: #23302c;
  --rust: #dc9a6d;
  --line: #3a352a;
  --shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }
button, select, input, textarea { font-family: inherit; }
body { transition: background 0.2s ease, color 0.2s ease; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

em {
  font-style: italic;
  color: var(--teal);
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.3rem; margin-bottom: 0.4em; }

p { margin: 0 0 1em; }

a { color: inherit; }

.center { text-align: center; }

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.9em;
}

.eyebrow-center { text-align: center; }

.section-sub {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-sub.center { margin-left: auto; margin-right: auto; }

/* ---------- Header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.wordmark-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rust);
  display: inline-block;
}

.site-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.98rem;
  font-weight: 500;
}
.site-nav a { text-decoration: none; color: var(--ink-soft); }
.site-nav a:hover { color: var(--ink); }

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--teal); }
.theme-toggle-icon { line-height: 1; }

.nav-cta {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
  text-decoration: none;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  font-size: 0.98rem;
}
.nav-cta:hover { background: var(--teal-tint); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.9rem 1.7rem;
  border-radius: 7px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--teal); color: var(--paper); }
.btn-primary:hover { background: var(--teal-deep); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); width: 100%; text-align: center; }
.btn-outline:hover { background: var(--teal-tint); }

.btn-light { background: var(--paper); color: var(--teal); }
.btn-light:hover { filter: brightness(1.08); }

/* ---------- Sections ---------- */

.section {
  padding: 5rem 1.75rem;
  max-width: 1180px;
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding-top: 3.5rem;
}

.hero-copy { max-width: 560px; }

.subhead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.trust-row {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}
.trust-row strong { color: var(--ink); }

.hero-frame { display: flex; flex-direction: column; align-items: center; width: 100%; }

.framed-art {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1360 / 768;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.carousel-slide.is-active { opacity: 1; }

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  padding: 0;
  cursor: pointer;
}
.carousel-dot.is-active { background: var(--teal); }

.hero-frame-caption {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.9rem;
  margin-bottom: 0;
}

/* ---------- Transform / slider ---------- */

.transform { padding-top: 3rem; }

.slider {
  position: relative;
  max-width: 900px;
  margin: 2.5rem auto 0;
  aspect-ratio: 1007 / 700;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}
.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  touch-action: none;
}
.slider-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.slider-before-wrap .slider-before {
  width: 200%;
  max-width: none;
  height: 100%;
}
.slider-tag {
  position: absolute;
  top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  background: rgba(43, 38, 32, 0.72);
  color: #fff;
  pointer-events: none;
}
.slider-tag-photo { left: 1rem; }
.slider-tag-watercolor { right: 1rem; }
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.slider-handle-grip {
  position: absolute;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.slider-hint {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 1.1rem;
}

/* ---------- Process steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
}
.step-num {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--teal);
  display: block;
  margin-bottom: 0.5rem;
}
.step p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Made with AI ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.feature-card {
  padding: 1.9rem;
  border-top: 3px solid var(--rust);
  background: var(--card);
  border-radius: 0 0 var(--radius) var(--radius);
}
.feature-card p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Gallery ---------- */

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.portrait-card {
  margin: 0;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.portrait-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid var(--ink);
  border-radius: 2px;
}

/* ---------- Why ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.why-item p { font-size: 1rem; color: var(--ink-soft); }

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card-featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 2rem;
  background: var(--teal);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}
.price-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.price-amount {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--ink-soft); font-family: "Inter", sans-serif; }
.price-desc { font-size: 0.98rem; color: var(--ink-soft); }
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
}
.price-features li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}
.price-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.price-btn { margin-top: auto; }

/* ---------- Checkout panel ---------- */

.checkout-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.checkout-summary {
  background: var(--teal-deep);
  color: #ece7d9;
  padding: 2.25rem;
}
.checkout-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  font-size: 1.02rem;
}
.checkout-row span { color: #cdd8d6; }
.checkout-row-total {
  border-top: 1px solid rgba(236, 231, 217, 0.25);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.25rem;
}
.checkout-row-total strong { font-family: "Fraunces", serif; font-size: 1.5rem; }
.checkout-hint {
  font-size: 0.88rem;
  color: #cdd8d6;
  margin: 1rem 0 1.25rem;
}
.checkout-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(236, 231, 217, 0.25);
  padding-top: 1.25rem;
}
.checkout-features li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #dbe4e2;
}
.checkout-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.checkout-form {
  background: var(--card);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}
.checkout-form label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.checkout-form select,
.checkout-form input[type="text"] {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 1.4rem;
  font-family: inherit;
}
.checkout-form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.checkout-form-note-center { text-align: center; margin-top: 1rem; margin-bottom: 0; }
.checkout-submit {
  width: 100%;
  text-align: center;
}
.checkout-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.checkout-submit:disabled:hover { background: var(--teal); }

@media (max-width: 720px) {
  .checkout-panel { grid-template-columns: 1fr; }
}

/* ---------- Final CTA ---------- */

.final-cta {
  background: var(--teal-deep);
  color: #f3efe3;
  border-radius: var(--radius);
  text-align: center;
  padding: 4rem 2rem;
}
.final-cta h2 { color: #f3efe3; }
.final-cta p { color: #cdd8d6; font-size: 1.1rem; }

/* ---------- Footer ---------- */

.site-footer {
  padding: 2.5rem 1.5rem 3.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--ink);
}
.site-footer a { color: var(--teal); }
.service-area { color: var(--ink-soft); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 2.25rem; }
  .hero-frame { max-width: 360px; margin: 2.25rem auto 0; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 1.25rem; }
  body { font-size: 18px; }
  .site-header { justify-content: center; row-gap: 0.75rem; }
  .site-nav { width: 100%; order: 3; justify-content: center; gap: 1.25rem; font-size: 0.88rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero { padding-top: 1.5rem; }
  .hero-frame { max-width: 260px; }
}

/* ---------- Why band (dark contrast section) ---------- */
.why-band {
  max-width: none;
  padding: 0;
  background: #1f3737;
  color: #ece7d9;
}
.why-band-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.75rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.why-band-eyebrow {
  color: #7bae9c;
}
.why-band-headline {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: #ece7d9;
  margin: 0.5rem 0 2.25rem;
}
.why-band-stats {
  display: flex;
  gap: 2.5rem;
}
.why-band-stat-num {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 2.75rem;
  color: #7bae9c;
  margin: 0;
  line-height: 1;
}
.why-band-stat-label {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  color: #cdd8d6;
  max-width: 14ch;
}
.why-band-stat-source {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: #8fa8a3;
}
.why-band-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.why-band-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-band-icon {
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #23453f;
  color: #7bae9c;
  font-size: 1.15rem;
}
.why-band-item h3 {
  margin: 0 0 0.3rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #ece7d9;
}
.why-band-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #cdd8d6;
}
@media (max-width: 760px) {
  .why-band-inner { grid-template-columns: 1fr; padding: 3.5rem 1.5rem; gap: 2.5rem; }
  .why-band-stats { gap: 1.75rem; }
}
