*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #172025;
  --muted: #5e6b73;
  --soft: #f5f7f4;
  --line: #dfe7df;
  --panel: #ffffff;
  --green: #0a7c66;
  --green-dark: #075848;
  --amber: #f0aa3e;
  --coral: #d8644c;
  --sky: #d9ebef;
  --shadow: 0 18px 54px rgba(23, 32, 37, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfa;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 231, 223, 0.85);
  background: rgba(251, 252, 250, 0.94);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 8px 20px rgba(10, 124, 102, 0.22);
}

.brand small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--green);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(10, 124, 102, 0.35);
  background: #f7fbf8;
}

.btn.wide {
  width: 100%;
  margin-top: 18px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  align-items: center;
  min-height: calc(100vh - 72px);
  gap: 54px;
  padding: 52px 0 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(10, 124, 102, 0.18);
  border-radius: 999px;
  color: var(--green);
  background: #eef8f3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-heading h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 18px 20px 18px 0;
}

.metric + .metric {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 74px 34px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-ticket {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(380px, 82%);
  padding: 22px;
  border: 1px solid rgba(223, 231, 223, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(23, 32, 37, 0.14);
}

.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.work-ticket h2 {
  margin: 16px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.work-ticket p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: 6px;
}

.band {
  padding: 86px 0;
}

.band-soft {
  background: var(--soft);
}

.section-head {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.page-heading h1 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.page-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.package-card,
.desk-card,
.contact-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
}

.service-card-body {
  padding: 22px;
}

.service-card h3,
.package-card h3,
.contact-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.service-card p,
.package-card p,
.contact-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.service-card p,
.package-card p,
.contact-card p {
  margin: 0;
  font-size: 14px;
}

.process {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: 54px;
}

.step-list {
  display: grid;
  gap: 14px;
}

.step-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--green);
  background: #eaf5ef;
  font-weight: 900;
}

.step-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.step-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.desk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.desk-card {
  display: block;
  padding: 28px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.desk-card:hover,
.desk-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(10, 124, 102, 0.35);
  box-shadow: 0 16px 40px rgba(23, 32, 37, 0.08);
}

.desk-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--green);
  background: #eaf5ef;
  font-weight: 900;
}

.desk-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.desk-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 26px;
}

.package-card.featured {
  border-color: rgba(10, 124, 102, 0.6);
  box-shadow: 0 14px 44px rgba(10, 124, 102, 0.12);
}

.price {
  margin: 22px 0 14px;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.package-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 2px;
  background: var(--amber);
}

.package-card .btn {
  margin-top: auto;
}

.company-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.company-panel img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 8px;
}

.info-table {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.info-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.info-row strong {
  color: var(--ink);
}

.info-row span {
  color: var(--muted);
}

.cta-band {
  color: #fff;
  background: linear-gradient(135deg, #075848 0%, #0a7c66 54%, #235f6d 100%);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-content h2 {
  max-width: 720px;
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
}

.cta-content p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-content .btn-secondary {
  color: var(--ink);
}

.footer {
  padding: 46px 0 32px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(120px, 1fr));
  gap: 34px;
}

.footer p,
.footer a,
.footer-bottom {
  color: var(--muted);
  font-size: 14px;
}

.footer h4 {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--green);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.page-heading {
  padding: 70px 0 36px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 86px;
}

.order-summary {
  position: sticky;
  top: 92px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 32, 37, 0.08);
}

.order-summary h2 {
  margin: 0 0 14px;
}

.summary-title {
  margin-top: 28px !important;
}

.quote-total {
  margin: 4px 0 6px;
  color: var(--green-dark);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  font-weight: 900;
}

.quote-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.summary-line strong {
  color: var(--ink);
}

.form-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(10, 124, 102, 0.65);
  box-shadow: 0 0 0 4px rgba(10, 124, 102, 0.1);
}

.file-list {
  padding: 13px 14px;
  border: 1px dashed rgba(10, 124, 102, 0.35);
  border-radius: 8px;
  color: var(--muted);
  background: #f8fbf8;
  font-size: 13px;
}

.file-list strong,
.file-list span {
  display: block;
}

.file-list ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.form-actions,
.success-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.notice {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(240, 170, 62, 0.36);
  border-radius: 8px;
  color: #6d4a0e;
  background: #fff8e8;
  font-size: 13px;
}

.success-box {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(10, 124, 102, 0.3);
  border-radius: 8px;
  color: var(--green-dark);
  background: #ecf7f1;
}

.success-box.visible {
  display: block;
}

.success-box p {
  margin: 8px 0 0;
}

.reference-code {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  color: var(--green-dark);
  background: #dff2e8;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.track-result {
  margin-top: 22px;
}

.tracking-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tracking-card h2 {
  margin: 16px 0 8px;
}

.tracking-card p {
  margin: 0;
  color: var(--muted);
}

.tracking-card.not-found {
  background: #fff8e8;
  border-color: rgba(240, 170, 62, 0.4);
}

.tracking-card.not-found .btn {
  margin-top: 16px;
}

.status-timeline {
  display: grid;
  gap: 16px;
  margin: 24px 0 8px;
}

.status-step {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.status-step > span {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.status-step.done > span {
  border-color: var(--green);
  background: var(--green);
}

.status-step.active > span {
  border-color: var(--amber);
  background: var(--amber);
}

.status-step strong,
.status-step small {
  display: block;
}

.status-step strong {
  color: var(--ink);
}

.info-table.compact {
  margin-top: 18px;
}

.recent-orders {
  display: grid;
  gap: 10px;
}

.recent-order {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.recent-order:hover,
.recent-order:focus-visible {
  border-color: rgba(10, 124, 102, 0.4);
}

.recent-order span,
.empty-state {
  color: var(--muted);
  font-size: 13px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 86px;
}

.contact-card {
  padding: 26px;
}

.legal-card {
  max-width: 820px;
  margin: 0 auto 86px;
  padding: 34px;
}

.legal-card h2 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  font-size: 15px;
}

.legal-card a {
  color: var(--green);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .process,
  .company-panel,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-photo {
    inset-left: 0;
  }

  .service-grid,
  .package-grid,
  .desk-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .order-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-inner,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .hero h1,
  .page-heading h1 {
    font-size: 42px;
  }

  .hero-photo {
    inset: 0 0 112px 0;
  }

  .work-ticket {
    width: 94%;
  }

  .metric-row,
  .form-grid,
  .info-row,
  .cta-content,
  .form-actions,
  .success-actions,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-actions .btn,
  .success-actions .btn {
    width: 100%;
  }

  .metric + .metric {
    padding-left: 0;
    border-left: 0;
  }

  .metric {
    padding-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .company-panel,
  .form-card,
  .legal-card {
    padding: 24px;
  }
}
