:root {
  --green: #1f6b59;
  --green-dark: #195747;
  --green-deep: #155243;
  --ink: #22252a;
  --muted: #737b7a;
  --soft: #f4f3f1;
  --line: #e7e5e0;
  --white: #ffffff;
  --cream: #f7f1ea;
  --gold: #d4b574;
  --shadow: 0 18px 45px rgba(28, 37, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 6vw, 118px);
  background: rgba(250, 249, 247, 0.94);
  border-bottom: 1px solid rgba(20, 82, 67, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(25, 87, 71, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 58px;
  height: 58px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(25, 87, 71, 0.12);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: #2f3e3a;
  font-size: 12px;
  font-weight: 600;
}

.quote-btn,
.primary-btn,
.submit-btn {
  justify-self: end;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  font: 700 12px/1 "Inter", Arial, sans-serif;
  padding: 14px 23px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quote-btn:hover,
.primary-btn:hover,
.submit-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31, 107, 89, 0.16);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  place-items: center;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--green-dark);
}

.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(320px, 0.93fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
  padding: 108px clamp(24px, 9vw, 136px) 76px;
  background: #f7f7f5;
}

.hero-copy h1 {
  max-width: 660px;
  font-size: clamp(48px, 5.9vw, 82px);
  line-height: 0.98;
}

.hero-copy p {
  max-width: 520px;
  margin: 24px 0 28px;
  color: #5b6461;
  font-size: 16px;
  line-height: 1.55;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  color: #343a39;
}

.hero-stats strong {
  display: block;
  font-size: 20px;
  letter-spacing: 0;
}

.hero-stats small {
  display: block;
  margin-top: 4px;
  color: #7f8785;
  font-size: 11px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background-image: url("./assets/customer-avatars.png");
  background-size: 300% 100%;
  background-position: left center;
  box-shadow: 0 6px 14px rgba(28, 37, 34, 0.12);
}

.avatars span:first-child {
  margin-left: 0;
}

.avatars span:nth-child(2) {
  background-position: center center;
}

.avatars span:nth-child(3) {
  background-position: right center;
}

.stars {
  color: #d5aa34;
  letter-spacing: 1px;
}

.hero-media {
  justify-self: center;
  width: min(100%, 570px);
  max-height: 640px;
  overflow: hidden;
  border-radius: 9px 90px 9px 9px;
  box-shadow: 0 22px 60px rgba(20, 31, 28, 0.12);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 33% center;
}

section {
  padding: 84px clamp(24px, 9vw, 136px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(38px, 8vw, 104px);
}

.about-image img {
  width: 100%;
  border-radius: 2px;
}

.section-copy h2,
.section-center h2,
.why h2,
.monitor h2,
.collaborations h2,
.contact h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.section-copy p,
.section-center p,
.monitor-copy p {
  margin-top: 12px;
  color: #505957;
  font-size: 14px;
  line-height: 1.72;
}

.section-copy .primary-btn {
  display: inline-block;
  margin-top: 28px;
}

.section-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-center p {
  max-width: 860px;
  margin: 14px auto 0;
}

.video-section {
  padding-top: 78px;
}

.video-card {
  position: relative;
  max-width: 850px;
  margin: 56px auto 0;
  overflow: hidden;
  border: 12px solid var(--white);
  border-radius: 14px;
  background: #cfc7bb;
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.95);
}

.play-btn {
  position: absolute;
  inset: 0;
  width: 74px;
  height: 74px;
  margin: auto;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.play-btn svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.video-card.is-playing .play-btn {
  opacity: 0;
  pointer-events: none;
}

.why {
  background: var(--soft);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 42px auto 0;
}

.why-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 22px 26px;
  border-radius: 5px;
  background: var(--white);
  text-align: left;
}

.icon-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--green) 0 23%, transparent 24%),
    conic-gradient(from 45deg, #d8ebe5, #7fb5a7, #d8ebe5, #7fb5a7, #d8ebe5);
}

.why h3,
.care-grid h3 {
  margin-bottom: 7px;
  color: #25302e;
  font: 700 15px/1.2 "Inter", Arial, sans-serif;
}

.why p,
.care-grid p {
  color: #697270;
  font-size: 12px;
  line-height: 1.5;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1040px;
  margin: 48px auto 0;
}

.care-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.care-grid img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.care-grid div {
  padding: 18px 20px 24px;
  text-align: center;
}

.monitor {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.monitor-copy ul {
  margin: 28px 0 34px;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.monitor-copy li {
  position: relative;
  margin: 18px 0;
  padding-left: 42px;
  font-weight: 700;
  font-size: 14px;
}

.monitor-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 24px;
  height: 24px;
  background: var(--green);
  clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%);
}

.monitor-note {
  max-width: 460px;
}

.monitor-art {
  justify-self: center;
  width: min(100%, 780px);
  overflow: hidden;
  background: var(--white);
}

