:root {
  --bg: #f7f4ee;
  --surface: #fffdf8;
  --surface-2: #f0eadf;
  --ink: #111827;
  --muted: #64748b;
  --line: rgba(17, 24, 39, 0.12);
  --brand: #111827;
  --accent: #e58b37;
  --accent-2: #f4c46a;
  --green: #18a058;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 14px 40px rgba(17, 24, 39, 0.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  z-index: 1000;
  border-radius: 999px;
}
.skip-link:focus { left: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.05);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 13px;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.brand-text { font-size: 1.08rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #334155;
  font-weight: 600;
  font-size: 0.94rem;
}
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 14px;
  background: var(--ink);
  color: #fff !important;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--ink);
  margin: 7px auto;
  transition: transform .2s ease;
}
.menu-toggle.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.hero {
  padding: 86px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -160px -10% auto auto;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(229,139,55,.28), rgba(244,196,106,.14) 45%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.93;
  letter-spacing: -0.085em;
  margin-bottom: 24px;
  max-width: 880px;
}
h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}
h3 {
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.hero-lead {
  color: #475569;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  max-width: 720px;
  margin-bottom: 32px;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(17,24,39,.18);
}
.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.45);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-top: 28px;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #334155;
  font-weight: 800;
}
.trust-row span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(229,139,55,.14);
  color: #a85512;
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-card {
  position: relative;
  min-height: 540px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,253,248,.52));
  border: 1px solid rgba(17,24,39,.12);
  box-shadow: var(--shadow);
}
.comparison-card {
  position: absolute;
  width: min(78%, 420px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
}
.comparison-card:first-child { top: 34px; left: 24px; }
.comparison-card-after {
  bottom: 34px;
  right: 24px;
  transform: rotate(3deg);
}
.comparison-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.status-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  background: #fee2e2;
  color: #991b1b;
}
.status-pill-good { background: #dcfce7; color: #166534; }
.file-tag { color: var(--muted); font-size: 0.77rem; font-weight: 700; }
.mock-art {
  min-height: 180px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  background: #ede7dc;
}
.mock-art::before, .mock-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 18px solid rgba(17,24,39,.1);
}
.mock-art::before { width: 130px; height: 130px; }
.mock-art::after { width: 70px; height: 70px; transform: translate(48px, -38px); }
.mock-art span {
  position: relative;
  z-index: 2;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}
.mock-art-before {
  filter: blur(.75px);
  background: repeating-linear-gradient(45deg, #ece2d5 0 12px, #e2d6c6 12px 24px);
  color: rgba(17,24,39,.42);
}
.mock-art-before span {
  letter-spacing: 0.02em;
  word-spacing: 0.16em;
}
.mock-art-after {
  background: linear-gradient(135deg, #111827, #273449);
  color: #fff;
}
.mock-art-after::before, .mock-art-after::after { border-color: rgba(255,255,255,.18); }
.arrow-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(229,139,55,.32);
  z-index: 4;
}

.logo-strip {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.35);
}
.strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #475569;
  font-weight: 800;
  font-size: 0.92rem;
}

.section { padding: 92px 0; }
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.rich-text { color: #475569; font-size: 1.08rem; }
.rich-text p { max-width: 720px; }
.problem-section {
  padding: 72px 0;
}
.problem-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(229,139,55,.13), transparent 38%),
    rgba(255,253,248,.62);
  box-shadow: var(--shadow-soft);
}
.problem-copy h2 {
  max-width: 620px;
  margin-bottom: 16px;
}
.problem-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #475569;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.problem-points {
  display: grid;
  gap: 12px;
}
.problem-point {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.58);
}
.problem-point span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}
.problem-point strong {
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.problem-point p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: .94rem;
  line-height: 1.5;
}
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow) { color: #64748b; font-size: 1.04rem; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(17,24,39,.06);
}
.work-visual {
  min-height: 178px;
  position: relative;
  background: var(--surface-2);
  overflow: hidden;
}
.work-visual::before {
  content: "Before";
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  font-size: .72rem;
  font-weight: 900;
}
.work-visual::after {
  content: "After";
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}

.work-image-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f6f1e8;
}

.work-image-preview img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  padding: 12px;
  background: #f6f1e8;
}

