:root {
  --bg: #fff9f7;
  --bg-soft: #fff1f2;
  --surface: #ffffff;
  --surface-soft: #fff6f5;
  --line: #f0c7ca;
  --text: #2b2730;
  --muted: #6d6170;
  --pink: #f18e97;
  --pink-strong: #ee7883;
  --rose: #c78b8c;
  --navy: #4d526d;
  --navy-deep: #36384e;
  --shadow: 0 20px 50px rgba(77, 82, 109, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(241, 142, 151, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(77, 82, 109, 0.08), transparent 28%),
    var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, li { font-size: 1rem; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--navy-deep);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 249, 247, 0.82);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled {
  border-color: rgba(199, 139, 140, 0.28);
  box-shadow: 0 8px 30px rgba(54, 56, 78, 0.08);
}
.header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
}
.brand { display: inline-flex; align-items: center; gap: .85rem; }
.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(241,142,151,.2));
}
.brand-text { display: inline-flex; flex-direction: column; }
.brand-text strong { font-size: 1.1rem; line-height: 1.1; }
.brand-text small { color: var(--muted); }
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .38rem;
  font-weight: 700;
}
.primary-nav > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .68rem .82rem;
  border-radius: 999px;
  color: var(--navy-deep);
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.primary-nav > a.active {
  color: var(--navy-deep);
  background: rgba(241, 142, 151, .14);
  border-color: rgba(241, 142, 151, .3);
  outline: none;
}
.primary-nav > a:hover { transform: translateY(-1px); }
.nav-call {
  min-width: 156px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 10px 24px rgba(54, 56, 78, .16);
}
.nav-call:hover,
.nav-call:focus-visible {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: white !important;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: .35rem;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--navy-deep);
  margin: 5px 0;
}
.hero {
  position: relative;
  overflow: clip;
  padding: 4.5rem 0 3rem;
}
.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: .8;
  pointer-events: none;
}
.hero-shape-left {
  width: 460px; height: 460px;
  left: -140px; top: 70px;
  background: rgba(77, 82, 109, 0.12);
}
.hero-shape-right {
  width: 560px; height: 560px;
  right: -180px; top: -50px;
  background: rgba(241, 142, 151, 0.28);
}
.hero-grid, .split-grid, .contact-grid, .about-grid, .airbnb-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 2.4rem;
  align-items: center;
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--pink-strong);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
}
h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }
.hero-lead { font-size: 1.08rem; max-width: 62ch; color: var(--muted); }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0;
}
.button {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem; border-radius: 999px; padding: .95rem 1.35rem;
  font-weight: 800; border: 2px solid transparent; transition: .22s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
  color: white;
  box-shadow: 0 14px 30px rgba(241, 142, 151, .25);
}
.button-secondary {
  border-color: rgba(77,82,109,.2);
  background: rgba(255,255,255,.65);
  color: var(--navy-deep);
}
.hero-points {
  margin: 1.6rem 0 0; padding: 0; list-style: none;
  display: grid; gap: .55rem;
}
.hero-points li {
  display: flex; align-items: center; gap: .75rem;
}
.hero-points li::before {
  content: "";
  width: 11px; height: 11px; border-radius: 999px;
  background: var(--pink-strong); flex: none;
  box-shadow: 0 0 0 6px rgba(241,142,151,.16);
}
.hero-visual { position: relative; min-height: 640px; }
.portrait-frame {
  position: relative;
  margin-inline: auto 0;
  max-width: 560px;
  border-radius: 42px;
  background: radial-gradient(circle at top, rgba(255,255,255,.6), rgba(77,82,109,.12)), rgba(255,255,255,.2);
  box-shadow: var(--shadow);
  overflow: visible;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: auto auto 7% -7%;
  width: 84%; height: 58%;
  border-radius: 999px;
  background: rgba(77, 82, 109, .7);
  z-index: -1;
}
.portrait-frame img {
  width: 100%; height: auto; object-fit: contain;
}
.logo-badge {
  position: absolute; top: -10px; right: 20px;
  width: min(220px, 38vw);
  background: rgba(255,255,255,.72);
  padding: .35rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.floating-card {
  position: absolute;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(199,139,140,.24);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  border-radius: 20px;
  display: grid;
}
.floating-card strong { font-size: 1rem; color: var(--navy-deep); }
.floating-card span { color: var(--muted); font-size: .92rem; }
.floating-rate { left: 0; bottom: 120px; }
.floating-focus { right: -10px; bottom: 50px; max-width: 220px; }
.section { padding: 5rem 0; }
.section-heading { max-width: 800px; margin-bottom: 2rem; }
.card-grid {
  display: grid;
  gap: 1.2rem;
}
.six-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.stat-card, .service-card, .process-card, .airbnb-box, .keyword-panel, .quote-form, .contact-card, .faq-item {
  background: var(--surface);
  border: 1px solid rgba(199,139,140,.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card, .service-card, .process-card, .airbnb-box, .keyword-panel { padding: 1.4rem; }
.intro-stats { padding-top: 1rem; }
.stat-card h2 { font-size: 1.4rem; margin-bottom: .5rem; color: var(--navy-deep); }
.service-card { min-height: 100%; }
.service-card h3 { color: var(--navy-deep); }
.keyword-section {
  background: linear-gradient(180deg, rgba(241,142,151,.08), rgba(255,255,255,.45));
}
.keyword-list {
  margin: 0; padding-left: 1.25rem; columns: 1;
}
.airbnb-section { background: rgba(77, 82, 109, .04); }
.scope-note {
  background: rgba(255,255,255,.78);
  border-left: 4px solid var(--pink-strong);
  padding: 1rem 1.1rem;
  border-radius: 14px;
}
.airbnb-box ul, .keyword-list { line-height: 1.9; }
.process-card { text-align: left; }
.process-card span {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
  color: white; font-weight: 900; margin-bottom: 1rem;
}
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-image::before {
  content: "";
  position: absolute;
  width: min(78%, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: rgba(77, 82, 109, .18);
  right: 0;
  bottom: 1.25rem;
}
.about-portrait-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 40px;
  padding-top: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(77,82,109,.10));
  border: 1px solid rgba(199,139,140,.24);
  box-shadow: var(--shadow);
}
.about-portrait-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
}
.about-callouts {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .9rem; margin-top: 1.5rem;
}
.about-callouts div {
  background: var(--surface);
  border: 1px solid rgba(199,139,140,.24);
  border-radius: 18px;
  padding: 1rem;
}
.about-callouts strong { display: block; margin-bottom: .35rem; color: var(--navy-deep); }

.reviews-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(241, 142, 151, .12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(77,82,109,.035));
}
.facebook-proof-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.4rem;
  align-items: start;
}
.facebook-proof,
.facebook-embed-card {
  background: var(--surface);
  border: 1px solid rgba(199,139,140,.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}
.facebook-rating-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem;
  background: linear-gradient(135deg, rgba(77,82,109,.08), rgba(241,142,151,.12));
  border-radius: 20px;
  border: 1px solid rgba(77,82,109,.10);
}
.facebook-mark,
.facebook-button-icon {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #1877f2;
  color: #fff;
  font: 900 2rem/1 Arial, sans-serif;
}
.facebook-rating,
.facebook-review-count {
  margin: 0;
}
.facebook-rating {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy-deep);
}
.facebook-review-count { color: var(--muted); }
.review-highlights {
  display: grid;
  gap: .85rem;
  margin-top: 1rem;
}
.review-card {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(199,139,140,.22);
  border-radius: 18px;
  background: var(--surface-soft);
}
.review-quote-mark {
  color: var(--pink-strong);
  font: 900 2rem/1 Georgia, serif;
  height: 1.1rem;
}
.review-card blockquote {
  margin: .4rem 0 .3rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy-deep);
}
.review-card p,
.review-source-note,
.embed-note {
  color: var(--muted);
  font-size: .88rem;
}
.review-card p { margin: 0; }
.review-source-note { margin: 1rem 0 0; }
.facebook-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.15rem;
}
.facebook-button-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  font-size: 1rem;
  background: rgba(255,255,255,.22);
}
.facebook-embed-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.facebook-embed-heading h3 { margin-bottom: 0; }
.facebook-embed-heading > a {
  color: #1877f2;
  font-weight: 800;
  white-space: nowrap;
}
.facebook-frame-wrap {
  width: 100%;
  min-height: 620px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f4f7;
  border: 1px solid rgba(77,82,109,.10);
}
.facebook-frame-wrap iframe {
  width: 100%;
  max-width: 500px;
}
.embed-note { margin-bottom: 0; }

