[v-cloak]{display:none !important;}

@font-face {
  font-family: "Chocolate Classical Sans";
  src: url("fonts/ChocolateClassicalSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-primary: #dd6552;
  --brand-secondary: #a59a84;
  --brand-accent: #a35d68;
  --brand-background: #4c4842;
  --text-light: #fffeff;
  --text-dark: #000000;
  --radius: 16px;
  --font-sans: "Chocolate Classical Sans", "Noto Sans TC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 56px;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--brand-background);
  color: var(--text-light);
  font-family: var(--font-sans);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

section[id] {
  scroll-margin-top: 56px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(76 72 66 / 0.95);
  transition: background 300ms ease, border-color 300ms ease;
}

.site-header.is-compact {
  border-color: rgb(255 255 255 / 0.05);
  background: rgb(76 72 66 / 0.98);
}

.header-inner {
  position: relative;
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: height 300ms ease-in-out;
}

.site-header.is-compact .header-inner {
  height: 40px;
}

.menu-button {
  position: absolute;
  left: 12px;
  top: 50%;
  display: flex;
  width: 36px;
  height: 36px;
  translate: 0 -50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 300ms ease, opacity 300ms ease;
}

.menu-button span:first-child.active {
  transform: translateY(8px) rotate(45deg);
}

.menu-button span:nth-child(2).hidden {
  opacity: 0;
}

.menu-button span:last-child.active {
  transform: translateY(-8px) rotate(-45deg);
}

.logo-link {
  display: block;
}

.mobile-logo .logo-image {
  width: auto;
  height: 28px;
  transition: height 300ms ease-in-out;
}

.mobile-logo .logo-image.compact {
  height: 16px;
}

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

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  opacity: 0;
  transition: max-height 300ms ease-in-out, opacity 300ms ease-in-out;
}

.mobile-nav.open {
  max-height: 520px;
  opacity: 1;
}

.mobile-nav-inner {
  padding: 8px 20px 20px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  transition: background 300ms ease, color 300ms ease;
}

.mobile-nav-link span {
  color: var(--brand-primary);
}

.mobile-nav-link:hover,
.mobile-submenu a:hover {
  background: rgb(255 255 255 / 0.1);
  color: var(--brand-primary);
}

.mobile-submenu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 0 16px 8px;
}

.mobile-submenu a {
  border-radius: 8px;
  padding: 8px 12px;
  color: rgb(255 255 255 / 0.7);
  font-size: 14px;
  line-height: 24px;
}

.hero-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1000ms ease;
}

.hero-image.active {
  opacity: 1;
}

.hero-overlay,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background: rgb(76 72 66 / 0.24);
}

.hero-gradient {
  background: linear-gradient(
    270deg,
    rgb(77 73 67 / 0.76) 0%,
    rgb(77 73 67 / 0.54) 42%,
    rgb(77 73 67 / 0.08) 100%
  );
}

.hero-content-wrap {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: center;
  justify-content: flex-end;
  padding: 80px 20px;
}

.hero-content {
  max-width: 620px;
  translate: 0 150px;
  text-align: right;
}

