:root {
  --green-950: #0d3327;
  --green-900: #114232;
  --green-800: #18543f;
  --green-100: #e7f3ec;
  --green-50: #f3faf6;
  --ink: #17211d;
  --muted: #64716b;
  --line: #dce7e1;
  --white: #ffffff;
  --gold: #d99a28;
  --shadow: 0 18px 44px rgba(13, 51, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: var(--green-900);
  box-shadow: 0 0 0 1px rgba(17, 66, 50, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  color: var(--green-950);
  font-size: 0.92rem;
  font-weight: 700;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  flex: 0 0 auto;
  padding: 10px 0;
}

.hero {
  display: grid;
  gap: 28px;
  min-height: calc(100svh - 71px);
  padding: clamp(36px, 8vw, 88px) clamp(18px, 5vw, 64px) 34px;
  align-items: center;
}

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

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 8px 12px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(13, 51, 39, 0.08);
}

.hero-brand img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.hero-brand strong,
.hero-brand small {
  display: block;
}

.hero-brand strong {
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.1;
}

.hero-brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.45rem, 12vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.85rem, 7vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-subtitle {
  margin: 22px 0 0;
  color: var(--green-800);
  font-size: clamp(1.18rem, 5vw, 1.55rem);
  font-weight: 800;
}

.hero-text {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(17, 66, 50, 0.22);
}

.button.secondary {
  background: var(--green-100);
  color: var(--green-950);
  border-color: #c7ddcf;
}

.button.ghost {
  background: var(--white);
  color: var(--green-900);
  border-color: var(--line);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: min(250px, calc(100% - 28px));
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 26px rgba(13, 51, 39, 0.16);
}

.hero-badge span,
.hero-badge strong {
  display: block;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-badge strong {
  color: var(--green-950);
  font-size: 0.98rem;
  line-height: 1.25;
}

.section {
  padding: clamp(54px, 10vw, 98px) clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.section-heading.split {
  display: grid;
  gap: 18px;
  max-width: none;
}

.section-heading.split p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.service-grid,
.gallery-grid,
.size-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.gallery-card,
.size-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.service-card {
  padding: 20px;
}

.service-card p,
.gallery-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.support-service {
  background: var(--green-50);
  border-color: #cfe4d7;
}

.card-icon {
  display: inline-grid;
  min-width: 42px;
  height: 32px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-50);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-section,
.order-section {
  background: var(--green-50);
}

.digital-section {
  display: grid;
  gap: 22px;
  padding-top: 0;
}

.digital-copy {
  max-width: 760px;
}

.digital-copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

.digital-copy .button {
  margin-top: 22px;
}

.digital-list {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(13, 51, 39, 0.08);
}

.digital-list ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.digital-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.digital-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--gold);
}

.size-section {
  padding-top: 0;
}

.size-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
}

.trust-grid {
  display: grid;
  gap: 10px;
}

.trust-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d8eadf;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-950);
  font-weight: 700;
}

.trust-grid span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.gallery-card:nth-child(2) img {
  object-position: 70% 52%;
}

.gallery-card:nth-child(3) img {
  object-position: 54% 50%;
}

.gallery-card:nth-child(4) img {
  object-fit: contain;
  background: var(--white);
}

.gallery-card div {
  padding: 16px;
}

.steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: order;
}

.steps li {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #d8eadf;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-950);
  font-weight: 800;
}

.steps span {
  color: var(--green-800);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pricing-note {
  margin: clamp(18px, 5vw, 48px) clamp(18px, 5vw, 64px);
  padding: clamp(22px, 5vw, 34px);
  border-left: 5px solid var(--green-900);
  border-radius: 8px;
  background: #fff8ec;
}

.pricing-note p {
  max-width: 920px;
  margin: 0;
  color: #4f3c1e;
  font-size: 1.05rem;
  font-weight: 700;
}

.contact {
  display: grid;
  gap: 18px;
  margin: clamp(54px, 10vw, 98px) clamp(18px, 5vw, 64px);
  padding: clamp(28px, 7vw, 54px);
  border-radius: 8px;
  background: var(--green-950);
  color: var(--white);
}

.contact .eyebrow,
.contact h2,
.contact p {
  color: var(--white);
}

.contact p {
  max-width: 620px;
  margin: 14px 0 0;
  opacity: 0.86;
}

.contact .button.secondary {
  background: var(--white);
}

.contact .button.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.qr-panel {
  display: grid;
  gap: 12px;
  max-width: 280px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.qr-panel img {
  width: 100%;
  border-radius: 8px;
}

.qr-panel p {
  margin: 0;
  font-size: 0.9rem;
}

.footer {
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 520px) {
  .button {
    width: 100%;
  }

  .site-header {
    align-items: flex-start;
  }
}

@media (min-width: 720px) {
  .nav {
    width: auto;
    gap: 20px;
    overflow: visible;
  }

  .service-grid,
  .gallery-grid,
  .size-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .digital-section {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    align-items: start;
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  }

  .section-heading.split {
    grid-template-columns: 1fr 0.75fr;
    align-items: end;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-grid .support-service {
    grid-column: span 2;
  }

  .size-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .contact-actions {
    justify-content: flex-end;
    max-width: 430px;
  }

  .qr-panel {
    grid-column: 2;
    justify-self: end;
  }
}
