/* =====================================================================
   LAMPSI POOLS — ROYAL LUXURY DESIGN SYSTEM
   ===================================================================== */

:root {
  /* Color tokens */
  --lp-navy: #0A1930;
  --lp-navy-deep: #061028;
  --lp-gold: #8B6F3E;
  --lp-gold-deep: #6E5630;
  --lp-gold-light: #C9A961;
  --lp-gold-soft: #D4B988;
  --lp-gold-wash: #E8D9B5;
  --lp-cream: #FAF6EC;
  --lp-cream-warm: #FFFEFA;
  --lp-paper: #F7F3EA;
  --lp-ink: #2C2419;
  --lp-ink-soft: #5A4E38;
  --lp-border: #D4B988;
  --lp-border-light: #E8D9B5;
  --lp-bg: #FFFEFA;

  /* Type scale */
  --lp-font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --lp-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --lp-font-body: Georgia, "Times New Roman", serif;

  /* Radii and spacing */
  --lp-radius: 4px;
  --lp-radius-lg: 8px;
  --lp-max-width: 1200px;
  --lp-narrow: 860px;
}

/* =====================================================================
   RESET
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--lp-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--lp-ink);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lp-navy); text-decoration: none; transition: color .15s; }
a:hover { color: var(--lp-gold); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-family: var(--lp-font-serif); font-weight: 500; line-height: 1.2; margin: 0 0 .6em; color: var(--lp-navy); }
p { margin: 0 0 1em; }
ul, ol { padding: 0; margin: 0; list-style: none; }

/* RTL support */
body.rtl { direction: rtl; text-align: right; }
body.rtl .lp-nav,
body.rtl .lp-footer-cols { direction: rtl; }

/* =====================================================================
   HEADER
   ===================================================================== */
.lp-header {
  background: #fff;
  border-bottom: 1px solid var(--lp-border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-header-inner {
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-navy);
  text-decoration: none;
}
.lp-logo:hover { color: var(--lp-gold); }
.lp-logo-mark {
  display: inline-flex;
  color: var(--lp-gold);
}
.lp-logo-mark svg { width: 32px; height: auto; }
.lp-logo-text {
  font-family: var(--lp-font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .5px;
}
.lp-nav {
  display: flex;
  gap: 28px;
  margin-inline-start: auto;
  align-items: center;
}
.lp-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px;
  color: var(--lp-ink);
}
.lp-nav-cta {
  background: var(--lp-navy);
  color: var(--lp-cream) !important;
  padding: 10px 20px;
  border-radius: var(--lp-radius);
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  transition: background .2s;
}
.lp-nav-cta:hover {
  background: var(--lp-gold);
  color: #fff !important;
}
.lp-lang-switch {
  position: relative;
  margin-inline-start: 8px;
}
.lp-lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--lp-border);
  color: var(--lp-navy);
  padding: 8px 12px;
  font-size: 13px;
  border-radius: var(--lp-radius);
}
.lp-lang-toggle:hover { border-color: var(--lp-gold); color: var(--lp-gold); }
.lp-lang-menu {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  min-width: 160px;
  max-height: 380px;
  overflow-y: auto;
  padding: 4px 0;
  box-shadow: 0 8px 24px rgba(10, 25, 48, 0.12);
  display: none;
  z-index: 110;
}
.lp-lang-menu.open { display: block; }
.lp-lang-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--lp-ink);
}
.lp-lang-menu li a:hover { background: var(--lp-cream); color: var(--lp-gold); }
.lp-lang-menu li[aria-selected="true"] a {
  background: var(--lp-cream);
  color: var(--lp-gold);
  font-weight: 600;
}

/* =====================================================================
   HERO (homepage)
   ===================================================================== */
