:root {
  --bg: #f6f1e8;
  --surface: #ffffff;
  --ink: #1f2328;
  --muted: #626b74;
  --line: #ded5c7;
  --brand: #123f39;
  --brand-dark: #0b302c;
  --accent: #b8842d;
  --accent-soft: #ead8b8;
  --shadow: 0 20px 54px rgba(22, 24, 28, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(246, 241, 232, 0.94);
  border-bottom: 1px solid rgba(221, 215, 206, 0.8);
  backdrop-filter: blur(12px);
}

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

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 7px;
  object-fit: cover;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

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

.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: clamp(64px, 10vw, 118px) clamp(18px, 4vw, 56px);
  background: #06261f url("assets/site/hero-green-silk.png") center right / cover no-repeat;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 18, 15, 0.83) 0%, rgba(2, 18, 15, 0.58) 47%, rgba(2, 18, 15, 0.18) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 18, 15, 0.08), transparent 40%, rgba(2, 18, 15, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-watermark {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(22px, 7vw, 132px);
  width: clamp(250px, 32vw, 520px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  transform: translateY(-45%);
  box-shadow:
    0 18px 52px rgba(1, 18, 14, 0.42),
    0 0 0 1px rgba(217, 176, 93, 0.2);
  pointer-events: none;
  user-select: none;
}

.hero-watermark img {
  width: 112%;
  height: 100%;
  display: block;
  max-width: none;
  object-fit: fill;
  transform: translateX(-5.36%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd289;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6.8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #171004;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 88px) 0;
}

.intro {
  display: block;
  padding: 0;
  transform: translateY(-34px);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.intro-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1fr);
  column-gap: clamp(32px, 6vw, 80px);
  align-items: end;
  padding: clamp(34px, 5vw, 54px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #fff 0%, #f5eee3 100%);
}

.intro-story .eyebrow {
  grid-column: 1 / -1;
}

.intro-story h2 {
  margin-bottom: 0;
}

.intro-story > p:last-child {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.intro-pillars article {
  min-height: 258px;
  padding: clamp(26px, 4vw, 38px) clamp(22px, 3vw, 32px);
  background: var(--surface);
}

.intro-pillars strong,
.intro-pillars span {
  display: block;
}

.intro-pillars strong {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 1.12rem;
}

.intro-pillars span {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 32px;
}

.product-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 10px 30px rgba(31, 35, 40, 0.06);
}

.product-wide {
  grid-column: auto;
  grid-row: auto;
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #f3eee5;
  cursor: zoom-in;
}

.image-button img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.product-wide .image-button img {
  height: 320px;
}

.image-button span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 48, 44, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.image-button:hover span,
.image-button:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.image-button .product-ribbon {
  position: absolute;
  left: 12px;
  right: auto;
  top: 12px;
  bottom: auto;
  transform: none;
  opacity: 1;
  border: 1px solid rgba(184, 132, 45, 0.55);
  background: rgba(7, 21, 34, 0.86);
  color: #f1d69a;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-contain img {
  object-fit: contain;
  padding: 10px;
}

.image-dark {
  background: #071522;
}

.product-wide img {
  object-position: 50% 45%;
}

.galvano-card img {
  object-position: center;
}

.product-small img {
  object-position: 50% 50%;
}

.keychain-card {
  background: linear-gradient(180deg, #071522 0%, #ffffff 68%);
}

.keychain-card .image-button {
  border-bottom: 1px solid rgba(184, 132, 45, 0.34);
}

.keychain-card .image-button img {
  padding: 22px 18px 16px;
}

.card-kicker {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card div {
  padding: 14px 16px 16px;
}

.product-card h3 {
  margin-bottom: 4px;
}

.product-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.product-card span {
  color: var(--brand);
  display: block;
  font-weight: 800;
}

.showcase {
  padding-top: clamp(58px, 8vw, 82px);
  border-top: 1px solid var(--line);
}

.showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(26px, 5vw, 64px);
  margin-bottom: 30px;
}

.showcase-heading h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.showcase-heading > p {
  max-width: 390px;
  margin-bottom: 4px;
  color: var(--muted);
}

.work-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.56fr);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.work-viewport {
  overflow: hidden;
  min-height: clamp(540px, 42vw, 620px);
  background: var(--surface);
}

.work-track {
  display: flex;
  min-height: clamp(540px, 42vw, 620px);
  transform: translateX(-100%);
  transition: transform 3000ms cubic-bezier(0.42, 0, 0.18, 1);
  will-change: transform;
}

.work-track.without-transition {
  transition: none;
}

.work-slide {
  flex: 0 0 100%;
  min-height: clamp(540px, 42vw, 620px);
  margin: 0;
}

.work-image {
  height: clamp(484px, calc(42vw - 56px), 564px);
  background: var(--surface);
}

.work-image img {
  width: 100%;
  height: clamp(484px, calc(42vw - 56px), 564px);
  object-fit: cover;
  object-position: center center;
  background: var(--surface);
}

.work-slide figcaption {
  min-height: 56px;
  padding: 16px 20px;
  color: var(--ink);
  background: var(--surface);
  border-top: 1px solid var(--line);
  font-weight: 650;
}

.work-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 42px);
  background: #f2e9dc;
}

