/* ═══════════════════════════════════════════
   PARXIS — Brand Tokens
═══════════════════════════════════════════ */
:root {
  --green:        #2D3E33;
  --green-dark:   #1a2820;
  --sand:         #F2EFE9;
  --copper:       #B87333;
  --copper-dark:  #9a6128;
  --copper-faint: rgba(184, 115, 51, 0.15);
  --carbon:       #3A3A3A;
  --white:        #FFFFFF;
  --white-80:     rgba(255,255,255,0.80);
  --white-55:     rgba(255,255,255,0.55);
  --white-20:     rgba(255,255,255,0.20);

  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --spacing-xs:  0.5rem;
  --spacing-sm:  1rem;
  --spacing-md:  2rem;
  --spacing-lg:  4rem;
  --spacing-xl:  6rem;
  --spacing-2xl: 9rem;

  --max-width: 1140px;
  --transition: 0.25s ease;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--carbon);
  background: var(--green-dark);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ═══════════════════════════════════════════
   COPPER DECORATIVE ELEMENTS
═══════════════════════════════════════════ */
.copper-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--copper), transparent);
  opacity: 0.4;
}

.feature-rule {
  width: 100%;
  height: 1px;
  background: rgba(184,115,51,0.25);
  margin: 0;
}

.craft-rule {
  width: 48px;
  height: 1px;
  background: var(--copper);
  opacity: 0.6;
  margin: 1.5rem 0;
}

/* ═══════════════════════════════════════════
   SECTION LABELS
═══════════════════════════════════════════ */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}

.section-label--sand {
  color: var(--copper);
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  border-radius: 1px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

/* Ghost — hero CTA */
.btn-ghost {
  background: rgba(184,115,51,0.08);
  color: var(--copper);
  border-color: var(--copper);
  border-width: 1.5px;
}
.btn-ghost:hover {
  background: var(--copper);
  color: var(--white);
}

/* Solid copper — lead capture CTA */
.btn-primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn-primary:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
}

/* Outline dark — on light backgrounds */
.btn-outline-dark {
  background: transparent;
  color: var(--carbon);
  border-color: var(--carbon);
}
.btn-outline-dark:hover {
  background: var(--carbon);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   SECTION 1: HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
  overflow: hidden;

  background-color: var(--green-dark);
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 18, 0.60);
  pointer-events: none;
  z-index: 0;
}

/* Decorative oversized watermark "P" */
.hero-monogram {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(280px, 45vw, 520px);
  font-weight: 400;
  line-height: 1;
  color: var(--copper);
  opacity: 0.04;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  right: -4vw;
  bottom: -8vw;
}

/* Site header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--spacing-md);
  display: flex;
  align-items: flex-start;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.logo { width: 60px; height: 60px; object-fit: contain; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 1;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--copper));
}


/* ═══════════════════════════════════════════
   SECTION 2: BRAND PHILOSOPHY
═══════════════════════════════════════════ */
.philosophy {
  background: var(--green);
  padding: var(--spacing-2xl) 0;
}

.philosophy-pull {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--white-80);
  letter-spacing: 0.01em;
  max-width: 820px;
  margin: 0 auto var(--spacing-xl);
  text-align: center;
  padding: 0 var(--spacing-md);
}

.pull-copper {
  color: var(--copper);
  font-style: normal;
}

/* Brand pillars */
.brand-pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.pillar {
  padding: 0 var(--spacing-md);
  text-align: center;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.pillar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.35s ease;
}

.pillar:hover .pillar-title::after {
  width: 100%;
}

.pillar-body {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--white-80);
}

.pillar-divider {
  width: 1px;
  background: rgba(184,115,51,0.25);
  align-self: stretch;
  margin: 0.25rem 0;
}


/* ═══════════════════════════════════════════
   SECTION 3: PHOTOGRAPHY BREAK
═══════════════════════════════════════════ */
.photo-break {
  width: 100%;
  min-height: 60vh;
  overflow: hidden;
  background: var(--green-dark);
  position: relative;
}

.photo-break::before,
.photo-break::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  pointer-events: none;
}
.photo-break::before {
  top: 0;
  background: linear-gradient(to bottom, var(--green-dark), transparent);
}
.photo-break::after {
  bottom: 0;
  background: linear-gradient(to top, var(--sand), transparent);
}

.photo-break-bg {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-break-img {
  display: block;
  width: 100%;
  min-height: 60vh;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.48);
}

/* Shown when no photo is present */
.photo-break-placeholder {
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dark);
  border-top: 1px dashed rgba(184,115,51,0.2);
  border-bottom: 1px dashed rgba(184,115,51,0.2);
}

.photo-break-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184,115,51,0.35);
}


