@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
}

:root {
  color-scheme: light;

  --teal: #04c0b3;
  /* Brand teal darkened to carry white text and small labels (5.35:1 on white). */
  --teal-deep: #04786f;
  --gold: #b08d38;
  --ink: #1f1f1f;
  --paper: #fbf8f2;
  --muted: #68615d;
  --white: #ffffff;
  --line: rgba(31, 31, 31, 0.13);

  /* Option A ramp: main blue -> lighter -> white. */
  --grad-hero:
    radial-gradient(circle at 78% 82%, rgba(255, 255, 255, 0.45), transparent 40%),
    linear-gradient(135deg, #04c0b3 0%, #7be1d9 50%, #ffffff 100%);
  --grad-tiffany: linear-gradient(135deg, #04c0b3 0%, #7be1d9 52%, #ffffff 100%);
  --grad-soft: linear-gradient(135deg, #04c0b3 0%, #a6ede7 58%, #ffffff 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

h1,
h2,
h3,
.eyebrow,
.button,
.counter {
  font-family: "Space Grotesk", Arial, sans-serif;
}

.eyebrow {
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

:focus-visible {
  outline: 3px solid var(--teal-deep);
  outline-offset: 3px;
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 12px;
  padding: 10px 16px;
  position: absolute;
  top: -100px;
  z-index: 60;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- header ---------- */

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 12px clamp(18px, 4vw, 58px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: flex;
  height: 46px;
  width: 168px;
}

.brand img {
  height: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

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

.nav-links a:hover {
  color: var(--teal-deep);
}

/* ---------- hero ---------- */

.hero {
  min-height: calc(92vh - 71px);
  overflow: hidden;
  padding: clamp(34px, 6vw, 82px);
  position: relative;
}

.hero-bg {
  background: var(--grad-hero);
  inset: 0;
  position: absolute;
}

.hero-logo {
  height: auto;
  max-width: min(440px, 74vw);
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-copy {
  color: var(--ink);
  margin-top: clamp(48px, 8vh, 96px);
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(44px, 6.8vw, 96px);
  line-height: 0.92;
  margin-bottom: 22px;
}

.lead {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 650;
  line-height: 1.34;
  max-width: 620px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
}

.button.primary {
  background: var(--teal-deep);
  color: var(--white);
}

.button.primary:hover {
  background: #035f58;
}

.button.secondary {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}

.button.secondary:hover {
  background: rgba(4, 120, 111, 0.08);
}

/* ---------- section scaffolding ---------- */

.section {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 66px);
}

.section-heading {
  margin: 0 auto clamp(32px, 4vw, 48px);
  max-width: 1180px;
}

.section-heading h2 {
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 0.98;
  margin-bottom: 0;
  max-width: 900px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
  margin-top: 18px;
  max-width: 680px;
}

/* ---------- catalog slider ---------- */

.catalog {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    var(--grad-tiffany);
}

.viewer {
  margin: 0 auto;
  max-width: 1180px;
}

.stage {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.slides {
  aspect-ratio: 792 / 612;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(31, 31, 31, 0.14);
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.slides img {
  height: 100%;
  inset: 0;
  object-fit: contain;
  opacity: 0;
  position: absolute;
  transition: opacity 0.35s ease;
  width: 100%;
}

.slides img.is-active {
  opacity: 1;
}

.nav-arrow {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal-deep);
  cursor: pointer;
  display: inline-flex;
  flex: none;
  font-size: 22px;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.nav-arrow:hover:not(:disabled) {
  background: var(--teal-deep);
  color: var(--white);
}

.nav-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.viewer-bar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-top: 18px;
}

.counter {
  font-size: 15px;
  font-weight: 700;
}

.counter strong {
  color: var(--teal-deep);
  font-size: 20px;
}

.download-link {
  align-items: center;
  border-bottom: 2px solid var(--teal-deep);
  color: var(--teal-deep);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  padding-bottom: 2px;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.thumbs button {
  background: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  flex: none;
  line-height: 0;
  overflow: hidden;
  padding: 0;
  width: 116px;
}

.thumbs img {
  aspect-ratio: 792 / 612;
  object-fit: cover;
  width: 100%;
}

.thumbs button[aria-current="true"] {
  border-color: var(--teal-deep);
}

.thumbs button:not([aria-current="true"]) img {
  opacity: 0.6;
}

.thumbs button:hover img {
  opacity: 1;
}

/* ---------- about ---------- */

.about {
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  margin: 0 auto;
  max-width: 1180px;
}

.about p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

.about-panel {
  background: var(--grad-soft);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
}

.about-panel h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  margin-bottom: 20px;
}

.product-list {
  columns: 2;
  column-gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-list li {
  break-inside: avoid;
  color: var(--ink);
  font-weight: 750;
  padding: 7px 0 7px 18px;
  position: relative;
}

.product-list li::before {
  color: var(--teal-deep);
  content: "—";
  left: 0;
  position: absolute;
}

/* ---------- collections ---------- */

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

.collection {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.collection img {
  aspect-ratio: 792 / 612;
  object-fit: cover;
  width: 100%;
}

.collection div {
  padding: clamp(24px, 3vw, 38px);
}

.collection h3 {
  color: var(--teal-deep);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 0.98;
  margin-bottom: 14px;
}

.collection p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ---------- contact ---------- */

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact-inner {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  margin: 0 auto;
  max-width: 1180px;
}

.contact .eyebrow {
  color: var(--teal);
}

.contact h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 0.98;
  margin-bottom: 20px;
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
  max-width: 520px;
}

.contact-direct {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-direct a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  display: flex;
  font-weight: 750;
  gap: 12px;
  min-height: 58px;
  padding: 0 20px;
}

.contact-direct a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--teal);
}

.contact-direct span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  min-width: 78px;
  text-transform: uppercase;
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 36px);
}

.contact-form label {
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--ink);
  font: 650 16px "Manrope", Arial, sans-serif;
  min-height: 50px;
  padding: 13px 15px;
  width: 100%;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .button.primary {
  background: var(--teal);
  color: var(--ink);
  margin-top: 4px;
}

.contact-form .button.primary:hover {
  background: #05d8c9;
}

.form-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  margin: 0;
}

/* ---------- footer ---------- */

.site-footer {
  align-items: center;
  background: #171717;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 650;
  gap: 16px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 66px);
}

.site-footer img {
  height: 34px;
  opacity: 0.8;
  width: auto;
}

/* ---------- responsive ---------- */

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

  .about,
  .collections,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .stage .nav-arrow {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 142px;
  }

  .nav-links {
    font-size: 13px;
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding: 28px 18px 56px;
  }

  .hero-copy {
    margin-top: 36px;
  }

  .product-list {
    columns: 1;
  }

  .thumbs button {
    width: 92px;
  }
}

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

  .slides img {
    transition: none;
  }
}

/* Honeypot: off-screen rather than display:none, which some bots skip. */
.honeypot {
  height: 0;
  left: -9999px;
  margin: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.form-status {
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  padding: 12px 14px;
}

.form-status.is-ok {
  background: rgba(4, 192, 179, 0.16);
  color: #7ff0e6;
}

.form-status.is-error {
  background: rgba(255, 138, 138, 0.14);
  color: #ffb4b4;
}

.form-status a {
  text-decoration: underline;
}

.contact-form button[disabled] {
  cursor: progress;
  opacity: 0.6;
}
