:root {
  --green-950: #00130c;
  --green-900: #001d14;
  --green-850: #06231a;
  --green-700: #336636;
  --green-600: #447a43;
  --gold-500: #d79f40;
  --gold-400: #eab657;
  --cream-100: #fffdf7;
  --cream-200: #fbf7ec;
  --cream-300: #f4ecd7;
  --cream-400: #efe6cf;
  --text: #001d14;
  --muted: #52614f;
  --soft: #c9d2c2;
  --line: rgba(51, 102, 54, .14);
  --shadow: 0 18px 42px rgba(0, 29, 20, .1);
}

* {
  box-sizing: border-box;
}

html {
  background: #1b150b;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream-200);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 981px) {
  body:has(.site-header)::before {
    content: "";
    position: fixed;
    z-index: 49;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #1b150b;
    pointer-events: none;
  }
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  min-width: 0;
}

textarea {
  resize: vertical;
}

::selection {
  background: var(--gold-500);
  color: var(--green-900);
}

.shell {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background: var(--cream-200);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--green-900), #001a12);
  border-bottom: 1px solid rgba(215, 159, 64, .22);
}

.site-header + .mobile-menu + main {
  padding-top: var(--header-height, 126px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 51px;
  background: #1b150b;
  border-bottom: 1px solid rgba(215, 159, 64, .22);
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px clamp(18px, 5vw, 40px) 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  height: 58px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .brand-logo {
    height: 42px;
  }
}

.brand-mark,
.footer-mark,
.mark-small {
  position: relative;
  border-radius: 999px;
  border: 1.5px solid rgba(215, 159, 64, .55);
  display: grid;
  place-items: center;
  flex: none;
}

.brand-mark::before,
.footer-mark::before,
.mark-small::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px dashed rgba(215, 159, 64, .4);
}

.brand-mark,
.footer-mark {
  width: 44px;
  height: 44px;
}

.mark-small {
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
}

.brand-initials {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold-400);
  letter-spacing: .01em;
  position: relative;
}

.brand-amp {
  font-size: 10px;
  color: var(--gold-500);
  margin: 0 1px;
}

.brand-text {
  min-width: 0;
  line-height: 1;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #f0e0ba;
}

.brand-subtitle {
  margin-top: 3px;
  font-size: 8.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav,
.desktop-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 24px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-caret {
  border: none;
  background: none;
  color: inherit;
  font-size: 9px;
  line-height: 1;
  padding: 2px;
  cursor: pointer;
  opacity: .65;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret,
.nav-dropdown.is-open .nav-caret {
  opacity: 1;
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 224px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fbf7ec;
  border: 1px solid rgba(0, 29, 20, .1);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 18, 11, .26);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

/* invisible bridge so the menu doesn't close when the cursor crosses the gap */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}

.nav-dropdown-menu a::after {
  content: none;
}

.nav-dropdown-menu a:hover {
  background: var(--green-900);
  color: var(--gold-400);
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-menu {
    transition: opacity .2s ease, visibility .2s ease;
    transform: none;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: none;
  }
}

.mobile-submenu {
  display: none;
  flex-direction: column;
}

.mobile-submenu.is-open {
  display: flex;
}

.mobile-subnav {
  padding-left: 28px !important;
  font-size: 15px !important;
  opacity: .85;
}

.mobile-caret {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  opacity: .7;
  transition: transform .15s ease;
}

.mobile-menu nav a.is-open .mobile-caret {
  transform: rotate(180deg);
}

.desktop-actions {
  gap: 9px;
}

.desktop-actions {
  order: -1;
  flex: 0 0 100%;
  justify-content: flex-end;
  margin: -10px calc(clamp(18px, 5vw, 40px) * -1) 0;
  padding: 7px clamp(18px, 5vw, 40px);
  background: transparent;
}

.desktop-actions .btn {
  min-height: 36px;
  padding: 9px 16px;
  font-size: 13px;
  box-shadow: none;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(240, 224, 186, .24);
  border-radius: 999px;
  color: #f0e0ba;
  background: rgba(240, 224, 186, .05);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.top-contact-link:hover {
  border-color: rgba(215, 159, 64, .55);
  color: var(--gold-400);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(215, 159, 64, .45);
  border-radius: 999px;
  color: var(--gold-400);
  background: rgba(215, 159, 64, .08);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.lang-switch:hover {
  background: rgba(215, 159, 64, .16);
  border-color: rgba(215, 159, 64, .75);
  color: var(--cream-100);
}

.nav-link {
  position: relative;
  color: #e6d9b5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-400);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .nav-link::after {
    transition: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  min-height: 46px;
  padding: 14px 24px;
  transition: transform .2s, filter .2s, border-color .2s, color .2s, background .2s;
}

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

.btn:active {
  transform: translateY(0);
  filter: brightness(.98);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(215, 159, 64, .4);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn:hover,
  .btn:active {
    transform: none;
  }
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--green-900);
  box-shadow: 0 10px 28px rgba(215, 159, 64, .28);
}

.btn-outline {
  color: #f0e0ba;
  background: transparent;
  border: 1.5px solid rgba(240, 224, 186, .4);
}

.btn-outline:hover {
  color: var(--gold-400);
  border-color: var(--gold-400);
}

.btn-dark {
  background: var(--green-900);
  color: #f0e0ba;
}

.btn-whatsapp {
  color: #fbf7ec;
  background: var(--green-600);
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(240, 224, 186, .35);
  border-radius: 999px;
  background: rgba(0, 19, 12, .45);
  color: #f0e0ba;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-header-cart {
  display: none;
}

.cart-count {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold-500);
  color: var(--green-900);
  font-size: 11px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-600);
  box-shadow: 0 0 0 3px rgba(68, 122, 67, .3);
  flex: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 1px solid rgba(240, 224, 186, .3);
  border-radius: 6px;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: linear-gradient(180deg, var(--green-900), #001a12);
  padding: 20px clamp(18px, 6vw, 40px);
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: flex;
  flex-direction: column;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.mobile-menu-name {
  font-family: "Playfair Display", serif;
  color: #f0e0ba;
  font-size: 20px;
  font-weight: 700;
}

.menu-close {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(240, 224, 186, .3);
  background: transparent;
  color: var(--gold-400);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  border-bottom: 1px solid rgba(215, 159, 64, .16);
  padding: 15px 0;
  color: #f0e0ba;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  text-decoration: none;
}

.mobile-menu-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 40px);
}