.lp-hero {
  position: relative;
  min-height: 560px;
  background: var(--lp-navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-cream);
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/pool-photos/hero.jpg");
  background-size: cover;
  background-position: center 35%;
}
.lp-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,25,48,0.55) 0%, rgba(10,25,48,0.35) 40%, rgba(10,25,48,0.75) 100%);
}
.lp-hero-inner {
  position: relative;
  text-align: center;
  padding: 80px 24px;
  max-width: 860px;
  width: 100%;
}
.lp-hero-crown {
  color: var(--lp-gold-light);
  margin-bottom: 18px;
}
.lp-hero-crown svg { width: 54px; height: auto; margin: 0 auto; }
.lp-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--lp-gold-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-hero h1 {
  font-family: var(--lp-font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -.5px;
}
.lp-hero h1 em {
  color: var(--lp-gold-light);
  font-style: italic;
  font-weight: 400;
}
.lp-hero-sub {
  font-family: var(--lp-font-body);
  font-size: 18px;
  color: rgba(250, 246, 236, 0.85);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-style: italic;
}
.lp-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--lp-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--lp-font-sans);
}
.lp-btn-primary {
  background: var(--lp-gold);
  color: #fff;
}
.lp-btn-primary:hover {
  background: var(--lp-gold-deep);
  color: #fff;
  transform: translateY(-1px);
}
.lp-btn-ghost {
  background: transparent;
  color: var(--lp-cream);
  border: 1.5px solid var(--lp-gold-light);
}
.lp-btn-ghost:hover {
  background: var(--lp-gold-light);
  color: var(--lp-navy);
}
.lp-btn-dark {
  background: var(--lp-navy);
  color: var(--lp-cream);
}
.lp-btn-dark:hover {
  background: var(--lp-navy-deep);
  color: #fff;
}

/* =====================================================================
   SECTION (generic vertical rhythm + titles)
   ===================================================================== */
.lp-section {
  padding: 80px 24px;
  background: var(--lp-bg);
}
.lp-section--paper { background: var(--lp-paper); }
.lp-section--navy  { background: var(--lp-navy); color: var(--lp-cream); }
.lp-section--navy h2, .lp-section--navy h3 { color: var(--lp-cream); }
.lp-section-inner {
  max-width: var(--lp-max-width);
  margin: 0 auto;
}
.lp-section-inner--narrow { max-width: var(--lp-narrow); }

.lp-section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--lp-gold);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 14px;
}
.lp-section-title {
  font-family: var(--lp-font-serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  color: var(--lp-navy);
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -.3px;
}
.lp-section-title em {
  color: var(--lp-gold);
  font-style: italic;
  font-weight: 400;
}
.lp-section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 40px;
  max-width: 280px;
}
.lp-section-rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lp-gold-light), transparent);
}
.lp-section-rule-dot {
  width: 6px;
  height: 6px;
  background: var(--lp-gold);
  transform: rotate(45deg);
}
.lp-section-sub {
  text-align: center;
  font-family: var(--lp-font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--lp-ink-soft);
  max-width: 620px;
  margin: -20px auto 40px;
  line-height: 1.6;
}

/* =====================================================================
   PRICING CARDS — the design we locked in
   ===================================================================== */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 820px) {
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

.lp-price-card {
  background: var(--lp-cream-warm);
  border: 1px solid var(--lp-gold-soft);
  border-radius: var(--lp-radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10, 25, 48, 0.04);
}
.lp-price-card.featured {
  border: 1.5px solid var(--lp-gold);
  box-shadow: 0 0 0 3px rgba(139, 111, 62, 0.08), 0 4px 16px rgba(10, 25, 48, 0.08);
  transform: translateY(-4px);
}

/* Corner ornaments */
.lp-price-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  z-index: 2;
}
.lp-price-corner-tl { top: -1px; left: -1px; border-top: 1.5px solid var(--lp-gold); border-left: 1.5px solid var(--lp-gold); }
.lp-price-corner-tr { top: -1px; right: -1px; border-top: 1.5px solid var(--lp-gold); border-right: 1.5px solid var(--lp-gold); }
.lp-price-corner-bl { bottom: -1px; left: -1px; border-bottom: 1.5px solid var(--lp-gold); border-left: 1.5px solid var(--lp-gold); }
.lp-price-corner-br { bottom: -1px; right: -1px; border-bottom: 1.5px solid var(--lp-gold); border-right: 1.5px solid var(--lp-gold); }

.lp-price-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--lp-navy);
}
.lp-price-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-price-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 25, 48, 0.35));
  pointer-events: none;
}