.eyebrow,
.section-title p {
  margin: 0;
  color: var(--brand-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.eyebrow span {
  color: white;
}

.hero-content h1 {
  margin: 16px 0 0;
  color: white;
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
}

.hero-copy {
  max-width: 560px;
  margin: 20px 0 0 auto;
  color: rgb(255 255 255 / 0.82);
  font-size: 15px;
  line-height: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}

.button {
  appearance: none;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: none;
  transition: transform 300ms ease, background 300ms ease, border-color 300ms ease;
}

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

.button.primary {
  background: var(--brand-primary);
  color: white;
}

.button.primary:hover {
  background: var(--brand-accent);
}

.contact-form .button,
.submit-dialog .button,
.contact-form .button:hover,
.submit-dialog .button:hover {
  box-shadow: none;
  transform: none;
}

.button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.button.ghost {
  border: 1px solid rgb(255 255 255 / 0.3);
  color: white;
}

.button.ghost:hover {
  border-color: var(--brand-primary);
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 10;
  display: flex;
  translate: -50% 0;
  gap: 12px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.55);
  cursor: pointer;
  transition: width 300ms ease, background 300ms ease;
}

.hero-dots button.active {
  width: 32px;
  background: var(--brand-primary);
}

.dark-section,
.light-section,
.faq-section {
  padding: 64px 20px;
}

.dark-section {
  background: var(--brand-background);
  color: white;
}

.light-section {
  background: white;
  color: black;
}

.faq-section {
  background: rgb(165 154 132 / 0.2);
  color: var(--brand-background);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  margin: 12px 0 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
}

.section-title h2 span {
  color: var(--brand-primary);
}

.process-section .section-title h2 {
  font-size: 32px;
  line-height: 42px;
}

.mobile-steps {
  display: flex;
  gap: 12px;
  margin: 48px -20px 0;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory;
}

.step-spacer {
  flex: 0 0 30vw;
}

.mobile-step {
  position: relative;
  flex: 0 0 30vw;
  padding-top: 50px;
  scroll-snap-align: center;
  opacity: 0.7;
  transform: scale(0.9);
  transition: transform 300ms ease, opacity 300ms ease;
}

.mobile-step.active {
  opacity: 1;
  transform: scale(1.1);
}

.desktop-steps {
  display: none;
}

.step-label {
  position: absolute;
  top: 0;
  left: 12px;
  z-index: 1;
}

.step-label h3 {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.step-label svg {
  width: 80px;
  height: 14px;
  margin-top: -2px;
  color: var(--brand-primary);
  transform: rotate(-8deg);
}

.step-label svg path {
  clip-path: inset(0 42% 0 0);
  opacity: 0.72;
  transition: clip-path 420ms ease-in-out, opacity 300ms ease;
}

.mobile-step.active .step-label svg path,
.desktop-step:hover .step-label svg path {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.step-card {
  min-height: 260px;
  border-radius: var(--radius);
  background: white;
  padding: 48px 12px 12px;
  color: black;
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.12);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.step-card.muted {
  background: var(--brand-secondary);
}

.mobile-step.active .step-card,
.desktop-step:hover .step-card {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgb(0 0 0 / 0.18);
}

.step-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px solid var(--brand-primary);
  border-radius: 999px;
  color: var(--brand-primary);
  font-size: 18px;
  font-weight: 600;
  transition: background 300ms ease, transform 300ms ease;
}

.mobile-step.active .step-icon,
.desktop-step:hover .step-icon {
  background: rgb(221 101 82 / 0.14);
  transform: scale(1.06);
}

.step-card h3 {
  margin: 20px 0 0;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}

.step-card p {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
}

.services-layout {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-anchor {
  scroll-margin-top: 256px;
}

.service-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgb(0 0 0 / 0.1);
  border-radius: var(--radius);
  background: white;
  padding: 16px 20px;
  color: black;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  cursor: pointer;
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, color 300ms ease;
}

.service-button:hover {
  transform: translateY(-2px);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.service-button.active {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: white;
}

.service-preview {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brand-background);
  color: white;
}

.mobile-preview {
  margin-top: 12px;
}

.desktop-preview {
  display: none;
}

.service-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(76 72 66 / 0.94) 0%,
    rgb(76 72 66 / 0.76) 42%,
    rgb(76 72 66 / 0.14) 74%,
    rgb(76 72 66 / 0) 100%
  );
}

.service-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
}

.service-content > * {
  position: relative;
}

.service-content h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
}

.service-content p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 0.82);
  font-size: 16px;
  line-height: 28px;
}

.service-content.compact p {
  margin: 0;
  font-size: 15px;
}

.service-content .button {
  margin-top: 28px;
  flex: none;
  white-space: nowrap;
}

.service-content.compact {
  align-items: flex-start;
}

.service-content.compact .button {
  margin-top: 16px;
  padding: 10px 20px;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 24px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.strength-list li {
  position: relative;
  text-align: center;
  transition: transform 300ms ease;
}

.strength-list li:hover {
  transform: translateY(-4px);
}

.strength-icon-shell {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  transition: transform 300ms ease;
}

.strength-icon-shell::before {
  position: absolute;
  inset: -12px;
  border-radius: 999px;
  background: rgb(221 101 82 / 0.16);
  content: "";
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 300ms ease, transform 300ms ease;
}

.strength-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--text-light);
  background: currentColor;
  mask: var(--icon-url) center / contain no-repeat;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  transition: background 300ms ease;
}

.strength-list li:hover .strength-icon-shell {
  transform: translateY(-4px) scale(1.08);
}

.strength-list li:hover .strength-icon-shell::before {
  opacity: 1;
  transform: scale(1);
}

.strength-list li:hover .strength-icon {
  background: var(--brand-primary);
}

.strength-list h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  transition: color 300ms ease;
}

.strength-list li:hover h3 {
  color: var(--brand-primary);
}

.strength-list p {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 0.78);
  font-size: 15px;
  line-height: 28px;
}

.strength-line {
  display: block;
  width: 0;
  height: 2px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: var(--brand-primary);
  transition: width 300ms ease;
}

.strength-list li:hover .strength-line {
  width: 40px;
}

.location-layout {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}

.location-layout iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
}

.route-list {
  display: grid;
  gap: 16px;
}

.route-list article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgb(0 0 0 / 0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease;
}

.route-list article:hover {
  transform: translateY(-3px);
  border-color: rgb(221 101 82 / 0.28);
  background: rgb(221 101 82 / 0.04);
}