.section-tight {
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 40px);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #c08f30;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 30px;
  border-top: 2px dashed var(--gold-500);
}

.eyebrow-dark {
  color: var(--gold-500);
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 80% 0%, #08291c 0%, var(--green-900) 45%, var(--green-950) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 159, 64, .16), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 40px);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 100%;
  color: #f4e9c7;
  font-size: clamp(36px, 5.3vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy,
.page-copy {
  margin: 24px 0 0;
  color: #c9d2c2;
  font-size: clamp(15px, 1.5vw, 17.5px);
  line-height: 1.7;
  max-width: 590px;
}

.page-hero .page-copy {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.page-hero .hero-actions {
  justify-content: center;
}

.uniform-mockups {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.uniform-mockup {
  margin: 0;
}

.uniform-mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #e9e1d2;
}

.uniform-mockup figcaption {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 720px) {
  .uniform-mockups {
    grid-template-columns: 1fr;
  }
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 32px;
  color: #9fb09a;
  font-size: 13px;
}

.proof-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-list span::before {
  content: "✓";
  color: var(--gold-400);
}

.mockup-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mockup-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(234, 182, 87, .25);
  background:
    radial-gradient(circle at 72% 18%, rgba(234, 182, 87, .18), transparent 26%),
    repeating-linear-gradient(135deg, rgba(234, 182, 87, .1) 0 12px, transparent 12px 24px),
    #07261a;
  display: flex;
  align-items: flex-end;
  min-height: 160px;
  padding: 14px;
}

.mockup-card-large {
  grid-row: span 2;
  min-height: 360px;
}

.mockup-logo {
  position: absolute;
  width: clamp(76px, 35%, 130px);
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  opacity: .9;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .28));
}

.mockup-shape {
  position: absolute;
  inset: 24px;
  border-radius: 42% 42% 18px 18px;
  border: 1px solid rgba(234, 182, 87, .25);
  background: linear-gradient(145deg, rgba(244, 233, 199, .14), rgba(244, 233, 199, .03));
}

.mockup-card:not(.mockup-card-large) .mockup-shape {
  inset: 20px 28px 38px;
  border-radius: 999px 999px 18px 18px;
}

.mockup-card.has-photo {
  background: #e9e1d1;
  align-items: flex-end;
  justify-content: flex-start;
}

.mockup-card.has-photo .mockup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.mockup-card.has-photo .tile-label {
  position: relative;
  z-index: 1;
}