.lp-price-popular {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-navy);
  color: var(--lp-gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  border: 1px solid var(--lp-gold);
  white-space: nowrap;
  z-index: 3;
  text-transform: uppercase;
}
body.rtl .lp-price-popular { left: auto; right: 50%; transform: translateX(50%); }

.lp-price-body {
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lp-tier-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 10px;
}
.lp-tier-rule-line {
  flex: 0 1 28px;
  height: 1px;
  background: var(--lp-gold-soft);
}
.lp-tier-rule-star {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  background: var(--lp-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.lp-price-tier-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--lp-gold);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.lp-price-amount {
  font-family: var(--lp-font-serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--lp-navy);
  text-align: center;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0 0 4px;
}
.lp-price-per {
  font-family: var(--lp-font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--lp-gold);
  text-align: center;
  letter-spacing: .3px;
  margin: 0 0 26px;
}

.lp-price-features {
  border-top: 1px solid var(--lp-border-light);
  border-bottom: 1px solid var(--lp-border-light);
  padding: 18px 0;
  margin: 0 0 24px;
  flex: 1;
  position: relative;
}
.lp-price-features::before,
.lp-price-features::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--lp-gold);
  transform: translateX(-50%) rotate(45deg);
}
.lp-price-features::before { top: -4px; }
.lp-price-features::after  { bottom: -4px; }
.lp-price-features li {
  font-family: var(--lp-font-body);
  font-size: 14px;
  color: var(--lp-ink);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
body.rtl .lp-price-features li { flex-direction: row-reverse; }
.lp-price-features .lp-fleur {
  flex-shrink: 0;
  margin-top: 5px;
  color: var(--lp-gold);
}

.lp-price-btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-family: var(--lp-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: var(--lp-radius);
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.lp-price-btn-dark {
  background: var(--lp-navy);
  color: var(--lp-cream) !important;
  border-color: var(--lp-navy);
}
.lp-price-btn-dark:hover {
  background: var(--lp-navy-deep);
  color: #fff !important;
}
.lp-price-btn-gold {
  background: var(--lp-gold);
  color: var(--lp-cream-warm) !important;
  border-color: var(--lp-gold);
}
.lp-price-btn-gold:hover {
  background: var(--lp-gold-deep);
}

/* Crest below pricing */
.lp-crest {
  text-align: center;
  margin: 44px 0 0;
  font-family: var(--lp-font-body);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--lp-gold);
}

/* =====================================================================
   INSTANT BOOK FORM (homepage and /book/)
   ===================================================================== */
.lp-book-form {
  background: var(--lp-cream-warm);
  border: 1px solid var(--lp-gold-soft);
  border-radius: var(--lp-radius-lg);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 4px 20px rgba(10, 25, 48, 0.06);
}
.lp-book-form .lp-price-corner {
  position: absolute;
}
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.lp-form-row--single { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .lp-form-row { grid-template-columns: 1fr; }
}
.lp-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 6px;
}
.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lp-border);
  background: #fff;
  border-radius: var(--lp-radius);
  font-size: 15px;
  font-family: var(--lp-font-sans);
  color: var(--lp-ink);
  transition: border-color .15s;
}
.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
  outline: none;
  border-color: var(--lp-gold);
}
.lp-field textarea { min-height: 100px; resize: vertical; }