.route-icon-shell {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  margin-top: 2px;
  transition: transform 300ms ease;
}

.route-icon-shell::before {
  position: absolute;
  inset: -9px;
  border-radius: 999px;
  background: rgb(221 101 82 / 0.14);
  content: "";
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 300ms ease, transform 300ms ease;
}

.route-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0.55);
  mask: var(--icon-url) center / contain no-repeat;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  transition: background 300ms ease;
}

.route-list article:hover .route-icon-shell {
  transform: translateY(-4px);
}

.route-list article:hover .route-icon {
  background: var(--brand-primary);
}

.route-list article:hover .route-icon-shell::before {
  opacity: 1;
  transform: scale(1);
}

.route-list h3 {
  margin: 0;
  font-size: 24px;
  line-height: 34px;
}

.route-list p {
  margin: 12px 0 0;
  color: rgb(0 0 0 / 0.68);
  font-size: 16px;
  line-height: 28px;
}

.faq-section .section-title h2 {
  color: white;
}

.faq-list {
  max-width: 1024px;
  margin: 56px auto 0;
}

.faq-item {
  overflow: hidden;
  margin-top: 20px;
  border-radius: var(--radius);
  background: var(--brand-background);
  color: white;
  transition: background 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.faq-item:first-child {
  margin-top: 0;
}

.faq-item.open {
  background: white;
  color: var(--brand-background);
  box-shadow: 0 20px 40px rgb(76 72 66 / 0.1);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 20px 24px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 300ms ease;
}

.faq-item.open button,
.faq-item button:hover {
  background: var(--brand-primary);
  color: white;
}

.faq-number {
  display: grid;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.16);
  font-size: 16px;
  font-weight: 600;
}

.faq-question {
  min-width: 0;
  flex: 1;
}

.faq-question span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.faq-question small {
  display: block;
  margin-top: 4px;
  color: rgb(255 255 255 / 0.78);
  font-size: 16px;
  line-height: 28px;
}

.faq-arrow {
  color: rgb(255 255 255 / 0.78);
  font-size: 28px;
  line-height: 1;
  transition: transform 300ms ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 20px 24px;
}

.faq-answer p {
  margin: 0;
  color: rgb(76 72 66 / 0.8);
  font-size: 16px;
  line-height: 28px;
}

.footer-section {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  background: #21130f;
  padding: 64px 20px;
  color: white;
}

.footer-grid {
  display: grid;
  max-width: 1680px;
  margin: 0 auto;
  gap: 40px;
}

.footer-section h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  background: white;
  color: black;
  outline: 0;
  transition: border-color 300ms ease;
}

.contact-form input.is-error,
.contact-form textarea.is-error {
  border-color: rgb(221 101 82 / 0.5);
  background-color: white;
  box-shadow: inset 0 0 0 999px rgb(221 101 82 / 0.13);
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 120px;
  padding: 12px 16px;
}

.form-alert {
  margin: 0;
  padding: 0;
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-primary);
}

.contact-form input.is-error:focus,
.contact-form textarea.is-error:focus {
  border-color: var(--brand-primary);
}

.footer-contact {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.footer-social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-primary);
  font-size: 14px;
  font-weight: 600;
  transition: transform 300ms ease, background 300ms ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: var(--brand-accent);
}

.footer-section section > p,
.notice-list p {
  color: rgb(255 255 255 / 0.78);
  font-size: 16px;
  line-height: 28px;
}

.footer-section h3 {
  margin: 48px 0 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
}

.notice-list {
  margin-top: 32px;
}

.submit-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: rgb(33 19 15 / 0.68);
  padding: 20px;
}

.submit-dialog {
  width: min(100%, 420px);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius);
  background: var(--brand-background);
  padding: 32px;
  color: white;
  text-align: center;
  box-shadow: 0 28px 72px rgb(0 0 0 / 0.28);
}

.submit-dialog-label {
  margin: 0;
  color: var(--brand-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
}

.submit-dialog h2 {
  margin: 8px 0 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
}

.submit-dialog p:not(.submit-dialog-label) {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 0.8);
  font-size: 16px;
  line-height: 28px;
}

.submit-dialog .button {
  margin: 28px auto 0;
  box-shadow: none;
}

.copyright {
  max-width: 1680px;
  margin: 56px auto 0;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 24px;
  color: rgb(255 255 255 / 0.55);
  font-size: 14px;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.floating-contact.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  outline: none;
}

.floating-contact-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 999px;
  background: rgb(76 72 66 / 0.9);
  padding: 12px 0;
  color: rgb(255 255 255 / 0);
  font-size: 14px;
  font-weight: 600;
  transition: max-width 300ms ease, padding 300ms ease, color 300ms ease;
}

