:root {
  /* Warm, elegant palette: charcoal ink + sand neutrals + terracotta accent. */
  --bg: #fdfbf7;
  --bg-alt: #f4efe6;
  --ink: #201e1b;
  --muted: #6b655c;
  --brand: #bf5d3b;
  --brand-dark: #a44a2c;
  --brand-soft: #f6e7df;
  --line: #e8e1d5;
  --radius: 14px;
  --maxw: 1120px;
  --shadow: 0 10px 30px rgba(32, 30, 27, .08);
  --shadow-lg: 0 18px 50px rgba(32, 30, 27, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { line-height: 1.15; margin: 0 0 .4em; letter-spacing: -.015em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.15rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); font-weight: 750; }
p { margin: 0 0 1rem; }

/* Eyebrow label above headings */
.eyebrow {
  display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--brand); background: var(--brand-soft);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

html { scroll-behavior: smooth; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 720px; }
.center { text-align: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(253,251,247,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.36rem; color: var(--ink); letter-spacing: -.025em; }
.logo:hover { text-decoration: none; }
.logo-mark { display: inline-flex; transition: transform .2s cubic-bezier(.3,1.3,.5,1); }
.logo-mark svg { display: block; border-radius: 11px; box-shadow: 0 6px 16px rgba(191,93,59,.32); }
.logo:hover .logo-mark { transform: rotate(-5deg) scale(1.06); }
.logo-word { display: inline-flex; align-items: baseline; }
.logo-word span { color: var(--brand); font-weight: 750; }

.site-header nav { display: flex; align-items: center; gap: 2px; }
.site-header nav a:not(.btn) {
  color: var(--muted); font-weight: 550; font-size: .96rem; padding: 9px 15px; border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.site-header nav a:not(.btn):hover { color: var(--brand-dark); background: var(--brand-soft); text-decoration: none; }
/* Slim divider separating the text links from the CTA */
.nav-cta { margin-left: 14px; position: relative; }
.nav-cta::before {
  content: ""; position: absolute; left: -8px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 22px; background: var(--line);
}

/* Buttons */
.btn {
  display: inline-block; padding: 13px 24px; border-radius: 999px;
  font-weight: 650; cursor: pointer; border: 1px solid transparent; transition: .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-sm { padding: 9px 20px; }
.btn-primary {
  background: linear-gradient(180deg, #cb6a46, var(--brand));
  color: #fff; box-shadow: 0 8px 20px rgba(191,93,59,.30);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #bd5c3a, var(--brand-dark));
  color: #fff; box-shadow: 0 12px 28px rgba(191,93,59,.40);
}
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-alt); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 72px 0 62px; background: linear-gradient(180deg, var(--brand-soft) 0%, var(--bg) 70%); }
/* Soft terracotta glows behind the content for depth */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 55% at 88% -5%, rgba(191,93,59,.16), transparent 70%),
    radial-gradient(45% 45% at 2% 25%, rgba(191,93,59,.08), transparent 70%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
/* Audience chips — who the service is for */
.audience { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 22px; }
.audience li {
  font-size: .84rem; font-weight: 600; color: var(--brand-dark);
  background: rgba(255,255,255,.72); border: 1px solid var(--brand-soft);
  padding: 6px 14px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 2px 10px rgba(191,93,59,.07); backdrop-filter: blur(4px);
}
.audience li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex: none; }
.hero-copy h1 em { font-style: normal; color: var(--brand); }
.hero-copy .lead { font-size: 1.22rem; color: var(--muted); max-width: 46ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.trust { display: flex; gap: 20px; flex-wrap: wrap; margin: 24px 0 0; padding: 0; list-style: none; }
.trust li { font-size: .95rem; color: var(--muted); font-weight: 550; display: flex; align-items: center; gap: 7px; }
.trust li::before { content: "✓"; color: var(--brand); font-weight: 800; }
.hero-figure { margin: 0; }
.hero-figure .compare { box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-cta, .trust, .audience { justify-content: center; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
}

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; }
.section-sub { color: var(--muted); margin-top: -.2em; font-size: 1.08rem; }
.section-cta { background: linear-gradient(180deg, var(--bg), var(--brand-soft)); text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); }

/* Pred/Po gallery — two photos per row (one on phones). Every tile shows at a
   standard per-orientation ratio (3:2 landscape, 5:7 portrait — set inline from
   pair.ratio), so same-orientation tiles in a row always share one height and
   never overflow the column; object-fit: cover absorbs the small crop. */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.gallery .compare {
  min-width: 0;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
/* Empty slot next to an odd same-orientation photo, until its pair arrives. */
.compare-placeholder {
  border: 2px dashed var(--line); background: var(--bg-alt); box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-weight: 600;
}

/* Promo tile in the gallery: the 3-step pitch next to the odd last photo.
   Stretches to its row partner's height; content centers in the leftover. */
.gallery-promo {
  min-width: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
  background: linear-gradient(160deg, var(--brand-soft), #fff 62%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 4vw, 40px); box-shadow: var(--shadow);
}
.gallery-promo h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 0; }
.gallery-promo .eyebrow { margin-bottom: 0; align-self: flex-start; }
.promo-steps { list-style: none; counter-reset: krok; margin: 0; padding: 0; display: grid; gap: 14px; }
.promo-steps li {
  counter-increment: krok;
  display: grid; grid-template-columns: 40px 1fr; column-gap: 14px; align-items: center;
}
.promo-steps li::before {
  content: counter(krok);
  grid-row: span 2;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(191,93,59,.28);
}
.promo-steps strong { font-size: 1.02rem; }
.promo-steps span { grid-column: 2; color: var(--muted); font-size: .92rem; line-height: 1.4; }
.promo-prices { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.promo-prices li { flex: 1 1 0; min-width: 96px; display: flex; }
.promo-price {
  width: 100%; text-align: center; cursor: pointer; font: inherit; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 8px;
  transition: border-color .15s, background .15s, transform .15s;
}
.promo-price:hover { border-color: var(--brand); transform: translateY(-1px); }
.promo-price strong { display: block; font-size: .82rem; font-weight: 600; color: var(--muted); }
.promo-price span { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }
.promo-price.is-selected { border-color: var(--brand); background: var(--brand-soft); box-shadow: 0 0 0 1px var(--brand) inset; }
.promo-price.is-selected span { color: var(--brand-dark); }
.promo-cta { align-self: stretch; text-align: center; }
.promo-note { color: var(--muted); font-size: .82rem; line-height: 1.45; margin: -6px 0 0; }

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; gap: 14px; }
}

.compare {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; background: #e7e0d5; user-select: none; outline: none;
}
.compare:focus-visible { box-shadow: 0 0 0 3px var(--brand); }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.compare-before-wrap { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 50% 0 0); }
.compare-before-wrap .compare-before { width: 100%; height: 100%; object-fit: cover; max-width: none; }
/* The range input is keyboard/screen-reader only — pointer dragging happens on
   the handle (compare.js), so clicking the photo itself does nothing. */
.compare-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; z-index: 1; pointer-events: none;
}
/* Handle = a 44px-wide invisible grab strip (comfortable touch target) with the
   visible 2px line drawn inside it. touch-action: none lets pointer events own
   the drag; vertical page scrolling still works anywhere on the photo. */
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 44px;
  transform: translateX(-22px); z-index: 3; cursor: ew-resize; touch-action: none;
}
.compare-handle::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  transform: translateX(-1px); background: #fff;
}
.compare-handle::after {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: #fff; color: var(--ink); font-weight: 700; border-radius: 999px;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.compare-tag {
  position: absolute; top: 10px; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 999px; color: #fff; background: rgba(0,0,0,.55); z-index: 2;
}
.compare-tag-before { left: 10px; }
.compare-tag-after { right: 10px; }
.compare figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 8px 12px; font-weight: 600; color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
}

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; margin-top: 28px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow); transition: .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: 1.2rem; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; background: var(--brand-soft);
  color: var(--brand); font-size: 1.4rem; margin-bottom: 14px;
}
.card-icon svg { width: 24px; height: 24px; }
.section-alt .card { background: #fff; }

/* Pricing — three tiers on one row, then the full-width custom band below. */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0 24px; align-items: stretch; }
.price-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.price-name { font-weight: 600; color: var(--muted); }
.price-value { font-size: 2rem; font-weight: 800; margin: 6px 0 10px; }
.price-card p { color: var(--muted); margin: 0; }

