/* =====================================================================
   Lime & Lemons — Shared CSS  (ll- prefix)
   ===================================================================== */
:root {
  --ll-primary:        hsl(222, 58%, 43%);
  --ll-primary-dark:   hsl(222, 58%, 34%);
  --ll-primary-fore:   #fff;
  --ll-secondary:      hsl(44, 100%, 81%);
  --ll-secondary-dark: hsl(44, 100%, 72%);
  --ll-secondary-fore: hsl(222, 47%, 20%);
  --ll-bg:             hsl(220, 20%, 97%);
  --ll-fg:             hsl(222, 47%, 20%);
  --ll-muted:          hsl(220, 10%, 46%);
  --ll-muted-bg:       hsl(220, 14%, 92%);
  --ll-border:         hsl(220, 13%, 88%);
  --ll-radius:         0.5rem;
  --ll-radius-lg:      0.75rem;
  --ll-radius-xl:      1rem;
  --ll-radius-2xl:     1.25rem;
  --ll-shadow-md:      0 4px 16px rgba(34,58,120,.10);
  --ll-shadow-lg:      0 8px 32px rgba(34,58,120,.15);
  --ll-shadow-2xl:     0 16px 56px rgba(34,58,120,.20);
  --ll-heading:        'Playfair Display', serif;
  --ll-body:           'Inter', sans-serif;
}

