/* Coach Trading Limited
   Brand: charcoal, bronze, gold, forest green accents
   Industrial packaging: clean, solid, no SaaS fluff */

:root {
  --ink: #1c1c1c;
  --charcoal: #2a2a2a;
  --charcoal-soft: #3a3a3a;
  --bronze: #8e744d;
  --bronze-hot: #805a22;
  --gold: #ba9866;
  --gold-soft: #c9ad7e;
  --green: #3d7a5c;
  --green-soft: #4a8f6c;
  --cream: #fff1db;
  --paper: #f7f5f1;
  --paper-2: #f1f1f1;
  --white: #ffffff;
  --muted: #6b6560;
  --line: #e0dbd3;
  --shadow: 0 18px 48px rgba(26, 26, 26, 0.12);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --wrap: 1120px;
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--bronze);
}

a:hover {
  color: var(--bronze-hot);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  z-index: 100;
  text-decoration: none;
  font-weight: 600;
}

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

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Top strip */

.top-strip {
  background: var(--charcoal);
  color: #cfc9c0;
  font-size: 0.85rem;
}

.top-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  min-height: 2.25rem;
  padding-block: 0.35rem;
}

.top-strip a {
  color: #e8e2d8;
  text-decoration: none;
  font-weight: 500;
}

.top-strip a:hover {
  color: var(--gold-soft);
}

.top-strip-sep {
  opacity: 0.45;
}

.top-strip-note {
  margin-left: auto;
  color: #9a938a;
  font-size: 0.8rem;
}

/* Header */

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  gap: 1rem;
}

.logo img {
  height: 3.1rem;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.menu a {
  text-decoration: none;
  color: var(--charcoal-soft);
  font-weight: 500;
  font-size: 0.95rem;
}

.menu a:hover {
  color: var(--green);
}

.menu-cta {
  background: var(--bronze);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.menu-cta:hover {
  background: var(--bronze-hot);
  color: var(--white) !important;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  height: 2px;
  width: 1.3rem;
  background: var(--charcoal);
  margin-inline: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */

.hero {
  position: relative;
  color: var(--white);
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(26, 26, 26, 0.94) 0%,
      rgba(26, 26, 26, 0.78) 42%,
      rgba(26, 26, 26, 0.35) 100%
    ),
    linear-gradient(to top, rgba(26, 26, 26, 0.55), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow.dark {
  color: var(--bronze);
}

.eyebrow.light {
  color: var(--gold-soft);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6.5vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--gold);
}

.lede {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #e8e4dc;
  max-width: 34rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats dt {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hero-stats dd {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: #c4bdb2;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    transform 0.15s ease;
}

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

.btn.solid {
  background: var(--bronze);
  color: var(--white);
  border-color: var(--bronze);
}

.btn.solid:hover {
  background: var(--bronze-hot);
  border-color: var(--bronze-hot);
  color: var(--white);
}

.btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

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

.btn.wide {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Sections */

.section {
  padding: 4.5rem 0;
}

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

.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section-head.light h2 {
  color: var(--white);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--charcoal);
}

.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Products */

.product-grid {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.product-grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--bronze);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.product-grid li:hover {
  border-left-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.band-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.band-photo img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

/* Clarity band */

.clarity {
  background: var(--bronze);
  color: var(--white);
}

.clarity h2 {
  color: var(--white);
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.clarity-card {
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.4rem 1.35rem 1.5rem;
}

.clarity-num {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.clarity-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.clarity-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 180px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-img {
  min-height: 160px;
  background: var(--paper-2);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  padding: 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.service-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Why */

.why-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.why-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.why-list li {
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.why-list strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.why-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--cream);
}

.why-photo img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}

/* Contact */

.contact {
  background: var(--charcoal);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-intro p {
  color: #d5cfc5;
  max-width: 28rem;
}

.contact-direct {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-direct li {
  display: grid;
  gap: 0.15rem;
}

.contact-direct span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
}

.contact-direct a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-direct a:hover {
  color: var(--gold-soft);
}

.contact-form {
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 1.5rem 1.4rem 1.35rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.9rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}

.field .opt {
  font-weight: 400;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--bronze) 50%, transparent);
  outline-offset: 1px;
  border-color: var(--bronze);
}

.field textarea::placeholder {
  color: #9a938a;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin: 0;
  color: #9b2c2c;
  font-weight: 500;
  font-size: 0.92rem;
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* Footer */

.foot {
  background: #1a1a1a;
  color: #9a938a;
  padding: 2rem 0 2.25rem;
  border-top: 1px solid #333;
}

.foot-inner {
  display: grid;
  gap: 0.65rem;
}

.foot-logo img {
  height: 2.6rem;
  width: auto;
  opacity: 0.95;
}

.foot-tag {
  margin: 0;
  color: #cfc9c0;
  font-weight: 500;
}

.foot-meta {
  margin: 0;
  font-size: 0.88rem;
}

.foot-meta a {
  color: #cfc9c0;
  text-decoration: none;
}

.foot-meta a:hover {
  color: var(--gold-soft);
}

/* Toast */

.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  z-index: 50;
  box-shadow: var(--shadow);
  border: 1px solid rgba(186, 152, 102, 0.35);
}

/* Rise on load (hero) */

[data-rise] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--rise-delay, 0ms);
}

[data-rise].is-in {
  opacity: 1;
  transform: none;
}

/* Scroll reveals */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translate3d(-32px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(32px, 0, 0);
}

[data-reveal="scale"] {
  transform: translate3d(0, 16px, 0) scale(0.97);
}

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

.hero-media {
  will-change: transform;
}

.hero-media.is-parallax {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.05);
  transform-origin: center top;
}

/* Mobile */

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

  .clarity-grid,
  .service-grid,
  .why-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-img {
    min-height: 180px;
    max-height: 200px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .top-strip-note {
    display: none;
  }

  .burger {
    display: flex;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-cta {
    margin-top: 0.6rem;
    text-align: center;
  }
}

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

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }
}

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

  [data-rise],
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media.is-parallax {
    transform: none;
  }

  .btn:active,
  .product-grid li:hover,
  .service-card:hover {
    transform: none;
  }
}