/* Checkmark feature list inside a tier card */
.price-list {
  list-style: none; margin: 4px 0 0; padding: 0;
  display: grid; gap: 7px; justify-content: center; text-align: left;
}
.price-list li {
  color: var(--muted); font-size: .95rem;
  display: flex; align-items: baseline; gap: 8px;
}
.price-list li::before { content: "✓"; color: var(--brand); font-weight: 800; }
.price-per { color: var(--muted); opacity: .75; font-size: .87rem; }

/* Selectable tier cards (radio behaviour) */
label.price-card { cursor: pointer; display: block; }
label.price-card:hover { border-color: var(--brand); }
.price-radio { position: absolute; opacity: 0; width: 1px; height: 1px; }
.price-pick {
  display: inline-block; margin-top: 16px; font-size: .8rem; font-weight: 700; letter-spacing: .02em;
  color: var(--brand-dark); background: var(--brand-soft); padding: 6px 18px; border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
label.price-card:focus-within { box-shadow: 0 0 0 3px var(--brand-soft); }
.price-card.is-selected .price-pick { background: var(--brand); color: #fff; }

/* Prominence — exactly one enlarged, brand-tinted card at a time. By default it
   is the featured 39 € card; once a pack is chosen the group gets .has-selection
   and the emphasis moves to the .is-selected card (the featured one shrinks back
   unless it is itself the pick). */
.pricing:not(.has-selection) .price-featured,
.pricing .price-card.is-selected {
  border: 2px solid var(--brand);
  background: linear-gradient(180deg, #fff 0%, var(--brand-soft) 100%);
  transform: scale(1.06); z-index: 1;
}
.pricing:not(.has-selection) .price-featured { box-shadow: 0 20px 46px rgba(191,93,59,.28); }
.pricing .price-card.is-selected { box-shadow: 0 0 0 3px var(--brand-soft), 0 20px 46px rgba(191,93,59,.28); }
.pricing:not(.has-selection) .price-featured .price-name,
.pricing .price-card.is-selected .price-name { color: var(--brand-dark); font-weight: 700; }
.pricing:not(.has-selection) .price-featured .price-value,
.pricing .price-card.is-selected .price-value { color: var(--brand-dark); font-size: 2.5rem; }

.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .02em; padding: 5px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(191,93,59,.4);
  white-space: nowrap;
}
/* The free tier's badge — green "go" signal next to the terracotta featured one. */
.price-badge-free { background: #2e8b57; box-shadow: 0 6px 16px rgba(46,139,87,.35); }

/* Custom-packages band — closes the pricing section, below the CTA row. */
.price-wide {
  margin-top: 38px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 28px; text-align: left; padding: 22px 28px; background: var(--bg-alt);
}
.price-wide-main { display: flex; align-items: baseline; gap: 12px; }
.price-wide .price-name { margin: 0; }
.price-wide .price-value { margin: 0; font-size: 1.5rem; }
.price-wide p { flex: 1 1 240px; }
.price-wide .btn { flex: none; }
@media (max-width: 760px) {
  .pricing { grid-template-columns: 1fr; gap: 26px; }
  .pricing:not(.has-selection) .price-featured,
  .pricing .price-card.is-selected { transform: none; }
  .price-wide { text-align: center; justify-content: center; }
}

/* Closing CTA row under the pricing cards */
.btn-xl { padding: 17px 36px; font-size: 1.08rem; }
.trust-center { justify-content: center; margin-top: 18px; }

/* Steps */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin-top: 24px; }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; font-weight: 500; }
.step-num { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; background: var(--brand); color: #fff; border-radius: 999px; font-weight: 700; margin-right: 10px; }

/* Inline order wizard */
.wizard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; margin-top: 28px; }
@media (max-width: 560px) { .wizard { padding: 18px; } }

.stepper { display: flex; gap: 10px; list-style: none; padding: 0; margin: 0 0 24px; }
.stepper li {
  flex: 1; display: flex; align-items: center; gap: 9px; min-width: 0;
  font-weight: 600; font-size: .95rem; color: var(--muted);
  padding-bottom: 12px; border-bottom: 2px solid var(--line); transition: .18s ease;
}
.stepper li span {
  display: inline-flex; width: 27px; height: 27px; flex: none; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--bg-alt); color: var(--muted); font-size: .85rem; font-weight: 700;
}
.stepper li.is-active { color: var(--ink); border-bottom-color: var(--brand); }
.stepper li.is-active span { background: var(--brand); color: #fff; }
.stepper li.is-done { border-bottom-color: var(--brand-soft); }
.stepper li.is-done span { background: var(--brand-soft); color: var(--brand-dark); }
@media (max-width: 480px) { .stepper li { font-size: .82rem; gap: 6px; } }

.wizard-step { animation: wizard-in .25s ease; }
@keyframes wizard-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 22px; }
.wizard-errors { margin: 0 0 20px; }
.wizard-pack {
  margin: 0 0 18px; font-size: .95rem; color: var(--muted);
  background: var(--brand-soft); border-radius: 10px; padding: 10px 14px;
}
.wizard-pack strong { color: var(--brand-dark); }
.wizard-fallback { text-align: center; margin-top: 16px; font-size: .92rem; color: var(--muted); }

