
:root {
  --deep: #173D32;
  --deep-2: #102B24;
  --cream: #F7EFE2;
  --paper: #FFF9EF;
  --porcelain: #FFFDF7;
  --sage: #DCE2D3;
  --gold: #B9863F;
  --brown: #70472F;
  --text: #203531;
  --muted: #65706D;
  --border: rgba(185, 134, 63, .26);
  --shadow: 0 30px 80px rgba(16, 43, 36, .14);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}
body::selection { background: var(--gold); color: var(--deep); }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(247, 239, 226, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-logo { width: 58px; height: 58px; border-radius: 18px; }
.brand strong, .footer-brand strong {
  display: block;
  color: var(--deep);
  font-weight: 900;
  font-size: 27px;
  letter-spacing: -.8px;
  line-height: 1;
}
.brand small, .footer-brand small {
  display: block;
  margin-top: 7px;
  color: var(--brown);
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  color: var(--deep);
  text-decoration: none;
  font-weight: 700;
  transition: transform .22s ease, color .22s ease;
}
.nav a:hover { transform: translateY(-2px); color: var(--gold); }
.nav-cta {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 249, 239, .56);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--deep);
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 82px;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(185,134,63,.18), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(23,61,50,.14), transparent 36%),
    linear-gradient(135deg, var(--cream), #EFE0C4);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    radial-gradient(circle at 1px 1px, #173D32 1px, transparent 0);
  background-size: 20px 20px;
}
.hero-grid, .detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 58px;
}
.kicker, .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.kicker span, .eyebrow::before {
  content: "";
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}

h1, h2, h3 {
  margin: 0;
  color: var(--deep);
  line-height: 1.02;
}
h1, h2 {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -2.2px;
}
h1 { font-size: clamp(48px, 7vw, 88px); max-width: 860px; line-height: 1.02; }
h2 { font-size: clamp(36px, 5vw, 62px); line-height: 1.08; }
h3 { font-size: 25px; line-height: 1.18; letter-spacing: -.5px; }

.lead {
  color: #56625F;
  font-size: 23px;
  line-height: 1.62;
  max-width: 760px;
  margin: 26px 0 0;
}
.lead.small { font-size: 20px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(16,43,36,.16); }
.primary { background: var(--deep); color: var(--paper); }
.secondary { background: rgba(255,249,239,.78); color: var(--deep); border: 1px solid var(--border); }

.hero-visual { position: relative; }
.hero-visual img, .detail-visual img, .region-visual {
  filter: drop-shadow(0 28px 44px rgba(16,43,36,.15));
}
.floating-card {
  position: absolute;
  left: -18px;
  bottom: 22px;
  width: min(290px, 80%);
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 253, 247, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.floating-card strong { display: block; color: var(--deep); }
.floating-card span { display: block; margin-top: 5px; color: var(--muted); font-size: 14px; }

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,249,239,.76);
}
.trust-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--deep);
  font-weight: 800;
}
.trust-row span::before { content: "•"; color: var(--gold); margin-right: 10px; }

.section { padding: 96px 0; }
.section-head { max-width: 860px; margin-bottom: 44px; }
.section-head.compact { max-width: 780px; }
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  overflow: hidden;
  display: block;
  min-height: 100%;
  text-decoration: none;
  background: rgba(255,253,247,.84);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(16,43,36,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185,134,63,.62);
  box-shadow: 0 32px 82px rgba(16,43,36,.15);
}
.product-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.product-card:hover .product-image img { transform: scale(1.045); }
.product-content { padding: 28px; }
.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(185,134,63,.13);
  color: var(--brown);
  font-size: 13px;
  font-weight: 900;
}
.product-content p, .why-card p, .timeline-item p, .detail-panel p, .detail-panel li {
  color: var(--muted);
}
.product-content ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 18px;
  padding-left: 19px;
  color: var(--text);
}
.product-content strong, .text-link {
  color: var(--brown);
  text-decoration: none;
  font-weight: 900;
}

.other-sourcing {
  margin-top: 34px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(220,226,211,.62), rgba(255,249,239,.9));
}
.other-sourcing h3 { font-size: 30px; }
.other-sourcing p { color: var(--muted); max-width: 720px; }

.process-section {
  background: var(--deep);
  color: var(--paper);
}
.process-section h2, .process-section h3 { color: var(--paper); }
.process-section .eyebrow { color: #E0BC75; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(255,249,239,.18);
}
.timeline-item {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(255,249,239,.18);
  border-radius: 26px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(10px);
}
.timeline-item span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E0BC75;
  color: var(--deep);
  font-weight: 900;
  margin-bottom: 28px;
}
.timeline-item p { color: rgba(255,249,239,.75); }

.why-section { background: #FFF7EB; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card, .detail-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255,253,247,.82);
  box-shadow: 0 18px 54px rgba(16,43,36,.07);
}
.why-card span {
  color: var(--brown);
  font-weight: 900;
  margin-bottom: 16px;
  display: inline-block;
}

