/* Self-hosted fonts — Tenor Sans (display) + Manrope (body). Latin-subset woff2 in /fonts/.
   Tenor Sans is single-weight (400); display headings are kept at 400 (no faux-bold). */
@font-face { font-family: 'Tenor Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/tenorsans-400.woff2) format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 300; font-display: swap; src: url(/fonts/manrope-300.woff2) format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/manrope-400.woff2) format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 500; font-display: swap; src: url(/fonts/manrope-500.woff2) format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 600; font-display: swap; src: url(/fonts/manrope-600.woff2) format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 700; font-display: swap; src: url(/fonts/manrope-700.woff2) format('woff2'); }

/* ==========================================================================
   Casanovas Real Estate — Design System
   Brand-led palette: primary #14233A (AA on cream), primary-dark #0C1626 (AAA).
   Replace primary swatches if shifting aesthetic; keep contrast ratios.
   ========================================================================== */

:root {
  /* Palette — Casanovas: discreet Ibiza luxury (navy / bone / brass) */
  --primary: #14233A;          /* ink navy — ~12:1 on bone */
  --primary-dark: #0C1626;     /* near-black navy for headings */
  --primary-surface: #E6DECF;  /* sand — tinted panel background */

  /* Neutral system (names kept; values reskinned to warm bone + slate) */
  --cream: #F4F0E9;            /* bone — light sections */
  --cream-dark: #E6DFD2;       /* bone border / dimmed */
  --linen: #FAF8F3;            /* page background */
  --earth: #14233A;            /* deep navy — body text + dark sections */
  --earth-mid: #34465B;        /* muted slate-navy — secondary text */
  /* Two-token stone — AA on bone (stone) vs AA on navy (stone-light). */
  --stone: #5B6675;            /* 5.6:1 on bone — captions/meta on light */
  --stone-light: #BFC6CF;      /* AA on navy — footer/hint copy on dark sections */
  --white: #FFFFFF;

  /* Accent — restrained brass (hairline rules, ref numbers, badges, outlines) */
  --accent: #8A6D2E;           /* brass — AA on bone (4.7:1) for small text/links */
  --accent-dark: #6E5623;      /* deeper brass — hover/active (AAA on bone) */
  --accent-on-dark: #C9A85F;   /* lighter brass — eyebrows/accents on navy */

  /* Typography — change per aesthetic direction (NEVER Inter/Roboto/Arial) */
  --font-display: 'Tenor Sans', 'Georgia', serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;

  /* Sizes */
  --container: 1120px;
  --container-narrow: 720px;
  --radius: 6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 36, 24, 0.08);
  --shadow-md: 0 4px 12px rgba(44, 36, 24, 0.1);
  --shadow-lg: 0 8px 24px rgba(44, 36, 24, 0.12);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--earth);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--earth);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { padding: 5rem 0; background: var(--cream); }
.section-dark { padding: 5rem 0; background: var(--earth); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--stone); font-size: 1.1rem; margin-top: 0.5rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500; font-size: 0.95rem;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover {
  background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white);
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}

.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); }

.btn-ghost { background: transparent; color: var(--earth); border-color: var(--stone-light); }
.btn-ghost:hover { border-color: var(--earth); color: var(--earth); }

.btn-whatsapp { background: #075E54; color: #fff; border-color: #075E54; }  /* WhatsApp accessible dark teal — white text passes WCAG AA (7.5:1); brand-compliant variant of the iconic green */
.btn-whatsapp:hover {
  background: #20BD5A; border-color: #20BD5A; color: #fff;
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* Header & Nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--earth); text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
}

.site-logo:hover { color: var(--primary-dark); }

/* Icon system — sprite referenced via <use>, recoloured via currentColor.
   Swap #brand in images/icons.svg per client; add utility icons at the same
   24-grid / 1.75-stroke standard (design_audit.py checks this cohesion). */
.logo-mark { width: 26px; height: 26px; color: var(--primary); flex: 0 0 auto; }
.ico { width: 1.4rem; height: 1.4rem; color: var(--primary); flex: 0 0 auto; vertical-align: middle; }
.ico-sm { width: 1rem; height: 1rem; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }

.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--earth-mid); text-decoration: none;
  position: relative; transition: color 0.2s;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--primary-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-links .nav-cta {
  padding: 0.5rem 1.2rem;
  background: var(--accent); color: var(--white);
  border-radius: var(--radius); font-weight: 600;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--accent-dark); color: var(--white); }

