:root {
  --black: #050505;
  --ink: #171717;
  --muted: #676767;
  --orange: #ff7e00;
  --line: #e6e6e6;
  --soft: #f6f6f4;
  --white: #ffffff;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: -80px;
  left: 18px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--orange);
  font-size: 13px;
  font-weight: 700;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand-logo {
  width: min(290px, 38vw);
  flex: 0 0 auto;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.2vw, 48px);
}

.main-nav a {
  position: relative;
  padding: 31px 0 28px;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: clamp(620px, 78vh, 800px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .62));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
  padding-block: 90px;
  text-align: center;
}

.hero-label,
.section-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-description {
  max-width: 650px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-link span {
  color: var(--orange);
}

.products {
  padding: 120px 0 10px;
}

.products-intro {
  max-width: 820px;
  margin-bottom: 70px;
  text-align: center;
}

.products-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.3vw, 56px);
  line-height: 1.1;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.products-intro > p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
}

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

.brand-row {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.brand-row:nth-child(even) .brand-visual {
  order: -1;
}

.brand-copy {
  max-width: 470px;
}

.brand-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.brand-number::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--orange);
}

.brand-copy h3 {
  margin: 23px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.025em;
}

.brand-copy h3 small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.outline-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.outline-link span {
  color: var(--orange);
}

.outline-link:hover,
.outline-link:focus-visible {
  color: var(--white);
  background: var(--black);
}

.brand-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--soft);
}

.brand-visual img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  transition: transform .35s ease;
}

.brand-visual:hover img {
  transform: scale(1.018);
}

.page-hero {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.page-hero > img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > img {
  object-fit: cover;
  object-position: center 42%;
}

.page-hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .28));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 80px;
}

.page-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.page-hero-content > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
}

.project-gallery {
  padding: 110px 0 120px;
}

.project-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.project-intro h2 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.project-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 92px;
  grid-auto-flow: dense;
  gap: 18px;
}

.project-card {
  position: relative;
  grid-row: span 4;
  overflow: hidden;
  background: #202020;
}

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

.project-card--portrait {
  grid-row: span 5;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.project-card--portrait img {
  object-position: center top;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .8));
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-card-copy {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 24px;
  left: 25px;
  color: var(--white);
}

.project-card-copy span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-card-copy h3 {
  max-width: 540px;
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.3vw, 31px);
  line-height: 1.12;
  letter-spacing: -.02em;
}

.project-cta-card {
  grid-row: span 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 36px;
  color: var(--white);
  background: var(--black);
}

.project-cta-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.project-cta-card > p:not(.section-label) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.outline-link--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
}

.outline-link--light:hover,
.outline-link--light:focus-visible {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.content-page {
  padding: 100px 0 120px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: start;
  gap: clamp(48px, 7vw, 96px);
}

.content-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.content-copy > p:not(.section-label) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.content-media {
  overflow: hidden;
  background: var(--soft);
}

.content-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-card {
  min-height: 180px;
  padding: 30px;
  background: var(--white);
}

.detail-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.detail-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.2;
}

.detail-card p,
.detail-card a {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.detail-card a {
  display: inline-block;
  border-bottom: 1px solid var(--ink);
}

.contact-strip {
  padding: 64px 0;
  background: var(--soft);
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-strip p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}

.contact-strip a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-strip a span {
  color: var(--orange);
}

.site-footer {
  padding: 78px 0 24px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .65fr .9fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}

.footer-brand img {
  width: min(280px, 100%);
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-title {
  margin: 2px 0 17px;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-whatsapp {
  margin-top: 15px !important;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-weight: 700;
}

.footer-whatsapp span {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 70px;
  padding-top: 20px;
  color: rgba(255, 255, 255, .35);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  z-index: 70;
  right: 20px;
  bottom: 20px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px 10px 10px;
  color: var(--white);
  background: #171717;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .24);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  background: #242424;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  padding: 6px;
  fill: var(--white);
  background: #25d366;
  border-radius: 50%;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .header-inner {
    min-height: 76px;
  }

  .brand-logo {
    width: 245px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    padding: 14px 32px 25px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

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

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .main-nav a::after {
    display: none;
  }

  .brand-row {
    min-height: auto;
    grid-template-columns: 1fr 1.15fr;
    gap: 42px;
  }

  .brand-visual {
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }

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

  .project-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-logo {
    width: min(235px, 67vw);
  }

  .main-nav {
    top: 70px;
    padding-inline: 20px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, .5);
  }

  .hero-content {
    padding-block: 75px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(28px, 7.4vw, 36px);
  }

  .hero-description {
    font-size: 15px;
  }

  .products {
    padding-top: 82px;
  }

  .products-intro {
    margin-bottom: 50px;
  }

  .products-intro h2 {
    font-size: 38px;
  }

  .brand-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 52px 0;
  }

  .brand-row:nth-child(even) .brand-visual {
    order: initial;
  }

  .brand-copy h3 {
    font-size: 38px;
  }

  .brand-visual {
    min-height: 280px;
  }

  .contact-strip {
    padding: 50px 0;
  }

  .contact-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    display: grid;
    margin-top: 50px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 10px;
  }

  .whatsapp-float span {
    display: none;
  }

  .page-hero {
    min-height: 410px;
  }

  .page-hero h1 {
    max-width: 540px;
    font-size: clamp(30px, 8vw, 36px);
  }

  .content-page {
    padding: 76px 0 88px;
  }

  .content-grid,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .content-grid {
    gap: 36px;
  }

  .content-copy h2 {
    font-size: 36px;
  }

  .detail-list {
    margin-top: 42px;
  }

  .project-gallery {
    padding: 78px 0;
  }

  .project-intro {
    margin-bottom: 36px;
  }

  .project-intro h2 {
    font-size: 38px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .project-card,
  .project-card--wide,
  .project-card--portrait,
  .project-cta-card {
    min-height: 380px;
    grid-column: auto;
    grid-row: auto;
  }

  .project-card--portrait {
    min-height: 460px;
  }

  .project-cta-card {
    min-height: 360px;
    padding: 30px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
