:root {
  --bg: #f5efe5;
  --paper: #fffaf2;
  --paper-strong: #fffdf8;
  --card: rgba(255, 250, 242, 0.92);
  --card-dark: #191714;
  --text: #17130f;
  --muted: #6f6559;
  --line: rgba(23, 19, 15, 0.1);
  --line-strong: rgba(23, 19, 15, 0.18);
  --brand: #d58c2c;
  --brand-deep: #a76310;
  --brand-soft: #f1c98d;
  --brand-cream: #fff0d6;
  --ink-inverse: #fffaf3;
  --accent: #2f5d63;
  --accent-soft: rgba(47, 93, 99, 0.12);
  --shadow: 0 24px 64px rgba(28, 22, 16, 0.12);
  --shadow-soft: 0 14px 36px rgba(28, 22, 16, 0.08);
  --wrap: min(1200px, calc(100% - 32px));
  --radius: 28px;
  --radius-sm: 18px;
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(213, 140, 44, 0.16), transparent 34%),
    linear-gradient(180deg, #f7f0e7 0%, #f5efe5 35%, #f1eadf 100%);
  color: var(--text);
  font: 400 16px/1.7 "Roboto", "Segoe UI", sans-serif;
}

body.has-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.shell-wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.shell-page {
  position: relative;
  isolation: isolate;
}

.shell-page::before,
.shell-page::after {
  content: "";
  position: fixed;
  inset: auto auto 8% -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(47, 93, 99, 0.08);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

.shell-page::after {
  inset: 16% -80px auto auto;
  width: 220px;
  height: 220px;
  background: rgba(213, 140, 44, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 240, 214, 0.72);
  border: 1px solid rgba(213, 140, 44, 0.18);
  color: var(--brand-deep);
  font: 700 0.82rem/1 "Roboto", "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(213, 140, 44, 0.12);
}

.section-shell {
  padding: 72px 0;
}

.section-shell.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12));
}

.section-shell.section-tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font: 800 clamp(2rem, 4vw, 3.4rem)/1.08 "Roboto Slab", Georgia, serif;
  letter-spacing: -0.03em;
}

.section-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), #ebb66b);
  color: #24170a;
  box-shadow: 0 18px 42px rgba(213, 140, 44, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(23, 19, 15, 0.12);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.button-dark {
  background: var(--card-dark);
  color: var(--ink-inverse);
  box-shadow: 0 16px 34px rgba(25, 23, 20, 0.18);
}

.button-light {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--card-dark);
}

.chip-list,
.bullet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chip-list li,
.bullet-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(23, 19, 15, 0.08);
  color: var(--text);
  font-weight: 600;
}

.chip-list li::before,
.bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 93, 99, 0.12);
  flex: 0 0 auto;
}

.shell-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 0 0;
}

.shell-topbar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: var(--header-height);
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background: rgba(19, 16, 12, 0.66);
  box-shadow: 0 22px 54px rgba(12, 10, 8, 0.2);
  backdrop-filter: blur(20px);
}

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

.shell-brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px;
  object-fit: contain;
}

.shell-brand-copy {
  display: grid;
  gap: 2px;
}

.shell-brand-copy strong {
  color: #fff7eb;
  font: 800 1rem/1 "Roboto Slab", Georgia, serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shell-brand-copy span {
  color: rgba(255, 247, 235, 0.74);
  font: 600 0.68rem/1.1 "Roboto", "Segoe UI", sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.shell-nav {
  display: flex;
  justify-content: center;
}

.shell-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  color: rgba(255, 247, 235, 0.78);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.shell-nav-link::after {
  content: "";
  position: absolute;
  inset: auto 15px 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-soft);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.shell-nav-link:hover,
.shell-nav-link.is-active {
  color: #fffdf7;
  background: rgba(255, 255, 255, 0.08);
}

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

.shell-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.language-switcher a,
.language-switcher span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 247, 235, 0.7);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher .is-current {
  background: #fff7eb;
  color: #2a1d12;
}

.language-switcher a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf7;
}

.shell-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow:
    0 18px 34px rgba(9, 7, 5, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease;
}

.shell-menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow:
    0 22px 38px rgba(9, 7, 5, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.shell-menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fffaf3;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    width 0.28s ease,
    background 0.24s ease;
  transform-origin: center;
}

.shell-menu-toggle span:nth-child(1) {
  transform: translate(-50%, -8px);
}

.shell-menu-toggle span:nth-child(2) {
  width: 16px;
  transform: translate(-50%, 0);
}

