@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #2e4169;
  --navy-deep: #1b2944;
  --navy-ink: #121a2c;
  --red: #b73235;
  --red-hot: #c93c3f;
  --sand: #f3f0ea;
  --paper: #f7f4ee;
  --line: rgba(46, 65, 105, 0.14);
  --text: #1a2030;
  --muted: #5b6478;
  --white: #fff;
  --shadow: 0 18px 50px rgba(18, 26, 44, 0.12);
  --radius: 20px;
  --header: 84px;
  --pad: clamp(16px, 4vw, 24px);
  --font: "Outfit", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  scroll-padding-top: calc(var(--header) + env(safe-area-inset-top) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
li,
a,
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(183, 50, 53, 0.45);
  outline-offset: 3px;
}

.nav-toggle:focus-visible {
  border-radius: 10px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  height: calc(var(--header) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(46, 65, 105, 0.08);
}

body:has(.site-header) {
  padding-top: calc(var(--header) + env(safe-area-inset-top));
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0 22%, var(--navy) 22% 100%);
}

.header-inner {
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: min(220px, 58vw);
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  z-index: 5;
}

.nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--red);
  background: rgba(183, 50, 53, 0.08);
}

.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-hot)) !important;
  color: var(--white) !important;
  margin-left: 8px;
  padding: 12px 20px !important;
  min-height: 44px;
  box-shadow: 0 8px 18px rgba(183, 50, 53, 0.28);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  filter: brightness(1.06);
  background: linear-gradient(135deg, var(--red), var(--red-hot)) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header));
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(18, 26, 44, 0.92) 0%, rgba(46, 65, 105, 0.78) 52%, rgba(183, 50, 53, 0.58) 100%),
    url("/assets/photos/trabalho.jpg") center / cover no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 80%, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(183, 50, 53, 0.22), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  animation: gridDrift 28s linear infinite;
  pointer-events: none;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape-slash {
  position: absolute;
  top: -40px;
  right: 8%;
  width: 14px;
  height: 220px;
  background: var(--red);
  transform: rotate(28deg);
  opacity: 0.85;
}

.shape-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 50, 53, 0.45), transparent 70%);
}

.hero-grid {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px var(--pad) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--red);
  transform: skewX(-18deg);
  flex-shrink: 0;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.hero .eyebrow::before {
  background: var(--red);
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 800;
  max-width: 16em;
}

.lead,
.section-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 32px;
}

.hero-copy > * {
  animation: fadeUp 0.85s var(--ease) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.16s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.28s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.4s; }

.hero-panel {
  animation: fadeUp 0.9s var(--ease) 0.45s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: min(200px, 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
  line-height: 1;
  touch-action: manipulation;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, filter 0.25s, background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-red {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red), var(--red-hot));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(183, 50, 53, 0.32);
}

.btn-red::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28), transparent 70%);
  transform: translateX(-120%);
  animation: shine 4.5s ease-in-out infinite;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(46, 65, 105, 0.24);
  margin-top: 8px;
}

.section-dark .btn-ghost {
  margin-top: 8px;
}

.hero-panel {
  background: rgba(18, 26, 44, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 28px 28px 12px;
  backdrop-filter: blur(14px);
}

.panel-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.panel-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(183, 50, 53, 0.22);
  color: #fff;
  display: grid;
  place-items: center;
}

.panel-icon svg {
  width: 18px;
  height: 18px;
}

