/* Dubaldo Stays — shared stylesheet
   Palette: Option D (charcoal / cool grey / glass-white, no saturated brand hue)
   Typography: Fraunces (display) + Manrope (body/UI), loaded via Google Fonts
   Mobile-first: base rules target ~375px, enhanced at 768px and 1440px
*/

:root {
  --ink: #24272A;
  --text2: #5A5F62;
  --muted: #7A7F82;
  --page: #F4F6F7;
  --card: #FFFFFF;
  --hero-bg: #E3E8EA;
  --card-img-bg: #D7DEE1;
  --accent: #24272A;       /* CTAs and buttons run in charcoal, not a colour */
  --accent-dark: #3D5A66;  /* steel blue-grey, used only as a whisper */
  --accent-tint: #DCE6EA;
  --on-accent: #F4F6F7;
  --border: rgba(36, 39, 42, 0.14);
  --border-strong: rgba(36, 39, 42, 0.32);
  --radius: 4px;
  --maxw: 1200px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-parent: "Playfair Display", Georgia, "Times New Roman", serif; /* Dubaldo Collection's master-brand serif, used only for the "DUBALDO" wordmark */
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* force light rendering: stop the OS/browser's automatic dark-mode
     inversion or dark styling of native controls (scrollbars, form fields) */
  color-scheme: light only;
}
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 0.5em;
  line-height: 1.15;
}
p { margin: 0 0 1em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--on-accent);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--page);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.brand {
  /* "DUBALDO" carries Dubaldo Collection's master-brand serif, signalling the same
     family without borrowing Collection's brass/gold treatment. */
  font-family: var(--font-parent);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 19px;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.brand .sub {
  /* "STAYS" stays in the site's own clean, functional sans serif. */
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
}

/* logo image lockup, replaces the CSS text wordmark in the header */
.brand-mark {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}
.brand-mark img {
  display: block;
  height: 26px;
  width: auto;
  border-radius: 4px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after { display: none; }
.nav-toggle svg { width: 20px; height: 20px; }

.main-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  background: var(--page);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px 20px;
}
.main-nav.open { display: block; }
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.main-nav a {
  display: block;
  padding: 12px 4px;
  text-decoration: none;
  font-size: 15px;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
}
.main-nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }

.nav-cta-mobile { margin-top: 8px; }
.nav-cta-mobile a {
  display: block;
  text-align: center;
  padding: 12px 4px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--radius);
  border-bottom: none;
  font-weight: 700;
}

.site-header .header-cta {
  display: none;
}

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: #16181a; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-outline:hover { background: rgba(36,39,42,0.05); }
.btn-block { display: block; width: 100%; }

/* hero */
.hero {
  background: var(--hero-bg);
  padding: 48px 0 40px;
}
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(30px, 6vw, 46px);
  max-width: 16ch;
}
.hero .lede {
  color: var(--text2);
  font-size: 16px;
  max-width: 46ch;
  margin-bottom: 28px;
}

/* hero with a supporting image, stacked on mobile, side by side from tablet up */
.hero-grid { display: block; }
.hero-media { margin-top: 28px; }
.hero-media img {
  width: 100%;
  aspect-ratio: 12 / 5;
  max-height: 260px;
  object-fit: cover;
  border-radius: 8px;
}
.hero-media .cap {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* homepage hero: full-bleed image, headline over it, search bar floating on
   the bottom edge — same big picture / title / search structure as Dubaldo
   Collection's own homepage, in the Stays monochrome palette. */
.hero-full { position: relative; padding-bottom: 20px; }
.hero-full-media {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.hero-full-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,39,42,0.1) 0%, rgba(36,39,42,0.8) 100%);
}
.hero-full-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 40px;
}
.hero-full-content .eyebrow { color: var(--accent-tint); }
.hero-full-content h1 {
  color: #fff;
  font-size: clamp(36px, 8vw, 60px);
}
.hero-full-content .lede { color: rgba(244, 246, 247, 0.88); }
.hero-full-cap {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}
.search-bar-float {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(20, 22, 24, 0.18);
}