.shell-menu-toggle span:nth-child(3) {
  transform: translate(-50%, 8px);
}

.shell-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 10, 7, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 35;
}

body.has-menu-open .shell-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.has-menu-open .shell-menu-toggle span:nth-child(1) {
  width: 22px;
  transform: translate(-50%, 0) rotate(45deg);
}

body.has-menu-open .shell-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, 0) scaleX(0.4);
}

body.has-menu-open .shell-menu-toggle span:nth-child(3) {
  width: 22px;
  transform: translate(-50%, 0) rotate(-45deg);
}

body.has-menu-open .shell-menu-toggle {
  border-color: rgba(255, 235, 204, 0.78);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4), transparent 52%),
    linear-gradient(135deg, rgba(235, 182, 107, 0.96), rgba(213, 140, 44, 0.92));
  box-shadow:
    0 22px 40px rgba(122, 71, 9, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

body.has-menu-open .shell-menu-toggle span {
  background: #2c1b0d;
}

.page-main {
  padding-bottom: 48px;
}

.home-hero {
  padding: 48px 0 34px;
}

.home-hero-grid,
.page-hero-grid,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 20px;
}

.hero-copy h1,
.page-hero-copy h1 {
  margin: 0;
  font: 800 clamp(2.8rem, 7vw, 5.7rem)/0.95 "Roboto Slab", Georgia, serif;
  letter-spacing: -0.05em;
  color: var(--text);
}

.hero-copy p,
.page-hero-copy p,
.split-copy p,
.footer-copy,
.card-copy,
.timeline-copy,
.contact-detail p,
.cta-band p {
  margin: 0;
  color: var(--muted);
}

.hero-highlight {
  color: var(--brand-deep);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.page-home .home-hero-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .home-hero {
  padding-top: 28px;
  padding-bottom: 28px;
}

.page-home .hero-visual {
  order: -1;
  margin-inline: -10px;
}

.page-home .hero-copy {
  max-width: 860px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.page-home .hero-copy p {
  max-width: 760px;
}

.page-home .hero-actions,
.page-home .bullet-list {
  justify-content: center;
}

.page-home .hero-slider {
  border-radius: 32px;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 46px rgba(22, 16, 11, 0.18);
}

.page-home .hero-slider::before {
  background:
    linear-gradient(180deg, rgba(18, 14, 10, 0.04), rgba(18, 14, 10, 0.2)),
    radial-gradient(circle at center, transparent 20%, rgba(18, 14, 10, 0.28) 100%);
}

.hero-slider {
  position: relative;
  min-height: 560px;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: #18130f;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-slider-link {
  display: block;
  text-decoration: none;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 14, 10, 0.08), rgba(18, 14, 10, 0.26)),
    radial-gradient(circle at center, transparent 18%, rgba(18, 14, 10, 0.38) 100%);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.75s ease, transform 5.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 0;
}

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

