:root {
  --ink: #1f2723;
  --muted: #6f776f;
  --paper: #f7f4ee;
  --shell: #e8dfd0;
  --brand-blue: #005da8;
  --leaf: #8ecf88;
  --olive: #3f7f3e;
  --clay: #b56e4a;
  --white: #fffdf8;
  --line: rgba(31, 39, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Georgia", "Times New Roman", serif;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 64px);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid rgba(31, 39, 35, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 17vw, 240px);
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  gap: clamp(16px, 3vw, 42px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1d211d;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 14, 12, 0.72), rgba(12, 14, 12, 0.18) 58%, rgba(12, 14, 12, 0.12)),
    linear-gradient(0deg, rgba(12, 14, 12, 0.58), rgba(12, 14, 12, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(56px, 9vw, 116px) clamp(20px, 7vw, 108px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(46px, 6.2vw, 96px);
  font-weight: 400;
  line-height: 1;
  white-space: normal;
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 34px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.button.light:hover,
.button.light:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.section {
  padding: clamp(72px, 10vw, 138px) clamp(20px, 5vw, 76px);
}

.intro {
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.section-heading,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
}

.intro p,
.section-heading p,
.contact-box p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.collections {
  background: var(--white);
}

.section-heading {
  margin-bottom: clamp(36px, 6vw, 76px);
}

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

.product-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--shell);
}

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

.product-card.wide {
  grid-column: span 2;
  min-height: 420px;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card.product-photo img {
  padding: clamp(24px, 4vw, 56px);
  background: var(--white);
  object-fit: contain;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card-link:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 4px;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 23, 19, 0.72), rgba(21, 23, 19, 0.04) 58%);
}

.product-copy {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 26px;
  color: var(--white);
}

.product-copy span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.product-copy h3 {
  margin: 10px 0 12px;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 400;
}

.product-copy p {
  max-width: 510px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.outdoor-range {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(31, 39, 35, 0.14);
}

.range-item {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 390px;
  background: var(--white);
}

.range-item img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.range-item h3 {
  margin: 0;
  padding: 22px 24px 26px;
  border-top: 1px solid var(--line);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clients {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.clients-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 44px);
  padding: clamp(52px, 7vw, 82px) clamp(20px, 5vw, 76px) 40px;
}

.clients-heading h2 {
  max-width: none;
  font-size: clamp(30px, 3.8vw, 54px);
}

.clients-intro,
.clients-message {
  display: grid;
  gap: 18px;
}

.clients-intro .section-kicker {
  margin-bottom: 0;
}

.clients-intro p,
.clients-message p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.clients-message p {
  max-width: none;
}

@media (min-width: 981px) {
  .clients-intro p,
  .clients-message h2,
  .clients-message p {
    white-space: nowrap;
  }
}

.client-marquee {
  border-top: 1px solid var(--line);
  background: var(--white);
  white-space: nowrap;
}

.client-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(58px, 8vw, 126px);
  min-width: max-content;
  padding: 34px 0;
  animation: client-scroll 34s linear infinite;
}

.client-track img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.client-track span {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.client-track span:nth-child(3n + 2) {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.client-track span:nth-child(3n) {
  color: var(--olive);
}

@keyframes client-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.service > img {
  width: 100%;
  height: min(680px, 76vw);
  object-fit: cover;
}

.service-panel {
  max-width: 690px;
}

.service-intro {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.service-list {
  display: grid;
  gap: 22px;
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.service-list strong {
  color: var(--ink);
}

.quality {
  background: #e6eadf;
}

.quality h2 {
  max-width: 940px;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(38px, 6vw, 72px);
  background: rgba(31, 39, 35, 0.18);
}

.quality-grid div {
  min-height: 230px;
  padding: 32px;
  background: #e6eadf;
}

.quality-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--brand-blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quality-grid p {
  margin: 0;
  color: #4e584f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.category-title {
  display: grid;
  place-items: center;
  min-height: clamp(220px, 24vw, 300px);
  padding: 104px clamp(20px, 5vw, 76px) 48px;
  background: var(--white);
  text-align: center;
}

.category-title h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(58px, 7.2vw, 104px);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.category-index {
  padding-top: 0;
  background: var(--paper);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.category-card {
  overflow: hidden;
  background: var(--white);
}

.category-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--white);
}

.category-card-image.product-image {
  padding: clamp(24px, 4vw, 56px);
  object-fit: contain;
}

.category-card-name {
  margin: 0;
  padding: 25px 24px 29px;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.category-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  border-top: 1px solid var(--line);
  background: var(--shell);
  color: var(--ink);
}

.category-inquiry-copy p {
  margin: 0 0 28px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.category-inquiry .button.light:hover,
.category-inquiry .button.light:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.product-collection {
  padding-top: 0;
  background: var(--paper);
}

.outdoor-collection-page,
.outdoor-collection-page main,
.outdoor-collection-page .category-title,
.outdoor-collection-page .product-collection,
.outdoor-collection-page .product-collection-grid {
  background: #fff;
}

.outdoor-collection-page .category-title {
  min-height: clamp(250px, 26vw, 290px);
  place-items: end center;
  padding-top: clamp(148px, 14vw, 168px);
  padding-bottom: clamp(18px, 2.4vw, 28px);
}

.outdoor-collection-page .collection-product-card {
  background: transparent;
}

.outdoor-collection-page .collection-product-card img {
  background: #fff;
}

.greenery-collection-page,
.greenery-collection-page main,
.greenery-collection-page .category-title,
.greenery-collection-page .product-collection,
.greenery-collection-page .product-collection-grid {
  background: #fff;
}

.greenery-collection-page .category-title {
  min-height: clamp(250px, 26vw, 290px);
  place-items: end center;
  padding-top: clamp(148px, 14vw, 168px);
  padding-bottom: clamp(18px, 2.4vw, 28px);
}

.greenery-collection-page .collection-product-card {
  background: transparent;
}

.greenery-collection-page .collection-product-card img {
  background: #fff;
}

.lighting-collection-page,
.lighting-collection-page main,
.lighting-collection-page .category-title,
.lighting-collection-page .product-collection,
.lighting-collection-page .product-collection-grid {
  background: #fff;
}

.lighting-collection-page .category-title {
  min-height: clamp(250px, 26vw, 290px);
  place-items: end center;
  padding-top: clamp(148px, 14vw, 168px);
  padding-bottom: clamp(18px, 2.4vw, 28px);
}

.lighting-collection-page .collection-product-card {
  background: transparent;
}

.lighting-collection-page .collection-product-card img {
  background: #fff;
}

.product-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.collection-product-card {
  overflow: hidden;
  background: var(--white);
}

.collection-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: clamp(20px, 2.8vw, 42px);
  object-fit: contain;
  background: var(--white);
}

.collection-product-card h2 {
  margin: 0;
  padding: 20px 22px 24px;
  border-top: 1px solid var(--line);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

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

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

.contact-box {
  align-self: end;
}

.contact-box p {
  margin-bottom: 22px;
  color: rgba(255, 253, 248, 0.74);
}

.contact-emails {
  display: grid;
  justify-items: start;
  gap: 7px;
  margin-bottom: 30px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-emails-label {
  margin-bottom: 3px;
  color: rgba(255, 253, 248, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-emails a {
  color: rgba(255, 253, 248, 0.82);
  font-size: 15px;
  line-height: 1.5;
  text-decoration-color: rgba(255, 253, 248, 0.32);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.contact-emails a:hover,
.contact-emails a:focus-visible {
  color: var(--white);
  text-decoration-color: currentColor;
}

.contact-emails a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

@media (min-width: 981px) {
  .hero {
    min-height: 94vh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 14, 12, 0.76), rgba(12, 14, 12, 0.3) 56%, rgba(12, 14, 12, 0.08)),
      linear-gradient(0deg, rgba(12, 14, 12, 0.5), rgba(12, 14, 12, 0.02) 50%);
  }

  .hero-content {
    width: min(850px, calc(100% - 40px));
    margin-bottom: clamp(72px, 8vw, 112px);
  }

  .hero h1 {
    max-width: 850px;
    font-size: clamp(48px, 6.4vw, 96px);
    line-height: 0.98;
    white-space: normal;
  }

  .hero-copy {
    max-width: 620px;
    margin: 26px 0 32px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  .button-primary {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
  }

  .button-primary:hover,
  .button-primary:focus-visible {
    color: var(--white);
    background: transparent;
  }

  .button-secondary {
    color: var(--white);
  }

  .section {
    padding-top: clamp(76px, 9vw, 128px);
    padding-bottom: clamp(76px, 9vw, 128px);
  }

  h2 {
    max-width: 980px;
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: #151915;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer img {
  width: 168px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 390px;
  }

  .intro-grid,
  .section-heading,
  .clients-heading,
  .contact,
  .service {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    display: block;
    padding-top: 18px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 78px);
    white-space: normal;
  }

  .hero-content {
    margin-left: 20px;
  }

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

  .product-card,
  .product-card.wide {
    min-height: 430px;
  }

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

  .quality-grid div {
    min-height: 190px;
  }

  .range-item {
    min-height: 330px;
  }

  .range-item img {
    height: 250px;
  }

  .site-footer {
    display: grid;
  }
}