/* Language switcher — 6-language <details> dropdown (no JS; keyboard-native) */
.lang-switch details { position: relative; }
.lang-switch summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
  min-height: 44px; padding: 0 6px;
  font-size: 0.82rem; letter-spacing: 0.08em; color: var(--earth-mid);
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary::marker { content: ""; }
.lang-switch summary:hover { color: var(--primary-dark); }
.lang-switch summary svg { transition: transform 0.2s ease; opacity: 0.65; }
.lang-switch details[open] summary svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; margin: 0; padding: 6px;
  list-style: none; background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 78px; z-index: 60;
}
.lang-menu .lang-opt {
  display: flex; align-items: center; min-height: 44px; padding: 6px 16px; border-radius: 4px;
  text-decoration: none; color: var(--earth); font-size: 0.82rem; letter-spacing: 0.06em;
}
.lang-menu .lang-opt::after { display: none; }
.lang-menu .lang-opt:hover { background: var(--linen); color: var(--primary-dark); }
.lang-menu .lang-opt.is-active { color: var(--accent); font-weight: 600; }
@media (max-width: 768px) {
  .lang-switch { align-self: center; }
  .lang-switch summary { justify-content: center; }
  .lang-menu { position: static; box-shadow: none; border: none; padding: 6px 0 0; min-width: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
  .lang-menu .lang-opt { min-height: 44px; padding: 6px 14px; border: 1px solid var(--cream-dark); }
}

/* Hero */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: var(--earth);
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44, 36, 24, 0.3) 0%, rgba(44, 36, 24, 0.6) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 2rem;
}

.hero-content h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--cream-dark);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem; line-height: 1.6;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Editorial accents — eyebrow, olive rule */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary-dark);
  position: relative; padding: 0 1.4rem;
}
.eyebrow::before, .eyebrow::after {
  content: ''; position: absolute; top: 50%;
  width: 0.9rem; height: 1px; background: var(--primary);
}
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }

.olive-rule {
  display: block; width: 72px; height: 1px;
  background: var(--primary); margin: 1.5rem auto 0;
  position: relative;
}
.olive-rule::after {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
}

/* Footer */
.site-footer {
  background: var(--earth);
  color: var(--stone-light);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--earth-mid);
  padding-top: 1.5rem; margin-top: 2rem;
  font-size: 0.8rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}

.footer-bottom a { color: var(--stone-light); }
.footer-bottom a:hover { color: var(--cream); }

/* Honeypot — invisible to humans, auto-filled by bots */
.honeypot-field {
  position: absolute;
  left: -10000px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Forms */
.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }

.form-group label {
  font-size: 0.85rem; font-weight: 500;
  color: var(--earth-mid);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--earth);
  background: var(--linen);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 35, 58, 0.12);
}

.form-error {
  background: #FEF2F2; color: #B91C1C;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem; font-size: 0.9rem;
}

/* Scroll fade-in */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

noscript ~ .fade-in,
html:not(.js-loaded) .fade-in { opacity: 1; transform: none; }

/* Isla Studio web design standards */
:root { color-scheme: light; }

a, button, input[type="submit"], .btn { touch-action: manipulation; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--linen);
    flex-direction: column;
    padding: 1.5rem; gap: 1rem;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }

  .hero { min-height: 70vh; }
  .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  .section { padding: 3rem 0; }

  .footer-bottom { flex-direction: column; text-align: center; }

  /* Mobile audit lesson (Castelbio 2026-05-31):
     If you add any 7-column grid with aspect-ratio:1/1 + min-height, override min-height
     here. At 375 viewport with 24px container padding + component padding + gaps, each
     cell of a 7-col grid has ≈40px available. min-height >50 = overflow.
     Standard override pattern:
     .cell { min-height: 36px; max-height: 56px; }
     .grid { gap: 0.2rem; }
  */
}

/* a11y: 44x44 hamburger tap target */
.nav-toggle { min-width: 44px; min-height: 44px; }

/* ==========================================================================
   Casanovas — real-estate components
   ========================================================================== */

/* Primary button → navy fill (brass stays a hairline accent, not a fill) */
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { color: var(--accent-dark); border-color: var(--accent); }
.btn-outline:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Nav toggle: base styling always; hidden on DESKTOP ONLY.
   Must be scoped to min-width:769px — an unconditional `display:none` here sits AFTER the
   @media (max-width:768px){.nav-toggle{display:block}} rule above and, at equal specificity,
   the later rule wins, suppressing the hamburger on every phone (i.e. no mobile nav at all). */
