:root {
  --ink: #111716;
  --ink-soft: #1b2422;
  --paper: #f5f2eb;
  --paper-deep: #e8e2d6;
  --white: #fff;
  --muted: #65706c;
  --line: rgba(17, 23, 22, 0.14);
  --amber: #e9a62d;
  --amber-bright: #ffc04b;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.lightbox-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 0 4vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 13, 0.22);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(245, 242, 235, 0.96);
  box-shadow: 0 10px 30px rgba(17, 23, 22, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  justify-content: center;
}

.desktop-nav a {
  position: relative;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  padding: 9px 15px;
  color: var(--ink);
  border-radius: 999px;
  background: var(--amber);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 780px;
  height: 100svh;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 60% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 12, 11, 0.93) 0%, rgba(8, 12, 11, 0.76) 38%, rgba(8, 12, 11, 0.22) 72%, rgba(8, 12, 11, 0.15) 100%),
    linear-gradient(0deg, rgba(8, 12, 11, 0.72) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 145px 0 85px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--amber-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #a46800;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7.4vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-title-main {
  display: inline-block;
  white-space: nowrap;
}

.hero h1 .hero-title-accent {
  color: var(--amber-bright);
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 8px 0 25px;
}

.hero-price > span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.hero-price strong {
  color: var(--amber-bright);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.hero-price strong small {
  margin-left: 7px;
  color: var(--white);
  font-size: 0.38em;
}

.hero-price em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-style: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.share-button:focus-visible,
.gallery-item:focus-visible,
summary:focus-visible,
.text-button:focus-visible,
.site-footer button:focus-visible {
  outline: 3px solid var(--amber-bright);
  outline-offset: 4px;
}

.button-primary {
  color: var(--ink);
  background: var(--amber-bright);
}

.button-primary:hover {
  background: #ffd176;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-muted {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.button-small {
  min-height: 42px;
  padding: 8px 17px;
  font-size: 0.86rem;
}

.hero-facts {
  display: flex;
  gap: clamp(24px, 6vw, 72px);
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 1px;
}

.hero-facts strong {
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 36px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  text-decoration: none;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  margin-top: 10px;
  color: var(--amber-bright);
}

.trust-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 8vw), var(--max));
  padding: 26px 0;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  display: grid;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.trust-strip strong {
  font-size: 0.98rem;
}

.share-button,
.text-button,
.site-footer button {
  padding: 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  cursor: pointer;
  font-weight: 900;
}

.section {
  width: min(calc(100% - 8vw), var(--max));
  padding: clamp(80px, 11vw, 140px) 0;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 24px 70px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.spec-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
}

