:root {
  --ink: #15140f;
  --ink-soft: #2a2820;
  --ink-2: #1f1d18;
  --bg: #ffffff;
  --bg-soft: #f6f6f4;
  --bg-3: #ebebe8;
  --warm: #4a4a47;
  --warm-dim: #8a8a86;
  --rule: #e0e0dc;
  --rule-soft: #ededea;
  --yellow: #f5b915;
  --yellow-2: #ffd34d;
  --yellow-soft: #fff4c2;
  --rust: #c4541b;
  --white: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
html, body { overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--yellow); color: var(--ink); }

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

.container-app {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 1024px) {
  .container-app { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (min-width: 1600px) {
  .container-app { max-width: 1520px; }
}

.section { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) {
  .section { padding-top: 6rem; padding-bottom: 6rem; }
}

.about-section { background: var(--bg-soft); }
.services-section { background: var(--bg); }
.more-section { background: var(--bg-soft); }
.gallery-section { background: var(--bg); }

.section-header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 3rem;
}
.section-h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 1rem;
}
@media (min-width: 1024px) {
  .section-h2 { font-size: 3rem; }
}
.section-lead {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--warm);
  margin-top: 1rem;
}
@media (min-width: 1024px) { .section-lead { font-size: 1rem; } }

.section-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  max-width: 60ch;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--warm);
}
@media (min-width: 1024px) { .section-body { font-size: 1rem; } }

.text-xxs { font-size: 0.6875rem; }

#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--yellow);
  z-index: 60;
  transition: width 0.1s linear;
  pointer-events: none;
}

#topbar {
  transition: transform 0.4s var(--ease);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#topbar.topbar-hidden { transform: translateY(-100%); }
.topbar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  gap: 1rem;
}
.topbar-brand {
  display: none;
  color: rgba(255, 255, 255, 0.7);
}
.topbar-area {
  display: none;
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
}
.topbar-info {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.25s;
}
.topbar-link:hover { color: var(--yellow); }
.topbar-sep {
  color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  .topbar-grid { justify-content: space-between; }
  .topbar-brand { display: inline; }
  .topbar-info { margin-left: auto; margin-right: auto; }
  .topbar-area { display: inline; }
}
@media (max-width: 420px) {
  .topbar-info { gap: 0.6rem; font-size: 0.625rem; }
  .topbar-sep { display: none; }
  .topbar-link svg { display: none; }
}

#navbar { top: 0; transition: top 0.5s var(--ease); }
#navbar.has-topbar { top: 2.25rem; }
#navbar.scrolled.has-topbar { top: 2.25rem; }
#navbar.scrolled.no-topbar { top: 0; }

.nav-h { height: 4rem; }

.navbar-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border-bottom: 1px solid var(--rule);
  pointer-events: none;
  z-index: 0;
  transition: box-shadow 0.4s var(--ease);
}
#navbar.scrolled .navbar-bg {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(21, 20, 15, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(21, 20, 15, 0.12);
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-logo { transform: rotate(-6deg) scale(1.04); }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.2rem;
}
.brand-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.brand-name-ab {
  font-weight: 700;
  font-size: 0.85em;
  color: var(--warm-dim);
  margin-left: 0.05em;
}
.brand-meta {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: var(--warm-dim);
  text-transform: uppercase;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}