.nav-toggle { background: none; border: 0; color: var(--earth); cursor: pointer; padding: 0; }
@media (min-width: 769px) { .nav-toggle { display: none; } }

/* Inner-page / listings hero */
.page-hero { padding: 4.5rem 0 2rem; background: var(--cream); border-bottom: 1px solid var(--cream-dark); }
.page-hero h1 { margin: 0.6rem 0 0.4rem; }
.page-hero p { color: var(--stone); max-width: 60ch; }

/* Breadcrumb */
.crumbs { max-width: var(--container); margin: 1.2rem auto 0; padding: 0 1.5rem; font-size: 0.8rem; color: var(--stone); display: flex; gap: 0.5rem; align-items: center; }
.crumbs a { color: var(--stone); }
.crumbs a:hover { color: var(--primary); }
.crumb-ref { color: var(--accent-dark); font-weight: 600; letter-spacing: 0.04em; }

/* Filter bar */
.property-filters { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; padding: 1.1rem; background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.property-filters select, .property-filters input { padding: 0.6rem 0.8rem; border: 1.5px solid var(--cream-dark); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; color: var(--earth); background: var(--linen); flex: 1 1 130px; min-width: 0; }
.property-filters input[type="number"] { flex-basis: 110px; }
.property-filters select:focus, .property-filters input:focus { outline: 2px solid var(--primary); outline-offset: 1px; border-color: var(--primary); }
.property-filters .btn-ghost { flex: 0 0 auto; }
.property-count { color: var(--stone); font-size: 0.85rem; margin: 1.2rem 0 1.5rem; letter-spacing: 0.02em; }
.property-empty { color: var(--stone); text-align: center; padding: 3rem 0; }

/* Listing grid + cards */
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.property-card { display: block; background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); overflow: hidden; color: var(--earth); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.property-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--primary-surface); color: var(--earth); }
.property-card-media { position: relative; aspect-ratio: 4 / 3; background: var(--cream-dark); overflow: hidden; }
.property-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.property-card:hover .property-card-media img { transform: scale(1.04); }
.property-card-badges { position: absolute; top: 0.8rem; left: 0.8rem; display: flex; gap: 0.4rem; flex-wrap: wrap; }
.property-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.property-card-loc { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--stone); margin-bottom: 0.25rem; }
.property-card-title { font-size: 1.15rem; line-height: 1.25; margin: 0 0 0.5rem; }
.property-card-price { font-family: var(--font-display); font-size: 1.25rem; color: var(--primary); font-variant-numeric: tabular-nums; margin-bottom: 0.6rem; }
.property-card-specs { list-style: none; display: flex; flex-wrap: wrap; gap: 0.9rem; font-size: 0.82rem; color: var(--earth-mid); }

/* Badges */
.badge { display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 3px; background: var(--white); }
.badge--exclusive { color: var(--accent-dark); border: 1px solid var(--accent); background: rgba(255,255,255,0.92); }
.badge--new { color: #fff; background: var(--primary); }
.badge--offmarket { color: var(--primary); border: 1px solid var(--primary); background: rgba(255,255,255,0.92); }

/* Property detail — gallery */
.property-gallery-wrap { position: relative; }
.property-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 1fr; gap: 4px; height: 58vh; max-height: 540px; overflow: hidden; border-radius: var(--radius-lg); }
.property-gallery .gallery-item { border: 0; padding: 0; cursor: pointer; overflow: hidden; background: var(--cream-dark); aspect-ratio: 4/3; }
.property-gallery .gallery-item.is-cover { grid-row: span 2; grid-column: 1; aspect-ratio: auto; }
.property-gallery .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.property-gallery .gallery-item:hover img { transform: scale(1.03); }
.property-gallery .gallery-item:nth-child(n+4) { display: none; }
.property-gallery-wrap .property-badges { position: absolute; top: 1rem; left: 1rem; display: flex; gap: 0.4rem; }