.spec-card.accent {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.spec-number {
  display: block;
  margin-bottom: 72px;
  color: #a46800;
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.accent .spec-number {
  color: var(--amber-bright);
}

.spec-number small {
  margin-left: 4px;
  font-size: 0.34em;
  letter-spacing: 0;
}

.spec-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.spec-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.spec-card.accent p {
  color: rgba(255, 255, 255, 0.65);
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.feature-row span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.legal-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.gallery-section {
  width: 100%;
  max-width: none;
  padding-right: 4vw;
  padding-left: 4vw;
  color: var(--white);
  background: var(--ink);
}

.gallery-section .section-heading {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.section-heading.light > p:last-child {
  color: rgba(255, 255, 255, 0.6);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-auto-rows: 300px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border: 0;
  border-radius: 14px;
  background: #26302e;
  cursor: zoom-in;
}

.gallery-item-wide {
  grid-row: span 2;
}

.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: brightness(0.82);
  transform: scale(1.025);
}

.gallery-item span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 900;
  text-align: left;
  text-shadow: 0 2px 12px #000;
}

.location-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(40px, 7vw, 95px);
  align-items: center;
}

.location-copy h2 {
  margin: 0 0 32px;
  font-size: clamp(2.4rem, 4.7vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.location-copy address {
  display: grid;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-style: normal;
}

.location-copy address span {
  color: var(--muted);
  font-size: 0.74rem;
}

.location-copy address strong {
  margin-top: 5px;
  font-size: 1.42rem;
  line-height: 1.45;
}

.route-list {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.route-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

.route-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.location-copy .button {
  margin-top: 18px;
}

.map-wrap {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.faq-section {
  padding-top: 60px;
}

.faq-section .section-heading {
  display: block;
  margin-bottom: 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 10px;
  color: #a46800;
  content: "+";
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 780px;
  padding: 0 0 24px;
  margin: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(310px, 0.55fr);
  gap: 80px;
  align-items: center;
  padding: clamp(70px, 10vw, 120px) max(4vw, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0%, rgba(233, 166, 45, 0.22), transparent 32%),
    var(--ink-soft);
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.contact-section > div:first-child > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-card {
  display: grid;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.contact-card > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
}

.contact-card > strong {
  font-size: 1.4rem;
}

.phone-number {
  margin: 12px 0 24px;
  color: var(--amber-bright);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
}

.contact-card .text-button {
  justify-self: center;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  padding: 42px max(4vw, calc((100vw - var(--max)) / 2)) 90px;
  color: var(--white);
  background: #0b0f0e;
}

.site-footer p {
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a,
.footer-links button {
  align-self: start;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  text-decoration: none;
}

.site-footer .footer-note {
  grid-column: 1 / -1;
  max-width: 820px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-bar {
  display: none;
}

.lightbox {
  width: min(94vw, 1480px);
  max-width: none;
  height: min(92vh, 980px);
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border: 0;
  border-radius: 16px;
  background: #090d0c;
  box-shadow: 0 40px 100px #000;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.87);
  backdrop-filter: blur(7px);
}

.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 3;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.lightbox-close {
  top: 14px;
  right: 14px;
  padding: 8px 12px;
  border-radius: 999px;
}

.lightbox-nav {
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 64px;
  border-radius: 10px;
  font-size: 2.3rem;
  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 14px;
}

.lightbox-nav.next {
  right: 14px;
}

.consent-banner {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(calc(100% - 44px), 760px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--white);
  background: rgba(17, 23, 22, 0.98);
  box-shadow: var(--shadow);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  display: block;
  margin-bottom: 4px;
}

.consent-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}

.consent-actions {
  display: flex;
  gap: 8px;
}

.consent-actions .button-muted {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.toast {
  position: fixed;
  z-index: 600;
  left: 50%;
  bottom: 32px;
  padding: 10px 17px;
  color: var(--white);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.86rem;
  transform: translateX(-50%);
}

.toast[hidden] {
  display: none;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-item-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 64px;
  }

  body {
    padding-bottom: 64px;
  }

  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 760px;
    max-height: none;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 12, 11, 0.96) 0%, rgba(8, 12, 11, 0.68) 62%, rgba(8, 12, 11, 0.24) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 110px 0 45px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15.5vw, 5.2rem);
  }

  .hero-title-main {
    font-size: 11.2vw;
  }

  .hero-lead {
    margin: 19px 0;
    font-size: 0.98rem;
  }

  .hero-price {
    margin-bottom: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    min-height: 50px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .hero-facts {
    gap: 0;
    justify-content: space-between;
    margin-top: 28px;
  }

  .hero-facts strong {
    font-size: 1.24rem;
  }

  .hero-facts span {
    font-size: 0.66rem;
  }

  .scroll-cue {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    width: calc(100% - 36px);
  }

  .trust-strip .share-button {
    justify-self: start;
  }

  .section {
    width: calc(100% - 36px);
    padding: 76px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 32px;
  }

  .section-heading .eyebrow {
    margin-bottom: 12px;
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .section-heading > p:last-child {
    margin-top: 18px;
  }

  .spec-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .spec-card {
    min-height: 240px;
    padding: 20px;
  }

  .spec-number {
    margin-bottom: 48px;
    font-size: 2.65rem;
  }

  .spec-card h3 {
    font-size: 1rem;
  }

  .spec-card p {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .gallery-section {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .gallery-item-wide {
    grid-column: auto;
  }

  .location-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .route-list li {
    display: grid;
  }

  .map-wrap {
    min-height: 430px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 72px 18px;
  }

  .contact-section h2 {
    font-size: 3.4rem;
  }

  .contact-card {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 18px 90px;
  }

  .footer-links {
    grid-row: 2;
  }

  .site-footer .footer-note {
    grid-column: auto;
  }

  .mobile-bar {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 64px;
    padding: 7px;
    color: var(--white);
    background: rgba(10, 14, 13, 0.97);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
  }

  .mobile-bar a {
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-bar a:last-child {
    color: var(--ink);
    background: var(--amber-bright);
  }

  .lightbox {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
  }

  .lightbox-nav {
    width: 42px;
    height: 56px;
  }

  .consent-banner {
    right: 10px;
    bottom: 74px;
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100% - 20px);
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .toast {
    bottom: 78px;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-card {
    min-height: 215px;
  }
}

/* Premium editorial refresh */
:root {
  --ink: #121716;
  --ink-soft: #1a211f;
  --paper: #f2f0e9;
  --paper-deep: #dfdbd0;
  --muted: #69716e;
  --line: rgba(18, 23, 22, 0.16);
  --amber: #b97b28;
  --amber-bright: #e7aa51;
  --max: 1240px;
  --radius: 4px;
  --shadow: 0 32px 80px rgba(12, 17, 16, 0.16);
}

body {
  background:
    linear-gradient(rgba(18, 23, 22, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 72px;
}

.site-header {
  min-height: 74px;
  padding: 0 clamp(24px, 4vw, 68px);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  background: rgba(10, 15, 14, 0.48);
  backdrop-filter: blur(14px);
}

.site-header.is-solid {
  background: rgba(242, 240, 233, 0.94);
  box-shadow: 0 12px 34px rgba(17, 23, 22, 0.08);
}

.brand {
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand::before {
  padding: 4px 7px;
  color: var(--ink);
  background: var(--amber-bright);
  content: "FOR LEASE";
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.desktop-nav {
  gap: clamp(24px, 3vw, 46px);
}

.desktop-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.header-call,
.button,
.mobile-bar a {
  border-radius: 3px;
}

.header-call {
  padding: 10px 17px;
  background: var(--amber-bright);
  letter-spacing: 0.02em;
}

.hero {
  min-height: 780px;
  max-height: 960px;
}

.hero-media img {
  object-position: 58% center;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.004);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 12, 11, 0.96) 0%, rgba(7, 12, 11, 0.82) 34%, rgba(7, 12, 11, 0.35) 66%, rgba(7, 12, 11, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 12, 11, 0.82) 0%, rgba(7, 12, 11, 0.12) 46%, rgba(7, 12, 11, 0.24) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 370px);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
  width: min(calc(100% - 8vw), var(--max));
  padding: 150px 0 64px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 17px;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3.9rem, 6.9vw, 6.8rem);
  font-weight: 850;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

.hero-title-accent {
  display: inline-block;
  margin-top: 5px;
  color: #f3f0e8 !important;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 570px;
  margin: 27px 0 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

.hero-actions {
  gap: 9px;
}

.hero-actions .button {
  min-width: 160px;
  justify-content: space-between;
}

.button {
  min-height: 50px;
  padding: 11px 18px;
  letter-spacing: 0.025em;
}

.button-primary {
  background: var(--amber-bright);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(15, 21, 19, 0.24);
}

.hero-summary {
  position: relative;
  padding: 28px 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(11, 17, 15, 0.68);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.hero-price {
  display: grid;
  gap: 2px;
  margin: 0 0 25px;
}

.hero-price > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-price strong {
  color: var(--amber-bright);
  font-size: clamp(3.4rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.hero-price strong small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.29em;
  letter-spacing: 0;
}

.hero-price em {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-facts li {
  gap: 2px;
  padding: 16px 9px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-facts li:first-child {
  padding-left: 0;
}

.hero-facts li:last-child {
  border-right: 0;
}

.hero-facts strong {
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-facts strong small {
  margin-left: 2px;
  font-size: 0.55em;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
}

.hero-summary-note {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.59rem;
  letter-spacing: 0.22em;
  text-align: right;
}

.scroll-cue {
  right: clamp(24px, 4vw, 68px);
  bottom: 54px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.trust-strip {
  grid-template-columns: 1.2fr 1fr auto;
  width: min(calc(100% - 8vw), var(--max));
  padding: 30px 0;
}

.trust-strip span {
  letter-spacing: 0.18em;
}

.trust-strip strong {
  font-size: 0.94rem;
  letter-spacing: 0.015em;
}

.section {
  padding-top: clamp(92px, 10vw, 132px);
  padding-bottom: clamp(92px, 10vw, 132px);
}

.section-heading {
  gap: 26px clamp(45px, 7vw, 100px);
  margin-bottom: 58px;
}

.section-heading h2,
.location-copy h2 {
  font-weight: 780;
  letter-spacing: -0.06em;
}

.spec-grid {
  gap: 8px;
}

.spec-card {
  position: relative;
  min-height: 300px;
  padding: 27px 24px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.spec-card:hover {
  border-color: rgba(18, 23, 22, 0.34);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-4px);
}

.spec-card.accent:hover {
  background: var(--ink-soft);
}

.spec-card::before {
  position: absolute;
  top: 17px;
  right: 18px;
  color: rgba(18, 23, 22, 0.32);
  content: "＋";
  font-size: 0.8rem;
}

.spec-card.accent::before {
  color: rgba(255, 255, 255, 0.34);
}

.spec-number {
  margin-bottom: 76px;
  color: var(--amber);
  font-weight: 760;
}

.feature-row span {
  padding: 7px 13px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.gallery-section {
  padding-right: max(4vw, calc((100vw - 1440px) / 2));
  padding-left: max(4vw, calc((100vw - 1440px) / 2));
  background:
    radial-gradient(circle at 85% 8%, rgba(231, 170, 81, 0.08), transparent 28%),
    #141a18;
}

.gallery-grid {
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-auto-rows: 330px;
  gap: 8px;
}

.gallery-item {
  border-radius: 3px;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(5, 9, 8, 0.64), transparent 42%);
  content: "";
  pointer-events: none;
}

.gallery-item span {
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.gallery-item span b {
  color: var(--amber-bright);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.map-wrap {
  border-radius: 3px;
  box-shadow: 0 28px 70px rgba(17, 23, 22, 0.14);
}

.map-wrap::after {
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.52);
  content: "";
  pointer-events: none;
}

.faq-list summary {
  padding-top: 27px;
  padding-bottom: 27px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.contact-section {
  background:
    linear-gradient(105deg, rgba(20, 27, 25, 0.98), rgba(26, 33, 31, 0.94)),
    var(--ink-soft);
}

.contact-card {
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.045);
}

.phone-number {
  color: var(--amber-bright);
  font-weight: 780;
}

.site-footer {
  align-items: start;
}

.site-footer > div:first-child strong {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.consent-banner {
  width: min(calc(100% - 44px), 680px);
  padding: 19px 20px;
  border-radius: 4px;
  background: rgba(16, 22, 20, 0.98);
}

@media (max-width: 1020px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7.7vw, 5.5rem);
  }
}

@media (max-width: 720px) {
  body {
    background-size: 100% 56px;
  }

  .site-header {
    min-height: 62px;
    padding: 0 16px;
  }

  .brand {
    font-size: 0.77rem;
    letter-spacing: 0.04em;
  }

  .brand::before {
    padding: 3px 5px;
    font-size: 0.5rem;
  }

  .hero {
    min-height: 880px;
    height: auto;
    max-height: none;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(6, 11, 10, 0.98) 0%, rgba(6, 11, 10, 0.88) 47%, rgba(6, 11, 10, 0.34) 78%, rgba(6, 11, 10, 0.22) 100%),
      linear-gradient(90deg, rgba(6, 11, 10, 0.34), transparent);
  }

  .hero-content {
    display: block;
    width: calc(100% - 32px);
    padding: 150px 0 38px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.4rem);
    line-height: 1.02;
  }

  .hero-title-main {
    font-size: 10.8vw;
  }

  .hero-title-accent {
    margin-top: 7px;
    font-size: 0.86em;
  }

  .hero-lead {
    margin: 20px 0 23px;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 48px;
  }

  .hero-summary {
    margin-top: 28px;
    padding: 20px 18px 15px;
    background: rgba(10, 16, 14, 0.72);
  }

  .hero-price {
    margin-bottom: 17px;
  }

  .hero-price strong {
    font-size: 3.15rem;
  }

  .hero-facts li {
    padding: 13px 7px 12px;
  }

  .hero-facts strong {
    font-size: 1.12rem;
  }

  .hero-facts span {
    font-size: 0.57rem;
  }

  .hero-summary-note {
    margin-top: 11px;
  }

  .trust-strip {
    gap: 15px;
    width: calc(100% - 32px);
    padding: 24px 0;
  }

  .trust-strip div {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .section {
    width: calc(100% - 32px);
    padding: 82px 0;
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 10.8vw, 3.45rem);
  }

  .spec-grid {
    gap: 7px;
  }

  .spec-card {
    min-height: 225px;
    padding: 19px;
  }

  .spec-number {
    margin-bottom: 42px;
  }

  .gallery-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .gallery-grid {
    grid-auto-rows: 255px;
    gap: 7px;
  }

  .map-wrap {
    min-height: 400px;
  }

  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mobile-bar {
    min-height: 62px;
    padding: 6px;
  }

  .consent-banner {
    right: 8px;
    bottom: 72px;
    gap: 12px;
    width: calc(100% - 16px);
    padding: 17px;
  }
}

@media (max-width: 420px) {
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spec-card {
    min-height: 218px;
  }

  .spec-number {
    font-size: 2.35rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
