:root {
  --ink: #17202a;
  --paper: #f6f7f2;
  --cloud: #ffffff;
  --mist: #e8ece7;
  --line: #d8ded9;
  --muted: #5f6c6a;
  --teal: #14766f;
  --teal-dark: #0d4d49;
  --red: #b63e35;
  --blue: #2b5f9f;
  --gold: #b9893c;
  --shadow: 0 20px 55px rgba(23, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--paper);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(216, 222, 217, 0.74);
  background: rgba(246, 247, 242, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
.site-nav a,
h1,
h2,
h3,
.button,
.section-kicker,
.project-label,
.site-footer strong {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

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

main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 42px clamp(20px, 5vw, 72px) 58px;
  background:
    radial-gradient(circle at top left, rgba(185, 137, 60, 0.18), transparent 34%),
    radial-gradient(circle at 78% 26%, rgba(20, 118, 111, 0.12), transparent 24%),
    linear-gradient(135deg, #f8f2e5, #f6f7f2 48%, #eef4f1 100%);
  color: var(--ink);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 560px) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  min-height: 420px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.34)),
    linear-gradient(135deg, rgba(20, 118, 111, 0.16), rgba(43, 95, 159, 0.12));
}

.hero-panel-watch {
  min-height: 420px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(17, 49, 74, 0.1), rgba(17, 49, 74, 0.04)),
    #edf3f2;
}

.hero-panel-lens {
  min-height: 420px;
  padding: 22px;
  background: #fff;
}

.hero-watch,
.hero-lens {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.18));
}

.hero-lens {
  filter: none;
}

.hero-content {
  max-width: 660px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #956619;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 4.75rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: 2.8rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero p {
  max-width: 620px;
  color: #394854;
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #8f6324, #4f3714);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(23, 32, 42, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.button-project {
  color: var(--teal-dark);
  border-color: var(--teal);
  background: #fff;
}

.section {
  padding: 82px clamp(20px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 58px;
  align-items: start;
}

.section-about {
  background: #fff;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.policy-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.policy-index a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--teal-dark);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.policy-block {
  scroll-margin-top: 110px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.policy-block:first-child {
  border-top: 0;
  padding-top: 0;
}

.policy-block + .policy-block {
  margin-top: 26px;
}

.policy-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.policy-list li + li {
  margin-top: 8px;
}

.copy-stack p {
  margin: 0;
}

.section-projects {
  background: var(--paper);
}

.section-projects > h2 {
  max-width: 780px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.project-card {
  display: grid;
  grid-template-rows: 280px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.project-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 118, 111, 0.12), rgba(43, 95, 159, 0.1)),
    #eef4f1;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 220ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.035);
}

.project-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.project-label {
  margin-bottom: 12px;
  color: var(--red);
  font-weight: 800;
}

.project-copy p {
  margin-bottom: 24px;
}

.project-copy .button {
  margin-top: auto;
}

.shipping-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 56px;
  align-items: center;
  background: #10252f;
  color: #fff;
}

.shipping-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.shipping-copy .section-kicker {
  color: #8ee4d8;
}

.shipping-visual {
  display: grid;
  gap: 12px;
}

.shipping-visual span {
  display: block;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(20, 118, 111, 0.52), rgba(43, 95, 159, 0.2)),
    rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.shipping-visual span:nth-child(2) {
  margin-left: 32px;
  background:
    linear-gradient(90deg, rgba(182, 62, 53, 0.48), rgba(43, 95, 159, 0.2)),
    rgba(255, 255, 255, 0.06);
}

.shipping-visual span:nth-child(3) {
  margin-left: 64px;
  background:
    linear-gradient(90deg, rgba(184, 137, 60, 0.5), rgba(20, 118, 111, 0.18)),
    rgba(255, 255, 255, 0.06);
}

.shipping-visual span:nth-child(4) {
  margin-left: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 420px);
  gap: 48px;
  background: #fff;
}

.contact-section p {
  max-width: 800px;
}

.contact-card {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-style: normal;
}

.contact-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.contact-card a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(2, minmax(180px, 0.7fr));
  gap: 34px;
  padding: 48px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.site-footer nav a,
.site-footer .footer-company a,
.site-footer .footer-company span {
  display: block;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.site-footer > div,
.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

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

.js .reveal {
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal:not(.is-visible) {
  opacity: 0.76;
  transform: translateY(16px);
}

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

@media (max-width: 1024px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: auto;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section-grid,
  .shipping-band,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand-copy span {
    display: none;
  }

  .site-nav {
    width: 100%;
    gap: 12px;
    justify-content: space-between;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero {
    padding: 22px 18px 46px;
  }

  .hero-layout {
    gap: 26px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-panel-watch {
    min-height: 280px;
    height: 280px;
    padding: 16px;
  }

  .hero-panel-lens {
    min-height: 280px;
    height: 280px;
    padding: 16px;
  }

  .section {
    padding: 62px 18px;
  }

  .project-card {
    grid-template-rows: 220px 1fr;
  }

  .project-copy,
  .contact-card {
    padding: 22px;
  }

  .shipping-visual span,
  .shipping-visual span:nth-child(2),
  .shipping-visual span:nth-child(3),
  .shipping-visual span:nth-child(4) {
    margin-left: 0;
  }

  .site-footer {
    padding: 40px 18px;
  }
}