/* Property detail — head + specs */
.property-head { padding-top: 2.2rem; }
.property-head-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; }
.property-loc { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--stone); margin-top: 0.4rem; }
.property-price-block { text-align: right; }
.property-price { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--primary); font-variant-numeric: tabular-nums; }
.property-ppm2 { color: var(--stone); font-size: 0.85rem; }
.property-ref { color: var(--accent-dark); font-size: 0.78rem; letter-spacing: 0.06em; margin-top: 0.3rem; }
.spec-grid { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--cream-dark); }
.spec-grid li { display: flex; flex-direction: column; gap: 0.2rem; }
.spec-n { font-family: var(--font-display); font-size: 1.3rem; color: var(--earth); font-variant-numeric: tabular-nums; }
.spec-l { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); }

/* Property detail — description + amenities + map */
.property-desc { color: var(--earth-mid); }
.amenity-title { margin-top: 2rem; }
.amenity-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem 1.2rem; margin-top: 1rem; }
.amenity-grid li { position: relative; padding-left: 1.4rem; color: var(--earth-mid); font-size: 0.95rem; }
.amenity-grid li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.property-map { width: 100%; height: 380px; border: 0; border-radius: var(--radius-lg); }
.property-map-section { padding-top: 0; }

/* Property detail — enquiry (on dark navy) */
.property-enquiry .enquiry-form { margin-top: 1.4rem; }
.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.enquiry-form input, .enquiry-form textarea { width: 100%; padding: 0.8rem 0.95rem; margin-bottom: 0.9rem; border: 1.5px solid rgba(255,255,255,0.2); border-radius: var(--radius); background: rgba(255,255,255,0.06); color: var(--cream); font-family: var(--font-body); font-size: 0.95rem; }
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: var(--stone-light); }
.enquiry-form input:focus, .enquiry-form textarea:focus { outline: 2px solid var(--accent-on-dark); outline-offset: 1px; border-color: var(--accent-on-dark); }
.consent-label { display: flex; gap: 0.5rem; align-items: flex-start; color: var(--stone-light); font-size: 0.82rem; margin-bottom: 1rem; }
.consent-label input { width: auto; margin-top: 0.2rem; }
.enquiry-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 200; width: 54px; height: 54px; border-radius: 50%; background: #075E54; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: transform 0.2s ease, background 0.2s ease; }
.wa-float:hover { background: #128C7E; color: #fff; transform: translateY(-2px); }

/* Lightbox (vanilla, CSP-clean) */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(12, 22, 38, 0.94); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 4px; }
.lightbox-btn { position: absolute; background: rgba(255,255,255,0.1); border: 0; color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; line-height: 1; transition: background 0.2s ease; }
.lightbox-btn:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-count { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: var(--stone-light); font-size: 0.85rem; letter-spacing: 0.05em; }

/* Real-estate responsive */
@media (max-width: 900px) {
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .property-grid { grid-template-columns: 1fr; }
  .property-gallery { grid-template-columns: 1fr; height: auto; max-height: none; }
  .property-gallery .gallery-item.is-cover { grid-row: auto; }
  .property-gallery .gallery-item:nth-child(n+3) { display: none; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .enquiry-form .form-row { grid-template-columns: 1fr; }
  .property-price-block { text-align: left; }
}

/* ==========================================================================
   Casanovas — content pages (home sections, off-market, vender, ibiza, faq, contact)
   ========================================================================== */

.footer-links a { color: var(--stone-light); }
.footer-links a:hover { color: var(--cream); }

/* Home — services */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.service-card { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); padding: 2rem 2rem 1.6rem; box-shadow: var(--shadow-sm); }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { color: var(--earth-mid); margin-bottom: 1rem; }
.link-arrow { color: var(--accent-dark); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; }
.link-arrow:hover { color: var(--primary); }

/* Home — testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.testimonial-card blockquote { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.5; color: var(--earth); margin-bottom: 1rem; }
.testimonial-card figcaption { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); }

/* Home — areas strip */
.areas-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.area-chip { display: inline-block; padding: 0.7rem 1.3rem; border: 1px solid var(--cream-dark); border-radius: 999px; background: var(--white); color: var(--earth-mid); font-size: 0.9rem; transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease; }
.area-chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-surface); }

