/* ==========================================================================
   EC Recycling — Stylesheet
   Aesthetic: refined industrial / editorial / deep forest + gold + silver
   Palette inspired by the EC Recycling logo (green/silver/gold arrows)
   ========================================================================== */

:root {
  /* Palette */
  --ink:          #0a1410;   /* near-black with green undertone */
  --ink-2:        #131e18;
  --moss:         #1e2e25;
  --forest:       #1d4d2c;   /* logo deep green */
  --forest-deep:  #143a1e;
  --leaf:         #2e7d3f;   /* lighter green for hover/accent */
  --mint:         #b8d4c2;
  --paper:        #f4f1ea;   /* warm off-white */
  --paper-2:      #ebe6db;
  --paper-3:      #d9d1be;
  --gold:         #c8a44a;   /* logo gold arrow */
  --gold-light:   #e0c373;
  --gold-deep:    #9a7a2a;
  --silver:       #b8bcc2;   /* logo silver arrow */
  --silver-light: #d4d7dc;
  --silver-deep:  #6b7280;
  --copper:       #c8a44a;   /* now mapped to gold for consistency with logo */
  --copper-light: #e0c373;
  --copper-deep:  #9a7a2a;
  --ash:          #6b7268;
  --line:         rgba(10, 20, 16, 0.12);
  --line-strong:  rgba(10, 20, 16, 0.25);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter Tight', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Sizing */
  --container:    1280px;
  --gutter:       clamp(20px, 4vw, 48px);
  --radius:       2px;
  --radius-lg:    4px;

  /* Easing */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv01';
}

/* Subtle grain overlay for texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-body);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--copper);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 60ch;
}

.italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--copper-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost {
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: none;
  color: var(--ink);
}

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

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  color: var(--forest);
  transition: transform 0.6s var(--ease-out), color 0.3s var(--ease);
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
}

.brand:hover .brand-logo {
  transform: rotate(360deg);
}

.brand-logo-footer {
  width: 60px;
  height: 60px;
  /* Slight glow on dark footer to make the logo pop */
  filter: drop-shadow(0 0 12px rgba(122, 179, 137, 0.15));
}

.brand:hover .brand-mark {
  transform: rotate(180deg);
  color: var(--copper);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ash);
  margin-top: 4px;
}

.site-nav ul {
  display: flex;
  gap: 4px;
}

.site-nav a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }

.site-nav a.is-active { color: var(--copper-deep); }

.header-cta {
  padding: 11px 20px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(60px, 10vw, 140px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}

.hero h1 {
  margin-top: 32px;
  margin-bottom: 0;
}

.hero h1 .italic-accent {
  color: var(--copper);
  font-weight: 300;
}

.hero-sub {
  margin-top: 36px;
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 48ch;
  color: var(--moss);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 12px;
}

.hero-meta-item {
  border-top: 1px solid var(--line-strong);
  padding-top: 16px;
}

.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ash);
  margin-bottom: 6px;
}

.hero-meta-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.hero-meta-value .italic-accent { color: var(--copper); }

/* Big decorative number floating in hero */
.hero-decor {
  position: absolute;
  right: -40px;
  bottom: -80px;
  font-family: var(--font-display);
  font-size: clamp(20rem, 35vw, 38rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

/* ==========================================================================
   Sections
   ========================================================================== */

section { padding: clamp(60px, 9vw, 130px) 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 90px);
}

.section-head h2 { max-width: 14ch; }

.section-head-meta { display: flex; flex-direction: column; gap: 16px; }

/* ==========================================================================
   Services / Cards
   ========================================================================== */

.services {
  background: var(--paper-2);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.service-card {
  background: var(--paper-2);
  padding: clamp(32px, 4vw, 56px);
  transition: background 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.service-card:hover { background: var(--paper); }

.service-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ash);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}

.service-card h3 {
  margin-bottom: 16px;
  font-weight: 500;
}

.service-card p {
  color: var(--moss);
  margin-bottom: auto;
  padding-bottom: 32px;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--forest);
  margin-bottom: 24px;
  transition: color 0.3s var(--ease), transform 0.5s var(--ease-out);
}

.service-card:hover .service-icon {
  color: var(--copper);
  transform: translateY(-4px);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 16px;
}

.service-link svg { transition: transform 0.3s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ==========================================================================
   Materials accepted
   ========================================================================== */

.materials {
  background: var(--ink);
  color: var(--paper);
}

.materials h2, .materials h3, .materials h4 { color: var(--paper); }
.materials .eyebrow { color: var(--copper-light); }
.materials .eyebrow::before { background: var(--copper-light); }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(244, 241, 234, 0.1);
  border: 1px solid rgba(244, 241, 234, 0.1);
}

.material-item {
  background: var(--ink);
  padding: 32px 28px;
  transition: background 0.3s var(--ease);
}

.material-item:hover { background: var(--ink-2); }

.material-item .num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--copper-light);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 14px;
}

.material-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.material-item p {
  font-size: 0.88rem;
  color: rgba(244, 241, 234, 0.65);
  line-height: 1.5;
}

/* ==========================================================================
   Process
   ========================================================================== */

.process-list {
  display: flex;
  flex-direction: column;
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--line-strong);
  transition: padding 0.3s var(--ease);
}

.process-step:last-child { border-bottom: 1px solid var(--line-strong); }

.process-step:hover {
  padding-left: 12px;
}

.process-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--copper);
  line-height: 1;
}