/* Hero product slideshow */
.hero-slider {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(234, 182, 87, .28);
  background: #e9e1d1;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .28);
}

.hero-slides {
  display: flex;
  height: 100%;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  margin: 0;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide .tile-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 19, 12, .45);
  color: #fbf7ec;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
}

.hero-slider:hover .hero-arrow,
.hero-slider:focus-within .hero-arrow {
  opacity: 1;
}

.hero-arrow:hover {
  background: rgba(0, 19, 12, .72);
}

.hero-arrow-prev {
  left: 12px;
}

.hero-arrow-next {
  right: 12px;
}

@media (hover: none) {
  .hero-arrow {
    opacity: 1;
    background: rgba(0, 19, 12, .35);
  }
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  gap: 7px;
  justify-content: center;
  z-index: 2;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 19, 12, .35);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.hero-dot.is-active {
  background: var(--gold-500);
  transform: scale(1.3);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slides {
    transition: none;
  }
}

.tile-label {
  position: relative;
  max-width: 100%;
  padding: 5px 9px;
  border: 1px dashed rgba(215, 159, 64, .45);
  border-radius: 5px;
  background: rgba(0, 19, 12, .6);
  color: var(--gold-500);
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: .1em;
  overflow-wrap: anywhere;
}

.trust-strip {
  background: #001a12;
  border-top: 1px solid rgba(215, 159, 64, .16);
  border-bottom: 1px solid rgba(215, 159, 64, .16);
  overflow: hidden;
}

.trust-title {
  text-align: center;
  padding: 26px 18px 8px;
  color: #7e9079;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}

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

.marquee-group {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: none;
  padding: 10px 36px 26px 0;
  white-space: nowrap;
}

.marquee-group span {
  color: #d8c99b;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-style: italic;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% / 3)); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    justify-content: center;
  }
}

.page-hero {
  background: radial-gradient(120% 130% at 80% 0%, #08291c, var(--green-900) 50%, var(--green-950));
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 40px);
  text-align: center;
}

.page-hero-split {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.auto-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream-100);
  box-shadow: 0 1px 2px rgba(0, 29, 20, .04);
  overflow: hidden;
}

.card-body {
  padding: 22px;
}

.card h3,
.card h4 {
  margin: 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.18;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.service-visual,
.gallery-visual {
  position: relative;
  min-height: 160px;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 70% 20%, rgba(51, 102, 54, .12), transparent 25%),
    repeating-linear-gradient(135deg, rgba(51, 102, 54, .1) 0 11px, transparent 11px 22px),
    var(--cream-400);
  border-bottom: 1px solid rgba(51, 102, 54, .1);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.service-visual img,
.gallery-visual img {
  position: absolute;
  width: 86px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  opacity: .82;
}

.service-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.catalog-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.catalog-visual {
  aspect-ratio: 1 / 1;
  background: #ece2cd;
}

.catalog-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  opacity: 1;
}

.catalog-visual .tile-label {
  z-index: 1;
}

.catalog-note {
  margin: 0 auto 30px;
  max-width: 720px;
  border: 1px dashed rgba(215, 159, 64, .45);
  border-radius: 10px;
  background: #fbf3de;
  color: #5b674f;
  padding: 16px 18px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.catalog-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catalog-card p,
.catalog-card .btn {
  margin: 0;
}

.product-price {
  display: block;
  color: var(--green-900);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1;
}

.product-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 86px;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: #c08f30;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease, letter-spacing .2s ease;
}

.text-link:hover {
  color: var(--green-700);
  transform: translateX(3px);
  letter-spacing: .06em;
}

@media (prefers-reduced-motion: reduce) {
  .text-link {
    transition: color .2s ease;
  }
  .text-link:hover {
    transform: none;
    letter-spacing: .04em;
  }
}

.dark-band {
  background: linear-gradient(135deg, var(--green-900), var(--green-950));
  color: #f4e9c7;
}

.dark-band .section-head h2,
.dark-band h2,
.dark-band h3 {
  color: #f4e9c7;
}

.dark-band p {
  color: #c2ccbc;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 58px);
  align-items: center;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 28px 0 32px;
  max-width: 520px;
}

.industry-list span,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.industry-list span::before,
.check-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--gold-400);
  flex: none;
}

