:root {
  --ink: #182026;
  --muted: #63717a;
  --line: #dde5e5;
  --paper: #fbfaf7;
  --white: #ffffff;
  --teal: #087f7c;
  --teal-dark: #065c5d;
  --coral: #ee6b5f;
  --sun: #f5b84b;
  --graphite: #222831;
  --shadow: 0 24px 70px rgba(20, 31, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.cart-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(221, 229, 229, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--white);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 127, 124, 0.18);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.55);
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 1px;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
}

.site-nav a,
.cart-button,
.nav-toggle,
.close-cart,
.add-cart,
.filter-chip {
  min-height: 42px;
  border: 0;
  cursor: pointer;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: #344149;
  font-weight: 700;
  font-size: 14px;
}

.site-nav a:hover,
.filter-chip:hover {
  background: #edf3f2;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  font-weight: 800;
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--coral);
  font-size: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 20px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #10181b;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 19, 22, 0.86) 0%, rgba(9, 19, 22, 0.54) 44%, rgba(9, 19, 22, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 17, 19, 0.36), rgba(8, 17, 19, 0.02));
}

.hero-content {
  position: relative;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  color: var(--white);
  padding: 88px 0 132px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ee8df;
}

.hero h1,
.section h2 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.hero .tagline,
.contact-hero .tagline {
  margin-bottom: 14px;
  color: #b6fff2;
  font-weight: 900;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.add-cart:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(238, 107, 95, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.icon-btn svg,
.footer-social svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.btn-instagram {
  color: var(--white);
  background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
  box-shadow: 0 14px 30px rgba(131, 58, 180, 0.24);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -72px clamp(18px, 4vw, 58px) 0;
  position: relative;
  z-index: 2;
  background: rgba(221, 229, 229, 0.72);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 138px;
  padding: 26px;
  background: var(--white);
}

.trust-strip strong {
  display: block;
  font-size: 28px;
  letter-spacing: 0;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 58px);
}

.intro-section,
.process-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1.18fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-copy h2,
.section-head h2,
.contact-copy h2 {
  max-width: 780px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
}

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

.intro-grid article,
.timeline div,
.contact-card,
.product-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.intro-grid article {
  min-height: 250px;
  padding: 24px;
}

.mini-icon,
.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #e9f6f4;
  color: var(--teal-dark);
  font-weight: 900;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
}

p {
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  padding: 0 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 900;
}

.filter-chip.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #e8eeee;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.badge.cool {
  background: var(--teal);
}

.badge.warm {
  background: var(--sun);
  color: #352615;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
}

.category {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body p {
  margin-bottom: 0;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.add-cart {
  min-width: 72px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.product-card-text {
  background: var(--graphite);
  color: var(--white);
  border-color: var(--graphite);
}

.product-card-text p,
.product-card-text .category {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  margin: 18px 0 8px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
}

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

.timeline div {
  padding: 26px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  background: var(--teal-dark);
  color: var(--white);
}

.contact-section .eyebrow {
  color: #b6fff2;
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.contact-card {
  padding: 26px;
  color: var(--ink);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.16);
}

.contact-card p {
  font-size: 17px;
}

.map-link {
  display: inline-flex;
  margin: 8px 0 20px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-preview {
  position: relative;
  display: block;
  min-height: 230px;
  border-radius: 8px;
  overflow: hidden;
  background: #dfe8e6;
}

.map-preview iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
}

.large-map iframe {
  min-height: 430px;
}

.map-center-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--coral);
  border: 4px solid var(--white);
  box-shadow: 0 12px 24px rgba(20, 31, 36, 0.24);
  transform: translate(-50%, -100%) rotate(-45deg);
  pointer-events: none;
}

.map-center-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--white);
}

.map-pin-card {
  position: absolute;
  left: 50%;
  top: calc(50% - 88px);
  max-width: calc(100% - 32px);
  padding: 10px 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(20, 31, 36, 0.16);
  transform: translateX(-50%);
  pointer-events: none;
  text-align: center;
}

.map-pin-card strong,
.map-pin-card span {
  display: block;
}

.map-pin-card strong {
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.1;
}

.map-pin-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  justify-content: flex-end;
  background: rgba(15, 24, 27, 0.46);
}

.cart-drawer.is-open {
  display: flex;
}

.cart-panel {
  width: min(430px, 100%);
  min-height: 100%;
  padding: 24px;
  background: var(--paper);
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.2);
}

.cart-head,
.cart-row,
.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-head {
  margin-bottom: 22px;
}

.cart-head h2 {
  margin: 0;
}

.close-cart {
  padding: 0 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 900;
}

.cart-row {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cart-row strong,
.cart-row span {
  display: block;
}

.cart-row span {
  color: var(--muted);
  font-size: 13px;
}

.remove-item {
  border: 0;
  background: transparent;
  color: var(--coral);
  cursor: pointer;
  font-weight: 900;
}

.empty-cart {
  padding: 30px 0;
  text-align: center;
}

.cart-summary {
  margin: 24px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.checkout-link {
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 40px rgba(8, 58, 41, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(8, 58, 41, 0.34);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: clamp(54px, 7vw, 94px) clamp(18px, 4vw, 58px);
  background:
    linear-gradient(90deg, rgba(6, 92, 93, 0.96), rgba(8, 127, 124, 0.78)),
    url("../images/hero-3d-studio.png") center / cover;
  color: var(--white);
}

.contact-hero h1 {
  max-width: 650px;
  margin: 12px 0 16px;
  font-size: clamp(36px, 4.7vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.printer-hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 244, 0.9));
  box-shadow: 0 28px 80px rgba(7, 37, 39, 0.25);
  overflow: hidden;
}

.printer-hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -10% -28% 10%;
  height: 46%;
  background: radial-gradient(circle, rgba(8, 127, 124, 0.24), transparent 68%);
}

.printer-hero-visual img {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1.2 / 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(24, 32, 38, 0.18));
}

.printer-hero-visual span {
  position: relative;
  width: min(100%, 430px);
  margin-top: 8px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.form-head h2,
.contact-map-card h2 {
  margin: 8px 0 10px;
  font-size: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 58px);
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  font-weight: 900;
  color: var(--white);
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-section,
  .process-section,
  .contact-section,
  .contact-hero,
  .contact-form-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 77px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 64px;
    padding-bottom: 160px;
  }

  .trust-strip,
  .intro-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .cart-icon {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(9, 19, 22, 0.9), rgba(9, 19, 22, 0.55));
  }

  .trust-strip {
    margin-top: -96px;
  }

  .trust-strip div {
    min-height: 112px;
  }

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

  .product-foot,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .add-cart {
    width: 100%;
  }
}