.strip {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.strip::after {
  content: "";
  position: absolute;
  right: 8%;
  top: -30px;
  width: 10px;
  height: 140px;
  background: var(--red);
  transform: rotate(24deg);
}

.strip-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px var(--pad);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.strip span {
  display: block;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.strip small {
  color: rgba(255, 255, 255, 0.72);
}

.section,
.shop-hero,
.legal {
  scroll-margin-top: calc(var(--header) + env(safe-area-inset-top) + 12px);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px var(--pad);
}

.section-alt {
  max-width: none;
  background: var(--sand);
  padding: 96px 0;
}

.section-alt .section-head,
.section-alt .subhead,
.section-alt .cards {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section-dark {
  max-width: none;
  background:
    radial-gradient(circle at 88% 12%, rgba(183, 50, 53, 0.22), transparent 32%),
    var(--navy-deep);
  color: var(--white);
  padding: 96px 0;
}

.section-dark .section-head,
.section-dark .split {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section-head {
  margin-bottom: 44px;
}

.section-head h2,
.legal h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 44px);
  max-width: 18em;
}

.section-dark .section-lead,
.section-dark .prose {
  color: rgba(255, 255, 255, 0.8);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.prose p {
  margin: 0 0 16px;
  font-size: 17px;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(46, 65, 105, 0.08);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

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

@media (min-width: 900px) {
  .cards-rent {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .cards-rent > .card {
    grid-column: span 2;
  }

  .cards-rent > .card:nth-child(4),
  .cards-rent > .card:nth-child(5) {
    grid-column: span 3;
  }
}

.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(18, 26, 44, 0.16);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

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

.sectors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.sectors li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}

.sectors li:hover {
  transform: translateY(-4px);
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.callout {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

.callout::after {
  content: "";
  position: absolute;
  right: 24px;
  top: -20px;
  width: 8px;
  height: 120px;
  background: var(--red);
  transform: rotate(24deg);
}

.callout p {
  margin: 0;
  font-size: 18px;
  max-width: 70ch;
  position: relative;
}

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

.pillars li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform 0.35s var(--ease), background 0.35s;
}

.pillars li:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.1);
}

.pillars strong {
  display: block;
  margin-bottom: 4px;
}

.pillars span {
  color: rgba(255, 255, 255, 0.7);
}

.visual-band {
  margin: 0;
  padding: 36px var(--pad);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 8% 90%, rgba(183, 50, 53, 0.28), transparent 42%),
    radial-gradient(ellipse at 92% 10%, rgba(46, 65, 105, 0.7), transparent 48%),
    var(--navy-ink);
}

.visual-band-frame {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.visual-band-frame::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 46%;
  width: 10px;
  height: 160px;
  background: var(--red);
  transform: rotate(24deg);
  opacity: 0.7;
  pointer-events: none;
}

.visual-shot {
  position: relative;
  height: 320px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.visual-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(18, 26, 44, 0.42));
  pointer-events: none;
}

.visual-shot-left {
  background-image: url("/assets/photos/trabalho.jpg");
  background-position: 42% 40%;
}

.visual-shot-right {
  background-image: url("/assets/photos/interior.jpg");
  background-position: 55% 50%;
}

.visual-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 8px 4px 12px;
}

.visual-copy .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
}

.visual-copy h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 44px);
  max-width: none;
}

.visual-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.place-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  margin-bottom: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.place-copy {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.place-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.place-copy p {
  margin: 0 0 22px;
  color: var(--muted);
}

.place-copy .btn {
  align-self: flex-start;
}

.place-map {
  min-height: 300px;
  background: var(--sand);
}

.place-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

.lead-box {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--white);
}

.lead-aside {
  background:
    linear-gradient(160deg, rgba(18, 26, 44, 0.92), rgba(46, 65, 105, 0.82)),
    url("/assets/photos/interior.jpg") center / cover no-repeat;
  color: var(--white);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lead-aside h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.2vw, 26px);
}

.lead-aside p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
}

.lead-aside ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.lead-aside li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: rgba(255, 255, 255, 0.9);
}

.lead-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 3px;
  background: var(--red);
  transform: skewX(-18deg);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  padding: 20px 22px;
  background: var(--white);
  align-content: start;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row-full {
  grid-column: 1 / -1;
}

label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  min-height: 38px;
  border: 1px solid #d4dbe8;
  border-radius: 8px;
  padding: 7px 11px;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: #f8f9fc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-form textarea {
  min-height: 84px;
  padding-top: 9px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-color: #f8f9fc;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232E4169' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  background-color: var(--white);
  box-shadow: 0 0 0 2px rgba(46, 65, 105, 0.12);
}

.contact-form select:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232E4169' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8b93a6;
}

.contact-form input:user-invalid,
.contact-form select:user-invalid,
.contact-form textarea:user-invalid {
  border-color: var(--red);
}

