:root {
  --cream: #f8efe2;
  --paper: #fff8ee;
  --ink: #241d18;
  --muted: #6f6157;
  --line: #ead8c4;
  --terra: #c55c21;
  --terra-dark: #8d3e1c;
  --blue: #075aa8;
  --green: #5dbb3d;
  --sage: #e4eee0;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(34, 27, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px 5vw;
  background: rgba(255, 248, 238, 0.9);
  border-bottom: 1px solid rgba(234, 216, 196, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
}

.brand strong {
  display: block;
  color: var(--blue);
  font-size: 1.25rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: #3d332d;
  border-radius: 8px;
  font-weight: 650;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue);
  background: var(--sage);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section-band {
  padding: 78px 5vw;
}

.section {
  padding: 78px 5vw;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100svh - 150px);
  background:
    radial-gradient(circle at 8% 18%, rgba(93, 187, 61, 0.16), transparent 24%),
    linear-gradient(120deg, #fffaf2 0%, #f7eadb 62%, #edf5e9 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terra);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 4.8rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.15rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-lede,
.section-heading p,
.split-copy p,
.cta-copy p,
.showcase-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 30px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--terra);
  box-shadow: 0 12px 28px rgba(197, 92, 33, 0.28);
}

.button.primary:hover {
  background: var(--terra-dark);
}

.button.secondary {
  color: var(--blue);
  border-color: rgba(7, 90, 168, 0.2);
  background: rgba(255, 255, 255, 0.62);
}

.hero-proof span {
  padding: 9px 12px;
  color: #254016;
  background: rgba(228, 238, 224, 0.9);
  border: 1px solid rgba(93, 187, 61, 0.22);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  inset: 22px -18px -18px 22px;
  content: "";
  background: var(--blue);
  border-radius: 8px;
  opacity: 0.12;
}

.hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0 5vw;
  background: var(--line);
}

.intro-strip span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px;
  color: #384030;
  background: var(--paper);
  text-align: center;
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.apparel-section {
  background: #fffaf3;
}

.apparel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card,
.capability,
.portfolio-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(36, 29, 24, 0.08);
}

.category-card img {
  width: 100%;
  height: 280px;
  padding: 10px;
  object-fit: contain;
  background: var(--cream);
}

.category-card div,
.portfolio-card div {
  padding: 22px;
}

.category-card p,
.capability p,
.portfolio-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.apparel-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  padding: 30px;
  color: var(--white);
  background: #173b61;
  border-radius: 8px;
}

.apparel-showcase .eyebrow,
.apparel-showcase p {
  color: #dbead4;
}

.apparel-showcase img {
  width: 100%;
  aspect-ratio: 2.1;
  object-fit: cover;
  border-radius: 8px;
}

.capabilities-section {
  background:
    linear-gradient(180deg, #f4fbf0 0%, #fff8ee 100%);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability {
  min-height: 230px;
  padding: 26px;
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--blue);
  background: var(--sage);
  border-radius: 8px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: #f7efe3;
}

.split-media {
  overflow: hidden;
  aspect-ratio: 1195 / 794;
  background: #f7f2eb;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.split-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  padding: 13px 15px;
  color: #23461b;
  background: var(--sage);
  border-radius: 8px;
  font-weight: 800;
}

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

.range-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(36, 29, 24, 0.08);
}

.product-card.wide {
  grid-column: 2 / span 2;
}

.product-card img {
  width: 100%;
  height: 260px;
  padding: 12px;
  object-fit: contain;
  background: #f6eadb;
}

.product-card div {
  flex: 1;
  padding: 22px;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
}

.portfolio-card > img,
.portfolio-media {
  width: 100%;
  height: 280px;
}

.portfolio-card > img,
.portfolio-media img {
  padding: 10px;
  object-fit: contain;
  background: #f6eadb;
}

.portfolio-media {
  display: grid;
  overflow: hidden;
  background: #f6eadb;
}

.portfolio-media-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.portfolio-media-yoga,
.portfolio-media-boxes {
  padding: 0;
}

.portfolio-media-yoga img,
.portfolio-media-boxes img {
  padding: 0;
  object-fit: contain;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  min-width: 0;
}

.portfolio-card > div:last-child {
  flex: 1;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  background: #e5efdf;
  border-top: 1px solid #cedcc6;
}

.about-content {
  display: grid;
  gap: 30px;
}

.about-heading h2 {
  max-width: 520px;
  margin-bottom: 0;
}

.about-copy {
  padding-left: clamp(24px, 4vw, 54px);
  border-left: 4px solid var(--terra);
}

.about-copy p {
  max-width: 820px;
  margin-bottom: 0;
  color: #354333;
  font-size: 1.35rem;
  line-height: 1.75;
}

.about-visual {
  margin: 0;
}

.about-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f8eee3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 51, 88, 0.88), rgba(8, 51, 88, 0.88)),
    url("assets/hero-wide.jpg") center / cover;
}

.cta-copy p {
  color: #d8e7f4;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-panel a,
.contact-panel span {
  min-height: 74px;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 248, 238, 0.92);
  border-radius: 8px;
  font-weight: 850;
}

.contact-panel a:hover {
  color: var(--blue);
  background: var(--white);
}

.contact-panel .address-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.address-card strong {
  color: var(--blue);
}

.address-card small {
  color: #4f4944;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 650;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 5vw;
  color: #47513f;
  background: var(--sage);
  font-weight: 800;
}

.reveal {
  transform: translateY(16px);
  opacity: 1;
  transition: transform 640ms ease, opacity 640ms ease;
}

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

@media (max-width: 1080px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero,
  .apparel-showcase,
  .split-section,
  .about-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .apparel-grid,
  .range-grid,
  .capability-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card.wide {
    grid-column: span 2;
  }

  .intro-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
  }

  .section-band {
    padding: 58px 5vw;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 44px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-lede,
  .section-heading p,
  .split-copy p,
  .cta-copy p,
  .showcase-copy p {
    font-size: 1rem;
  }

  .apparel-grid,
  .capability-grid,
  .range-grid,
  .portfolio-grid,
  .contact-panel,
  .intro-strip {
    grid-template-columns: 1fr;
  }

  .product-card.wide {
    grid-column: span 1;
  }

  .category-card img,
  .product-card img,
  .portfolio-card > img,
  .portfolio-media {
    height: 250px;
  }

  .apparel-showcase {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .button {
    width: 100%;
  }

  .hero-proof span {
    width: calc(50% - 6px);
  }
}
