:root {
  --bg: #0f0f10;
  --bg-soft: #171719;
  --surface: #ffffff;
  --surface-2: #f5f5f2;
  --text: #151515;
  --muted: #666665;
  --light: #f8f8f6;
  --line: rgba(20, 20, 20, .12);
  --line-light: rgba(255, 255, 255, .15);
  --gold: #c9a05f;
  --gold-dark: #9a7435;
  --silver: #d7d7d7;
  --danger: #b21f24;
  --shadow: 0 18px 55px rgba(0, 0, 0, .18);
  --radius: 24px;
  --max: 1180px;
  --header: 92px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--gold-dark);
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 1000;
  background: var(--gold);
  color: #111;
  padding: 10px 14px;
  border-radius: 12px;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 16, .95);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.topbar {
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.navbar__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--light);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand img {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .2);
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 92px 0;
}

.section-dark {
  color: var(--light);
  background:
    radial-gradient(circle at 80% 20%, rgba(201,160,95,.26), transparent 34%),
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, #0c0c0d 0%, #1a1a1d 52%, #0d0d0e 100%);
}

.section-muted {
  background: var(--surface-2);
}

.hero {
  padding: 92px 0 82px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  margin-top: 22px;
  max-width: 700px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__actions,
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

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

.btn--primary {
  color: #111;
  background: linear-gradient(135deg, #f1d28d, var(--gold));
  box-shadow: 0 14px 36px rgba(201,160,95,.28);
}

.btn--secondary {
  color: #fff;
  background: linear-gradient(135deg, #2f2f31, #111);
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
}

.btn--small {
  min-height: 42px;
  padding: 11px 17px;
  color: #111;
  background: var(--gold);
}

.btn--full {
  width: 100%;
}

.hero__notice {
  width: fit-content;
  max-width: 620px;
  margin-top: 26px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
}

.hero__notice strong {
  color: #fff;
}

.hero__media {
  position: relative;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 14% -8% -8% 16%;
  border: 1px solid rgba(201,160,95,.35);
  border-radius: 44px;
  transform: rotate(-4deg);
}

.hero__media img {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.quick-info {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.quick-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-info article {
  min-height: 142px;
  padding: 24px;
  background: #fff;
}

.quick-info__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.quick-info p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 42px;
}

.section-heading p:last-child {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.cards {
  display: grid;
  gap: 22px;
}

.cards--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.service-box,
.contact-panel,
.contact-form,
.legal-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(0,0,0,.07);
}

.card {
  padding: 28px;
}

.card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  color: #111;
  background: linear-gradient(135deg, #f3e0ae, var(--gold));
  font-size: 1.65rem;
  font-weight: 900;
}

.card p,
.service-box p,
.split p,
.contact-panel p,
.legal-box p,
.legal-box li {
  color: var(--muted);
}

.card h3 {
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
  gap: 48px;
  align-items: start;
}

.split--reverse {
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1.1fr);
}

.split--reverse .split__content {
  grid-column: 2;
}

.split--reverse .service-box {
  grid-column: 1;
  grid-row: 1;
}

.split__content > p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 720px;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #2f2f2f;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--gold);
  font-size: .86rem;
}

.service-box {
  padding: 30px;
}

.service-box ol {
  margin: 18px 0 28px;
  padding-left: 20px;
  color: var(--muted);
}

.small-note,
.form-hint {
  font-size: .92rem;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.cta-band {
  padding: 62px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-band p:last-child {
  max-width: 680px;
  color: rgba(255,255,255,.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 32px;
}

.contact-lines {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hours {
  margin-top: 28px;
  padding: 24px;
  border-radius: 18px;
  background: var(--surface-2);
}

.hours h3 {
  margin-bottom: 14px;
}

.hours dl,
.hours div {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.hours div:last-child {
  border-bottom: 0;
}

.hours dt {
  font-weight: 800;
}

.hours dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.form-row {
  margin-bottom: 18px;
}

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

label {
  display: block;
  margin-bottom: 7px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,160,95,.18);
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 20px;
  font-weight: 500;
  color: var(--muted);
}

.checkbox input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
  accent-color: var(--gold-dark);
}

.checkbox a,
.contact-lines a,
.footer a,
.legal-box a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-hint {
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
}


.map-section .section-heading {
  margin-bottom: 28px;
}

.map-placeholder {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 75% 20%, rgba(201,160,95,.25), transparent 34%),
    linear-gradient(135deg, #1a1a1d 0%, #0d0d0e 100%);
  box-shadow: var(--shadow);
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .45;
}

.map-placeholder__content {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 40px));
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding: 38px 0;
  color: #fff;
  text-align: center;
}

.map-placeholder__label {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.map-placeholder__content h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.map-placeholder__content p:not(.map-placeholder__label) {
  color: rgba(255,255,255,.78);
}

.map-placeholder .btn {
  width: fit-content;
  margin: 16px auto 0;
}

.map-link {
  display: inline-block;
  margin-top: 16px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.legal-hero {
  padding: 72px 0;
}

.legal-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header) + 20px);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.legal-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.legal-nav a:last-child {
  border-bottom: 0;
}

.legal-box {
  padding: 34px;
}

.legal-box + .legal-box {
  margin-top: 22px;
}

.legal-box h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.legal-box h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.legal-box ul,
.legal-box ol {
  margin-top: 0;
  padding-left: 20px;
}

.notice-box {
  padding: 18px;
  border: 1px solid rgba(201,160,95,.45);
  border-radius: 16px;
  background: rgba(201,160,95,.13);
}

.footer {
  padding: 58px 0 34px;
  color: rgba(255,255,255,.78);
  background: #0b0b0c;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 36px;
}

.footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.1rem;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 7px;
}

.footer__brand {
  margin-bottom: 12px;
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  font-size: .92rem;
}

.mobile-cta {
  display: none;
}

.reveal {
  transform: translateY(10px);
  opacity: 0;
  transition: transform .55s ease, opacity .55s ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transform: none; opacity: 1; transition: none; }
  .btn:hover { transform: none; }
}

@media (max-width: 980px) {
  :root { --header: 70px; }

  .topbar {
    display: none;
  }

  .navbar__inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line-light);
    border-radius: 20px;
    background: #111;
    box-shadow: var(--shadow);
  }

  .nav-open .menu {
    display: flex;
  }

  .menu a {
    display: block;
    padding: 12px;
  }

  .hero__grid,
  .quick-info__grid,
  .cards--4,
  .split,
  .split--reverse,
  .contact-grid,
  .footer__grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__content,
  .split--reverse .service-box {
    grid-column: auto;
    grid-row: auto;
  }

  .hero {
    padding-top: 60px;
  }

  .hero__media {
    max-width: 640px;
  }

  .quick-info {
    margin-top: 0;
    padding-top: 20px;
    background: var(--surface-2);
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 66px 0;
  }

  .brand span {
    font-size: .88rem;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero__actions,
  .cta-band__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .form-row--two {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .contact-form,
  .legal-box,
  .service-box,
  .card {
    padding: 22px;
    border-radius: 20px;
  }

  .hours div {
    display: block;
  }

  .hours dd {
    text-align: left;
  }

  .map-placeholder {
    min-height: 360px;
  }

  .map-placeholder__content {
    min-height: 360px;
  }

  .map-placeholder .btn {
    width: 100%;
  }

  .footer {
    padding-bottom: 88px;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    background: rgba(15,15,16,.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 14px;
    color: #111;
    background: var(--gold);
    font-weight: 900;
  }
}

.to-top-link {
  position: relative;
  z-index: 2;
  cursor: pointer;
}
