:root {
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e8e2d8;
  --paper: #faf6f1;
  --white: #ffffff;
  --brand: #a88154;
  --brand-dark: #8b5e3c;
  --gold: #d6a451;
  --green: #24473d;
  --shadow: 0 18px 50px rgba(26, 26, 26, 0.12);
  --serif: Arial, Helvetica, sans-serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #ece8e2;
  box-shadow: 0 2px 18px rgba(26, 26, 26, 0.06);
}

.brand img {
  display: block;
  width: 160px;
  height: auto;
}

/* Logo asset is white — invert for the light header */
.site-header .brand img {
  filter: invert(1);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.site-header nav a {
  position: relative;
  padding: 6px 0;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-header nav a:hover,
.site-header nav a.is-active {
  color: var(--brand);
}

.site-header nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--brand);
}

.site-header nav a,
.header-cta,
.btn,
.text-link,
.price-card a {
  text-decoration: none;
}

.header-cta,
.btn,
.lead-form button,
.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  background: var(--brand);
  color: var(--white);
}

.header-cta:hover {
  background: var(--brand-dark);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: #171717;
}

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

.hero-media {
  background: url("images/slider-banner/banner.png") center / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.48) 55%, rgba(0, 0, 0, 0.35)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 760px;
  margin: 0 auto;
  padding: 66px 0;
}