.footer-logo-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease);
}
.footer-logo-link:hover .footer-logo-img {
  transform: rotate(-6deg) scale(1.04);
}
@media (min-width: 1024px) {
  .footer-logo-img { width: 112px; height: 112px; }
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.85rem;
  color: var(--warm);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.25s;
}
.nav-link:hover { color: var(--ink); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.35rem;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-toggle .menu-bar {
  width: 1.5rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.menu-open .menu-toggle .menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle .menu-bar:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.menu-open .menu-toggle .menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  background: var(--ink);
  z-index: 60;
  transition: opacity 0.4s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-inner {
  padding: 5rem 1.5rem 3rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.mobile-menu-close {
  position: fixed;
  top: 0.85rem;
  right: 1rem;
  z-index: 65;
  width: 2.75rem;
  height: 2.75rem;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--ink);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
#mobile-menu.active ~ .mobile-menu-close,
#mobile-menu.active .mobile-menu-close { display: inline-flex; }
.mobile-menu-close:hover { background: var(--yellow-2); transform: rotate(90deg); }
.mobile-menu-close svg { width: 1.4rem; height: 1.4rem; }
.mobile-info-row {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
a.mobile-info-row:hover { color: var(--yellow); }
#mobile-menu.active { opacity: 1; pointer-events: auto; }
#mobile-menu .mobile-link {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  text-decoration: none;
  padding: 0.45rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.2s;
}
#mobile-menu .mobile-link:hover { color: var(--yellow); }
#mobile-menu .mobile-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.95rem 1.4rem;
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 3px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.mobile-info {
  margin-top: auto;
  padding-top: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
#mobile-menu.active .mobile-link,
#mobile-menu.active .mobile-cta { opacity: 1; transform: translateY(0); }
#mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.06s; }
#mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.10s; }
#mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.14s; }
#mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.18s; }
#mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.22s; }
#mobile-menu.active .mobile-cta { transition-delay: 0.26s; }

.section-tag {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.tag-yellow-text { color: var(--yellow); }

.tag {
  display: inline-block;
  padding: 0.35rem 0.7rem 0.4rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  line-height: 1;
}
.tag-yellow { background: var(--yellow); color: var(--ink); }
.tag-dark { background: var(--ink); color: var(--yellow); }

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-yellow:hover {
  background: var(--yellow-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 185, 21, 0.28);
}
.btn-yellow.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.4rem;
  background: transparent;
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 3px;
  transition: all 0.25s var(--ease);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  transition: all 0.25s var(--ease);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn-submit-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--ink);
  color: var(--yellow);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-submit-dark:hover { background: #1f1d18; transform: translateY(-2px); }

.hero { background: var(--ink); }
.hero-h {
  height: 92vh;
  min-height: 560px;
}
@supports (height: 100svh) {
  .hero-h { height: 92svh; }
}
.hero-pad {
  padding-top: 9rem;
  padding-bottom: 3.5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-pad { padding-bottom: 5rem; }
}
.hero-text { max-width: 820px; }
.hero-bg img { filter: saturate(0.95) contrast(1.05); }
.hero-gradient {
  background:
    linear-gradient(180deg, rgba(21,20,15,0.40) 0%, rgba(21,20,15,0.30) 22%, rgba(21,20,15,0.55) 65%, rgba(21,20,15,0.92) 100%),
    linear-gradient(90deg, rgba(21,20,15,0.55) 0%, rgba(21,20,15,0) 60%);
}
.hero-h1 {
  font-weight: 900;
  font-size: clamp(2.1rem, 5.4vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-top: 1.25rem;
}
.hero-sub {
  font-family: 'Manrope', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 54ch;
  margin-top: 1.25rem;
  line-height: 1.65;
}
@media (min-width: 1024px) { .hero-sub { font-size: 1.0625rem; } }
.hero-ctas {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-yellow-band {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: var(--yellow);
  z-index: 5;
}

.marquee-band {
  background: var(--yellow);
  color: var(--ink);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 3rem;
  padding-right: 3rem;
  white-space: nowrap;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.marquee-content > span {
  flex-shrink: 0;
}
.marquee-bullet {
  font-size: 0.55em;
  color: var(--ink);
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-3);
  border-radius: 6px;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.about-photo:hover img { transform: scale(1.04); }
.about-photo-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 0.4rem 0.75rem;
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--yellow);
  border-radius: 4px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-left-color 0.25s var(--ease);
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(21, 20, 15, 0.06);
  border-left-color: var(--yellow-2);
}
.stat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.stat-num .stat-unit {
  font-size: 0.55em;
  color: var(--warm-dim);
  margin-left: 0.05em;
  font-weight: 700;
}
.stat-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-dim);
}
@media (max-width: 480px) { .stat-row { grid-template-columns: 1fr; } }

.svc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--rule-soft);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 16px 36px rgba(21, 20, 15, 0.08);
}
.svc-card-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-3);
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.card-body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--warm);
  margin-top: 0.5rem;
}
.svc-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 0.85rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rust);
  transition: color 0.25s;
}
.svc-card:hover .svc-card-link { color: var(--ink); }
.svc-arrow { transition: transform 0.3s var(--ease); }
.svc-card:hover .svc-arrow { transform: translateX(4px); }

.mini-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--rule-soft);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.mini-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
  box-shadow: 0 12px 28px rgba(21, 20, 15, 0.08);
}
.mini-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
}
.mini-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.mini-card:hover .mini-card-img img { transform: scale(1.06); }
.mini-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
}
.mini-card-body h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.mini-card-body p {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--warm);
  margin-bottom: 0.7rem;
}
.mini-card-link {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rust);
  transition: color 0.2s, letter-spacing 0.25s var(--ease);
}
.mini-card:hover .mini-card-link {
  color: var(--ink);
  letter-spacing: 0.06em;
}

.reasons-section {
  position: relative;
  background: var(--ink);
  color: #ffffff;
  overflow: hidden;
}
.reasons-section .section-tag { color: var(--yellow); }
.reasons-h2 {
  color: #ffffff;
  font-size: 1.875rem;
  margin-top: 1rem;
}
@media (min-width: 1024px) { .reasons-h2 { font-size: 2.75rem; } }
.reasons-lead {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  max-width: 42ch;
  margin-top: 1.25rem;
  line-height: 1.65;
}
@media (min-width: 1024px) { .reasons-lead { font-size: 1rem; } }
.reasons-ctas {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.reasons-list {
  list-style: none;
  border-top: 1px solid var(--ink-soft);
}
.reason-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--ink-soft);
  transition: padding-left 0.3s var(--ease);
}
.reason-row:hover { padding-left: 0.75rem; }