.hero-slider-contact {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(18, 14, 10, 0.72), rgba(35, 26, 18, 0.64)),
    linear-gradient(135deg, rgba(213, 140, 44, 0.18), rgba(47, 93, 99, 0.16));
  color: #fffaf3;
  text-decoration: none;
  font: 800 1rem/1 "Roboto", "Segoe UI", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 54px rgba(10, 8, 6, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hero-slider-contact:hover {
  transform: translate(-50%, calc(-50% - 2px));
  box-shadow:
    0 28px 60px rgba(10, 8, 6, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 14, 10, 0.46);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.hero-slider-dots > * {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.44);
  transition: width 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.hero-slider-dots > *.is-active {
  width: 34px;
  background: #fff8ee;
}

.fixed-contact-rail {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 46;
  display: grid;
  gap: 10px;
}

.fixed-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 68px;
  height: 68px;
  min-height: 68px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fffaf3;
  text-decoration: none;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px rgba(11, 8, 6, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.fixed-contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(11, 8, 6, 0.28);
}

.fixed-contact-button.is-phone {
  background: linear-gradient(135deg, rgba(29, 33, 39, 0.94), rgba(44, 52, 60, 0.92));
}

.fixed-contact-button.is-whatsapp {
  background: linear-gradient(135deg, rgba(15, 121, 75, 0.96), rgba(35, 167, 102, 0.92));
}

.fixed-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 999px;
}

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

.fixed-contact-text {
  display: none;
}

.hero-note strong,
.stat-card strong,
.mini-card strong,
.info-card strong,
.model-card strong,
.contact-detail strong,
.footer-column strong {
  display: block;
  margin-bottom: 6px;
  color: inherit;
  font: 800 1.02rem/1.2 "Roboto Slab", Georgia, serif;
}

.hero-note span,
.mini-card span,
.info-card span,
.model-card span,
.contact-detail span,
.footer-column span {
  color: inherit;
  opacity: 0.84;
}

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

.stat-card,
.mini-card,
.info-card,
.model-card,
.feature-card,
.timeline-step,
.contact-detail,
.gallery-tile,
.footer-shell {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.stat-card {
  padding: 24px;
}

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

.info-grid,
.model-grid,
.feature-grid,
.timeline-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.info-card,
.model-card,
.feature-card,
.timeline-step,
.contact-detail {
  overflow: hidden;
}

.info-card-media,
.model-card-media,
.page-hero-media,
.split-media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
  background: #ddd1c1;
}

.info-card-media img,
.model-card-media img,
.page-hero-media img,
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-only-card .model-card-media {
  min-height: 320px;
  border-radius: inherit;
  background: transparent;
}

.image-only-card .info-card-media {
  min-height: 320px;
  border-radius: inherit;
  background: transparent;
}

.info-card-body,
.model-card-body,
.feature-card,
.timeline-step,
.contact-detail {
  padding: 24px;
}

.info-card-body p,
.model-card-body p,
.feature-card p,
.timeline-step p,
.contact-detail p,
.split-copy p {
  margin: 0;
  color: var(--muted);
}

.card-subtitle,
.small-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(213, 140, 44, 0.12);
  color: var(--brand-deep);
  font: 700 0.78rem/1 "Roboto", "Segoe UI", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-card-body .card-subtitle,
.model-card-body .card-subtitle {
  margin-bottom: 14px;
}

.model-card-body ul,
.contact-list,
.footer-links {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.model-card-body li,
.contact-list li,
.footer-links li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.model-card-body li + li,
.contact-list li + li,
.footer-links li + li {
  margin-top: 10px;
}

.model-card-body li::before,
.contact-list li::before,
.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}

.split-copy {
  display: grid;
  gap: 18px;
}

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

.mini-card {
  padding: 22px 24px;
}

.mini-card strong {
  font-size: 1.8rem;
}

.timeline-step {
  position: relative;
  padding: 26px 24px 24px;
}

.timeline-step::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #ecbb74);
  color: #25170b;
  font-weight: 800;
}

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

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(17, 13, 10, 0.78);
  color: #fff7eb;
  backdrop-filter: blur(8px);
}

.gallery-tile figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.span-7 {
  grid-column: span 7;
}

.span-5 {
  grid-column: span 5;
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

.tile-tall {
  min-height: 340px;
}

.tile-large {
  min-height: 420px;
}

.contact-stack,
.support-stack,
.footer-columns {
  display: grid;
  gap: 18px;
}

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

.cta-band {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(20, 16, 13, 0.92), rgba(51, 38, 26, 0.88)),
    linear-gradient(135deg, rgba(213, 140, 44, 0.16), rgba(47, 93, 99, 0.16));
  color: var(--ink-inverse);
  box-shadow: var(--shadow);
}

.cta-band h3,
.footer-brand h3 {
  margin: 0;
  font: 800 clamp(1.8rem, 3vw, 2.8rem)/1.05 "Roboto Slab", Georgia, serif;
  letter-spacing: -0.03em;
}

.cta-band p {
  color: rgba(255, 247, 235, 0.76);
}

