:root {
  --bg: #efefe7;
  --panel: #c9c8bf;
  --white: #f7f6ef;
  --text: #111111;
  --muted: #6f6d66;
  --line: #8a877f;
  --accent: #1a1a1a;
  --radius: 28px;
  --shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;

}

body,
.site,
.site-main,
.lot-page,
.lot-hero,
.lot-hero-shell {
  background: transparent;
}

a { text-decoration: none; }
button { font: inherit; }
img, svg { max-width: 100%; height: auto; }

.lot-container {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.lot-site {
  min-height: 100vh;
}

.lot-hero-shell {
  padding: 32px;
  border: none;
  box-shadow: none;
}

.lot-hero-shell .lot-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  padding: 28px 32px 44px;
}

.lot-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lot-brand {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.lot-tabs {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.lot-tab {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 10px 4px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.lot-tab.is-active {
  color: var(--text);
  border-bottom-color: var(--text);
}

.lot-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

.lot-hero-copy {
  max-width: 900px;
  margin: 56px auto 28px;
  text-align: center;
  color: var(--text);
}

.lot-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.8;
  margin: 0 0 14px;
  color: var(--muted);
}

.lot-hero-copy h1 {
  margin: 0 0 22px 0;
  font-size: clamp(34px, 4vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
  color: var(--text);
}

.lot-subcopy {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: var(--muted);
}

.lot-panel { display: none; }
.lot-panel.is-active { display: block; }

.lot-cards {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 32px;
}

.lot-card {
  border-radius: 26px;
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow);
  position: relative;
  min-width: 0;
}

.lot-card--blue {
  background: var(--panel);
  color: var(--text);
}

.lot-card--featured {
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.lot-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.lot-card h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 24px);
  line-height: 1.2;
  color: var(--text);
}

.lot-price {
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
  overflow-wrap: anywhere;
  color: var(--text);
}

.lot-price span {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-left: 6px;
  color: var(--muted);
}

.lot-card ul {
  list-style: none;
  padding: 24px 0 0;
  margin: 0 0 28px;
  border-top: 2px solid rgba(17, 17, 17, 0.10);
}

.lot-card--blue ul {
  border-top-color: rgba(17, 17, 17, 0.10);
}

.lot-card li {
  position: relative;
  padding-left: 28px;
  margin: 0 0 18px;
  line-height: 1.45;
  color: var(--text);
}

.lot-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.lot-card--blue li::before,
.lot-card--featured li::before {
  color: var(--text);
  border: 1px solid rgba(17, 17, 17, 0.25);
}

.lot-btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 18px 22px;
  font-weight: 700;
}

.lot-btn--light {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid rgba(17, 17, 17, 0.22);
}

.lot-btn--dark {
  background: var(--accent);
  color: var(--white);
}

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

.lot-info-card,
.lot-about-box {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.05);
}

.lot-info-card {
  padding: 24px;
  min-height: 180px;
}

.lot-info-card h3,
.lot-about-box h3 {
  margin-top: 0;
  color: var(--text);
}

.lot-info-card strong {
  display: inline-block;
  margin-top: 12px;
  font-size: 28px;
}

.lot-info-card li {
color:	#6f6d66;
	line-height: 1.5;
}

.lot-about-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px;
}

.hero-subheadline {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .lot-cards,
  .lot-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .lot-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .lot-brand,
  .lot-tabs {
    text-align: center;
  }

  .lot-cta {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .lot-container { width: min(100% - 20px, 1400px); }

  .lot-hero-shell { padding: 10px 0 14px; }

  .lot-hero-shell .lot-container {
    padding: 18px 14px 24px;
    border-radius: 20px;
  }

  .lot-hero-copy { margin-top: 28px; }

  .lot-tabs { gap: 12px; }

  .lot-tab { padding: 8px 2px; }

  .lot-price span {
    display: block;
    margin: 6px 0 0;
    font-size: 16px;
  }

  .lot-badge {
    position: static;
    transform: none;
    display: inline-flex;
    margin-bottom: 18px;
  }
}


.lot-hero-copy h1 {
  margin-bottom: 32px;
  padding-bottom: 50px;
}

.lot-cards {
  margin-top: 48px;
  gap: 18px;
  align-items: start;
}

.lot-card {
  padding: 50px;
  border-radius: 22px;
}

.lot-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.lot-price {
  font-size: clamp(38px, 5vw, 54px);
  margin-bottom: 16px;
}

.lot-card ul {
  padding-top: 18px;
  margin: 0 0 20px;
}

.lot-card li {
  margin: 0 0 12px;
  line-height: 1.35;
}

.lot-btn {
  padding: 15px 18px;
}

@media (max-width: 760px) {
  .lot-cards {
    margin-top: 34px;
    gap: 14px;
  }

  .lot-card {
    padding: 20px 18px;
  }
}


.lot-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}

.lot-panel.is-active {
  display: block;
  animation: lotFadeIn .7s ease forwards;
}

.lot-panel.is-hiding {
  display: block;
  animation: lotFadeOut .7s ease forwards;
}

@keyframes lotFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lotFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

.lot-info-card,
.lot-about-box {
  background: #fffdfa;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.05);
}

.lot-info-card {
  padding: 28px;
}

.lot-info-card h3,
.lot-about-box h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lot-info-card p,
.lot-about-box p {
  color: #6f6d66;
  line-height: 1.65;
}

.lot-info-card strong {
  display: inline-block;
  margin-top: 18px;
  font-size: 34px;
  color: #111;
}

.lot-about-box {
  padding: 36px;
  max-width: 860px;
}

.lot-about-box p + p {
  margin-top: 16px;
}


/* H1 slide-in animation on page load */
.lot-hero-copy h1 {
  animation: h1SlideIn 0.8s ease-out forwards;
}

@keyframes h1SlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lot-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.lot-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lot-card p {
  min-height: 72px;
}

.lot-card ul {
  margin-top: auto;
}

@media (max-width: 900px) {
  .lot-cards {
    grid-template-columns: 1fr;
  }

  .lot-card p {
    min-height: auto;
  }
}


/* Mobile bottom Book a Call button */
@media (max-width: 760px) {
  .lot-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 18px;
    z-index: 9999;
    width: auto;
    padding: 16px 22px;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
  }

  body.lot-contact-active .lot-cta {
    display: none;
  }

  body {
    padding-bottom: 90px;
  }

  body.lot-contact-active {
    padding-bottom: 0;
  }
}

.lot-about-box p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.lot-about-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.lot-about-list li {
  margin-bottom: 0.5rem;
}