.feature-panel {
  min-height: 360px;
  border-radius: 16px;
  border: 1px solid rgba(234, 182, 87, .25);
  background:
    radial-gradient(circle at 70% 18%, rgba(234, 182, 87, .16), transparent 28%),
    repeating-linear-gradient(135deg, rgba(234, 182, 87, .09) 0 13px, transparent 13px 26px),
    var(--green-850);
  display: grid;
  place-items: center;
  padding: 26px;
}

.feature-panel img {
  width: min(280px, 70%);
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, .28));
}

.step-card {
  padding: 26px 22px;
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px dashed rgba(215, 159, 64, .55);
  display: grid;
  place-items: center;
  background: #fbf3de;
  color: #c08f30;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-tile {
  position: relative;
  min-height: 240px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(234, 182, 87, .22);
  background:
    radial-gradient(circle at 70% 18%, rgba(234, 182, 87, .14), transparent 28%),
    repeating-linear-gradient(135deg, rgba(234, 182, 87, .09) 0 12px, transparent 12px 24px),
    var(--green-850);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.gallery-tile img {
  position: absolute;
  width: min(112px, 34%);
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  opacity: .9;
}

.gallery-tile strong {
  position: relative;
  color: #f0e0ba;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.2;
}

.gallery-tile.has-photo {
  background: #ece2cd;
}

.gallery-tile.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: none;
}

.gallery-tile.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 18, 11, .82) 0%, rgba(0, 18, 11, .3) 38%, transparent 62%);
}

.gallery-tile.has-photo .tile-label,
.gallery-tile.has-photo strong {
  position: relative;
  z-index: 1;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--green-900);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  flex: none;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 26px;
}

.testimonial-card .testimonial-stars {
  color: var(--gold-400);
  letter-spacing: 2px;
  font-size: 16px;
}

.testimonial-card .testimonial-quote {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  line-height: 1.5;
  margin: 0;
  color: var(--text);
}

.testimonial-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  flex: none;
}

.testimonial-author strong {
  display: block;
  line-height: 1.2;
}

.testimonial-author span {
  font-size: 14px;
  opacity: .7;
}

.catalog-visual img {
  cursor: zoom-in;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 18, 11, .82);
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #fbf7ec;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
}

.lightbox-content img {
  display: block;
  width: 100%;
  height: auto;
  background: #f4ecd7;
}

.lightbox-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lightbox-body h3 {
  margin: 0;
}

.lightbox-price {
  margin: 0;
  font-weight: 700;
  color: var(--green-900);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 18, 11, .55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 20% 0%, #0a2d1f, var(--green-900) 55%, #00120b);
  color: #f4e9c7;
  text-align: center;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.14;
}

.cta-band p {
  max-width: 580px;
  margin: 22px auto 0;
  color: #c2ccbc;
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid rgba(51, 102, 54, .2);
}

