:root {
  --bg: #f4efe7;
  --surface: #fffaf2;
  --surface-strong: #fff3df;
  --ink: #2e211a;
  --muted: #5c4a3f;
  --brand: #6c3f25;
  --brand-2: #bb7a2c;
  --line: #e8d8c1;
  --shadow: 0 16px 45px rgba(82, 43, 16, 0.12);
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body {
    background: #f4efe7 !important;
  }

  .section {
    backdrop-filter: none !important;
    background: #fffdf8 !important;
  }

  .hero,
  .card,
  .shot,
  .brand-card,
  .hero-example,
  .mockup-card,
  .data-note {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .section-head,
  h2,
  h3 {
    break-after: avoid;
    page-break-after: avoid;
  }

  .gallery .shot:first-child img {
    max-height: 560px !important;
  }

  .shot img,
  .brand-card img,
  .mockup-card img {
    max-height: 520px;
    object-fit: contain;
  }

  .layout {
    margin-bottom: 0;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(250, 214, 163, 0.23), transparent 34%),
    radial-gradient(circle at 92% 2%, rgba(209, 167, 120, 0.2), transparent 30%),
    linear-gradient(180deg, #faf5ee 0%, var(--bg) 100%);
  min-height: 100vh;
  position: relative;
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(2px);
}

.orb-1 {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(182, 122, 45, 0.11);
  right: -90px;
  top: 20%;
}

.orb-2 {
  width: 260px;
  height: 260px;
  border-radius: 38% 62% 49% 51% / 45% 45% 55% 55%;
  background: rgba(108, 63, 37, 0.1);
  left: -70px;
  bottom: 10%;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.14;
}

.hero {
  width: min(1160px, calc(100% - 30px));
  margin: 28px auto 12px;
  border-radius: 22px;
  padding: 34px 32px;
  color: #fff8ef;
  background: linear-gradient(125deg, #4b2614 0%, #7c4828 50%, #b06a30 100%);
  box-shadow: var(--shadow);
}

.hero-kicker {
  margin: 0 0 8px;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.86;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  max-width: 900px;
}

.hero-lead {
  margin: 12px 0 0;
  max-width: 940px;
  line-height: 1.62;
  color: #fff0dc;
}

.layout {
  width: min(1160px, calc(100% - 30px));
  margin: 16px auto 40px;
}

.section {
  margin: 18px 0 28px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.74);
  backdrop-filter: blur(5px);
}

.section-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.step {
  margin: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  color: #ffe8cd;
}

.section h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
}

.section-text {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.56;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plan-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-stack .card p {
  margin: 0 0 10px;
  color: #4a3a2f;
  line-height: 1.5;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(75, 34, 10, 0.08);
  padding: 16px 16px 10px;
}

.card h3 {
  font-size: 1.16rem;
  margin-bottom: 8px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: #4a3a2f;
}

.card li {
  margin-bottom: 8px;
  line-height: 1.42;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  counter-reset: shot-counter;
}

.shot {
  counter-increment: shot-counter;
  margin: 0;
  background: #ffffff;
  border: 1px solid #e7d7c0;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 28px rgba(75, 34, 10, 0.09);
  position: relative;
}

.shot::before {
  content: "Print " counter(shot-counter, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  color: #ffeed6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.shot img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  border: 1px solid #e3d4bf;
  background: #fcf8f1;
}

.gallery .shot:first-child img {
  max-height: 860px;
}

.shot figcaption {
  margin-top: 10px;
  color: #4f4035;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
}

.data-note {
  margin: 14px auto 4px;
  max-width: 980px;
  padding: 12px 14px;
  border: 1px solid #e0c8a8;
  border-left: 4px solid var(--brand-2);
  border-radius: 10px;
  background: #fff5e7;
  color: #4e3d31;
  font-weight: 600;
  line-height: 1.45;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.brand-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-strong) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(75, 34, 10, 0.1);
}

.brand-card h3 {
  font-size: 1.16rem;
  margin-bottom: 12px;
}

.brand-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  background: #fffefb;
  border-radius: 12px;
  border: 1px dashed #d5b791;
  padding: 14px;
}

.brand-card p {
  margin: 12px 0 0;
  color: #5f4e40;
  line-height: 1.48;
}

.hero-example {
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: 0 10px 28px rgba(75, 34, 10, 0.09);
}

.hero-example img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid #e2d1b8;
}

.hero-example figcaption {
  margin-top: 10px;
  color: #58483c;
  font-weight: 600;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.mockup-card {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf9;
}

.mockup-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  border: 1px solid #e2d1b8;
}

.mockup-card figcaption {
  margin-top: 8px;
  color: #5a4a3d;
  font-size: 0.9rem;
  font-weight: 600;
}

.card-full {
  padding-bottom: 12px;
}

.brand-note {
  margin: 10px 0 4px;
  padding: 10px 12px;
  border-left: 4px solid var(--brand-2);
  background: #fff6e8;
  border-radius: 8px;
  color: #4e3f34;
  font-weight: 600;
}

@media (max-width: 920px) {
  .cards-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .mockup-grid {
    grid-template-columns: 1fr;
  }

  .brand-card img {
    height: 180px;
  }

  .hero {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .layout {
    width: min(1160px, calc(100% - 18px));
  }

  .section {
    padding: 14px;
    border-radius: 14px;
  }
}