.location-grid, .contact-grid, .detail-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.map-card {
  overflow: hidden;
  height: 500px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.map-card iframe { width: 100%; height: 100%; border: 0; }
.region-visual { margin-top: 28px; border-radius: var(--radius); border: 1px solid var(--border); }

.about-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(185,134,63,.12), transparent 30%),
    linear-gradient(135deg, var(--paper), var(--cream));
}
.narrow { width: min(900px, calc(100% - 48px)); margin: 0 auto; }
.about-section p {
  font-size: 22px;
  line-height: 1.7;
  color: var(--muted);
}
.about-section strong { color: var(--deep); }

.contact-section { padding-bottom: 84px; }
.contact-copy p:not(.eyebrow) { color: var(--muted); font-size: 20px; }
.contact-card {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255,249,239,.75);
}
.contact-card p { margin: 8px 0; }

.smart-form {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,253,247,.84);
  box-shadow: var(--shadow);
}
.form-step { display: none; }
.form-step.is-active { display: grid; gap: 18px; }
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.choice-grid label {
  cursor: pointer;
}
.choice-grid input { display: none; }
.choice-grid span {
  display: grid;
  place-items: center;
  min-height: 76px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--deep);
  background: var(--paper);
  font-weight: 900;
  text-align: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.choice-grid input:checked + span, .choice-grid label:hover span {
  background: var(--deep);
  color: var(--paper);
  border-color: var(--deep);
  transform: translateY(-2px);
}
.smart-form label:not(.choice-grid label) {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-weight: 900;
}
.smart-form input, .smart-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--paper);
  font: inherit;
  color: var(--text);
  outline: none;
}
.smart-form input:focus, .smart-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185,134,63,.12);
}
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.form-status { margin: 0; color: var(--deep); font-weight: 900; }

.form-success {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
  padding: 44px 22px;
}
.success-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: var(--paper);
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(21,61,50,.18);
}
.form-success h3 { font-size: 30px; }
.form-success p { max-width: 460px; margin: 0; color: var(--muted); font-size: 18px; }
.form-pending .success-icon { background: var(--gold); }
.form-error .success-icon { background: #8A2F24; }
.form-error h3 { color: #8A2F24; }

.footer {
  background: var(--deep-2);
  color: rgba(255,249,239,.78);
  padding: 58px max(24px, calc((100vw - 1180px) / 2)) 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr .9fr;
  gap: 40px;
}
.footer-brand img { width: 56px; height: 56px; }
.footer-brand strong, .footer h3 { color: var(--paper); }
.footer a, .footer span { display: block; color: inherit; text-decoration: none; margin: 8px 0; }
.footer a:hover { color: #E0BC75; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,249,239,.14);
  margin-top: 34px;
  padding-top: 24px;
}

/* Detail pages */
.detail-hero {
  padding: 90px 0 82px;
  background: linear-gradient(135deg, var(--cream), var(--paper));
  border-bottom: 1px solid var(--border);
}
.detail-visual {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
}
.detail-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.detail-panel.wide { grid-column: 1 / -1; }
.detail-panel h2 { font-size: 34px; letter-spacing: -.8px; }
.detail-panel ul { padding-left: 20px; }
.quote-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 22px;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@media (max-width: 1050px) {
  .hero-grid, .location-grid, .contact-grid, .detail-grid {
    grid-template-columns: 1fr;
  }
  .product-grid, .why-grid, .timeline, .footer-grid, .detail-panels {
    grid-template-columns: 1fr;
  }
  .timeline::before { display: none; }
  .other-sourcing { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 820px) {
  .container, .narrow { width: min(100% - 32px, 1180px); }
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 14px 16px;
  }
  .brand-logo { width: 48px; height: 48px; border-radius: 14px; }
  .brand strong { font-size: 22px; }
  .brand small { font-size: 13px; }
  .nav-toggle { display: inline-flex; position: absolute; right: 16px; top: 22px; }
  .nav { display: none; flex-wrap: wrap; width: 100%; gap: 12px; padding-top: 8px; }
  .nav.open { display: flex; }
  .hero { min-height: auto; padding: 58px 0 50px; }
  h1 { font-size: 42px; letter-spacing: -1.4px; }
  h2 { font-size: 36px; letter-spacing: -1px; }
  .lead { font-size: 19px; }
  .section { padding: 62px 0; }
  .trust-row { justify-content: flex-start; padding: 16px 0; }
  .floating-card { position: static; width: 100%; margin-top: -18px; }
  .choice-grid { grid-template-columns: 1fr; }
  .map-card { height: 350px; }
  .quote-list { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  h1 { font-size: 36px; }
  h2 { font-size: 31px; }
  h3 { font-size: 22px; }
  .button { width: 100%; }
  .hero-actions, .form-actions { width: 100%; }
  .product-content, .why-card, .timeline-item, .smart-form, .contact-card, .detail-panel { padding: 24px; }
  .footer-bottom { flex-direction: column; }
}


/* V8 readability adjustments */
.brand strong, .footer-brand strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  letter-spacing: -1px;
}

.hero-copy h1 {
  text-wrap: balance;
}

.section-head h2,
.detail-panel h2,
.about-section h2,
.contact-copy h2 {
  text-wrap: balance;
}

@media (max-width: 820px) {
  h1 { font-size: 40px; }
  h2 { font-size: 34px; }
}

@media (max-width: 520px) {
  h1 { font-size: 34px; line-height: 1.06; }
  h2 { font-size: 29px; line-height: 1.1; }
}