/* Ibiza — area cards */
.areas-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.area-card { background: var(--white); border: 1px solid var(--cream-dark); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 1.6rem 1.8rem; }
.area-card h3 { margin-bottom: 0.5rem; }
.area-card p { color: var(--earth-mid); }
/* Zone hub cards are links */
.zone-card { display: block; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.zone-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.zone-card h3 { color: var(--primary-dark); }
.zone-card-count { display: inline-block; margin-top: 0.9rem; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.zone-seo p { color: var(--earth-mid); font-size: 1.05rem; line-height: 1.7; }
.zone-listings-title { margin: 2.5rem 0 1.5rem; }

/* Blog / Journal */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.8rem; }
.blog-card { display: block; background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); padding: 1.8rem 2rem; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-date { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); }
.blog-card h3 { margin: 0.6rem 0 0.7rem; color: var(--primary-dark); line-height: 1.3; }
.blog-card p { color: var(--earth-mid); font-size: 0.95rem; line-height: 1.6; }
.blog-card-more { display: inline-block; margin-top: 1rem; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--accent); font-weight: 600; }
.blog-back { display: inline-block; margin-bottom: 1.5rem; font-size: 0.85rem; color: var(--stone); text-decoration: none; }
.blog-back:hover { color: var(--accent); }
.blog-meta { color: var(--stone); font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 2rem; }
.blog-article h1 { margin-bottom: 0.4rem; }
.blog-body { font-size: 1.08rem; line-height: 1.8; color: var(--earth); }
.blog-body h2 { font-size: 1.5rem; margin: 2.2rem 0 0.9rem; color: var(--primary-dark); }
.blog-body h3 { font-size: 1.2rem; margin: 1.8rem 0 0.7rem; }
.blog-body p { margin-bottom: 1.2rem; }
.blog-body ul, .blog-body ol { margin: 0 0 1.2rem 1.4rem; }
.blog-body li { margin-bottom: 0.5rem; }
.blog-body a { color: var(--accent); }
.blog-body blockquote { border-left: 3px solid var(--accent); padding-left: 1.2rem; margin: 1.5rem 0; font-style: italic; color: var(--earth-mid); }
.blog-cta { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--cream-dark); }

/* Legal pages + FAQ disclaimer */
.legal-body p { margin-bottom: 1.1rem; line-height: 1.7; color: var(--earth-mid); }
.legal-body ul { margin: 0 0 1.3rem 1.2rem; }
.legal-body li { margin-bottom: 0.5rem; color: var(--earth-mid); line-height: 1.6; }
.legal-body a { color: var(--accent); }
.legal-body strong { color: var(--primary-dark); }
.faq-disclaimer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--cream-dark); font-size: 0.85rem; line-height: 1.6; color: var(--stone); font-style: italic; }

/* Energy performance certificate badge (A–G) — required in property ads (RD 390/2021) */
.property-card-specs .epc-li { margin-left: auto; list-style: none; }
.epc-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 3px; font-size: 0.72rem; font-weight: 700; color: #fff; letter-spacing: 0; }
.epc-A { background: #008f4c; } .epc-B { background: #4caf2f; }
.epc-C { background: #a3c93a; color: #1c2b0a; } .epc-D { background: #f6d000; color: #3a2f00; }
.epc-E { background: #f2a900; color: #3a2600; } .epc-F { background: #e8590c; } .epc-G { background: #d0021b; }

/* Off-market — teaser cards */
.offmarket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.offmarket-card { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); padding: 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; position: relative; overflow: hidden; min-height: 180px; }
.offmarket-card::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(20,35,58,0.02) 12px, rgba(20,35,58,0.02) 24px); pointer-events: none; }
.offmarket-card > * { position: relative; }
.offmarket-card .badge { align-self: flex-start; }
.offmarket-card h3 { font-size: 1.1rem; }
.offmarket-meta { color: var(--stone); font-size: 0.85rem; }
.offmarket-cta { margin-top: auto; color: var(--accent-dark); font-weight: 600; font-size: 0.85rem; }
.offmarket-cta:hover { color: var(--primary); }

/* Vender */
.vender-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start; }
.vender-points h2 { margin-bottom: 1.4rem; }
.vender-point { padding: 1rem 0; border-top: 1px solid var(--cream-dark); }
.vender-point:first-of-type { border-top: 0; padding-top: 0; }
.vender-point h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.vender-point p { color: var(--earth-mid); }
.stacked-form .form-group:last-of-type { margin-bottom: 0.5rem; }

/* FAQ accordion (native <details>) */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item { border: 1px solid var(--cream-dark); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1.1rem 1.3rem; font-family: var(--font-display); font-size: 1.05rem; color: var(--earth); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent-dark); font-size: 1.4rem; line-height: 1; flex: 0 0 auto; }
.faq-item[open] summary::after { content: '–'; }
.faq-item summary:hover { color: var(--primary); }
.faq-a { padding: 0 1.3rem 1.2rem; color: var(--earth-mid); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; align-items: start; }
.contact-block { margin-bottom: 1.4rem; }
.contact-block h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--stone); margin-bottom: 0.3rem; }
.contact-block p { color: var(--earth); }
.contact-map { margin-top: 2.5rem; }
.contact-map iframe { width: 100%; height: 360px; border: 0; border-radius: var(--radius-lg); }

