:root {
  --granite-white: #F4F5F6;
  --ink: #2A2F35;
  --voice: #3A424B;
  --jet: #17191C;
  --jet-text: #E8E4D8;
  --jet-subtext: #C8CCD2;
  --caption: #5A6068;
  --torch: #A98634;
  --hairline: #DEE1E5;
  --font-display: 'Marcellus', serif;
  --font-body: 'Lato', sans-serif;
}

@font-face {
  font-family: 'Marcellus';
  src: url('../fonts/marcellus.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--granite-white);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--voice);
  text-decoration: underline;
  text-decoration-color: var(--voice);
}

a:hover, a:focus {
  text-decoration: none;
}

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

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

.kicker {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--torch);
  margin-bottom: 0.5rem;
  display: block;
}

.kicker.ink {
  color: var(--ink);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid var(--hairline);
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.logo-img {
  height: 44px;
}
.logo-text {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(0.72rem, 2.9vw, 1.25rem);
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

nav.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background-color: var(--voice);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--ink);
  color: #fff;
}
.btn-outline {
  border-color: var(--voice);
  color: var(--voice);
  background: transparent;
}
.btn-outline:hover {
  background-color: var(--granite-white);
}

/* Mobile Nav */
.mobile-nav-toggle {
  display: none;
}
.mobile-nav {
  display: none;
}
@media (max-width: 900px) {
  nav.desktop-nav { display: none; }
  .header-inner { position: relative; }
  .mobile-menu-details {
    display: block;
  }
  .mobile-menu-details summary {
    list-style: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .mobile-menu-details summary::-webkit-details-marker { display: none; }
  .mobile-menu-details[open] .mobile-nav-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -5vw;
    right: -5vw;
    background: #fff;
    padding: 1rem 5vw;
    border-bottom: 1px solid var(--hairline);
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
}
@media (min-width: 901px) {
  .mobile-menu-details { display: none; }
}

/* Hero Fold */
.hero {
  padding: 4rem 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--caption);
  margin-bottom: 2rem;
  max-width: 90%;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}
.trust-line {
  font-size: 0.875rem;
  color: var(--caption);
  font-weight: 700;
}
.trust-line a {
  color: inherit;
}

.etched-panel {
  background-color: var(--jet);
  background-image: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid #2a2a2a;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8), 0 20px 40px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--jet-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.etched-svg {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  opacity: 0.85;
}
.etched-svg path {
  stroke: #D9D4C6;
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 2, 2; /* Stipple feel */
  stroke-linecap: round;
}
.etched-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.etched-rule {
  width: 40px;
  height: 1px;
  background: var(--jet-text);
  margin: 0 auto 1rem;
  opacity: 0.3;
}
.etched-est {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  color: var(--jet-subtext);
}
.etched-caption {
  font-size: 0.875rem;
  color: var(--caption);
  margin-top: 1.5rem;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .etched-panel {
    padding: 3rem 1.5rem;
  }
}

/* Proof Strip */
.proof-strip {
  background: #fff;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 3rem 0;
  text-align: center;
}
.proof-quote {
  font-size: 1.125rem;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto 1rem;
  font-style: normal;
}
.proof-author {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caption);
}

/* Sections General */
.section {
  padding: 5rem 0;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--ink);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--hairline);
}
.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 1px solid var(--hairline);
}
.product-card-body {
  padding: 2rem;
}
.product-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.product-card p {
  color: var(--caption);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.product-card p:last-child {
  margin-bottom: 0;
}

.product-small-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.product-small-card {
  background: #fff;
  border: 1px solid var(--hairline);
  padding: 1.5rem;
}
.product-small-card-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.product-small-card p {
  font-size: 0.875rem;
  color: var(--caption);
}

@media (max-width: 1100px) {
  .product-small-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-small-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .product-small-grid {
    grid-template-columns: 1fr;
  }
}

/* Jet Band */
.jet-band {
  background-color: var(--jet);
  color: var(--jet-text);
  padding: 5rem 0;
  text-align: left;
}
.jet-band .section-title {
  color: var(--jet-text);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 2rem;
}
.jet-band p {
  color: var(--jet-subtext);
  font-size: 1.125rem;
  max-width: 900px;
}

/* Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-img img {
  width: 100%;
  height: auto;
  border: 1px solid var(--hairline);
}
.story-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
.story-content p {
  color: var(--caption);
  margin-bottom: 1rem;
}
.story-content p.strong {
  font-weight: 700;
  color: var(--torch);
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

/* Process */
.process-section {
  background: #fff;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 5rem 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.process-step .step-num {
  font-family: var(--font-display);
  color: var(--torch);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 0.5rem;
}
.process-step .step-title {
  font-size: 0.9375rem;
  font-weight: 700;
}
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--hairline);
  padding: 2rem;
}
.testi-card p {
  color: var(--caption);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}
.testi-author {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caption);
}
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* Ask */
.ask-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.ask-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.ask-content > p {
  color: var(--caption);
  margin-bottom: 2rem;
}
.contact-info {
  list-style: none;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--ink);
}
.ask-form {
  background: #fff;
  border: 1px solid var(--hairline);
  padding: 2.5rem;
}
.ask-form h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--hairline);
  font-family: inherit;
  font-size: 1rem;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-submit {
  width: 100%;
  background: var(--voice);
  color: #fff;
  border: none;
  padding: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
}
.btn-submit:hover {
  background: var(--ink);
}
.form-note {
  font-size: 0.75rem;
  color: var(--caption);
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .ask-grid { grid-template-columns: 1fr; }
}

/* Footer */
footer {
  background: var(--jet);
  color: var(--jet-text);
  padding: 4rem 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-info {
  font-size: 0.875rem;
  color: var(--jet-subtext);
}

/* Sticky Call Bar */
.sticky-call-bar {
  display: none;
}
@media (max-width: 900px) {
  .sticky-call-bar {
    display: block;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 100;
  }
}

/* Ribbon */
.preview-ribbon {
  background: #fff;
  border-bottom: 1px solid var(--hairline);
  padding: 0.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  z-index: 1000;
  position: relative;
}
.preview-ribbon-text {
  color: var(--ink);
}
.preview-ribbon-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.preview-ribbon a {
  font-weight: 700;
}
.preview-ribbon button {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--caption);
  text-decoration: underline;
  font-size: 0.875rem;
}
@media (max-width: 900px) {
  .preview-ribbon {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Fade In */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transition: none;
  }
}

/* Products Page Specific */
.product-detail-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--hairline);
}
.product-detail-section:last-child {
  border-bottom: none;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-detail-grid.reverse {
  direction: rtl;
}
.product-detail-grid.reverse > * {
  direction: ltr;
}
.product-detail-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
.product-detail-content p {
  color: var(--caption);
  margin-bottom: 1.5rem;
}
.product-detail-img img {
  width: 100%;
  height: auto;
  border: 1px solid var(--hairline);
}
@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-grid.reverse { direction: ltr; }
}

.full-process-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}
.full-process-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.full-process-step p {
  color: var(--caption);
}


@media (max-width: 480px) {
  .logo-text { display: none; }
}