.dz-status { margin: 12px 0 0; font-size: .92rem; font-weight: 600; color: var(--muted); }

/* Modal (pack-upgrade confirmation) */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(32, 30, 27, .5); animation: wizard-in .15s ease;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  max-width: 420px; width: 100%; padding: 26px;
}
.modal h3 { margin-top: 0; }
.modal p { color: var(--muted); margin: 0; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 22px; }

/* Upload overlay (shown while the order's photos are being sent) */
.upload-overlay {
  position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(32, 30, 27, .55); animation: wizard-in .15s ease;
}
.upload-overlay[hidden] { display: none; }
.upload-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  max-width: 380px; width: 100%; padding: 28px; text-align: center;
}
.upload-spinner {
  width: 44px; height: 44px; margin: 0 auto 14px; border-radius: 999px;
  border: 4px solid var(--brand-soft); border-top-color: var(--brand);
  animation: upload-spin .8s linear infinite;
}
@keyframes upload-spin { to { transform: rotate(360deg); } }
.upload-title { font-weight: 700; font-size: 1.08rem; margin: 0 0 6px; }
.upload-sub { color: var(--muted); font-size: .92rem; margin: 0 0 18px; }
.upload-bar { height: 8px; border-radius: 999px; background: var(--brand-soft); overflow: hidden; }
.upload-bar-fill { height: 100%; width: 0; background: var(--brand); border-radius: 999px; transition: width .2s ease; }
.upload-bar.is-indeterminate .upload-bar-fill { width: 40%; animation: upload-slide 1.2s ease-in-out infinite; }
@keyframes upload-slide { from { margin-left: -40%; } to { margin-left: 100%; } }
.upload-pct { font-size: .9rem; font-weight: 600; color: var(--muted); margin: 10px 0 0; min-height: 1.2em; }