.work-image-preview img:last-child {
  background: #f2eadf;
}
.visual-one { background: linear-gradient(135deg, #f4d6bc 0 50%, #111827 50% 100%); }
.visual-two { background: linear-gradient(135deg, #d8e8f7 0 50%, #e58b37 50% 100%); }
.visual-three { background: linear-gradient(135deg, #eee 0 50%, #111827 50% 100%); }
.visual-four { background: linear-gradient(135deg, #e8dfd1 0 50%, #263345 50% 100%); }
.visual-five { background: linear-gradient(135deg, #f6cdd0 0 50%, #2c7a4b 50% 100%); }
.visual-six { background: linear-gradient(135deg, #d3c3f1 0 50%, #f4c46a 50% 100%); }
.work-body { padding: 20px; }
.work-body h3 { margin-bottom: 9px; font-size: 1.08rem; }
.work-body p { color: #64748b; font-size: .94rem; }
.work-body a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

.services-section, .faq-section { background: var(--surface-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card, .process-step, .price-card, .notice-card, .faq-list details {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 22px;
  padding: 22px;
}
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p, .process-step p, .price-card p, .price-card li, .faq-list p { color: #64748b; }
.notice-card { margin-top: 20px; color: #475569; }
.notice-card strong { color: var(--ink); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-step span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f6e1c9;
  color: #8a4b18;
  font-weight: 900;
  margin-bottom: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}
.pricing-copy p:not(.eyebrow) { color: #64748b; font-size: 1.04rem; }
.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.price-card { position: relative; }
.featured-price {
  background: #111827;
  color: #fff;
}
.featured-price p, .featured-price li { color: #d9e1eb; }
.price {
  font-size: 1.72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--ink) !important;
  margin-bottom: 14px;
}
.featured-price .price { color: #fff !important; }
.popular-tag {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 6px 9px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
}
ul { padding-left: 19px; margin-bottom: 0; }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}
.faq-list details { padding: 0; overflow: hidden; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--accent); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { padding: 0 22px 20px; margin: 0; }

.contact-section { padding-top: 70px; }
.contact-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.contact-card .eyebrow { color: var(--accent-2); }
.contact-card p { color: #dbe2ea; }
.contact-card .button-primary { background: #fff; color: var(--ink); }
.contact-card .button-secondary { border-color: rgba(255,255,255,.2); color: #fff; background: rgba(255,255,255,.08); }
.contact-note {
  flex-basis: 100%;
  font-size: 0.9rem;
  margin-top: 4px;
}
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: rgba(255,255,255,.12);
  padding: 2px 5px;
  border-radius: 6px;
}

.site-footer {
  padding: 26px 0 42px;
  color: #64748b;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.footer-copy {
  max-width: 760px;
}
.footer-inner p { margin: 0; }
.footer-proof {
  margin-top: 8px !important;
  color: #475569;
}
.footer-inner a { font-weight: 800; text-decoration: none; }
.footer-proof a {
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
}

@media (max-width: 960px) {
  h1 { letter-spacing: -0.07em; }
  .hero-grid, .two-col, .problem-card, .pricing-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-card { min-height: 500px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { height: 68px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: rgba(255,253,248,.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .nav-cta { text-align: center; }
  .hero { padding: 58px 0 44px; }
  .section { padding: 68px 0; }
  .problem-section { padding: 42px 0 58px; }
  .problem-card { padding: 24px; border-radius: 24px; gap: 28px; }
  .problem-point { grid-template-columns: 1fr; gap: 8px; }
  .hero-card { min-height: 430px; padding: 18px; }
  .comparison-card { width: 82%; }
  .mock-art { min-height: 150px; }
  .arrow-circle { width: 58px; height: 58px; font-size: 1.45rem; }
  .work-grid, .services-grid, .process-grid, .price-cards { grid-template-columns: 1fr; }
  .strip-inner { justify-content: flex-start; }
  .contact-actions .button { width: 100%; }
  .footer-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

body.modal-open {
  overflow: hidden;
}

.example-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.example-modal[aria-hidden="true"] {
  display: none;
}

.example-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.68);
  backdrop-filter: blur(8px);
}

.example-modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 30px;
  box-shadow: 0 36px 90px rgba(17,24,39,.34);
  outline: none;
}

.example-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(17,24,39,.12);
}

.example-modal-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  min-height: clamp(300px, 52vh, 520px);
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  background: var(--surface-2);
}

.example-image-card {
  position: relative;
  margin: 0;
  min-height: inherit;
  overflow: hidden;
  background: #efe6d8;
}

.example-image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: contain;
  background: #f6f1e8;
}

.example-image-card-after {
  background: #111827;
}

.example-label {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(17,24,39,.14);
}

.example-label-before {
  top: 22px;
  left: 22px;
  background: rgba(255,255,255,.84);
  color: var(--ink);
}

.example-label-after {
  top: 22px;
  left: 22px;
  background: var(--ink);
  color: #fff;
}

.example-modal-copy {
  padding: clamp(22px, 4vw, 38px);
}

.example-modal-copy h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.example-modal-copy p:not(.eyebrow) {
  color: #64748b;
  max-width: 680px;
  margin-bottom: 0;
}

.example-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.example-modal-tags span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(229,139,55,.12);
  color: #8a4b18;
  font-size: .84rem;
  font-weight: 900;
}

.example-comparison-section {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.example-comparison-section[hidden] {
  display: none;
}

.example-comparison-heading {
  margin-bottom: 14px;
}

.example-comparison-heading .eyebrow {
  margin-bottom: 8px;
}

.example-comparison-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.example-comparison-section img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 40px rgba(17,24,39,.08);
}

@media (max-width: 720px) {
  .example-modal {
    padding: 14px;
  }

  .example-modal-panel {
    border-radius: 24px;
  }

  .example-modal-visual {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 24px 24px 0 0;
  }

  .example-image-card {
    min-height: 240px;
  }

  .example-image-card img {
    min-height: 240px;
  }
}

