:root {
  --ink: #28241f;
  --brand: #342d25;
  --brand-deep: #211c17;
  --brand-soft: #62574c;
  --accent: #b89b75;
  --accent-light: #e8ddd0;
  --paper: #ffffff;
  --warm: #f5f1ec;
  --line: #ded6cd;
  --muted: #6a645d;
  --shell: 1180px;
  --side: clamp(1.25rem, 4vw, 3rem);
  --display: "Avenir Next", Avenir, "Century Gothic", Futura, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4.3vw, 4.2rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.55rem;
}

.shell {
  width: min(100%, calc(var(--shell) + (var(--side) * 2)));
  margin-inline: auto;
  padding-inline: var(--side);
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.section-tint {
  background: var(--warm);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--brand-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #d5a666;
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
}

.brand-strip {
  width: min(100%, 1120px);
  min-height: 87px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.desktop-brand {
  display: block;
}

.desktop-brand img {
  width: 1080px;
  height: auto;
}

.mobile-brand-row {
  display: none;
}

.site-nav {
  color: #fff;
  background: var(--brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, calc(var(--shell) + (var(--side) * 2)));
  min-height: 4rem;
  margin-inline: auto;
  padding-inline: var(--side);
}

.nav-inner a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 4rem;
  padding-inline: clamp(0.75rem, 2vw, 1.45rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-inner a::after {
  position: absolute;
  right: 1.25rem;
  bottom: 0.65rem;
  left: 1.25rem;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-inner a:hover::after,
.nav-inner a:focus-visible::after {
  transform: scaleX(1);
}

.nav-inner .nav-contact {
  min-height: 2.55rem;
  margin-left: 1rem;
  padding-inline: 1.25rem;
  color: var(--brand);
  background: #fff;
}

.nav-inner .nav-contact::after {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 151px));
  color: #fff;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("../images/plantation-shutters-hero.jpg");
  background-position: center center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(25, 21, 17, 0.82) 0%, rgba(25, 21, 17, 0.58) 43%, rgba(25, 21, 17, 0.08) 76%),
    linear-gradient(0deg, rgba(25, 21, 17, 0.66) 0%, rgba(25, 21, 17, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(8.5rem, 14vw, 11rem);
}

.eyebrow,
.section-kicker {
  margin-bottom: 1rem;
  color: var(--brand-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  color: #efe3d4;
}

.eyebrow span {
  margin-inline: 0.4rem;
}

.hero h1 {
  max-width: 830px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.25rem, 7.6vw, 7rem);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0.8rem 1.55rem;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: var(--brand-deep);
  background: #fff;
}

.button-primary:hover {
  color: #fff;
  background: var(--brand-deep);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(35, 29, 24, 0.14);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  color: var(--brand-deep);
  background: #fff;
  border-color: #fff;
}

.hero-details {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(27, 23, 18, 0.5);
  backdrop-filter: blur(10px);
}

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

.detail-grid p {
  margin: 0;
  padding: 1.45rem 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-grid strong,
.detail-grid span {
  display: block;
}

.detail-grid strong {
  margin-bottom: 0.1rem;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
}

.detail-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.intro-image-wrap {
  position: relative;
  padding: 0 1.25rem 1.25rem 0;
}

.intro-image-wrap::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 1.25rem;
  z-index: -1;
  height: 72%;
  background: var(--accent-light);
  content: "";
}

.intro-image-wrap img {
  width: 100%;
  aspect-ratio: 708 / 400;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 240px;
  margin: 0;
  padding: 1.05rem 1.25rem;
  color: #fff;
  background: var(--brand);
  font-size: 0.8rem;
  line-height: 1.5;
}

.intro-copy > p:not(.section-kicker) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.75rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.3rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: end;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0.65rem;
  color: var(--muted);
}

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

.product-card {
  min-width: 0;
  background: #fff;
  box-shadow: 0 16px 50px rgba(53, 43, 34, 0.08);
}

.product-card img {
  width: 100%;
  height: clamp(220px, 24vw, 310px);
  object-fit: cover;
}

.product-card:nth-child(2) img {
  object-position: center 35%;
}

.product-card-copy {
  position: relative;
  padding: 2rem;
}

.product-number {
  position: absolute;
  top: -1.2rem;
  left: 1.5rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
  place-items: center;
  color: #fff;
  background: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-card h3 {
  margin-top: 0.5rem;
}

.product-card-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.benefits-intro {
  align-self: start;
  position: sticky;
  top: 7rem;
}

.benefits-intro > p:last-child {
  color: var(--muted);
}

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

.benefit-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}

.benefit-index {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.benefit-list h3 {
  margin-bottom: 0.4rem;
}

.benefit-list article p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.trade-section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
  color: #fff;
  background: var(--brand-deep);
}

.trade-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.section-kicker-light {
  color: #ccb99f;
}

.trade-grid h2 {
  margin-bottom: 0;
}

.trade-copy {
  padding-top: 2.1rem;
  color: rgba(255, 255, 255, 0.76);
}

.trade-copy ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trade-copy li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.trade-copy li::before {
  position: absolute;
  top: 1.38rem;
  left: 0.1rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--accent);
  content: "";
  transform: rotate(45deg);
}

.contact {
  background: var(--accent-light);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.contact-panel > div:first-child > p:last-child {
  max-width: 560px;
  color: var(--muted);
}

.contact-links {
  border-top: 1px solid rgba(52, 45, 37, 0.25);
}

.contact-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 1rem;
  align-items: center;
  padding-block: 1.45rem;
  border-bottom: 1px solid rgba(52, 45, 37, 0.25);
  text-decoration: none;
}

.contact-link span {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-link strong {
  grid-column: 1;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
  font-weight: 600;
  line-height: 1.3;
}

.contact-link i {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-size: 1.6rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.contact-link:hover i {
  transform: translateX(0.35rem);
}

.site-footer {
  padding-block: 3rem;
  color: rgba(255, 255, 255, 0.67);
  background: var(--brand);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 4rem;
  align-items: start;
}

.footer-brand {
  margin-bottom: 0.35rem;
  color: #fff;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.footer-brand span {
  font-weight: 300;
}

.footer-inner > div:first-child > p:last-child {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.footer-contact {
  display: grid;
  gap: 0.25rem;
  justify-items: end;
}

.footer-contact a {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .nav-inner a {
    padding-inline: 0.8rem;
    letter-spacing: 0.08em;
  }

  .nav-inner .nav-contact {
    margin-left: 0.35rem;
  }

  .intro-grid,
  .section-heading,
  .benefits-grid,
  .trade-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1rem;
  }

  .section-heading > p {
    max-width: 640px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .product-card:last-child img {
    height: 100%;
    min-height: 300px;
  }

  .benefits-intro {
    position: static;
    max-width: 680px;
  }

  .trade-copy {
    max-width: 700px;
    padding-top: 0;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 0.5rem;
  }

  .desktop-brand {
    display: none;
  }

  .brand-strip {
    min-height: 76px;
  }

  .mobile-brand-row {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .mobile-brand {
    display: grid;
    gap: 0.15rem;
    text-decoration: none;
  }

  .mobile-brand-name {
    display: block;
    padding: 0.28rem 0.55rem;
    color: #fff;
    background: var(--brand);
    border-radius: 6px;
    font-family: var(--display);
    font-size: clamp(0.8rem, 3.7vw, 1rem);
    line-height: 1.2;
  }

  .mobile-brand-name span {
    font-weight: 300;
  }

  .mobile-brand-tagline {
    color: var(--muted);
    font-size: 0.59rem;
    line-height: 1.2;
  }

  .mobile-call {
    flex: 0 0 auto;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .site-nav {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .nav-inner {
    width: max-content;
    min-width: 100%;
    min-height: 3.25rem;
    justify-content: flex-start;
    padding-inline: 0.55rem;
  }

  .nav-inner a {
    min-height: 3.25rem;
    font-size: 0.68rem;
  }

  .nav-inner a::after {
    bottom: 0.4rem;
  }

  .nav-inner .nav-contact {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    background-position: 42% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(25, 21, 17, 0.84) 0%, rgba(25, 21, 17, 0.55) 75%, rgba(25, 21, 17, 0.3) 100%);
  }

  .hero-content {
    align-self: start;
    padding-top: 5.5rem;
    padding-bottom: 14rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    padding-block: 0.6rem;
  }

  .detail-grid p {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 1rem;
    padding: 0.45rem 0;
    border: 0;
  }

  .detail-grid p:last-child {
    border: 0;
  }

  .detail-grid strong {
    font-size: 0.88rem;
  }

  .detail-grid span {
    font-size: 0.73rem;
  }

  .intro-image-wrap {
    padding: 0 0.75rem 0.75rem 0;
  }

  .image-note {
    max-width: 210px;
    padding: 0.85rem 1rem;
    font-size: 0.72rem;
  }

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

  .product-card:last-child {
    grid-column: auto;
    display: block;
  }

  .product-card:last-child img,
  .product-card img {
    height: 250px;
    min-height: 0;
  }

  .benefit-list article {
    grid-template-columns: 2.2rem 1fr;
    gap: 0.75rem;
  }

  .contact-link strong {
    overflow-wrap: anywhere;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-contact {
    justify-items: start;
  }

  .copyright {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