.footer-shell {
  position: relative;
  overflow: hidden;
  margin: 56px auto 24px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(213, 140, 44, 0.18), transparent 36%),
    radial-gradient(circle at bottom left, rgba(47, 93, 99, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(23, 18, 14, 0.98), rgba(36, 27, 20, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(12, 9, 6, 0.24);
}

.footer-shell::before,
.footer-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.footer-shell::before {
  inset: -70px auto auto -90px;
  width: 230px;
  height: 230px;
  background: rgba(255, 255, 255, 0.04);
  filter: blur(6px);
}

.footer-shell::after {
  inset: auto -40px -90px auto;
  width: 220px;
  height: 220px;
  background: rgba(213, 140, 44, 0.08);
  filter: blur(18px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  padding: 14px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
}

.footer-brand-row img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: contain;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 232, 207, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px;
  box-shadow: 0 12px 22px rgba(10, 8, 6, 0.2);
}

.footer-brand-row strong {
  display: block;
  color: #fffaf3;
  font: 800 1rem/1.1 "Roboto Slab", Georgia, serif;
  text-transform: uppercase;
}

.footer-brand-row span {
  display: block;
  color: rgba(255, 240, 220, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-copy {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 247, 235, 0.76);
  font-size: 1rem;
}

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

.footer-column {
  padding: 20px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-column h4 {
  margin: 0 0 16px;
  color: #ffe4bf;
  font: 800 0.84rem/1 "Roboto", "Segoe UI", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-column a {
  text-decoration: none;
  color: rgba(255, 249, 241, 0.9);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-column a:hover {
  color: #ffd59b;
}

.footer-shell .footer-links {
  margin-top: 0;
  display: grid;
  gap: 12px;
}

.footer-shell .footer-links li {
  padding-left: 16px;
  color: rgba(255, 247, 235, 0.68);
}

.footer-shell .footer-links li + li {
  margin-top: 0;
}

.footer-shell .footer-links li::before {
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: rgba(213, 140, 44, 0.96);
  box-shadow: 0 0 0 4px rgba(213, 140, 44, 0.12);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 247, 235, 0.56);
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 44px 0 18px;
}

.page-hero-grid {
  align-items: stretch;
}

.page-hero-copy {
  align-content: center;
}

.page-hero-media,
.split-media {
  min-height: 420px;
  box-shadow: var(--shadow);
}

.soft-panel {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(23, 19, 15, 0.08);
}

.soft-panel h3 {
  margin: 0 0 10px;
  font: 800 1.4rem/1.2 "Roboto Slab", Georgia, serif;
}

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

.contact-detail strong {
  margin-bottom: 10px;
}

.contact-detail a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.support-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 19, 15, 0.08);
}

.support-card h3 {
  margin: 0 0 10px;
  font: 800 1.14rem/1.2 "Roboto Slab", Georgia, serif;
}

.support-card p,
.support-card li {
  color: var(--muted);
}

.support-card ul {
  margin: 0;
  padding-left: 18px;
}

.support-card li + li {
  margin-top: 8px;
}

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 1120px) {
  .shell-topbar {
    grid-template-columns: auto 1fr auto;
  }

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

  .hero-visual,
  .hero-slider,
  .page-hero-media,
  .split-media {
    min-height: 460px;
  }

  .stat-grid,
  .model-grid,
  .feature-grid,
  .timeline-grid,
  .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-stack,
  .footer-columns {
    grid-template-columns: 1fr;
  }

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

  .span-7,
  .span-6,
  .span-5,
  .span-4 {
    grid-column: span 1;
  }

  .tile-large,
  .tile-tall {
    min-height: 280px;
  }
}

@media (max-width: 960px) {
  .shell-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: center;
    gap: 14px;
    overflow: hidden;
    transition: box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  }

  body.has-menu-open .shell-topbar {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 28px 64px rgba(12, 10, 8, 0.28);
  }

  .shell-brand {
    grid-area: brand;
  }

  .shell-nav {
    grid-area: nav;
    position: static;
    display: block;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 0 14px;
    overflow: hidden;
    border-radius: 26px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 240, 222, 0.96));
    border: 1px solid transparent;
    box-shadow:
      0 0 0 rgba(0, 0, 0, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(-10px);
    transform-origin: top center;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      margin-top 0.34s ease,
      padding 0.34s ease,
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.24s ease,
      border-color 0.24s ease,
      box-shadow 0.34s ease;
  }

  body.has-menu-open .shell-nav {
    max-height: 520px;
    margin-top: 4px;
    padding: 14px;
    border-color: rgba(23, 19, 15, 0.08);
    box-shadow:
      0 22px 40px rgba(17, 13, 10, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.74);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .shell-nav-list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

  .shell-nav-list > li {
    width: 100%;
    display: flex;
    opacity: 0;
    transform: translateY(-10px);
    transition: transform 0.3s ease, opacity 0.24s ease;
  }

  body.has-menu-open .shell-nav-list > li {
    opacity: 1;
    transform: translateY(0);
  }

  body.has-menu-open .shell-nav-list > li:nth-child(1) { transition-delay: 0.04s; }
  body.has-menu-open .shell-nav-list > li:nth-child(2) { transition-delay: 0.07s; }
  body.has-menu-open .shell-nav-list > li:nth-child(3) { transition-delay: 0.10s; }
  body.has-menu-open .shell-nav-list > li:nth-child(4) { transition-delay: 0.13s; }
  body.has-menu-open .shell-nav-list > li:nth-child(5) { transition-delay: 0.16s; }
  body.has-menu-open .shell-nav-list > li:nth-child(6) { transition-delay: 0.19s; }

  .shell-nav::before {
    content: none;
  }

  .shell-nav-link {
    width: 100%;
    justify-content: center;
    min-height: 58px;
    padding: 0 20px;
    border: 1px solid rgba(23, 19, 15, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.64),
      0 10px 18px rgba(20, 14, 10, 0.05);
    text-align: center;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
  }

  .shell-nav-link::after {
    display: none;
  }

  .shell-nav-link:hover {
    background: rgba(255, 255, 255, 0.98);
    color: #23160c;
  }

  .shell-nav-link.is-active {
    background: linear-gradient(135deg, rgba(213, 140, 44, 0.22), rgba(241, 201, 141, 0.46));
    border-color: rgba(213, 140, 44, 0.3);
    color: #2c1a0c;
  }

  .shell-nav-list > li > .button {
    width: 100%;
    min-height: 58px;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 14px 26px rgba(122, 71, 9, 0.18);
    font-size: 0.98rem;
  }

  .shell-nav-list > li > .button.button-dark {
    background: linear-gradient(135deg, rgba(235, 182, 107, 0.98), rgba(213, 140, 44, 0.94));
    color: #24170a;
  }

  .shell-menu-toggle {
    display: inline-flex;
  }

  .shell-actions {
    grid-area: actions;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: center;
    gap: 10px;
    justify-self: end;
  }

  .language-switcher {
    min-height: 54px;
    padding: 6px;
    border-radius: 18px;
  }

  .shell-overlay {
    background: rgba(14, 10, 7, 0.3);
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  :root {
    --wrap: min(1200px, calc(100% - 20px));
    --header-height: 70px;
    --radius: 24px;
  }

  .shell-header {
    padding-top: 10px;
  }

  .shell-topbar {
    padding: 12px 14px;
  }

  .shell-topbar {
    gap: 10px;
    border-radius: 22px;
  }

  .footer-shell {
    padding: 18px;
    margin: 42px auto 18px;
    border-radius: 30px;
  }

  .shell-brand {
    gap: 10px;
  }

  .shell-brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .shell-brand-copy strong {
    font-size: 0.82rem;
  }

  .shell-brand-copy span {
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .shell-actions {
    gap: 8px;
  }

  .image-only-card .model-card-media {
    min-height: 240px;
  }

  .image-only-card .info-card-media {
    min-height: 240px;
  }

  .shell-menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .shell-menu-toggle span {
    width: 20px;
  }

  .shell-menu-toggle span:nth-child(1) {
    transform: translate(-50%, -7px);
  }

  .shell-menu-toggle span:nth-child(2) {
    width: 14px;
  }

  .shell-menu-toggle span:nth-child(3) {
    transform: translate(-50%, 7px);
  }

  body.has-menu-open .shell-menu-toggle span:nth-child(1) {
    width: 20px;
  }

  body.has-menu-open .shell-menu-toggle span:nth-child(3) {
    width: 20px;
  }

  .language-switcher a,
  .language-switcher span {
    min-width: 38px;
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .language-switcher {
    min-height: 46px;
    gap: 4px;
    padding: 3px;
    border-radius: 16px;
  }

  .shell-nav {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.has-menu-open .shell-nav {
    padding: 12px;
  }

  .home-hero,
  .page-hero {
    padding-top: 24px;
  }

  .page-home .home-hero {
    padding-top: 18px;
  }

  .page-home .hero-visual {
    margin-inline: -4px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-slider {
    min-height: 420px;
    border-radius: 28px;
  }

  .hero-slider-contact {
    min-height: 54px;
    padding: 0 24px;
    font-size: 0.84rem;
    letter-spacing: 0.05em;
  }

  .hero-slider-dots {
    bottom: 16px;
    gap: 8px;
    padding: 8px 12px;
  }

  .hero-slider-dots > *.is-active {
    width: 28px;
  }

  .fixed-contact-rail {
    right: 12px;
    bottom: 14px;
    gap: 8px;
  }

  .fixed-contact-button {
    width: 58px;
    height: 58px;
    min-height: 58px;
  }

  .fixed-contact-icon {
    width: 100%;
    height: 100%;
  }

  .fixed-contact-icon svg {
    width: 22px;
    height: 22px;
  }

  .section-shell {
    padding: 56px 0;
  }

  .stat-grid,
  .info-grid,
  .model-grid,
  .feature-grid,
  .timeline-grid,
  .metric-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand-row,
  .footer-column {
    width: 100%;
  }
}