.form-note {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.btn-submit {
  grid-column: 1 / -1;
  width: auto;
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
  justify-self: start;
}

.site-footer {
  background: var(--navy-ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px var(--pad) calc(28px + env(safe-area-inset-bottom));
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.2fr 0.9fr;
  gap: 32px;
}

.site-footer img {
  width: 132px;
  margin-bottom: 12px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer a + h2 {
  margin-top: 22px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  margin-bottom: 8px;
}

.site-footer a[href^="mailto"] {
  overflow-wrap: anywhere;
}

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  font-size: 13px;
}

.wa-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  aspect-ratio: 1;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  overflow: hidden;
  overflow-wrap: normal;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  z-index: 40;
  animation: pulse 2.4s ease-in-out infinite;
}

.wa-float svg {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.photo-frame {
  margin: 0;
  position: relative;
}

.photo-frame::after {
  content: "";
  position: absolute;
  left: -12px;
  bottom: 28px;
  width: 12px;
  height: 88px;
  background: var(--red);
  transform: skewY(-12deg);
}

.photo-frame img {
  width: 100%;
  height: min(420px, 56vw);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-frame figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.subhead {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.cards + .subhead {
  margin-top: 48px;
}

.card-photo {
  padding: 0;
  overflow: hidden;
}

.card-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-photo div {
  padding: 22px 24px 26px;
}

.brands {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 28px;
  overflow: hidden;
}

.brands-head {
  max-width: 1200px;
  margin: 0 auto 28px;
  padding: 0 var(--pad);
}

.brands-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.brands-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 38s linear infinite;
  padding: 8px var(--pad) 20px;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brands-track img {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.clients-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.clients-grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 110px;
  padding: 14px 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(18, 26, 44, 0.06);
}

.clients-grid img {
  max-height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.photo-grid figure:hover img {
  transform: scale(1.04);
}

.photo-wide {
  grid-row: span 2;
}

.photo-wide img {
  min-height: 380px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px var(--pad) 96px;
}

.legal h1 {
  max-width: none;
}

.shop-hero {
  position: relative;
  min-height: min(72dvh, 640px);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.shop-hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(18, 26, 44, 0.92) 0%, rgba(46, 65, 105, 0.78) 55%, rgba(183, 50, 53, 0.55) 100%),
    url("/assets/photos/interior.jpg") center / cover no-repeat;
}

.shop-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px var(--pad) 80px;
}

.shop-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  max-width: 16em;
}

.shop-hero .lead {
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 32px;
}

.shop-hero .lead strong {
  color: var(--white);
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.shop-callout {
  margin-top: 8px;
}

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

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes gridDrift {
  to {
    background-position: 0 0, 0 0, 56px 56px, 56px 56px;
  }
}

@keyframes shine {
  0%,
  55% {
    transform: translateX(-120%);
  }
  75%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
  }
}

@media (max-width: 1240px) {
  .nav-toggle {
    display: block;
    z-index: 2;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px var(--pad) 24px;
    gap: 4px;
    max-height: calc(100dvh - var(--header) - env(safe-area-inset-top));
    overflow-y: auto;
    box-shadow: 0 16px 40px rgba(46, 65, 105, 0.16);
    border-bottom: 3px solid var(--navy);
  }

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

  .nav a {
    white-space: normal;
    padding: 14px 16px;
    font-size: 16px;
    min-height: 44px;
    border-radius: 12px;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .lead-box,
  .place-card,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .shop-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-grid {
    padding: 40px var(--pad) 56px;
  }

  .hero-panel {
    margin-top: 28px;
  }

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

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

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

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

  .photo-wide {
    grid-row: auto;
  }

  .photo-wide img,
  .photo-frame img {
    min-height: 220px;
    height: 240px;
  }

  .visual-band-frame {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .visual-band-frame::before {
    display: none;
  }

  .visual-copy {
    grid-column: 1 / -1;
    order: -1;
    padding: 8px 0 4px;
  }

  .visual-shot {
    height: 220px;
    border-radius: 20px;
  }
}

@media (max-width: 720px) {
  .cards,
  .footer-inner,
  .shop-cards {
    grid-template-columns: 1fr;
  }

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

  .section,
  .section-alt,
  .section-dark {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero h1,
  .shop-hero h1,
  .section-head h2 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    min-height: 42px;
  }

  .hero-actions .btn,
  .btn-submit {
    width: 100%;
    justify-self: stretch;
  }

  .contact-form,
  .callout,
  .card,
  .hero-panel,
  .lead-aside {
    padding: 20px;
  }

  .lead-aside {
    padding: 28px 22px;
  }

  .lead,
  .section-lead,
  .callout p,
  .prose p {
    font-size: 16px;
  }

  .brand-logo {
    height: 40px;
  }

  .shape-slash {
    display: none;
  }

  .shop-hero {
    min-height: auto;
  }

  .shop-hero-inner {
    padding: 48px var(--pad) 56px;
  }

  .site-footer {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .sectors,
  .strip-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .card h3 {
    font-size: 20px;
  }

  .wa-float {
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  .btn {
    min-height: 52px;
    font-size: 15px;
  }

  .contact-form .btn-submit {
    min-height: 42px;
    font-size: 14px;
  }
}

@media (hover: none) {
  .btn:hover,
  .card:hover,
  .sectors li:hover,
  .pillars li:hover {
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal],
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .brands-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}