.hero-copy {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-logo {
  width: min(250px, 70vw);
  margin: 0 0 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.hero-subtext {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn.primary,
.lead-form button,
.price-card a {
  background: var(--brand);
  color: var(--white);
}

.btn.primary:hover,
.lead-form button:hover,
.price-card a:hover {
  background: var(--brand-dark);
  color: var(--white);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: var(--white);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn.outline {
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
}

.btn.outline:hover {
  background: var(--brand);
  color: var(--white);
}

.lead-card {
  padding: 30px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  scroll-margin-top: 90px;
}

.lead-card h2,
.contact-card h3 {
  margin: 0 0 10px;
  color: var(--brand);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.form-intro {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #444;
  font-size: 13px;
  font-weight: 500;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0 14px;
  border: 1px solid #ddd6cc;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.lead-form input,
.lead-form select {
  height: 46px;
}

.lead-form textarea {
  min-height: 110px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(151, 79, 12, 0.14);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.lead-form button {
  width: 100%;
  margin-top: 2px;
  font-size: 15px;
}

.privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.stats-band {
  display: none;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-cream {
  background: var(--paper);
}

.section-title-wrap {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.section-subtitle {
  margin: 10px 0 0;
  color: var(--brand);
  font-size: 16px;
  font-weight: 500;
}

.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.section-ornament::before,
.section-ornament::after {
  content: "";
  width: 56px;
  height: 1px;
  background: #d8d0c4;
}

.section-ornament span {
  width: 8px;
  height: 8px;
  background: var(--brand);
  transform: rotate(45deg);
}

.sub-heading {
  margin: 22px 0 10px;
  color: var(--brand);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

.section-copy a:not(.btn) {
  color: var(--brand);
  font-weight: 600;
}

.image-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
}

.image-caption {
  margin: 0;
  padding: 12px 16px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  text-align: center;
}

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

.feature-card {
  padding: 28px 22px;
  background: #fff;
  border: 1px solid #ece6dc;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.04);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  color: var(--brand);
  background: #f8f3ec;
  border-radius: 50%;
  font-size: 20px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.price-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid #ece6dc;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.06);
  text-align: center;
}

.price-card.featured {
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(168, 129, 84, 0.16);
}

.price-card h3 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 600;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.price-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: linear-gradient(135deg, #f3ede4, #e8dfd2);
  border: 1px solid #e5ddd2;
  border-radius: 4px;
  color: #9a8d7d;
  font-size: 14px;
  font-weight: 600;
  filter: blur(0.2px);
}

.price-card strong {
  display: block;
  font-size: 22px;
  color: var(--ink);
}

.price-card a {
  width: 100%;
  margin-top: 4px;
}

.pricing-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.pricing-highlights div {
  padding: 22px;
  background: #fff;
  border: 1px solid #ece6dc;
  border-radius: 4px;
  text-align: center;
}

.pricing-highlights strong {
  display: block;
  color: var(--brand);
  font-size: 22px;
}

.pricing-highlights span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

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

.amenity-pills span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #ece6dc;
  border-radius: 4px;
  color: #444;
  font-size: 14px;
  font-weight: 500;
}

.amenity-pills .fa {
  color: var(--brand);
}

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

.check-list li {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #ece6dc;
  border-radius: 4px;
  color: #444;
  font-weight: 500;
  font-size: 15px;
}

.map-card {
  overflow: hidden;
  height: 430px;
  border-radius: 4px;
  border: 1px solid #ece6dc;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.section-heading > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.projects-showcase {
  background: #fff;
  border-top: 1px solid var(--line);
  padding-bottom: 20px;
}

.projects-showcase .section-title-wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 20px;
  padding-top: 72px;
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1395px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) 0;
}

.project-showcase + .project-showcase {
  border-top: 1px solid #ece8e2;
}

.project-showcase-media {
  overflow: hidden;
}

.project-showcase-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.project-showcase-copy {
  display: grid;
  gap: 22px;
  max-width: 520px;
}

.project-showcase-copy h3 {
  margin: 0;
  color: #000;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.project-showcase-copy p {
  margin: 0;
  color: #6f6f6f;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.project-showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 4px 0 0;
}

.project-showcase-stats div {
  padding: 14px 0;
  border-top: 1px solid #e8e4de;
}

.project-showcase-stats dt {
  color: #9a9a9a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-showcase-stats dd {
  margin: 6px 0 0;
  color: #111;
  font-size: 18px;
  font-weight: 500;
}

.project-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid #d8d4ce;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: none;
  transition: color 0.2s ease;
}

.project-showcase-link:hover {
  color: #6f6f6f;
}

.project-showcase-link svg {
  flex: 0 0 auto;
  fill: currentColor;
}

.builder-section {
  border-top: 1px solid var(--line);
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
}

.faq-item {
  background: #fff;
  border: 1px solid #ece6dc;
  border-radius: 4px;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item summary {
  padding: 16px 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-card {
  padding: 28px;
  background: #fff;
  border: 1px solid #ece6dc;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 0;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
}

.footer-main {
  padding: 64px clamp(18px, 4vw, 58px) 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-widget h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-logo {
  display: block;
  width: min(170px, 70%);
  margin-bottom: 16px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.footer-widget p {
  margin: 0 0 14px;
  color: #b5b5b5;
  font-size: 14px;
  line-height: 1.75;
}

.footer-widget a {
  color: var(--gold);
  text-decoration: none;
}

.footer-rera {
  margin-top: 14px !important;
  color: #d6d6d6 !important;
}

.footer-links {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: block;
  padding: 8px 0;
  color: #b5b5b5;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  color: #b5b5b5;
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact .fa {
  flex: 0 0 16px;
  margin-top: 3px;
  color: var(--gold);
  font-size: 15px;
}

.footer-contact a {
  color: #b5b5b5;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-disclaimer {
  padding: 28px clamp(18px, 4vw, 58px);
  background: #111113;
  text-align: center;
}

.footer-disclaimer p {
  max-width: 1180px;
  margin: 0 auto 12px;
  color: #7d7d7d;
  font-size: 12px;
  line-height: 1.9;
}

.footer-disclaimer a {
  color: #7d7d7d;
  text-decoration: underline;
}

.footer-copyright {
  margin-bottom: 0 !important;
  color: #d6d6d6 !important;
  font-size: 16px !important;
}

.site-footer p {
  max-width: none;
  margin: 0;
  line-height: 1.6;
  text-align: inherit;
}

.site-footer a {
  color: inherit;
}

.disclaimer {
  font-size: 12px;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 25;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: var(--brand);
  box-shadow: 0 -8px 26px rgba(0, 0, 0, 0.18);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-cta a + a {
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 23, 0.72);
  backdrop-filter: blur(4px);
}

.lead-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.lead-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 37, 44, 0.08);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-close:hover {
  background: rgba(31, 37, 44, 0.14);
}

.lead-modal .lead-card {
  margin: 0;
}

body.lead-modal-open {
  overflow: hidden;
}

.lead-modal .lead-card h2 {
  color: var(--brand);
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero-content,
  .split,
  .faq-contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 48px;
  }

  .lead-card,
  .contact-card {
    max-width: 560px;
  }

  .price-grid,
  .feature-grid,
  .pricing-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .project-showcase {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 760px);
    gap: 34px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 142px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 28px, 560px);
    padding: 34px 0 44px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .offer-grid,
  .price-grid,
  .feature-grid,
  .pricing-highlights,
  .amenity-pills {
    grid-template-columns: 1fr;
  }

  .project-showcase {
    width: min(100% - 28px, 560px);
    padding: 48px 0;
    gap: 28px;
  }

  .project-showcase-copy {
    max-width: none;
  }

  .project-showcase-copy h3 {
    font-size: 36px;
  }

  .project-showcase-stats {
    grid-template-columns: 1fr;
  }

  .lead-card {
    padding: 22px;
  }

  .section {
    width: min(100% - 28px, 560px);
    padding: 58px 0;
  }

  .map-card {
    height: 320px;
  }

  .mobile-cta {
    display: grid;
  }

  .faq-contact-grid {
    gap: 28px;
  }

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

  .footer-main {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-disclaimer {
    padding-bottom: 88px;
  }

  .legal-hero {
    padding: 34px 16px 42px;
  }

  .legal-layout {
    width: calc(100% - 32px);
    padding-bottom: 48px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-card {
    padding: 22px 18px;
  }

  .legal-related {
    flex-direction: column;
  }

  .legal-related a,
  .legal-back {
    width: 100%;
    justify-content: center;
  }
}

.legal-hero {
  padding: 42px clamp(18px, 4vw, 58px) 56px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(36, 71, 61, 0.97), rgba(98, 52, 7, 0.92)),
    url("images/slider-banner/banner.png") center/cover;
}

.legal-hero__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.legal-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.legal-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.legal-breadcrumb a:hover {
  color: #fff;
}

.legal-breadcrumb span {
  opacity: 0.55;
}

.legal-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  padding-bottom: 72px;
}

.legal-sidebar {
  position: sticky;
  top: 92px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(31, 37, 44, 0.06);
}

.legal-sidebar h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc li + li {
  margin-top: 8px;
}

.legal-toc a {
  display: block;
  padding: 8px 10px;
  color: #39424c;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.legal-toc a:hover {
  color: var(--brand);
  background: var(--paper);
}

.legal-card {
  padding: clamp(28px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(31, 37, 44, 0.06);
}

.legal-card > p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
}

.legal-card > p {
  margin: 0 0 18px;
}

.legal-section {
  scroll-margin-top: 100px;
  padding-top: 8px;
}

.legal-section + .legal-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.15;
}

.legal-section h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.legal-section ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-section a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  color: var(--brand-dark);
}

.legal-callout {
  margin: 18px 0;
  padding: 16px 18px;
  color: #39424c;
  background: var(--paper);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  line-height: 1.65;
}

.legal-callout strong {
  color: var(--ink);
}

.legal-related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-related a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--brand);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.legal-related a:hover {
  color: #fff;
  background: var(--brand);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.legal-back:hover {
  background: var(--brand-dark);
  color: #fff;
}

.legal-back svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 28px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-toc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 10px;
  }
}