/* ── Reset scoped to ll-page ── */
body.ll-page { font-family: var(--ll-body); background: var(--ll-bg); color: var(--ll-fg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.ll-page *, body.ll-page *::before, body.ll-page *::after { box-sizing: border-box; }
body.ll-page img { display: block; max-width: 100%; }
body.ll-page a { color: inherit; text-decoration: none; }

/* ── Container ── */
.ll-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px)  { .ll-container { padding: 0 3rem; } }
@media (min-width: 1024px) { .ll-container { padding: 0 5rem; } }

/* ── Animations ── */
@keyframes ll-fadeUp   { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes ll-fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes ll-slideInL { from { opacity:0; transform:translateX(-12px); } to { opacity:1; transform:none; } }
@keyframes ll-popIn    { from { opacity:0; transform:scale(.82); } to { opacity:1; transform:scale(1); } }
@keyframes ll-spin     { to { transform:rotate(360deg); } }

.ll-anim-fade-up { animation: ll-fadeUp  .6s ease both; }
.ll-anim-fade-in { animation: ll-fadeIn  .5s ease both; }
.ll-delay-1 { animation-delay: .1s; }
.ll-delay-2 { animation-delay: .2s; }
.ll-delay-3 { animation-delay: .3s; }
.ll-delay-4 { animation-delay: .4s; }
.ll-delay-5 { animation-delay: .5s; }

/* ── Navbar ── */
.ll-navbar {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ll-border);
  padding: .9rem 0;
}
.ll-navbar .ll-container { display:flex; align-items:center; justify-content:space-between; }
.ll-navbar-logo  { height:44px; object-fit:contain; }
.ll-navbar-name  { font-family:var(--ll-heading); font-size:1.2rem; font-weight:600; color:var(--ll-primary); }
.ll-navbar-location { font-size:.8rem; color:var(--ll-muted); letter-spacing:.08em; display:none; }
@media (min-width:640px) { .ll-navbar-location { display:block; } }

/* ── Hero ── */
.ll-hero { padding:7rem 0 5rem; }
@media (min-width:768px) { .ll-hero { padding:8rem 0 6rem; } }

.ll-hero-grid { display:grid; grid-template-columns:1fr; gap:3rem; align-items:start; }
@media (min-width:1024px) {
  .ll-hero-grid { grid-template-columns:1fr 1fr; gap:4rem; }
  .ll-hero-visuals { position:sticky; top:7rem; }
}

/* ── Tag pill ── */
.ll-tag-pill {
  display:inline-flex; align-items:center; gap:.5rem;
  background: hsl(44,100%,81%,.35); color:var(--ll-primary);
  padding:.35rem 1rem; border-radius:999px;
  font-size:.72rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
}
.ll-dot { width:6px; height:6px; border-radius:50%; background:var(--ll-primary); flex-shrink:0; }

/* ── Headings ── */
body.ll-page h1 {
  font-family: var(--ll-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1.18; color: var(--ll-fg);
}
body.ll-page h1 .ll-accent { color: var(--ll-primary); }

.ll-hero-lead { font-size:1.05rem; color:var(--ll-muted); max-width:480px; line-height:1.65; }

/* ── Stack helpers ── */
.ll-stack-8 { display:flex; flex-direction:column; gap:2rem; }
.ll-stack-4 { display:flex; flex-direction:column; gap:1rem; }
.ll-stack-3 { display:flex; flex-direction:column; gap:.75rem; }

/* ── USP list ── */
.ll-usp-list { display:flex; flex-direction:column; gap:.65rem; list-style:none; padding:0; margin:0; }
.ll-usp-item { animation: ll-slideInL .35s ease both; }
.ll-usp-item:nth-child(1) { animation-delay:.05s; }
.ll-usp-item:nth-child(2) { animation-delay:.12s; }
.ll-usp-item:nth-child(3) { animation-delay:.19s; }
.ll-usp-item:nth-child(4) { animation-delay:.26s; }
.ll-usp-item:nth-child(5) { animation-delay:.33s; }
.ll-usp-item:nth-child(6) { animation-delay:.40s; }

.ll-usp-main { display:flex; align-items:flex-start; gap:.75rem; }
.ll-usp-icon {
  width:26px; height:26px; border-radius:6px;
  background: hsl(44,100%,81%,.5);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-top:1px;
}
.ll-usp-icon svg { width:13px; height:13px; stroke:var(--ll-primary); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.ll-usp-label { font-size:.875rem; font-weight:600; color:var(--ll-fg); line-height:1.45; }

.ll-usp-sub { margin-top:.25rem; margin-left:2.35rem; display:flex; flex-direction:column; gap:.2rem; }
.ll-usp-sub-item { display:flex; align-items:flex-start; gap:.5rem; font-size:.82rem; color:var(--ll-muted); line-height:1.45; }
.ll-usp-sub-dot { width:6px; height:6px; border-radius:50%; background:var(--ll-secondary); flex-shrink:0; margin-top:.42em; }

/* ── Visuals ── */
.ll-visuals-wrap { position:relative; display:flex; flex-direction:column; gap:1.5rem; }

.ll-building-img-wrap { position:relative; border-radius:var(--ll-radius-2xl); overflow:hidden; box-shadow:var(--ll-shadow-2xl); animation:ll-fadeUp .7s .15s ease both; }
.ll-building-img { width:100%; height:380px; object-fit:cover; object-position:center; display:block; }
@media (min-width:768px) { .ll-building-img { height:460px; } }
.ll-img-placeholder { width:100%; height:380px; background:var(--ll-muted-bg); display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--ll-muted); }

.ll-building-caption {
  position:absolute; bottom:0; left:0; right:0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 100%);
  padding:2rem 1.5rem 1.2rem;
}
.ll-building-caption strong { display:block; color:#fff; font-family:var(--ll-heading); font-size:1.1rem; font-weight:500; }
.ll-building-caption span   { color:rgba(255,255,255,.7); font-size:.82rem; }

.ll-brochure-img-wrap { animation: ll-fadeUp .7s .35s ease both; }
.ll-brochure-img { width:75%; margin:0 auto; border-radius:var(--ll-radius-xl); object-fit:contain; }

.ll-price-badge {
  position:absolute; top:-10px; right:-10px;
  background:var(--ll-secondary); color:var(--ll-secondary-fore);
  padding:.55rem 1.1rem; border-radius:999px;
  font-weight:700; font-size:.82rem; box-shadow:var(--ll-shadow-md);
  z-index:10; animation:ll-popIn .45s .55s ease both; white-space:nowrap;
}
@media (min-width:768px) { .ll-price-badge { top:14px; right:-14px; } }

/* ── Form card ── */
.ll-form-card {
  background: var(--ll-primary); border-radius:var(--ll-radius-2xl);
  padding:1.8rem; box-shadow:var(--ll-shadow-2xl);
  animation: ll-fadeUp .6s .5s ease both;
}
@media (min-width:640px) { .ll-form-card { padding:2.2rem; } }

.ll-form-title { font-family:var(--ll-heading); font-size:1.25rem; font-weight:600; color:#fff; margin-bottom:.3rem; }
.ll-form-sub   { font-size:.82rem; color:rgba(255,255,255,.7); margin-bottom:1.25rem; }

.ll-form-row { display:grid; grid-template-columns:1fr; gap:.75rem; }
@media (min-width:480px) { .ll-form-row { grid-template-columns:1fr 1fr; } }

.ll-field { display:flex; flex-direction:column; gap:.35rem; }
.ll-field label { font-size:.72rem; font-weight:500; color:rgba(255,255,255,.88); letter-spacing:.02em; }
.ll-field label .ll-req { color:var(--ll-secondary); }

.ll-field input,
.ll-field textarea {
  background:rgba(255,255,255,.96); border:none; border-radius:var(--ll-radius);
  padding:.6rem .85rem; font-family:var(--ll-body); font-size:.88rem; color:var(--ll-fg);
  outline:none; transition:box-shadow .2s; width:100%;
}
.ll-field input::placeholder,
.ll-field textarea::placeholder { color:hsl(220,10%,60%); }
.ll-field input:focus,
.ll-field textarea:focus { box-shadow:0 0 0 2px var(--ll-secondary); }
.ll-field textarea { resize:none; min-height:82px; }

/* Checkboxes */
.ll-check-group { display:flex; flex-direction:column; gap:.6rem; }
.ll-check-row   { display:flex; align-items:flex-start; gap:.65rem; }
.ll-check-row input[type="checkbox"] {
  appearance:none; -webkit-appearance:none;
  width:16px; height:16px; border:1.5px solid rgba(255,255,255,.45);
  border-radius:4px; background:transparent; cursor:pointer; flex-shrink:0; margin-top:2px;
  position:relative; transition:background .15s, border-color .15s;
}
.ll-check-row input[type="checkbox"]:checked { background:var(--ll-secondary); border-color:var(--ll-secondary); }
.ll-check-row input[type="checkbox"]:checked::after {
  content:''; position:absolute; left:4px; top:1px; width:5px; height:9px;
  border:2px solid var(--ll-secondary-fore); border-top:none; border-left:none; transform:rotate(45deg);
}
.ll-check-row label { font-size:.78rem; color:rgba(255,255,255,.8); line-height:1.5; cursor:pointer; }
.ll-check-row label .ll-req { color:var(--ll-secondary); }
.ll-check-row a { text-decoration:underline; text-underline-offset:2px; }

/* Submit */
.ll-btn-submit {
  display:flex; align-items:center; justify-content:center; gap:.5rem;
  width:100%; padding:.75rem;
  background:var(--ll-secondary); color:var(--ll-secondary-fore);
  border:none; border-radius:var(--ll-radius); font-family:var(--ll-body);
  font-size:.9rem; font-weight:700; cursor:pointer; margin-top:.75rem;
  transition:background .2s, transform .15s, box-shadow .2s; letter-spacing:.01em;
}
.ll-btn-submit:hover:not(:disabled) { background:var(--ll-secondary-dark); transform:translateY(-1px); box-shadow:0 6px 20px rgba(34,58,120,.18); }
.ll-btn-submit:disabled { opacity:.55; cursor:not-allowed; }
.ll-btn-submit svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.ll-spinner { width:16px; height:16px; border:2px solid rgba(34,58,120,.25); border-top-color:var(--ll-secondary-fore); border-radius:50%; animation:ll-spin .7s linear infinite; }

/* Success */
.ll-form-success { display:none; flex-direction:column; align-items:center; justify-content:center; padding:3rem 1rem; text-align:center; }
.ll-form-success.visible { display:flex; animation:ll-fadeIn .4s ease; }
.ll-success-icon { width:64px; height:64px; border-radius:50%; background:var(--ll-secondary); display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem; }
.ll-success-icon svg { width:30px; height:30px; stroke:var(--ll-primary); fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.ll-success-title { font-family:var(--ll-heading); font-size:1.25rem; font-weight:600; color:#fff; margin-bottom:.4rem; }
.ll-success-msg   { font-size:.85rem; color:rgba(255,255,255,.7); }

/* ── Footer ── */
.ll-footer { border-top:1px solid var(--ll-border); padding:2rem 0; margin-top:4rem; }
.ll-footer .ll-container { display:flex; flex-direction:column; align-items:center; gap:.5rem; text-align:center; }
@media (min-width:640px) { .ll-footer .ll-container { flex-direction:row; justify-content:space-between; text-align:left; } }
.ll-footer p { font-size:.75rem; color:var(--ll-muted); }

/* ── Full-page reset ── */
body.ll-page { margin:0!important; padding:0!important; overflow-x:hidden; }
body.ll-page #ll-main { margin:0!important; padding:0!important; max-width:none!important; width:100%!important; }

/* ── Navbar phone button ──────────────────────────────────── */
.ll-navbar .ll-container { justify-content: space-between; }
.ll-navbar-right { display: flex; align-items: center; gap: 1rem; }
.ll-navbar-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--ll-primary); color: #fff !important;
  padding: .4rem .95rem; border-radius: 999px;
  font-size: .8rem; font-weight: 600;
  transition: background .2s; white-space: nowrap; text-decoration: none;
}
.ll-navbar-phone:hover { background: var(--ll-primary-dark); }
.ll-navbar-phone svg {
  width: 13px; height: 13px; stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

/* ── Right column flex ────────────────────────────────────── */
.ll-hero-visuals { display: flex; flex-direction: column; gap: 1.25rem; }

/* ── Slider ───────────────────────────────────────────────── */
.ll-slider { position: relative; }
.ll-slider-main {
  position: relative; border-radius: var(--ll-radius-2xl);
  overflow: hidden; box-shadow: var(--ll-shadow-2xl);
  background: var(--ll-muted-bg); aspect-ratio: 4/3;
  animation: ll-fadeUp .7s .15s ease both;
}
.ll-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease; pointer-events: none; }
.ll-slide--active { opacity: 1; pointer-events: auto; }
.ll-slide-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ll-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--ll-shadow-md); transition: background .15s;
}
.ll-slider-arrow:hover { background: #fff; }
.ll-slider-prev { left: 10px; }
.ll-slider-next { right: 10px; }
.ll-slider-arrow svg {
  width: 16px; height: 16px; stroke: var(--ll-primary);
  fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

.ll-slider-thumbs {
  display: flex; gap: .5rem; margin-top: .6rem;
  overflow-x: auto; scrollbar-width: none;
}
.ll-slider-thumbs::-webkit-scrollbar { display: none; }
.ll-thumb {
  flex-shrink: 0; width: 64px; height: 48px;
  border-radius: var(--ll-radius); overflow: hidden;
  border: 2.5px solid transparent; cursor: pointer;
  background: none; padding: 0; opacity: .6; transition: all .2s;
}
.ll-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ll-thumb--active, .ll-thumb:hover { border-color: var(--ll-primary); opacity: 1; }

/* ── Calculator ───────────────────────────────────────────── */
.ll-calc {
  background: #fff;
  border: 1px solid var(--ll-border);
  border-radius: var(--ll-radius-xl);
  padding: .9rem 1rem .8rem;
  box-shadow: var(--ll-shadow-md);
}
.ll-calc-header {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: .75rem; margin-bottom: .6rem;
}
.ll-calc-label {
  font-size: .58rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ll-muted);
}
.ll-calc-amount {
  font-family: var(--ll-heading); font-size: 1.2rem; font-weight: 700;
  color: var(--ll-primary); white-space: nowrap;
}
.ll-calc-slider-wrap { margin-bottom: .6rem; }
.ll-calc-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 3px; border-radius: 2px;
  background: var(--ll-muted-bg); outline: none; cursor: pointer; margin-bottom: .25rem;
}
.ll-calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 15px; height: 15px; border-radius: 50%;
  background: var(--ll-primary); cursor: pointer;
  box-shadow: 0 1px 4px rgba(34,58,120,.3);
}
.ll-calc-range::-moz-range-thumb {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--ll-primary); border: none; cursor: pointer;
}
.ll-calc-range-labels {
  display: flex; justify-content: space-between;
  font-size: .6rem; color: var(--ll-muted);
}
.ll-calc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .35rem; margin-bottom: .5rem;
}
.ll-calc-card {
  background: var(--ll-bg);
  border: 1px solid var(--ll-border);
  border-radius: var(--ll-radius);
  padding: .5rem .65rem;
}
.ll-calc-card--accent {
  background: var(--ll-secondary);
  border-color: var(--ll-secondary-dark);
}
.ll-calc-card-label {
  font-size: .55rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ll-muted); margin-bottom: .15rem;
}
.ll-calc-card--accent .ll-calc-card-label { color: hsl(222,47%,30%); }
.ll-calc-card-value {
  font-family: var(--ll-heading); font-size: 1.1rem; font-weight: 700;
  color: var(--ll-fg); line-height: 1.1;
}
.ll-calc-card--accent .ll-calc-card-value { color: hsl(222,47%,20%); }
.ll-calc-card-sub { font-size: .6rem; color: var(--ll-muted); margin-top: .1rem; }
.ll-calc-card--accent .ll-calc-card-sub { color: hsl(222,47%,35%); }
.ll-calc-disclaimer {
  font-size: .6rem; color: var(--ll-muted);
  line-height: 1.45; border-top: 1px solid var(--ll-border);
  padding-top: .5rem; margin-top: .1rem;
}