.process-step h3 {
  font-weight: 500;
  margin-bottom: 0;
}

.process-step p {
  color: var(--moss);
  font-size: 1rem;
  max-width: 50ch;
}

/* ==========================================================================
   Stats / Why us
   ========================================================================== */

.stats {
  background: var(--paper-2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  border-top: 1px solid var(--line-strong);
  padding-top: 60px;
}

.stat-item .stat-value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.stat-item .stat-value .unit {
  font-size: 0.55em;
  color: var(--copper);
  font-style: italic;
}

.stat-item .stat-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ash);
}

/* ==========================================================================
   CTA / Contact strip
   ========================================================================== */

.cta-strip {
  background: var(--forest);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--copper) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-strip h2 { color: var(--paper); }
.cta-strip .eyebrow { color: var(--copper-light); }
.cta-strip .eyebrow::before { background: var(--copper-light); }
.cta-strip p { color: rgba(244, 241, 234, 0.8); margin-top: 24px; max-width: 50ch; }

.cta-strip .btn-primary {
  background: var(--copper);
  color: var(--ink);
}

.cta-strip .btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
}

.contact-box {
  background: var(--ink);
  padding: 40px;
  border-left: 2px solid var(--copper);
}

.contact-box h4 {
  color: var(--copper-light);
  margin-bottom: 16px;
}

.contact-box a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--paper);
  font-weight: 400;
  letter-spacing: -0.01em;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border 0.2s var(--ease);
}

.contact-box a:hover { border-color: var(--copper); }

.contact-box .pending {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(244, 241, 234, 0.4);
  margin-top: 16px;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Page Hero (inner pages)
   ========================================================================== */

.page-hero {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-top: 28px;
}

.page-hero .lead { margin-top: 28px; }

/* ==========================================================================
   Content blocks
   ========================================================================== */

.content-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(40px, 6vw, 90px) 0;
  border-top: 1px solid var(--line-strong);
}

.content-block:first-of-type { border-top: none; }

.content-block h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
}

.content-block .body p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--moss);
}

.content-block .body p:last-child { margin-bottom: 0; }

.content-block ul.bullet-list {
  margin: 24px 0;
  padding: 0;
}

.content-block ul.bullet-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--moss);
}

.content-block ul.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 1px;
  background: var(--copper);
}

/* Feature box inside content */
.feature-box {
  background: var(--paper-2);
  padding: 32px;
  margin-top: 32px;
  border-left: 2px solid var(--copper);
}

.feature-box h4 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 500;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { border-top: 1px solid var(--line-strong); }

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}

.faq-question:hover { color: var(--copper); }

.faq-question .plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}

.faq-question .plus::before { width: 14px; height: 1px; }
.faq-question .plus::after { width: 1px; height: 14px; }

.faq-item.is-open .faq-question .plus::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 0 32px;
  max-width: 65ch;
  color: var(--moss);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer { max-height: 500px; }

/* ==========================================================================
   Contact form
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info h3 { font-size: 1.5rem; margin-bottom: 24px; }

.contact-info-item {
  padding: 20px 0;
  border-top: 1px solid var(--line-strong);
}

.contact-info-item:last-child { border-bottom: 1px solid var(--line-strong); }

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ash);
  margin-bottom: 6px;
}

.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
}

.contact-info-value a { border-bottom: 1px solid var(--line-strong); transition: border 0.2s var(--ease); }
.contact-info-value a:hover { border-color: var(--copper); color: var(--copper-deep); }

.contact-info-pending {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ash);
  font-style: italic;
}

.contact-form {
  background: var(--paper-2);
  padding: clamp(28px, 4vw, 48px);
}

.form-row { margin-bottom: 24px; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.form-row.two-col .form-field { margin-bottom: 24px; }

.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ash);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border 0.2s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--ink);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ash);
  margin-top: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0 32px;
}

.site-footer .brand { color: var(--paper); }
.site-footer .brand-name { color: var(--paper); }
.site-footer .brand-mark { color: var(--copper); }
.site-footer .brand-tag { color: rgba(244, 241, 234, 0.5); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
}

.footer-blurb {
  margin-top: 24px;
  font-size: 0.95rem;
  color: rgba(244, 241, 234, 0.6);
  max-width: 36ch;
  line-height: 1.55;
}

.footer-col h4 {
  color: var(--copper-light);
  margin-bottom: 20px;
  font-size: 0.78rem;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(244, 241, 234, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}

.footer-col ul a:hover { color: var(--copper-light); }

.contact-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.08);
  margin-bottom: 14px;
}

.contact-list li:last-child { border: none; }

.contact-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 241, 234, 0.4);
  margin-bottom: 4px;
}

.contact-list a {
  color: var(--paper);
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border 0.2s var(--ease);
}

.contact-list a:hover { border-color: var(--copper); }

.contact-pending {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(244, 241, 234, 0.5);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(244, 241, 234, 0.4);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) forwards;
}

.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.2s; }
.fade-up.delay-3 { animation-delay: 0.3s; }
.fade-up.delay-4 { animation-delay: 0.4s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: row; flex-wrap: wrap; }
  .hero-meta-item { flex: 1 1 200px; }
  .cta-strip-inner { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .content-block { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    inset: 88px 0 0 0;
    background: var(--paper);
    padding: 32px var(--gutter);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .site-nav a {
    display: block;
    padding: 18px 0;
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 400;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a::after { display: none; }

  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 60px 1fr; }
  .process-step p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