.floating-contact a:hover .floating-contact-label,
.floating-contact a:focus-visible .floating-contact-label {
  max-width: 160px;
  padding-inline: 16px;
  color: white;
}

.floating-contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  transition: transform 300ms ease;
}

.floating-contact a:hover .floating-contact-icon,
.floating-contact a:focus-visible .floating-contact-icon {
  transform: scale(1.08);
}

.floating-contact img {
  width: 100%;
  height: 100%;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 65px;
  }

  section[id] {
    scroll-margin-top: 65px;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    height: auto;
    justify-content: space-between;
    padding: 16px 40px;
  }

  .site-header.is-compact .header-inner {
    height: auto;
  }

  .menu-button,
  .mobile-logo,
  .mobile-nav {
    display: none;
  }

  .desktop-logo,
  .desktop-nav {
    display: flex;
  }

  .desktop-logo img {
    width: auto;
    height: 24px;
  }

  .desktop-nav {
    align-items: center;
    gap: 32px;
  }

  .nav-item {
    position: relative;
  }

  .nav-item > a {
    display: block;
    color: rgb(255 255 255 / 0.8);
    font-size: 14px;
    transition: transform 300ms ease, color 300ms ease;
  }

  .nav-item:hover > a {
    color: var(--brand-primary);
    transform: translateY(-2px);
  }

  .submenu {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 192px;
    padding-top: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: opacity 300ms ease, transform 300ms ease;
  }

  .nav-item:hover .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .submenu-panel {
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: var(--radius);
    background: rgb(76 72 66 / 0.95);
    padding: 8px;
    box-shadow: 0 24px 56px rgb(0 0 0 / 0.25);
  }

  .submenu-panel a {
    display: block;
    border-radius: 10px;
    padding: 12px 16px;
    color: rgb(255 255 255 / 0.75);
    font-size: 14px;
    transition: transform 300ms ease, background 300ms ease, color 300ms ease;
  }

  .submenu-panel a:hover {
    background: rgb(255 255 255 / 0.1);
    color: var(--brand-primary);
    transform: translateX(4px);
  }

  .hero-content-wrap {
    min-height: 720px;
    padding: 96px 40px;
  }

  .hero-content {
    margin-right: 200px;
    translate: 0 0;
  }

  .hero-content h1 {
    margin-top: 20px;
    font-size: 56px;
    line-height: 72px;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    gap: 16px;
    margin-top: 40px;
  }

  .button {
    padding-inline: 24px;
    font-size: 16px;
  }

  .dark-section,
  .light-section,
  .faq-section {
    padding: 128px 40px;
  }

  .process-section .section-title h2 {
    font-size: 40px;
    line-height: 52px;
  }

  .mobile-steps {
    display: none;
  }

  .desktop-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
  }

  .desktop-step {
    position: relative;
    padding-top: 56px;
  }

  .desktop-step .step-label {
    left: 32px;
  }

  .desktop-step .step-label h3 {
    font-size: 28px;
    line-height: 38px;
  }

  .desktop-step .step-label svg {
    width: 128px;
    height: 20px;
    margin-top: 4px;
  }

  .desktop-step .step-card {
    min-height: 420px;
    padding: 80px 32px 32px;
    transition: transform 300ms ease;
  }

  .desktop-step .step-card:hover {
    transform: translateY(-4px);
  }

  .desktop-step .step-icon {
    width: 96px;
    height: 96px;
    font-size: 40px;
  }

  .desktop-step .step-card h3 {
    margin-top: 32px;
    font-size: 28px;
    line-height: 38px;
  }

  .desktop-step .step-card p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 28px;
  }

  .services-layout {
    grid-template-columns: 300px 1fr;
  }

  .service-list {
    gap: 10px;
  }

  .service-anchor {
    scroll-margin-top: 112px;
  }

  .service-button {
    padding: 12px 16px;
    font-size: 20px;
    line-height: 30px;
  }

  .mobile-preview {
    display: none;
  }

  .desktop-preview {
    display: block;
    min-height: 520px;
  }

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

  .strength-list li {
    padding: 0 32px;
    border-left: 1px solid rgb(255 255 255 / 0.18);
  }

  .strength-list li:first-child {
    border-left: 0;
  }

  .strength-list img {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
  }

  .strength-list h3 {
    font-size: 28px;
    line-height: 38px;
  }

  .strength-list p {
    margin-top: 16px;
    font-size: 16px;
  }

  .location-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }

  .location-layout iframe {
    min-height: 520px;
  }

  .route-list {
    order: 2;
  }

  .location-layout iframe {
    order: 1;
  }

  .faq-item button {
    padding-inline: 32px;
  }

  .faq-answer {
    padding: 24px 32px;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 0.95fr 0.85fr 1.2fr;
  }
}

@media (min-width: 1280px) {
  .desktop-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