.lp-form-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--lp-gold);
  color: #fff;
  border: none;
  border-radius: var(--lp-radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.lp-form-submit:hover { background: var(--lp-gold-deep); }
.lp-form-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* =====================================================================
   TRUST STRIP / FEATURES
   ===================================================================== */
.lp-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 700px) { .lp-trust { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }
.lp-trust-item {
  padding: 20px 12px;
}
.lp-trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--lp-gold);
}
.lp-trust-title {
  font-family: var(--lp-font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--lp-navy);
  margin: 0 0 6px;
}
.lp-trust-desc {
  font-size: 14px;
  color: var(--lp-ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* =====================================================================
   SERVICES GRID
   ===================================================================== */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 820px) { .lp-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lp-services-grid { grid-template-columns: 1fr; } }
.lp-service-card {
  display: block;
  background: #fff;
  border: 1px solid var(--lp-border-light);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--lp-ink);
  transition: all .2s;
}
.lp-service-card:hover {
  border-color: var(--lp-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 25, 48, 0.08);
}
.lp-service-card h3 {
  font-size: 18px;
  color: var(--lp-navy);
  margin: 0 0 8px;
}
.lp-service-card p {
  font-size: 14px;
  color: var(--lp-ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* =====================================================================
   CITY GRID
   ===================================================================== */
.lp-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 820px) { .lp-cities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .lp-cities-grid { grid-template-columns: repeat(2, 1fr); } }
.lp-city-link {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--lp-border-light);
  border-radius: var(--lp-radius);
  text-align: center;
  font-size: 14px;
  color: var(--lp-ink);
  text-decoration: none;
  transition: all .15s;
}
.lp-city-link:hover {
  border-color: var(--lp-gold);
  color: var(--lp-gold);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.lp-footer {
  background: var(--lp-navy);
  color: var(--lp-cream);
  padding: 60px 24px 0;
}
.lp-footer-inner {
  max-width: var(--lp-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 50px;
}
@media (max-width: 820px) { .lp-footer-inner { grid-template-columns: 1fr; gap: 40px; } }
.lp-footer-brand p { margin: 0 0 6px; }
.lp-footer-mark {
  color: var(--lp-gold-light);
  margin-bottom: 14px;
}
.lp-footer-mark svg { width: 42px; height: auto; }
.lp-footer-name {
  font-family: var(--lp-font-serif);
  font-size: 22px;
  color: var(--lp-cream);
}
.lp-footer-crest {
  font-family: var(--lp-font-body);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--lp-gold-light);
}
.lp-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 600px) { .lp-footer-cols { grid-template-columns: 1fr 1fr; gap: 30px 20px; } }
.lp-footer-col h4 {
  font-family: var(--lp-font-serif);
  font-size: 14px;
  color: var(--lp-gold-light);
  margin: 0 0 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lp-footer-col ul li {
  margin-bottom: 8px;
}
.lp-footer-col a {
  color: rgba(250, 246, 236, 0.75);
  font-size: 14px;
  transition: color .15s;
}
.lp-footer-col a:hover { color: var(--lp-gold-light); }
.lp-footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(250, 246, 236, 0.5);
}

/* =====================================================================
   GENERIC CONTENT PAGES (about, privacy, terms)
   ===================================================================== */
.lp-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px;
}
.lp-article h1 {
  font-family: var(--lp-font-serif);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--lp-navy);
  text-align: center;
  margin: 0 0 40px;
}
.lp-article h2 {
  font-size: 24px;
  color: var(--lp-navy);
  margin: 40px 0 12px;
}
.lp-article p {
  font-family: var(--lp-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--lp-ink);
}
.lp-article ul {
  list-style: disc;
  padding-inline-start: 24px;
  margin: 12px 0 20px;
}
.lp-article ul li {
  font-family: var(--lp-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--lp-ink);
  margin-bottom: 6px;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
  text-align: left;
}
@media (max-width: 820px) { .lp-testimonials-grid { grid-template-columns: 1fr; } }
.lp-testimonial {
  background: var(--lp-cream-warm);
  padding: 24px;
  border: 1px solid var(--lp-gold-soft);
  border-radius: var(--lp-radius);
  margin: 0;
}
.lp-testimonial p {
  font-style: italic;
  font-family: var(--lp-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-ink);
  margin: 0 0 12px;
}
.lp-testimonial footer {
  color: var(--lp-gold);
  font-size: 13px;
  letter-spacing: 1px;
}

/* =====================================================================
   UTILITIES
   ===================================================================== */
.lp-fleur { color: var(--lp-gold); }
.lp-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.lp-text-center { text-align: center; }

/* =====================================================================
   404 / ERROR
   ===================================================================== */
.lp-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}
.lp-404-code {
  font-family: var(--lp-font-serif);
  font-size: 120px;
  font-weight: 500;
  color: var(--lp-gold);
  margin: 0;
  line-height: 1;
}
.lp-404-title {
  font-family: var(--lp-font-serif);
  font-size: 32px;
  color: var(--lp-navy);
  margin: 20px 0 16px;
}
.lp-404-desc {
  color: var(--lp-ink-soft);
  max-width: 400px;
  margin: 0 0 32px;
  line-height: 1.6;
}
