:root {
  --bg: #edf0f4;
  --bg-alt: #e2e7ee;
  --bg-elevated: #f7f8fa;
  --ink: #1a2332;
  --muted: #5a6678;
  --line: #c8d0db;
  --white: #ffffff;
  --steel: #254b6e;
  --steel-deep: #1b3854;
  --steel-soft: #d9e4ef;
  --olive: #5c7a4a;
  --olive-soft: #e4ecde;
  --brass: #b08d3a;
  --navy: #152030;
  --shell: min(1120px, calc(100% - 2rem));
  --font: "Onest", "Segoe UI", sans-serif;
  --display: "Fraunces", Georgia, serif;
  --radius: 10px;
  --shadow: 0 16px 36px rgba(26, 35, 50, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(37, 75, 110, 0.1), transparent 55%),
    radial-gradient(700px 380px at 92% 4%, rgba(92, 122, 74, 0.08), transparent 50%),
    var(--bg);
  overflow-x: hidden;
  width: 100%;
}

.page-texture {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
.brand-text strong,
.hero-brand,
.footer-brand,
.footer-label,
.panel-tag {
  font-family: var(--display);
  letter-spacing: -0.01em;
  line-height: 1.12;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 0.9rem;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(237, 240, 244, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 248, 250, 0.96);
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.2rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.brand-text strong {
  font-size: 1.28rem;
  white-space: nowrap;
  color: var(--steel-deep);
}

.brand-text span {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--steel);
}

.nav-cta {
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  background: var(--steel);
  color: #fff !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--steel-deep);
}

.nav-call {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(37, 75, 110, 0.3);
  color: var(--steel-deep) !important;
  background: rgba(255, 255, 255, 0.75);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  z-index: 2;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(2.4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-2.4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(90vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-slider,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.88) contrast(1.05) brightness(0.92);
  transform: scale(1.04);
  transition: transform 7s ease;
}

.hero-slide.is-active img {
  transform: scale(1.1);
}

.hero-veil {
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(21, 32, 48, 0.35) 0%,
      rgba(21, 32, 48, 0.45) 42%,
      var(--bg) 100%
    ),
    linear-gradient(
      105deg,
      rgba(21, 32, 48, 0.82) 0%,
      rgba(26, 56, 84, 0.48) 52%,
      rgba(21, 32, 48, 0.28) 100%
    );
}

.hero-dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.hero-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #e4c76a;
  transform: scale(1.15);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 6.8rem 0 3.6rem;
  max-width: 40rem;
  animation: riseIn 0.8s ease both;
}

.hero-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c5d8c0;
}

.hero-brand {
  margin: 0 0 0.75rem;
  font-size: clamp(2.7rem, 7.5vw, 4.5rem);
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(1.15rem, 2.3vw, 1.4rem);
  font-weight: 700;
  max-width: 28ch;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
}

.lead,
.section-lead {
  color: var(--muted);
  max-width: 38rem;
}

.lead {
  margin-bottom: 1.45rem;
  color: rgba(237, 240, 244, 0.88);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.7rem 1.2rem;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--steel);
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 75, 110, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--steel-deep);
}

.btn-ghost {
  background: #ffffff;
  color: var(--steel-deep);
  border: 1px solid #ffffff;
  box-shadow: 0 10px 24px rgba(15, 28, 39, 0.16);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #f3f6f9;
}

.hero-phone,
.footer-phone {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-phone a {
  color: #e4c76a;
}

.hero-phone a:hover,
.hero-phone a:focus-visible {
  color: #f0d98a;
}

.marquee-band {
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy), #1c2d42);
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-track span {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(237, 240, 244, 0.88);
  white-space: nowrap;
}

.marquee-track span::after {
  content: "•";
  margin-left: 2rem;
  color: var(--olive);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(226, 231, 238, 0.9), rgba(226, 231, 238, 0.4));
}

.section-head,
.inquiry-head,
.faq-intro {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.label {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

.section h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 0.7rem;
  color: var(--steel-deep);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.inquiry {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.45rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.inquiry::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--steel), var(--olive));
}

.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.field-full {
  margin-top: 0.95rem;
}

.field label {
  font-size: 0.86rem;
  font-weight: 800;
}

.field label span {
  font-weight: 500;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0.82rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 4px rgba(37, 75, 110, 0.14);
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #b45309;
}

.inquiry-actions {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.55rem;
}

.inquiry-submit {
  width: 100%;
  min-height: 3.2rem;
  font-size: 1.05rem;
}

.inquiry-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--steel);
  margin-top: 0.4rem;
}