.monitor-art img {
  width: 116%;
  max-width: none;
  transform: translateX(-11%);
  object-fit: contain;
}

.red-bin {
  padding-top: 54px;
}

.red-image {
  border-radius: 22px;
  overflow: hidden;
  background: #f5f4f1;
}

.red-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collaborations {
  padding: clamp(62px, 7vw, 90px) 0 clamp(58px, 7vw, 86px);
  overflow: hidden;
  background: #fbf7f1;
  text-align: center;
}

.collaborations h2 {
  margin-bottom: 36px;
}

.collab-marquees {
  display: grid;
  gap: clamp(14px, 2.4vw, 24px);
}

.collab-marquee {
  position: relative;
  overflow: hidden;
  height: clamp(82px, 8vw, 140px);
  display: flex;
  align-items: center;
}

.collab-marquee::before,
.collab-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(54px, 10vw, 150px);
  pointer-events: none;
}

.collab-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fbf7f1 0%, rgba(251, 247, 241, 0) 100%);
}

.collab-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fbf7f1 0%, rgba(251, 247, 241, 0) 100%);
}

.collab-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: collab-scroll 34s linear infinite;
  will-change: transform;
}

.collab-marquee.is-reverse .collab-track {
  animation-direction: reverse;
  animation-duration: 42s;
}

.collab-track img {
  height: 100%;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.96);
}

@keyframes collab-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.enquire {
  background: #fbfbfa;
}

.enquiry-form {
  max-width: 1040px;
  margin: 42px auto 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(20, 31, 28, 0.08);
}

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

label {
  display: block;
  margin-bottom: 18px;
  color: #4f5856;
  font-size: 12px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d9dfdd;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font: 500 14px/1.2 "Inter", Arial, sans-serif;
  padding: 13px 14px;
  outline: none;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 107, 89, 0.1);
}

.submit-btn {
  width: 100%;
  margin-top: 4px;
  padding: 16px 24px;
}

.form-status {
  min-height: 20px;
  margin-top: 14px;
  text-align: center;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

.contact {
  padding-top: 74px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 42px auto 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 34px;
  border: 1px solid #8aa59e;
  background: var(--white);
}

.contact-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: #e4f0ed;
  color: var(--green);
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.contact-card small {
  display: block;
  margin-bottom: 6px;
  color: #697270;
  font-weight: 700;
  font-size: 12px;
}

.contact-card strong {
  font-size: clamp(15px, 2vw, 19px);
}

.legal-hero {
  padding: 132px clamp(24px, 9vw, 136px) 64px;
  background: #f7f7f5;
}

.legal-hero-inner {
  max-width: 960px;
}

.legal-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-hero h1 {
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
}

.legal-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: #5b6461;
  font-size: 17px;
  line-height: 1.65;
}

.legal-content {
  padding: 76px clamp(24px, 9vw, 136px) 96px;
}

.legal-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.legal-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(20, 31, 28, 0.07);
}

.legal-card section {
  padding: 0;
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.12;
}

.legal-card p,
.legal-card li {
  color: #535e5b;
  font-size: 15px;
  line-height: 1.75;
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-note {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: #eef6f3;
  color: #41524d;
  font-size: 14px;
  line-height: 1.65;
}

.footer {
  padding: 58px clamp(24px, 9vw, 136px) 24px;
  background: var(--green-deep);
  color: #e4f0ed;
  font-size: 12px;
  line-height: 1.6;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) minmax(120px, 0.7fr) minmax(210px, 0.9fr) minmax(150px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.footer-brand-block p {
  max-width: 390px;
  color: rgba(228, 240, 237, 0.74);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col span {
  margin-bottom: 7px;
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a,
.footer-bottom a {
  color: rgba(228, 240, 237, 0.76);
  transition: color 0.2s ease;
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(228, 240, 237, 0.62);
}

.footer-bottom span:last-child {
  display: flex;
  gap: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .quote-btn,
  .primary-btn,
  .submit-btn {
    transition: none;
  }

  .collab-track {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 74px;
    grid-template-columns: 1fr auto;
  }

  .brand,
  .brand-logo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links,
  .quote-btn {
    display: none;
  }

  .site-header.menu-open .nav-links {
    position: absolute;
    top: 66px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-links a {
    padding: 14px 12px;
  }

  .hero,
  .section-grid,
  .monitor {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-media {
    width: min(100%, 620px);
  }

  .hero-media img {
    min-height: 420px;
  }

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

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  section {
    padding: 62px 20px;
  }

  .hero {
    padding: 102px 20px 56px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .why-grid,
  .care-grid,
  .form-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    border-width: 7px;
    margin-top: 34px;
  }

  .collaborations {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .collaborations h2 {
    margin-bottom: 26px;
  }

  .collab-marquee {
    height: 74px;
  }

  .monitor-art img {
    width: 124%;
    transform: translateX(-16%);
  }

  .footer-bottom,
  .footer-bottom span:last-child {
    flex-direction: column;
    gap: 12px;
  }

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