/* ═══════════════════════════════════════════
   SECTION 4: CRAFT & MATERIAL
═══════════════════════════════════════════ */
.craft {
  background: var(--sand);
  padding: var(--spacing-2xl) 0;
}

.craft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.craft-left .section-label {
  color: var(--copper);
}

.craft-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--carbon);
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.01em;
}

.craft-component-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--carbon);
  margin-bottom: 0.6rem;
  font-style: italic;
}

.craft-text p {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
}

.craft-text + .craft-rule {
  margin-top: 1.75rem;
}

.craft-text:last-of-type {
  margin-bottom: var(--spacing-lg);
}

/* Right side photo */
.craft-right {
  position: relative;
}

.craft-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62);
}

.craft-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e4dc;
  border: 1px dashed #ccc;
}

.craft-photo-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
}

/* Copper accent corner on photo */
.craft-right::after {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 48px;
  height: 48px;
  border-top: 2px solid var(--copper);
  border-right: 2px solid var(--copper);
  opacity: 0.5;
  pointer-events: none;
}
.craft-right::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 48px;
  height: 48px;
  border-bottom: 2px solid var(--copper);
  border-left: 2px solid var(--copper);
  opacity: 0.5;
  pointer-events: none;
}


/* ═══════════════════════════════════════════
   SECTION 5: FEATURES (EDITORIAL)
═══════════════════════════════════════════ */
.features {
  background: var(--green);
  padding: var(--spacing-2xl) 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: baseline;
  padding: var(--spacing-lg) 0;
}

.feature-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.feature-desc {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-80);
}


/* ═══════════════════════════════════════════
   SECTION 6: LEAD CAPTURE
═══════════════════════════════════════════ */
.lead {
  background: var(--carbon);
  padding: var(--spacing-2xl) 0;
}

.lead-inner {
  max-width: 560px;
  text-align: center;
}

.lead-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.lead-sub {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--white-80);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.lead-form {
  width: 100%;
}

/* Shared container gives inputs visual unity */
.form-inputs-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(184,115,51,0.3);
  border: 1px solid rgba(184,115,51,0.3);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.form-row-two {
  display: flex;
  gap: 0;
  width: 100%;
  margin-bottom: 0.75rem;
}

.form-field {
  flex: 1;
}

.form-input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border: none;
  border-bottom: 1px solid rgba(184,115,51,0.2);
  padding: 0.75rem 1rem;
  outline: none;
  transition: background var(--transition), border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input:last-of-type {
  border-bottom: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.35); }

.form-input:focus {
  background: rgba(255,255,255,0.11);
  border-color: rgba(184,115,51,0.5);
}

.form-row-two .btn {
  border-radius: 0 1px 1px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.lead-submit-btn {
  width: 100%;
  text-align: center;
  border-radius: 1px;
  margin-bottom: 0.5rem;
}

.features-label {
  padding-top: var(--spacing-md);
  padding-bottom: 0;
  margin-bottom: 0;
}

.form-note {
  font-size: 0.8125rem;
  min-height: 1.2em;
  color: var(--copper);
  margin-bottom: 0.5rem;
  text-align: center;
}
.form-note.error { color: #e07070; }
.form-note.success { color: #7dbf8e; }

.form-disclaimer {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--green-dark);
  padding: var(--spacing-lg) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo { width: 48px; height: 48px; opacity: 0.85; }

.footer-origin {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link:hover { color: var(--copper); }

.footer-copy {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.06em;
}


/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .brand-pillars {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .pillar-divider { display: none; }

  .pillar {
    padding: 0;
    text-align: left;
    border-top: 1px solid rgba(184,115,51,0.2);
    padding-top: var(--spacing-md);
  }

  .pillar-title::after { display: none; }

  .craft-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .craft-right { order: -1; }
  .craft-right::before, .craft-right::after { display: none; }

  .craft-photo-placeholder { aspect-ratio: 16/9; }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: var(--spacing-md) 0;
  }

  .form-row-two {
    flex-direction: column;
    gap: 0;
  }

  .form-input,
  .form-field + .form-field .form-input {
    border-right: 1.5px solid transparent;
    border-radius: 1px;
    border-bottom: none;
  }

  .form-field:last-of-type .form-input {
    border-bottom: 1.5px solid transparent;
  }

  .form-row-two .btn {
    border-radius: 1px;
    width: 100%;
    text-align: center;
    margin-top: var(--spacing-xs);
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  :root {
    --spacing-2xl: 5rem;
    --spacing-xl:  3rem;
    --spacing-lg:  2.5rem;
  }

  .hero-monogram { font-size: 60vw; right: -8vw; bottom: -12vw; }
  .logo { width: 48px; height: 48px; }
  .philosophy-pull { font-size: 1.25rem; }
}