.split,
.locale-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.9rem;
  align-items: start;
}

.stock-panels {
  display: grid;
  gap: 0.8rem;
}

.stock-panels article,
.faq-item {
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  min-width: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stock-panels article:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 75, 110, 0.35);
  box-shadow: 0 14px 30px rgba(26, 35, 50, 0.08);
}

.panel-tag {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: var(--olive-soft);
  color: var(--olive);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.stock-panels h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.stock-panels p {
  color: var(--muted);
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  min-width: 0;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
  min-width: 0;
}

.faq-item {
  padding: 0 1rem;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.95rem 1.75rem 0.95rem 0;
  position: relative;
  word-break: break-word;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--steel);
  font-family: var(--font);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  color: var(--muted);
  padding: 0 0 1rem;
  word-break: break-word;
}

.faq-item a {
  color: var(--steel);
  font-weight: 700;
}

.locale-copy {
  min-width: 0;
}

.facts {
  margin: 1.25rem 0 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
}

.facts div {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.facts dt {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  word-break: break-word;
}

.facts a {
  color: var(--steel-deep);
}

.map-embed {
  min-width: 0;
  display: grid;
  gap: 0.75rem;
}

.map-embed iframe {
  width: 100%;
  min-height: 300px;
  height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

.map-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--steel);
  font-size: 0.95rem;
}

.map-open:hover,
.map-open:focus-visible {
  text-decoration: underline;
}

.legal-section .legal-block {
  max-width: 820px;
}

.legal-content {
  margin-top: 1rem;
  color: var(--muted);
}

.legal-content p {
  margin-bottom: 0.9rem;
}

.legal-content ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.legal-content li {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  word-break: break-word;
}

.legal-content strong {
  color: var(--ink);
}

.site-footer {
  padding: 2.75rem 0 1.5rem;
  background:
    radial-gradient(560px 220px at 12% 0%, rgba(92, 122, 74, 0.16), transparent 60%),
    linear-gradient(160deg, #132033, #1a2c42);
  color: rgba(237, 240, 244, 0.86);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand,
.footer-label {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-brand {
  font-size: 1.45rem;
}

.footer-phone {
  display: inline-block;
  margin-top: 0.75rem;
  color: #e4c76a;
  font-weight: 800;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.3rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--steel);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 75, 110, 0.35);
  animation: floatPulse 2.8s ease-in-out infinite;
}

.wa-float svg {
  width: 1.45rem;
  height: 1.45rem;
}

.wa-float:hover,
.wa-float:focus-visible {
  background: var(--steel-deep);
}

.mobile-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 980px) {
  .inquiry-layout,
  .inquiry-grid,
  .split,
  .locale-wrap,
  .faq-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(1120px, calc(100% - 1.2rem));
  }

  body {
    padding-bottom: 4.7rem;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(247, 248, 250, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(26, 35, 50, 0.1);
    backdrop-filter: blur(12px);
  }

  .mobile-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.9rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
  }

  .mobile-bar svg {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
  }

  .mobile-bar-call {
    background: var(--white);
    color: var(--steel-deep);
    border: 1px solid rgba(37, 75, 110, 0.28);
  }

  .mobile-bar-wa {
    background: var(--steel);
    color: #fff;
  }

  .wa-float {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    max-width: 100%;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.75rem;
    border-radius: 8px;
  }

  .nav-cta,
  .nav-call {
    text-align: center;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: calc(100% - 5.5rem);
  }

  .brand-text {
    align-items: flex-start;
  }

  .brand-text strong {
    font-size: 1.15rem;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-copy {
    padding: 5.9rem 0 2.5rem;
    text-align: center;
    margin-inline: auto;
  }

  .hero-brand {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .hero h1,
  .lead {
    margin-inline: auto;
  }

  .cta-row {
    justify-content: center;
  }

  .cta-row .btn {
    width: 100%;
  }

  .hero-dots {
    justify-content: center;
  }

  .section {
    padding: 3.35rem 0;
  }

  .section-head,
  .inquiry-head,
  .faq-intro,
  .section h2,
  .section-lead {
    text-align: center;
    margin-inline: auto;
  }

  .inquiry {
    padding: 1.05rem;
  }

  .inquiry-grid,
  .facts {
    grid-template-columns: 1fr;
  }

  .inquiry-submit {
    width: 100%;
  }

  .map-embed iframe {
    min-height: 240px;
    height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-bottom: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }

  .hero-slide img,
  .hero-slide.is-active img {
    transform: none;
    transition: none;
  }
}