/* a supporting photo dropped into a text section */
.inline-photo { margin: 8px 0 28px; }
.inline-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}
.inline-photo .cap {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* alternating text/image sections, same scroll pattern as Dubaldo Collection's
   own pages: left text / right image, then left image / right text, repeating. */
.feature-row {
  display: block;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.tint {
  background: var(--accent-tint);
  border-bottom: none;
  border-radius: 12px;
  padding: 28px 20px;
}
@media (min-width: 768px) {
  .feature-row.tint { padding: 40px 32px; }
}
.feature-media { margin-top: 24px; }
.feature-media img {
  width: 100%;
  aspect-ratio: 12 / 5;
  max-height: 260px;
  object-fit: cover;
  border-radius: 8px;
}
.feature-media .cap {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* portrait override for a real headshot (bio photo), where the standard
   wide landscape crop would cut off the face */
.feature-media.portrait img {
  aspect-ratio: 4 / 5;
  max-height: 420px;
  max-width: 320px;
  object-fit: cover;
}

/* wide bio photo override, for a real environmental portrait shot already
   close to a 3:2 landscape ratio, gentler than the standard 12:5 crop so it
   doesn't cut into the subject */
.feature-media.bio-wide img {
  aspect-ratio: 3 / 2;
  max-height: 380px;
  object-fit: cover;
}
.feature-text h2 { margin-bottom: 12px; }

/* search bar */
.search-bar {
  background: var(--page);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 100%;
}
.search-bar .btn { grid-column: 1 / -1; }
.search-field { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.search-field-checkbox { justify-content: center; }
/* mobile: guests, check-in, check-out in one row; flexible-dates is hidden
   on mobile to keep the row tight, and reappears at the desktop breakpoint */
.search-field-guests { order: 1; }
.search-field-checkin { order: 2; }
.search-field-checkout { order: 3; }
.search-field-checkbox { order: 4; display: none; }
.search-bar .btn { order: 5; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text2);
  cursor: pointer;
  padding-bottom: 6px;
  margin-left: 16px;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-dark);
  cursor: pointer;
}
.search-field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.search-field input {
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 6px 2px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #B3B8BB;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.search-field input::placeholder {
  color: #B3B8BB;
}
/* date inputs have no real placeholder state, so JS toggles this class
   once a date is picked, matching the dark-on-value treatment below */
.search-field input.has-value {
  color: var(--ink);
}
/* mobile: Android browsers (Chrome/Samsung Internet) don't reliably let CSS
   restyle the native date-picker glyph, some render a plain down-chevron no
   matter what. So on mobile the real <input type="date"> is made fully
   transparent and stretched to cover the field (still tappable, still opens
   the native OS picker), while a custom span + calendar icon underneath
   does the actual displaying. Desktop is untouched, native input shows as-is. */
.date-field { position: relative; display: flex; align-items: center; }
.date-field-display { display: none; }
.date-icon { display: none; }
@media (max-width: 767px) {
  .date-field-display {
    display: block;
    flex: 1;
    font-family: var(--font-sans);
    font-size: 13px;
    color: #B3B8BB;
    padding: 6px 2px;
    padding-right: 16px;
    border-bottom: 1px solid var(--border);
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .date-field-display.has-value { color: var(--ink); }
  .date-icon {
    display: block;
    position: absolute;
    right: 4px;
    width: 14px;
    height: 14px;
    color: #9AA0A3;
    pointer-events: none;
  }
  .date-field .date-field-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }
}
/* guests: plain manual entry, no number-spinner arrows, and the typed
   value goes dark once entered, only the placeholder stays light grey */
.search-field-guests input {
  color: var(--ink);
  -moz-appearance: textfield;
}
.search-field-guests input::-webkit-outer-spin-button,
.search-field-guests input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.search-field input:focus,
.search-bar button:focus,
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}
.search-bar .btn { width: 100%; margin-top: 4px; }
/* search CTA picks up the same steel-blue accent used on the owner strip button,
   so the two black CTAs (header, home types etc.) aren't the only colour on the page */
.search-bar .btn-primary { background: var(--accent-dark); }
.search-bar .btn-primary:hover { background: #2f4750; }

/* benefits */
.benefits {
  padding: 10px 0 8px;
}
.benefits ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.benefits li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.benefit-dot {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.benefit-dot svg { width: 24px; height: 24px; }

/* guest assurances: four cards, icon + title + supporting line, on the
   homepage directly under the hero */
.assurance-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}
.assurance-grid li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.assurance-text h3 {
  font-size: 15px;
  margin: 0 0 4px;
}
.assurance-text p {
  margin: 0;
  font-size: 13px;
  color: var(--text2);
}

/* single caption under the whole home-types grid, replacing a caption on
   every individual card */
.card-grid-cap {
  text-align: center;
  margin-top: 16px;
}

/* section titles */
.section {
  padding: 40px 0;
}
.section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
/* pull the section right after the hero up closer to the search bar */
.hero-full + .section,
.hero-full + .benefits {
  padding-top: 8px;
}

/* home type / property cards */
.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.card .thumb {
  aspect-ratio: 4 / 3;
  background: var(--card-img-bg);
  overflow: hidden;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .body { padding: 14px 16px 18px; }
.card .body h3 { font-size: 16px; margin-bottom: 4px; }
.card .body .meta { font-size: 13px; color: var(--accent-dark); }
.card .placeholder-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px 0;
}

/* chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-block;
  background: var(--ink);
  color: var(--page);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
}

/* owner / dark strip */
.strip-dark {
  background: var(--ink);
  color: var(--page);
  padding: 40px 0;
}
.strip-dark h2 { color: var(--page); font-size: 22px; }
.strip-dark p { color: #A7B0B4; font-size: 14px; max-width: 52ch; }
.strip-dark .btn-primary { background: var(--accent-dark); }
.strip-dark .btn-primary:hover { background: #2f4750; }

/* footer: dark, matching Dubaldo Collection's own footer, logo + tagline
   + social on the left, a flat link list on the right, dot-separated
   legal line at the bottom */
.site-footer {
  background: var(--ink);
  color: var(--page);
  padding: 56px 0 28px;
  border-top: none;
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
.footer-brand { max-width: 40ch; }
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo img { display: block; height: 28px; width: auto; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: #C7CDD0;
  margin: 0 0 22px;
}
.footer-social { display: flex; gap: 10px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(244, 246, 247, 0.28);
  border-radius: 6px;
  color: var(--page);
  text-decoration: none;
}
.social-icon svg { width: 17px; height: 17px; }
.social-icon:hover { border-color: rgba(244, 246, 247, 0.7); }

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
}
.footer-links a {
  display: inline-block;
  padding: 4px 0;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #D7DEE1;
  text-decoration: none;
  white-space: nowrap;
}
.footer-links a:hover { color: var(--page); }

.footer-bottom {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: #8A9296;
  border-top: 1px solid rgba(244, 246, 247, 0.14);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}
.footer-bottom a { color: #8A9296; text-decoration: underline; }
.footer-bottom a:hover { color: var(--page); }

/* light-grey band behind full-width, text-only sections with substantial
   copy, the same alternating rhythm Dubaldo Collection uses between plain
   and coloured bands down a page with no imagery to break it up */
.section.band {
  background: var(--hero-bg);
}
.section.band-blue {
  background: var(--accent-tint);
}

/* two text columns side by side, e.g. paired topics on a banded section */
.text-cols {
  display: grid;
  gap: 32px;
}
.text-cols h2 { margin-top: 0; }
@media (min-width: 768px) {
  .text-cols {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* notice / disclaimer banners */
.notice {
  background: var(--accent-tint);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 24px;
}
.notice strong { display: block; margin-bottom: 4px; }

/* checklist / plain lists used across content pages */
.plain-list {
  margin: 0 0 24px;
  padding-left: 20px;
}
.plain-list li { margin-bottom: 8px; }

/* forms */
.form-grid { display: grid; gap: 16px; max-width: 560px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 11px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }

/* two-column layout for legal etc. */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.4em; }

/* tablet and up */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .main-nav {
    display: block;
    position: static;
    border: none;
    padding: 0;
    width: auto;
  }
  .main-nav ul { flex-direction: row; gap: 28px; }
  .main-nav a { border-bottom: none; padding: 4px 0; font-size: 13px; }
  .site-header .header-cta { display: inline-block; }
  .nav-cta-mobile { display: none; }
  .search-bar { grid-template-columns: repeat(4, 1fr) auto; align-items: end; }
  .search-bar .btn { width: 160px; margin-top: 0; grid-column: auto; }
  .search-field-guests, .search-field-checkin, .search-field-checkout, .search-field-checkbox, .search-bar .btn { order: 0; }
  .search-field-checkbox { align-self: center; display: flex; }
  .hero-full-media { height: 400px; }
  .hero-full-content { padding-bottom: 48px; }
  .search-bar-float { margin-top: -28px; }
  .benefits ul { grid-template-columns: repeat(4, 1fr); }
  .assurance-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr; align-items: start; }
  .footer-links {
    grid-template-columns: repeat(3, auto);
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
    column-gap: 32px;
    row-gap: 10px;
    justify-content: start;
  }
  .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
  .hero-media { margin-top: 0; }
  .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 0;
  }
  .feature-row.reverse .feature-media { order: -1; }
  .feature-row.reverse .feature-text { order: 1; }
  .feature-media { margin-top: 0; }
}

@media (min-width: 1440px) {
  .container { padding: 0 40px; }
}


/* OTA distribution band (owner page) --------------------------------- */
.ota-band{ text-align:center; padding:48px 0; }
.ota-line{ font-family:var(--font-display); color:var(--text2); font-size:clamp(18px,2.2vw,22px); font-style:italic; margin:0 0 28px; }
.ota-logos{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:46px; color:var(--muted); }
.ota-logo{ display:inline-flex; align-items:center; opacity:.7; transition:opacity .3s ease; }
.ota-logo:hover{ opacity:1; }
.ota-logo svg{ height:22px; width:auto; display:block; fill:currentColor; }
.ota-vrbo{ margin-right:-18px; }
.ota-vrbo svg{ height:24px; }
.ota-vrbo text{ font-family:var(--font-sans); font-weight:800; font-size:22px; letter-spacing:-0.6px; fill:currentColor; }
.ota-expedia{ margin-right:-20px; }
.ota-expedia svg{ height:19px; }
.ota-expedia text{ font-family:var(--font-sans); font-weight:800; font-size:19px; letter-spacing:-0.4px; fill:currentColor; }
.ota-dubaldo img{ height:17px; width:auto; display:block; }
@media (max-width:520px){ .ota-logos{ gap:32px; } }


/* Guest FAQ accordion ------------------------------------------------- */
.faq{ margin-top:8px; max-width:820px; }
.faq-item{ border-bottom:0.5px solid var(--border); }
.faq-item summary{ list-style:none; cursor:pointer; display:flex; align-items:flex-start; gap:16px; padding:20px 2px; font-family:var(--font-display); font-size:17px; color:var(--ink); }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::before{ content:"+"; color:var(--muted); font-family:var(--font-sans); font-weight:400; font-size:22px; line-height:1.15; flex:0 0 auto; }
.faq-item[open] summary::before{ content:"\2013"; }
.faq-a{ padding:0 0 22px 32px; color:var(--text2); }
.faq-a p{ margin:0; }


/* How a stay works — icon steps */
.how-steps{ list-style:none; margin:28px 0 0; padding:0; display:grid; gap:22px; max-width:1000px; }
.how-step{ display:flex; align-items:flex-start; gap:14px; }
.how-step strong{ color:var(--ink); }
@media (min-width:1024px){ .how-step > div{ white-space:nowrap; } }


/* For Owners: capabilities grid + process steps */
.cap-grid{ list-style:none; margin:26px 0 0; padding:0; display:grid; gap:24px; }
@media (min-width:768px){ .cap-grid{ grid-template-columns:1fr 1fr; grid-auto-flow:column; grid-template-rows:repeat(3,auto); gap:26px 48px; } }
.cap-item{ display:flex; align-items:flex-start; gap:14px; }
.cap-item h3{ font-size:16px; margin:0 0 3px; }
.cap-item p{ margin:0; font-size:14px; color:var(--text2); }
.cap-ai .benefit-dot{ width:44px; height:44px; background:var(--accent-dark); color:#ffffff; }
.cap-ai .benefit-dot svg{ width:26px; height:26px; }
.cap-shield .benefit-dot{ width:44px; height:44px; background:var(--accent-dark); color:#ffffff; }
.cap-shield .benefit-dot svg{ width:26px; height:26px; }
.cap-dash .benefit-dot{ width:44px; height:44px; background:var(--accent-dark); color:#ffffff; }
.cap-dash .benefit-dot svg{ width:26px; height:26px; }
.how-it-works{ list-style:none; margin:26px 0 28px; padding:0; display:grid; gap:22px; max-width:860px; }
.how-it-works li{ display:flex; align-items:flex-start; gap:16px; }
.how-it-works .hiw-diamond{ flex:0 0 auto; width:10px; height:10px; margin-top:7px; background:var(--accent-dark); transform:rotate(45deg); }
.how-it-works h3{ font-size:16px; margin:0 0 3px; }
.how-it-works p{ margin:0; font-size:14px; color:var(--text2); }


/* WhatsApp floating action button — brand steel-blue, not WhatsApp green */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(36, 39, 42, 0.28);
  z-index: 80;
  transition: background 0.3s, transform 0.3s;
}
.whatsapp-fab:hover { background: #2f4750; transform: translateY(-2px); }
.whatsapp-fab svg { width: 28px; height: 28px; }

.foot-verify{color:inherit;text-decoration:none;border-bottom:1px dotted rgba(201,162,74,.6);transition:color .25s,border-color .25s;}.foot-verify:hover{color:#c9a24a;border-bottom-color:#c9a24a;}