.work-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.16;
}

.work-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--brand);
  color: #fff;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c3b8a7;
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--accent);
}

.process {
  border-top: 1px solid var(--line);
}

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

.steps div {
  padding: 24px;
  background: #eee5d7;
  border-radius: 7px;
}

.steps span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.order-section {
  display: block;
  max-width: 780px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.order-copy {
  position: static;
}

.order-copy p {
  color: var(--muted);
}

.contact-box {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(135deg, #fff, #f0e6d8);
  box-shadow: var(--shadow);
}

.contact-box span {
  color: var(--brand);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.whatsapp-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 14px;
  border-radius: 7px;
  background: #13763a;
  color: #fff;
  font-weight: 850;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  background: #0f6630;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.82);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 64px 20px 24px;
  background: rgba(8, 20, 18, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: min(1420px, 100%);
  max-height: calc(100vh - 88px);
  overflow: hidden;
  border-radius: 7px;
  background: #f3eee5;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  object-fit: contain;
  background: #f3eee5;
}

.lightbox.has-details img {
  width: min(58vw, 900px);
  max-width: 100%;
  object-fit: contain;
}

.lightbox-details {
  width: min(390px, 34vw);
  padding: clamp(22px, 3vw, 32px);
  overflow-y: auto;
  border-left: 1px solid var(--line);
  background: #fff;
}

.lightbox-details[hidden] {
  display: none;
}

.lightbox-details h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
}

.detail-intro {
  margin-bottom: 24px;
  color: var(--muted);
}

.price-group {
  margin-bottom: 24px;
}

.price-group h3 {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.96rem;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #ece3d8;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-row strong {
  flex: none;
  color: var(--brand);
}

.price-row.featured strong {
  color: var(--accent);
  font-size: 1.08rem;
}

.price-note {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.detail-link {
  margin-top: 0;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(16, 61, 56, 0.88), rgba(16, 61, 56, 0.5)),
    url("assets/site/thermal-bottles.png")
      center/cover;
}

.thanks-card {
  width: min(620px, 100%);
  padding: clamp(26px, 6vw, 46px);
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  margin: 18px 0 14px;
  color: var(--ink);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.thanks-card p:not(.eyebrow) {
  color: var(--muted);
}

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

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

  .hero-watermark {
    top: 24px;
    right: 50%;
    width: 124px;
    opacity: 1;
    transform: translateX(50%);
  }

  .product-mosaic,
  .work-carousel,
  .steps,
  .order-section {
    grid-template-columns: 1fr;
  }

  .showcase-heading {
    align-items: start;
    flex-direction: column;
  }

  .intro-story,
  .intro-pillars {
    grid-template-columns: 1fr;
  }

  .work-viewport,
  .work-track,
  .work-slide {
    min-height: auto;
    background: var(--surface);
  }

  .image-button.work-image,
  .image-button.work-image img {
    height: clamp(320px, 70vw, 470px);
    background: var(--surface);
  }

  .image-button.work-image img {
    object-fit: contain;
  }

  .lightbox-content {
    display: block;
    overflow-y: auto;
  }

  .lightbox.has-details img {
    display: block;
    width: 100%;
    max-height: 48vh;
  }

  .lightbox-details {
    width: 100%;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-wide,
  .product-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .intro {
    transform: none;
    margin-top: 22px;
  }

  .order-copy {
    position: static;
  }

  .image-button img {
    height: 300px;
  }

  .product-wide .image-button img,
  .product-tall .image-button img {
    height: 320px;
  }
}

@media (max-width: 560px) {
  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .footer {
    flex-direction: column;
  }

  .image-button img {
    height: 270px;
  }

  .product-wide .image-button img,
  .product-tall .image-button img {
    height: 280px;
  }

  .image-button.work-image,
  .image-button.work-image img {
    height: clamp(280px, 78vw, 400px);
  }
}
