/* ELITAS PRODUCTS — lean, performance-first styles */
:root {
  --ink: #14241c;
  --ink-soft: #1f3d30;
  --amber: #c4782a;
  --amber-deep: #a05f1c;
  --ivory: #f5f0e8;
  --ivory-dim: #e8e1d4;
  --mist: #d6ddd4;
  --sage: #7a8f7c;
  --white: #fffcf7;
  --text: #1a2a22;
  --muted: #5a6b5e;
  --radius: 2px;
  --space: clamp(1rem, 3vw, 2rem);
  --max: 70rem;
  --font-display: "Syne", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 120, 42, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(31, 61, 48, 0.06), transparent 45%),
    var(--ivory);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ink-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--amber-deep);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.6rem 1rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand img,
.brand svg {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.brand-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--amber-deep);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid color-mix(in srgb, var(--ink) 15%, transparent);
  background: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.nav-list a {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-list a[aria-current="page"] {
  color: var(--ink);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: grid;
  align-items: end;
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(20, 36, 28, 0.35) 0%,
      rgba(20, 36, 28, 0.55) 45%,
      rgba(20, 36, 28, 0.88) 100%
    );
}

.hero-content {
  width: min(100% - 2 * var(--space), var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  animation: riseIn 0.9s var(--ease) both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 auto 1rem;
  color: var(--ivory);
  max-width: 14ch;
}

.hero h1 {
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 600;
  color: var(--ivory);
  max-width: 24ch;
  margin: 0 auto 0.75rem;
}

.hero-lead {
  max-width: 38ch;
  color: var(--mist);
  font-size: 1.05rem;
  margin: 0 auto 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}

.btn-primary:hover {
  background: #d48938;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: color-mix(in srgb, var(--ivory) 45%, transparent);
}

.btn-ghost:hover {
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn-solid {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.btn-solid:hover {
  background: var(--ink-soft);
  color: var(--ivory);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 28%, transparent);
}

.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.section-actions {
  margin-top: 2.25rem;
  text-align: center;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.65rem;
}

.investor {
  font-size: 0.92rem;
  color: var(--sage);
  margin-top: 1rem;
}

.investor strong {
  color: var(--ink-soft);
  font-weight: 700;
}

/* Product grid — larger, clearer listing */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem 2rem;
  }
}

.product {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  text-decoration: none;
  color: inherit;
  content-visibility: auto;
  contain-intrinsic-size: auto 34rem;
  padding-bottom: 0.25rem;
}

.product-media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--mist);
  margin-bottom: 1.15rem;
}

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

.product:hover .product-media img,
.product:focus-visible .product-media img {
  transform: scale(1.05);
}

.product-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.45rem;
}

.product h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.55rem);
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  flex: 1;
  margin: 0 auto 1rem;
  max-width: 28ch;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  margin-top: auto;
}

.product-size {
  font-size: 0.9rem;
  color: var(--sage);
}

.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0;
}

.price s {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--sage);
  margin-left: 0.4rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .split-reverse {
    direction: rtl;
  }

  .split-reverse > * {
    direction: ltr;
  }
}

.panel {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}

.panel h2 {
  color: var(--ivory);
}

.panel p {
  color: var(--mist);
}

.panel .btn-primary {
  margin-top: 0.5rem;
}

.panel .split {
  text-align: center;
}

.panel .feature-list {
  text-align: left;
  max-width: 28rem;
  margin-inline: auto;
}

.feature-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feature-list li {
  padding-left: 1.1rem;
  border-left: 2px solid var(--amber);
}

.feature-list strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
  color: var(--ivory);
}

.feature-list span {
  color: var(--mist);
  font-size: 0.95rem;
}

/* —— Page hero (inner) —— */
.page-hero {
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--ivory);
  text-align: center;
}

.page-hero h1 {
  color: var(--ivory);
  font-size: clamp(2rem, 5vw, 3.25rem);
  max-width: 18ch;
  margin-inline: auto;
}

.page-hero p {
  color: var(--mist);
  max-width: 42ch;
  margin: 0 auto;
}

/* —— About —— */
.story {
  font-size: 1.08rem;
  text-align: center;
}

.credit-box {
  margin: 2rem auto 0;
  max-width: 42rem;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--amber);
  background: color-mix(in srgb, var(--amber) 8%, var(--white));
  text-align: center;
}

.credit-box p {
  margin: 0;
  color: var(--ink-soft);
}

/* —— Contact —— */
.contact-layout {
  display: grid;
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 800px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-meta {
  max-width: 22rem;
  margin-inline: auto;
}

.contact-meta dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-top: 1.25rem;
}

.contact-meta dt:first-child {
  margin-top: 0;
}

.contact-meta dd {
  margin: 0.35rem 0 0;
  color: var(--text);
}

.form {
  display: grid;
  gap: 1rem;
  text-align: left;
  max-width: 34rem;
  margin-inline: auto;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

input,
textarea,
select {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s var(--ease);
}

input:hover,
textarea:hover,
select:hover {
  border-color: color-mix(in srgb, var(--ink) 28%, transparent);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.form-status {
  display: none;
  padding: 0.85rem 1rem;
  background: color-mix(in srgb, var(--ink-soft) 12%, var(--white));
  border-left: 3px solid var(--ink-soft);
  color: var(--ink);
  font-size: 0.95rem;
}

.form-status.is-visible {
  display: block;
  animation: riseIn 0.4s var(--ease);
}

.form-status.is-error {
  background: #f8ebe6;
  border-left-color: #b8431f;
}

/* —— FAQ —— */
.faq-list {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: 0.65rem;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem 2rem 1.1rem 0;
  position: relative;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--amber-deep);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .answer {
  padding: 0 0 1.15rem;
  color: var(--muted);
}

.faq-item .answer p:last-child {
  margin-bottom: 0;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: var(--mist);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-brand img,
.footer-brand svg {
  width: 2.5rem;
  height: 2.5rem;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ivory);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.site-footer h2 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.site-footer a {
  color: var(--mist);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ivory);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--ivory) 12%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
}

.investor-line {
  color: var(--sage);
}

.investor-line strong {
  color: var(--ivory);
  font-weight: 600;
}

/* —— Utilities —— */
.cta-band {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.cta-band .hero-actions {
  justify-content: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

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

  .hero-media img,
  .reveal,
  .hero-content,
  .product-media img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* —— Mobile nav —— */
@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--ivory);
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
    padding: 0.75rem var(--space) 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.35s var(--ease),
      opacity 0.35s var(--ease);
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .nav-list a {
    font-size: 1.1rem;
    padding: 0.45rem 0;
  }
}