.reason-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.reason-mark svg { width: 22px; height: 22px; }
.reason-row:hover .reason-mark {
  background: var(--yellow-2);
  transform: scale(1.06) rotate(-4deg);
}

.reason-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 0.3rem;
  line-height: 1.15;
}
.reason-desc {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 50ch;
}
@media (max-width: 640px) {
  .reason-row {
    grid-template-columns: 40px 1fr;
    gap: 0.85rem;
    padding: 1.25rem 0;
  }
  .reason-mark { width: 36px; height: 36px; }
  .reason-mark svg { width: 18px; height: 18px; }
  .reason-title { font-size: 1.15rem; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border-radius: 6px;
  text-decoration: none;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.04);
}
.gallery-band {
  position: absolute;
  left: 0;
  bottom: 16px;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.45rem 0.85rem 0.5rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
  border-radius: 0 3px 3px 0;
}
.gallery-item:hover .gallery-band { transform: translateX(0); }

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.cta-yellow {
  background: var(--yellow);
  color: var(--ink);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.cta-pad {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .cta-pad { padding-top: 6rem; padding-bottom: 6rem; }
}
.cta-h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 1rem;
}
@media (min-width: 1024px) { .cta-h2 { font-size: 2.5rem; } }
.cta-lead {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(21, 20, 15, 0.85);
  margin-top: 1rem;
  max-width: 44ch;
}
@media (min-width: 1024px) { .cta-lead { font-size: 1rem; } }

.cta-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.cta-info-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
a.cta-info-row:hover { color: rgba(21, 20, 15, 0.7); }
.cta-info-row strong { font-weight: 700; }

.cta-form {
  background: var(--bg);
  padding: 1.65rem;
  border-radius: 6px;
  border: 1.5px solid var(--ink);
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) { .cta-form { padding: 2rem; } }

.cta-form-note {
  color: rgba(21, 20, 15, 0.55);
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

.form-label {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-label span { color: var(--rust); margin-left: 0.1em; }
.form-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--warm-dim); }
.form-input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(21, 20, 15, 0.08);
}

.footer-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-top: 4px solid var(--ink);
}
.footer-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.footer-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21,20,15,0.92) 0%, rgba(21,20,15,0.55) 100%),
    linear-gradient(180deg, rgba(21,20,15,0.4) 0%, rgba(21,20,15,0.6) 100%);
}
.footer-cta-pad {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 1024px) {
  .footer-cta-pad { padding-top: 5rem; padding-bottom: 5rem; }
}
.footer-cta-h {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #ffffff;
}
@media (min-width: 1024px) { .footer-cta-h { font-size: 2.25rem; } }
.footer-cta-p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 52ch;
}
@media (min-width: 1024px) { .footer-cta-p { font-size: 1rem; } }

.footer { background: var(--ink-2); }
.footer-pad {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .footer-pad { padding-top: 5rem; padding-bottom: 5rem; }
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.55;
  margin-top: 1.25rem;
  max-width: 40ch;
}

.footer-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer-heading-spaced { margin-top: 2rem; }

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.25s var(--ease);
  display: inline-block;
}
.footer-link:hover {
  color: var(--yellow);
  padding-left: 4px;
}
.footer-link-strong {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
}
.footer-link-strong:hover { color: var(--yellow); }
.footer-emphasis { color: var(--yellow); font-weight: 600; }

.footer-legal {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .footer-legal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.social-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--yellow);
  border-radius: 4px;
  transition: all 0.25s var(--ease);
}
.social-square:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }

.img-lazy { opacity: 0; transition: opacity 0.5s ease; }
.img-lazy.loaded { opacity: 1; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 3px;
}
.cta-yellow a:focus-visible,
.cta-yellow button:focus-visible,
.cta-yellow input:focus-visible,
.cta-yellow textarea:focus-visible,
.cta-yellow select:focus-visible {
  outline-color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
  .marquee-track { animation: none; }
  .reveal-up { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  .marquee-content { font-size: 1.1rem; gap: 2rem; padding-right: 2rem; }
}
@media (max-width: 640px) {
  .marquee-content { font-size: 1rem; gap: 1.65rem; padding-right: 1.65rem; }
}

@media (max-width: 720px) {
  .brand-meta { display: none; }
  .brand-name { font-size: 1rem; }
  .brand-logo { width: 38px; height: 38px; }
  .brand { gap: 0.55rem; }
}

@media (max-width: 640px) {
  section, section > div, section > div > div, section > div > div > div {
    max-width: 100%;
    box-sizing: border-box;
  }
  .grid > div {
    min-width: 0;
    max-width: 100%;
  }
  .marquee-band { padding: 0.7rem 0; }
  .cta-form { padding: 1.35rem; }
}

#contact-form {
  max-width: 100%;
  overflow: hidden;
}
#contact-form .g-recaptcha {
  transform-origin: left center;
  max-width: 100%;
}
@media (max-width: 400px) {
  #contact-form .g-recaptcha { transform: scale(0.85); }
}
@media (max-width: 340px) {
  #contact-form .g-recaptcha { transform: scale(0.75); }
}