.faq-toggle {
  width: 100%;
  padding: 22px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.faq-question {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.faq-sign {
  color: #c08f30;
  font-size: 24px;
  line-height: 1;
  flex: none;
}

.faq-answer {
  display: none;
  max-width: 680px;
  margin: 0;
  padding: 0 4px 24px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.logo-card {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(215, 159, 64, .3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  background: var(--green-900);
}

.value-card {
  padding: 26px;
}

.value-dot {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px dashed rgba(215, 159, 64, .55);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.value-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold-500);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.quote-card {
  padding: clamp(24px, 4vw, 40px);
}

.quote-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.quote-success.is-visible {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-size: 30px;
}

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

.form-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field span {
  color: #3a4a3f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(0, 29, 20, .16);
  border-radius: 8px;
  background: var(--cream-200);
  color: var(--text);
  padding: 13px 14px;
  font-size: 14.5px;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(215, 159, 64, .15);
}

.file-box {
  border: 1.5px dashed rgba(215, 159, 64, .55);
  border-radius: 10px;
  background: #fbf3de;
  padding: 22px;
  text-align: center;
}

.file-note,
.form-note {
  margin: 10px 0 0;
  color: #7d8a78;
  font-size: 12px;
}

.form-note {
  text-align: center;
}

.form-note[data-quote-status]:empty {
  display: none;
}

.form-note.is-error {
  color: #b3261e;
  font-weight: 600;
}

.sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-panel-dark {
  background: var(--green-900);
  color: #f4e9c7;
  padding: 28px;
}

.sidebar-panel-dark p {
  color: #c2ccbc;
}

.next-list {
  display: grid;
  gap: 14px;
}

.next-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.next-item strong {
  color: #c08f30;
  font-family: "Playfair Display", serif;
  font-size: 16px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background: rgba(0, 19, 12, .6);
  backdrop-filter: blur(4px);
}

.cart-overlay.is-open {
  display: block;
}

.cart-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: min(430px, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .25s ease;
  background: var(--cream-100);
  border-left: 1px solid rgba(0, 29, 20, .14);
  box-shadow: -24px 0 60px rgba(0, 19, 12, .22);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 24px 20px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head h2 {
  margin: 0;
  color: var(--text);
  font-size: 32px;
}

.cart-kicker {
  margin: 0 0 5px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cart-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 29, 20, .14);
  border-radius: 8px;
  background: var(--cream-200);
  color: var(--green-900);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item strong {
  display: block;
  color: var(--text);
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.cart-item span,
.cart-item em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.cart-item [data-cart-remove] {
  display: inline-flex;
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: #b36f24;
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.cart-item-controls {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid rgba(0, 29, 20, .14);
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream-200);
}

.cart-item-controls button {
  width: 34px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--green-900);
  cursor: pointer;
}

.cart-item-controls span {
  min-width: 30px;
  text-align: center;
  color: var(--text);
  font-weight: 700;
}

.cart-empty {
  padding: 28px 24px;
  color: var(--muted);
  text-align: center;
}

.cart-summary {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--cream-200);
}

.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-weight: 700;
}

.cart-summary strong {
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.cart-summary p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.cart-error {
  color: #a33c2f !important;
  font-weight: 700;
}

.cart-summary .btn {
  width: 100%;
}

.cart-summary .btn:disabled {
  cursor: not-allowed;
  filter: grayscale(.5);
  opacity: .55;
}

.checkout-result {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.site-footer {
  background: linear-gradient(180deg, #001a12, #00120b);
  border-top: 2px dashed rgba(215, 159, 64, .3);
  color: #c2ccbc;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 36px 28px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 340px;
}

.footer-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-title {
  color: #f0e0ba;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
}

.footer-subtitle {
  margin-top: 3px;
  color: var(--gold-500);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: #c2ccbc;
  text-decoration: none;
  font-size: 14px;
  width: fit-content;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: var(--gold-400);
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .footer-links a {
    transition: color .2s ease;
  }
  .footer-links a:hover {
    transform: none;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(215, 159, 64, .16);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

.footer-bottom em {
  color: #d8c99b;
  font-family: "Playfair Display", serif;
  font-size: 15px;
}

.footer-bottom span {
  color: #6c7d68;
  font-size: 12.5px;
}

.footer-bottom a {
  color: #c2ccbc;
  font-size: 12.5px;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-bottom a:hover {
  color: var(--gold-400);
}

.legal-prose {
  max-width: 760px;
  margin: 0 auto;
}

.legal-prose h2 {
  margin: 36px 0 12px;
  font-size: 22px;
}

.legal-prose p,
.legal-prose li {
  line-height: 1.75;
  color: #2e3a30;
}

.legal-prose ul {
  margin: 0 0 8px;
  padding-left: 20px;
}

.legal-prose li {
  margin-bottom: 6px;
}

.legal-updated {
  font-size: 14px;
  opacity: .7;
}

.mobile-cta {
  display: none;
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(0, 19, 12, .92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(215, 159, 64, .25);
}

.mobile-cta .btn {
  flex: 1;
  min-height: 50px;
  padding: 12px 14px;
}

.mobile-cta .btn-whatsapp {
  flex: 0 0 auto;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-actions .lang-switch {
    display: inline-flex;
  }

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

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

@media (max-width: 980px) {
  .site-header::before {
    display: none;
  }

  .header-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-height: 68px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-logo {
    height: 44px;
  }

  .brand {
    max-width: calc(100% - 156px);
    padding-right: 148px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 20px;
  }

  .menu-button {
    flex: 0 0 44px;
  }

  .mobile-header-cart,
  .menu-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-header-cart {
    right: 94px;
  }

  .menu-button {
    right: clamp(18px, 5vw, 40px);
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-text {
    min-width: 0;
    overflow: hidden;
  }

  .mobile-header-cart {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(0, 19, 12, .55);
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .menu-button,
  .mobile-cta {
    display: flex;
  }

  .hero-grid,
  .page-hero-split,
  .split,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pad-mobile-cta {
    padding-bottom: 86px;
  }

  .page-hero-inner,
  .page-hero-split {
    padding-top: clamp(42px, 7vw, 64px);
    padding-bottom: clamp(48px, 7vw, 72px);
  }

  .mobile-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100vw;
  }

  .mobile-cta .btn-whatsapp {
    display: none;
  }

  .mobile-cta .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .hero-grid,
  .page-hero-inner,
  .page-hero-split,
  .section,
  .section-tight {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-name {
    font-size: 18px;
    white-space: nowrap;
  }

  .header-inner {
    min-height: 62px;
    gap: 10px;
  }

  .brand {
    max-width: calc(100% - 124px);
    padding-right: 112px;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-subtitle {
    display: none;
  }

  .page-hero-inner,
  .page-hero-split {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .hero-grid {
    padding-top: 42px;
    padding-bottom: 52px;
    gap: 30px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(28px, 8vw, 36px);
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-actions,
  .cta-actions,
  .quote-success .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mockup-collage {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .hero-grid > *,
  .page-hero-inner,
  .page-hero-split > * {
    min-width: 0;
    max-width: 100%;
  }

  .mockup-collage .mockup-card {
    animation: none;
    transform: none;
  }

  .mockup-card-large {
    grid-row: auto;
    min-height: 280px;
  }

  .mockup-card:not(.mockup-card-large) {
    min-height: 140px;
  }

  .auto-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .form-grid-compact,
  .product-controls,
  .industry-list,
  .sidebar,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-tile {
    width: 100%;
    min-height: clamp(250px, 72vw, 380px);
    aspect-ratio: 4 / 3;
  }

  .mobile-menu-actions .cart-button {
    width: 100%;
    min-height: 46px;
    border-radius: 8px;
  }

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

@media (max-width: 560px) {
  .page-hero h1,
  .hero h1 {
    max-width: 11ch;
    margin-left: auto;
    margin-right: auto;
  }

  .page-copy,
  .hero-copy,
  .catalog-note {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }

  .mobile-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .mobile-cta .btn {
    font-size: 13.5px;
  }

  .mobile-header-cart {
    gap: 6px;
    flex: 0 0 40px;
    min-height: 40px;
    width: 40px;
    padding: 8px 10px;
    right: 68px;
  }

  .mobile-header-cart .cart-label {
    display: none;
  }
}

@media (max-width: 430px) {
  .brand-subtitle {
    display: none;
  }

  .mockup-collage {
    grid-template-columns: 1fr;
  }

  .mockup-card-large {
    grid-row: auto;
    min-height: 210px;
  }

  .mockup-card:not(.mockup-card-large) {
    min-height: 160px;
  }

  .mobile-cta {
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .mobile-cta .btn {
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13.5px;
  }

  .mobile-cta .btn-whatsapp {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* ---------------------------------------------------------------------------
   Account / auth page
--------------------------------------------------------------------------- */
.auth-wrap {
  max-width: 460px;
  margin: 0 auto;
}

.auth-card {
  padding: clamp(22px, 4vw, 34px);
}

.auth-loading {
  text-align: center;
  color: var(--muted);
  margin: 0;
}

.auth-tabs {
  display: flex;
  gap: 6px;
  padding: 4px;
  background: var(--cream-300);
  border-radius: 10px;
  margin-bottom: 20px;
}

.auth-tab {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.auth-tab.is-active {
  background: #fff;
  color: var(--green-900);
  box-shadow: 0 2px 8px rgba(0, 29, 20, .08);
}

.auth-google {
  width: 100%;
  background: #fff;
  color: var(--green-900);
  border: 1.5px solid var(--line);
}

.auth-google:hover {
  border-color: rgba(215, 159, 64, .55);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-900);
}

.auth-form input {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--gold-500);
}

.auth-form input:disabled {
  background: var(--cream-300);
  color: var(--muted);
}

.auth-form .btn {
  margin-top: 4px;
}

.auth-error {
  color: #b3261e;
  font-size: 13px;
  margin: 0;
  min-height: 0;
}

.auth-error:empty,
.auth-note:empty {
  display: none;
}

.auth-note {
  color: var(--green-700);
  font-size: 13px;
  margin: 0;
}

.auth-link {
  display: inline-block;
  margin-top: 14px;
  border: 0;
  background: none;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.auth-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.auth-head h1 {
  margin: 0;
  font-size: 24px;
}

.auth-coming {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.auth-coming h2 {
  font-size: 17px;
  margin: 0 0 6px;
}

.auth-coming p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