.wizard-done { text-align: center; padding: 18px 8px 8px; animation: wizard-in .25s ease; }
.wizard-done h3 { font-size: 1.35rem; }
.wizard-done-mark {
  width: 58px; height: 58px; border-radius: 999px; margin: 0 auto 16px;
  background: #e9f7ef; color: #1e6b41; font-size: 1.9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Drag-and-drop uploader. Light blue on purpose — it breaks the warm palette
   so the drop target reads instantly as "put your photos HERE". */
.dropzone {
  position: relative; border: 2px dashed #8fc0e9; border-radius: var(--radius);
  background: #eaf4fc; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.dropzone-cta { cursor: pointer; }
.dropzone:hover { border-color: #3d8bd4; background: #ddedfa; }
.dropzone.is-drag { border-color: #3d8bd4; background: #cfe6f9; box-shadow: var(--shadow); }
.dropzone-input { display: none; }
.dropzone-cta {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  padding: 34px 20px; color: var(--muted);
}
.dropzone-cta svg { color: #3d8bd4; margin-bottom: 6px; }
.dropzone-cta strong { color: var(--ink); font-size: 1.06rem; }
.dropzone.has-files .dropzone-cta { padding: 16px 20px; }

.dropzone-list {
  list-style: none; margin: 0; padding: 0 14px 14px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 10px;
}
.dropzone-list:empty { padding: 0; }
.dz-item { position: relative; aspect-ratio: 1 / 1; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; }
.dz-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dz-name {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 6px 4px;
  font-size: .66rem; color: #fff; background: linear-gradient(0deg, rgba(0,0,0,.62), transparent);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dz-remove {
  position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; border: none; border-radius: 999px;
  background: rgba(0,0,0,.55); color: #fff; font-size: 1.05rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .15s ease;
}
.dz-remove:hover { background: var(--brand); }

/* FAQ */
details { border-bottom: 1px solid var(--line); padding: 14px 0; }
details summary { font-weight: 600; cursor: pointer; }
details p { margin: 10px 0 0; color: var(--muted); }

/* Footer */
.site-footer { background: var(--ink); color: #cdd3dc; padding: 40px 0; margin-top: 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-footer a { color: #fff; }
.footer-legal { color: #9aa4b2; font-size: .9rem; }

/* Forms */
.form { margin-top: 24px; }
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-weight: 600; margin-bottom: 6px; }
.field b { color: #c0392b; }
.field input[type=text], .field input[type=email], .field input[type=tel],
.field select, .field textarea, .field input[type=file] {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: #fff;
}
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.check input { margin-top: 3px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Alerts */
.alert { padding: 14px 16px; border-radius: 10px; margin: 18px 0; }
.alert ul { margin: 8px 0 0; padding-left: 20px; }
.alert-error { background: #fdecea; border: 1px solid #f5b7b1; color: #922b21; }
.alert-success { background: #e9f7ef; border: 1px solid #a9dfbf; color: #1e6b41; }
.alert-info { background: #eef3ff; border: 1px solid #b8ccf6; color: #1f52c9; }

/* Tables (admin) */
.table { width: 100%; border-collapse: collapse; margin-top: 16px; background: #fff; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.table th { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.table tr:hover td { background: var(--bg-alt); }

/* Status badges */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .78rem; font-weight: 600; }
.badge-new { background: #eef3ff; color: #1f52c9; }
.badge-in_progress { background: #fff4e0; color: #a56100; }
.badge-delivered { background: #e9f7ef; color: #1e6b41; }
.badge-paid { background: #e3f0e6; color: #14532d; }
.badge-revision_requested { background: #fdecea; color: #922b21; }
.badge-cancelled { background: #eceef1; color: #5b6472; }

/* Admin layout */
.admin-bar { background: var(--ink); color: #cdd3dc; }
.admin-bar .container { display: flex; align-items: center; justify-content: space-between; height: 52px; }
.admin-bar a { color: #fff; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.filters a { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); }
.filters a.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 12px; margin: 14px 0; }
.photo-grid a img { width: 100%; height: 110px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }

/* Legal pages */
.legal h2 { margin-top: 1.8em; font-size: 1.25rem; }
.legal .muted { color: var(--muted); font-size: .9rem; margin-top: -.4em; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal-table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: .95rem; }
.legal-table th, .legal-table td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
.legal-table th { background: var(--bg-alt); }

.action-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 14px 0; }
.btn.btn-sm { padding: 6px 14px; font-size: .9rem; }

/* Delivery page */
.download-card {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--brand-soft), #fff 70%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 30px; margin: 22px 0; box-shadow: var(--shadow);
}
.download-card h2 { font-size: 1.4rem; margin-bottom: .35em; }
.download-card p { margin: 0 0 .55rem; color: var(--muted); max-width: 640px; }
.download-card .download-status { color: var(--ink); }
.download-card .btn-download { padding: 16px 30px; font-size: 1.06rem; white-space: nowrap; }
.progress-track {
  width: 100%; max-width: 420px; height: 8px; margin-top: 4px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
}
.progress-fill { height: 100%; background: var(--brand); border-radius: 999px; }

.delivery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 20px; margin-top: 16px; }
.delivery-item { margin: 0; }
.delivery-item .compare { aspect-ratio: 4 / 3; }
.delivery-single { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); display: block; }
.delivery-item figcaption { margin-top: 8px; text-align: right; }

@media (max-width: 620px) {
  .site-header nav a:not(.btn) { display: none; }
  .field-row { grid-template-columns: 1fr; }
}