.privacy-body { color: var(--earth-mid); line-height: 1.8; }

/* Content-pages responsive */
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
  .offmarket-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-grid, .areas-detail-grid, .vender-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .offmarket-grid { grid-template-columns: 1fr; }
}

/* Tenor Sans is single-weight (400) — normalise display weights (no faux-bold) + refine tracking */
h1, h2, h3, h4 { font-weight: 400; letter-spacing: 0.005em; }
.hero-content h1 { font-weight: 400; letter-spacing: 0.01em; }
.site-logo { font-weight: 400; letter-spacing: 0.02em; }
.footer-brand { font-weight: 400; letter-spacing: 0.02em; }

/* ==========================================================================
   Polish pass — design-critic + a11y-critic fixes (2026-06-22)
   ========================================================================== */

/* Re-base shadows + hero scrim on the brand navy (were warm brown) */
:root {
  --shadow-sm: 0 1px 3px rgba(12, 22, 38, 0.08);
  --shadow-md: 0 4px 12px rgba(12, 22, 38, 0.10);
  --shadow-lg: 0 10px 28px rgba(12, 22, 38, 0.14);
}
.hero-overlay { background: linear-gradient(180deg, rgba(12, 22, 38, 0.25) 0%, rgba(12, 22, 38, 0.55) 100%); }

/* Brass as the signature accent (the olive-rule was navy) */
.olive-rule, .olive-rule::after { background: var(--accent); }

/* Tenor Sans is single-weight — never synthesize bold/italic */
body { font-synthesis: none; }

/* Visible, consistent focus ring (a11y) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
.gallery-item:focus-visible, summary:focus-visible, .lightbox-btn:focus-visible {
  outline: 2px solid var(--accent-on-dark);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip-to-content (a11y) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 400;
  background: var(--primary); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Screen-reader-only label utility (a11y — placeholder-only inputs) */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Graceful low-count grids — no orphan empty cell (design-critic) */
.property-grid:has(> .property-card:last-child:nth-child(1)) { grid-template-columns: minmax(0, 420px); justify-content: center; }
.property-grid:has(> .property-card:last-child:nth-child(2)) { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 780px; margin-inline: auto; }
.offmarket-grid:has(> .offmarket-card:last-child:nth-child(1)) { grid-template-columns: minmax(0, 420px); justify-content: center; }
.offmarket-grid:has(> .offmarket-card:last-child:nth-child(2)) { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 780px; margin-inline: auto; }

/* area-chip hover — clearer contrast (design-critic) */
.area-chip:hover { background: var(--white); border-color: var(--primary); color: var(--primary); }

/* About — team grid */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.team-card { text-align: center; }
.team-avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 0.8rem; display: flex; align-items: center; justify-content: center; background: var(--primary-surface); color: var(--primary); font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em; border: 1px solid var(--cream-dark); }
.team-card h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-card p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--stone); }

/* Footer social */
.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-social a { color: var(--stone-light); display: inline-flex; }
.footer-social a:hover { color: var(--cream); }

@media (max-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Live-critic fixes (2026-06-22)
   ========================================================================== */
/* Primary button on navy contexts → brass (was navy-on-navy = invisible) [design-critic HIGH] */
.hero .btn-primary, .section-dark .btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.hero .btn-primary:hover, .section-dark .btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }

/* Show cover + 4 thumbs on desktop — listings have 5 photos, no empty gallery row [design-critic MED] */
@media (min-width: 561px) {
  .property-gallery .gallery-item:nth-child(4),
  .property-gallery .gallery-item:nth-child(5) { display: block; }
}