.faq-list { display: grid; gap: .95rem; }
.faq-item { overflow: hidden; }
.faq-item button {
  width: 100%; text-align: left; border: 0; background: transparent;
  padding: 1.25rem 1.25rem 1.05rem; font-size: 1.05rem; font-weight: 800; color: var(--navy-deep);
}
.faq-panel { padding: 0 1.25rem 1.25rem; color: var(--muted); }
.contact-grid { align-items: start; }
.contact-cards {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; margin-top: 1.4rem;
}
.contact-card { padding: 1rem 1.1rem; display: grid; gap: .35rem; }
.contact-card strong { color: var(--navy-deep); }
.quote-form { padding: 1.4rem; }
.form-row { margin-bottom: 1rem; }
.form-row.two-col {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem;
}
label { display: block; margin-bottom: .45rem; font-weight: 700; }
input, textarea {
  width: 100%; border: 1px solid rgba(77,82,109,.18); border-radius: 16px;
  background: #fff; padding: .95rem 1rem; font: inherit; color: var(--text);
}
input:focus, textarea:focus {
  outline: 2px solid rgba(241,142,151,.35);
  border-color: var(--pink-strong);
}
input.invalid, textarea.invalid { border-color: #c63d54; }
.field-error { display: block; color: #b42845; min-height: 1.2em; margin-top: .35rem; }
.form-status { min-height: 1.5em; margin-top: .9rem; font-weight: 700; }
.form-status.success { color: #256d3d; }
.form-status.error { color: #b42845; }
.honeypot { position: absolute; left: -9999px; }
.site-footer {
  padding: 2rem 0 3rem;
  background: #fbf3f2;
  border-top: 1px solid rgba(199,139,140,.22);
}
.footer-wrap {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-grid, .split-grid, .contact-grid, .about-grid, .airbnb-grid {
    grid-template-columns: 1fr;
  }
  .six-up, .three-up, .stat-grid, .about-callouts, .contact-cards { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: auto; }
  .portrait-frame { max-width: 520px; margin: 1.5rem auto 0; }
  .floating-rate { left: 0; bottom: 90px; }
  .floating-focus { right: 0; bottom: 18px; }
  .about-image::before { right: 50%; transform: translateX(50%); }
  .about-portrait-frame { min-height: 540px; }
  .facebook-proof-grid { grid-template-columns: 1fr; }
}


@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: calc(100% + .35rem);
    right: 1rem;
    width: min(340px, calc(100% - 2rem));
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(199,139,140,.25);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav.open { display: flex; }
  .primary-nav > a {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: .75rem .9rem;
    border-radius: 14px;
  }
  .primary-nav > a:hover,
  .primary-nav > a:focus-visible,
  .primary-nav > a.active {
    transform: none;
  }
  .nav-call {
    justify-content: center !important;
    text-align: center;
    margin-top: .4rem;
  }
  .six-up, .three-up, .stat-grid, .about-callouts, .contact-cards, .form-row.two-col { grid-template-columns: 1fr; }
  .logo-badge { position: static; width: 170px; margin: 1rem auto 0; }
  .floating-card { position: static; margin-top: 1rem; }
  .hero { padding-top: 2.8rem; }
}

@media (max-width: 640px) {
  .brand-logo { width: 62px; height: 62px; }
  h1 { max-width: 100%; }
  .section { padding: 4rem 0; }
  .quote-form { padding: 1.1rem; }
  .header-wrap { padding: .75rem 0; }
  .about-portrait-frame { min-height: 460px; }
  .about-portrait-frame img { height: 460px; }
  .facebook-proof, .facebook-embed-card { padding: 1rem; }
  .facebook-embed-heading { flex-direction: column; }
  .facebook-frame-wrap { min-height: 560px; }
  .facebook-frame-wrap iframe { height: 560px; }
}

.review-source-note a { color: #1877f2; font-weight: 800; }


/* Expanded FAQ directory */
.faq-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .8rem 1rem;
  align-items: end;
  margin-bottom: 2rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(199, 139, 140, .24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.faq-tools > label {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--navy-deep);
  font-size: 1rem;
}
.faq-search-wrap {
  position: relative;
}
.faq-search-wrap input {
  min-height: 52px;
  padding-right: 5rem;
}
.faq-clear {
  position: absolute;
  right: .65rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  padding: .4rem .7rem;
  background: rgba(77, 82, 109, .1);
  color: var(--navy-deep);
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
}
.faq-tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.faq-tool-button {
  min-height: 44px;
  border: 1px solid rgba(77, 82, 109, .18);
  border-radius: 999px;
  padding: .65rem .9rem;
  background: #fff;
  color: var(--navy-deep);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.faq-tool-button:hover,
.faq-tool-button:focus-visible,
.faq-clear:hover,
.faq-clear:focus-visible {
  background: var(--bg-soft);
  outline: 2px solid rgba(241, 142, 151, .3);
}
.faq-results {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}
.faq-category + .faq-category {
  margin-top: 2rem;
}
.faq-category > h3 {
  margin-bottom: .85rem;
  color: var(--navy-deep);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}
.faq-category-list {
  display: grid;
  gap: .8rem;
}
.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}
.faq-icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--pink-strong);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item button[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-item[hidden],
.faq-category[hidden] {
  display: none;
}
.faq-help-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(241, 142, 151, .14), rgba(77, 82, 109, .08));
  border: 1px solid rgba(199, 139, 140, .28);
  border-radius: var(--radius);
}
.faq-help-card h3,
.faq-help-card p {
  margin-bottom: .45rem;
}

@media (max-width: 720px) {
  .faq-tools {
    grid-template-columns: 1fr;
  }
  .faq-tools > label,
  .faq-results {
    grid-column: auto;
  }
  .faq-tool-actions {
    width: 100%;
  }
  .faq-tool-button {
    flex: 1 1 130px;
  }
  .faq-help-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* About-section email callout and PHP form delivery note */
.about-email-box {
  min-width: 0;
}
.about-email-box a {
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: var(--pink-strong);
  font-weight: 800;
}
.form-delivery-note {
  margin: .75rem 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
}
.form-delivery-note a {
  color: var(--navy-deep);
  font-weight: 700;
  overflow-wrap: anywhere;
}