/* Team: 9 people → balanced 3×3 on desktop [design-critic] */
@media (min-width: 769px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

/* Navy enquiry form fields — clearer affordance [design-critic MED] */
.enquiry-form input, .enquiry-form textarea { border-color: rgba(255,255,255,0.3); }
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Elevation — cinematic motion (2026-06-22)
   ========================================================================== */
/* Living hero: slow navy + brass atmosphere behind the text */
.hero { background: var(--primary-dark); }
.hero-bg {
  opacity: 1;
  background:
    radial-gradient(38% 42% at 28% 30%, rgba(201,168,95,0.13), transparent 70%),
    radial-gradient(46% 52% at 74% 66%, rgba(70,92,120,0.55), transparent 72%),
    radial-gradient(70% 60% at 50% 116%, rgba(201,168,95,0.07), transparent 70%);
  filter: blur(6px);
  animation: heroDrift 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroDrift {
  from { transform: translate3d(-2.5%, -1.5%, 0) scale(1.06); }
  to   { transform: translate3d(2.5%, 1.5%, 0) scale(1.12); }
}
.hero-overlay {
  background-image:
    linear-gradient(180deg, rgba(12,22,38,0.12) 0%, rgba(12,22,38,0.5) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: cover, 180px 180px;
}

/* Orchestrated hero load reveal (CSS-only; runs without JS) */
.hero-content > * { animation: heroRise 0.9s cubic-bezier(0.2,0.7,0.2,1) both; }
.hero-content .eyebrow { animation-delay: 0.15s; }
.hero-content h1 { animation-delay: 0.30s; }
.hero-content p { animation-delay: 0.55s; }
.hero-content .hero-actions { animation-delay: 0.75s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* Scroll reveals (JS adds .reveal → .is-in) */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.7,0.2,1); transition-delay: calc(var(--i, 0) * 70ms); }
.reveal.is-in { opacity: 1; transform: none; }

/* Card hover — soft gradient cue */
.property-card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(12,22,38,0.32)); opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
.property-card:hover .property-card-media::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .hero-content > * { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Elevation — editorial refinement (2026-06-22)
   ========================================================================== */
/* Testimonials as magazine pull-quotes (brass hairline, larger serif, quote mark) */
.testimonial-card { background: transparent; border: 0; border-top: 2px solid var(--accent); border-radius: 0; box-shadow: none; padding: 1.7rem 0.2rem 0; position: relative; }
.testimonial-card blockquote { font-size: 1.22rem; line-height: 1.55; }
.testimonial-card figcaption { color: var(--accent-dark); }

/* Drop cap for editorial intros */
.drop-cap::first-letter { font-family: var(--font-display); font-size: 3.4rem; line-height: 0.78; float: left; margin: 0.32rem 0.55rem -0.1rem 0; color: var(--accent-dark); }

/* Section headers — a touch more confident + a hairline brass under the eyebrow rhythm */
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.section { padding: 5.5rem 0; }
.section-alt { padding: 5.5rem 0; }

/* Editorial pull on the off-market band + why blocks */
.section-dark .container-narrow p, .why_text { font-size: 1.08rem; }

/* ==========================================================================
   Elevation — sticky enquiry sidebar (richer detail UX, 2026-06-22)
   ========================================================================== */
.property-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; padding-top: 2.6rem; padding-bottom: 2.5rem; }
.property-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.property-main .property-loc { margin: 0.4rem 0 1.6rem; }
.property-main .spec-grid { margin-top: 0; }
.property-body { margin-top: 2.4rem; }
.property-body h2 { margin-bottom: 0.6rem; }

.property-aside { position: sticky; top: 92px; }
.property-cta-card { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 1.8rem; }
.cta-price { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2rem); color: var(--primary); font-variant-numeric: tabular-nums; line-height: 1.1; }
.cta-ppm2 { color: var(--stone); font-size: 0.85rem; margin: 0.25rem 0 1.3rem; }
.property-cta-card .btn { width: 100%; justify-content: center; margin-bottom: 0.7rem; }
.cta-ref { color: var(--accent-dark); font-size: 0.78rem; letter-spacing: 0.06em; margin-top: 0.5rem; text-align: center; }

@media (max-width: 900px) {
  .property-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .property-aside { position: static; }
}

/* Immersive gallery — "view all photos" pill */
.gallery-view-all {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 3;
  background: rgba(12,22,38,0.78); color: #fff; border: 0;
  padding: 0.6rem 1.1rem; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background 0.25s ease, transform 0.2s ease;
}
.gallery-view-all:hover { background: var(--accent); transform: translateY(-1px); }

/* Testimonials — align the attribution names to a common baseline (cards are equal-height) */
.testimonial-card { display: flex; flex-direction: column; }
.testimonial-card blockquote { margin-bottom: 1.2rem; }
.testimonial-card figcaption { margin-top: auto; }
