:root {
  --bg: #f4efe5;
  --bg-strong: #ece2cf;
  --surface: rgba(255, 251, 245, 0.82);
  --surface-strong: #ffffff;
  --ink: #183231;
  --ink-soft: #5a6c66;
  --teal: #0f766e;
  --teal-dark: #0d4c48;
  --gold: #bf8a3d;
  --gold-soft: #f0d4a7;
  --line: rgba(24, 50, 49, 0.12);
  --shadow: 0 18px 48px rgba(16, 34, 32, 0.11);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.16), transparent 24rem),
    radial-gradient(circle at right, rgba(191, 138, 61, 0.14), transparent 18rem),
    var(--bg);
  font-family: "Gill Sans", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Baskerville Old Face", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement-bar {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.announcement-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.announcement-copy a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(246, 242, 234, 0.88);
  border-bottom: 1px solid rgba(25, 53, 49, 0.08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(150deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  padding: 0.45rem 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.site-nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
}

.nav-toggle span:not(.sr-only) {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(25, 53, 49, 0.16);
  color: var(--ink);
}

.btn-compact {
  min-height: 2.8rem;
}

.hero,
.page-hero,
.section {
  position: relative;
}

.hero-home {
  padding: clamp(4rem, 10vw, 7rem) 0 5.8rem;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.55;
}

.hero-orb-left {
  top: 6rem;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(15, 118, 110, 0.2);
}

.hero-orb-right {
  right: -5rem;
  top: 10rem;
  width: 14rem;
  height: 14rem;
  background: rgba(192, 141, 47, 0.22);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy,
.card,
.feature-card,
.cta-panel,
.booking-summary {
  backdrop-filter: blur(14px);
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
}

.lead,
.section-heading p,
.section-copy,
.summary-copy,
.footer-copy {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(192, 141, 47, 0.14);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-label {
  padding: 0;
  background: none;
}

.hero-checks,
.bullet-list,
.proof-list,
.contact-list,
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-checks {
  display: grid;
  gap: 0.9rem;
}

.hero-checks li,
.bullet-list li,
.contact-list li,
.footer-list li {
  position: relative;
  padding-left: 1.5rem;
}

.hero-checks li::before,
.bullet-list li::before,
.contact-list li::before,
.footer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--gold);
}

.feature-card,
.card,
.cta-panel,
.booking-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.issue-stack {
  display: grid;
  gap: 0.85rem;
}

.issue-card,
.callout {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(25, 53, 49, 0.08);
}

.issue-card strong,
.callout strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.1rem;
}

.issue-card span {
  color: var(--ink-soft);
}

.proof-box {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(15, 118, 110, 0.08), rgba(192, 141, 47, 0.14));
}

.proof-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.proof-list li {
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 53, 49, 0.08);
}

.section,
.page-hero {
  padding: clamp(3.4rem, 8vw, 5.6rem) 0;
}

.page-hero {
  padding-bottom: 1rem;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.1), transparent 20rem),
    radial-gradient(circle at right, rgba(192, 141, 47, 0.12), transparent 14rem);
}

.page-hero-editorial {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: center;
}

.page-hero-copy {
  display: grid;
  gap: 1.25rem;
}

.page-hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 34rem;
  border-radius: 2rem;
  border: 1px solid rgba(24, 50, 49, 0.1);
  background: #143c39;
  box-shadow: 0 28px 60px rgba(12, 33, 30, 0.18);
}

.page-hero-frame img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(14, 49, 45, 0.14) 0%, rgba(14, 49, 45, 0.08) 30%, rgba(14, 49, 45, 0.74) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.page-hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.page-hero-notes div {
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(15, 44, 41, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.page-hero-notes strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}

.section-tinted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(15, 118, 110, 0.05));
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.hero-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-value-grid article {
  padding: 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(24, 50, 49, 0.08);
}

.hero-value-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero-stage {
  position: relative;
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  min-height: 41rem;
  background: #143c39;
  box-shadow: 0 28px 60px rgba(12, 33, 30, 0.2);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 41rem;
  object-fit: cover;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(14, 49, 45, 0.18) 0%, rgba(14, 49, 45, 0.08) 28%, rgba(14, 49, 45, 0.72) 100%);
  color: rgba(255, 255, 255, 0.9);
}

.overlay-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-photo-summary {
  display: grid;
  gap: 0.8rem;
}

.hero-photo-summary div {
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(15, 44, 41, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-photo-summary strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}

.stage-shell {
  padding: 1.1rem;
  border-radius: 2rem;
  background: linear-gradient(150deg, rgba(17, 49, 45, 0.96), rgba(12, 71, 67, 0.96));
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 60px rgba(12, 33, 30, 0.2);
}

.stage-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.stage-pill {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
}

.stage-window {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(191, 138, 61, 0.22), transparent 13rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.stage-property {
  display: grid;
  gap: 0.75rem;
  padding: 1.3rem;
  border-radius: 1.4rem;
  background: rgba(251, 248, 240, 0.94);
  color: var(--ink);
}

.stage-kicker {
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-property h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.stage-flow {
  display: grid;
  gap: 0.8rem;
}

.stage-flow div,
.summary-chip {
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-flow strong,
.summary-chip strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}

.stage-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.summary-chip span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.stage-note {
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(0, 0, 0, 0.14);
}

.stage-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: 1.35rem;
  align-items: start;
}

.story-column {
  display: grid;
  gap: 1.1rem;
}

.editorial-card,
.audit-preview-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.editorial-card {
  display: grid;
  gap: 0.9rem;
}

.story-points {
  display: grid;
  gap: 0.9rem;
}

.story-points article {
  padding: 1.15rem 1.2rem;
  border-left: 4px solid var(--gold);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.58);
}

.story-points strong,
.audit-preview-list strong,
.results-grid strong,
.service-card h3 {
  display: block;
  margin-bottom: 0.35rem;
}

.audit-preview-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 240, 229, 0.96));
}

.audit-preview-card h3 {
  margin-bottom: 1rem;
}

.audit-preview-list {
  display: grid;
  gap: 0.95rem;
}

.audit-preview-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.audit-preview-list span {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--teal-dark);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.2rem;
  color: var(--teal-dark);
  font-weight: 800;
}

.proof-section {
  background: linear-gradient(180deg, rgba(14, 48, 44, 0.98), rgba(14, 64, 60, 0.95));
  color: rgba(255, 255, 255, 0.86);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.proof-heading {
  display: grid;
  gap: 0.9rem;
  padding-right: 0.5rem;
}

.proof-heading .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.proof-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card-tall {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.84);
}

.feature-card-tall p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card-tall img {
  min-height: 16rem;
  background: rgba(255, 255, 255, 0.9);
}

.service-stage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card span {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--teal-dark);
  font-weight: 800;
}

.service-card-primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 248, 246, 0.98));
}

.service-card-accent {
  background: linear-gradient(160deg, rgba(191, 138, 61, 0.16), rgba(255, 255, 255, 0.88));
}

.results-panel {
  align-items: start;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.results-grid article {
  padding: 1.2rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-heading.narrow {
  max-width: 46rem;
}

.feature-grid,
.grid-3,
.grid-2,
.timeline,
.split-panel,
.footer-grid,
.form-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid,
.grid-3,
.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.split-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-panel-wide {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.feature-card,
.card,
.booking-summary {
  padding: 1.5rem;
}

.feature-card {
  display: grid;
  gap: 1rem;
}

.feature-card img {
  width: 100%;
  min-height: 13rem;
  object-fit: cover;
  border-radius: 1.2rem;
  border: 1px solid rgba(25, 53, 49, 0.08);
  background: #fff;
}

.card,
.timeline-step {
  display: grid;
  gap: 0.75rem;
}

.accent-card {
  background: linear-gradient(155deg, rgba(15, 118, 110, 0.95), rgba(10, 73, 69, 0.95));
  color: #fff;
}

.accent-card .eyebrow,
.accent-card p,
.accent-card li {
  color: inherit;
}

.process-shell {
  display: grid;
  gap: 2rem;
}

.timeline-step {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.timeline-step span {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--bg-strong);
  color: var(--teal-dark);
  font-weight: 800;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
  background: linear-gradient(140deg, rgba(15, 118, 110, 0.08), rgba(192, 141, 47, 0.16));
}

.notice {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid;
}

.notice-success {
  background: #ecfdf5;
  border-color: #86efac;
  color: #166534;
}

.notice-error {
  background: #fff1f2;
  border-color: #fda4af;
  color: #9f1239;
}

.form-card {
  display: grid;
  gap: 1.25rem;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field.full-span {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 53, 49, 0.14);
  border-radius: 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.7);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.contact-list,
.footer-list {
  display: grid;
  gap: 0.85rem;
}

.booking-summary {
  position: sticky;
  top: 7.5rem;
  align-self: start;
}

.summary-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.summary-list dt {
  color: var(--ink-soft);
}

.summary-list dd {
  margin: 0;
  font-weight: 700;
}

.summary-total dd,
.summary-total dt {
  font-size: 1.08rem;
  color: var(--ink);
}

.summary-note {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.summary-note.is-error {
  color: #9f1239;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0;
  background: linear-gradient(160deg, #0d3734, #102a28);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.footer-title {
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 1.2rem;
}

.footer-list li::before {
  background: var(--gold-soft);
}

.whatsapp-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 18px 40px rgba(20, 30, 20, 0.22);
}

.whatsapp-fab svg {
  width: 1.8rem;
  fill: #fff;
}

.chatbot-shell {
  position: fixed;
  right: 1.2rem;
  bottom: 5.8rem;
  z-index: 55;
  display: grid;
  justify-items: end;
  gap: 0.85rem;
}

.chatbot-panel {
  width: min(25rem, calc(100vw - 1.6rem));
  max-height: min(42rem, calc(100vh - 10rem));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(24, 50, 49, 0.12);
  background: rgba(252, 248, 241, 0.96);
  box-shadow: 0 28px 60px rgba(12, 33, 30, 0.22);
  backdrop-filter: blur(18px);
}

.chatbot-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.chatbot-header strong {
  display: block;
  font-size: 1.05rem;
}

.chatbot-header span {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.chatbot-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(24, 50, 49, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
}

.chatbot-messages {
  overflow-y: auto;
  display: grid;
  gap: 0.75rem;
  padding-right: 0.2rem;
}

.chatbot-message {
  display: grid;
  gap: 0.55rem;
  max-width: 92%;
}

.chatbot-message p {
  margin: 0;
}

.chatbot-message-bubble {
  padding: 0.9rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(24, 50, 49, 0.08);
  box-shadow: 0 10px 24px rgba(12, 33, 30, 0.08);
}

.chatbot-message-bot .chatbot-message-bubble {
  background: rgba(255, 255, 255, 0.92);
}

.chatbot-message-user {
  justify-self: end;
}

.chatbot-message-user .chatbot-message-bubble {
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  color: #fff;
  border-color: transparent;
}

.chatbot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chatbot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.16);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chatbot-suggestion {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 50, 49, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: end;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(24, 50, 49, 0.12);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(20, 30, 20, 0.18);
}

.chatbot-toggle-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.chatbot-toggle-copy {
  display: grid;
  text-align: left;
  line-height: 1.1;
}

.chatbot-toggle-copy strong {
  font-size: 0.98rem;
}

.chatbot-toggle-copy span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1040px) {
  .hero-grid,
  .page-hero-grid,
  .feature-grid,
  .grid-3,
  .grid-2,
  .timeline,
  .split-panel,
  .footer-grid,
  .cta-panel,
  .split-panel-wide,
  .hero-value-grid,
  .intro-band,
  .story-layout,
  .proof-grid,
  .service-stage,
  .results-grid,
  .stage-summary {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

  .hero-photo-card,
  .hero-photo-card img {
    min-height: 32rem;
  }

  .page-hero-frame,
  .page-hero-frame img {
    min-height: 30rem;
  }
}

@media (max-width: 900px) {
  .announcement-copy,
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .announcement-copy {
    display: grid;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .nav-actions {
    display: none;
  }

  .site-nav.is-open,
  .nav-actions.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: start;
  }

  .site-nav.is-open {
    gap: 0.8rem;
    padding-top: 0.35rem;
  }

  .nav-actions.is-open {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-home {
    padding-top: 3rem;
  }

  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .btn,
  .btn-compact {
    width: 100%;
  }

  .nav-actions.is-open {
    grid-template-columns: 1fr;
  }

  .stage-header {
    align-items: start;
    flex-direction: column;
  }

  .hero-photo-card,
  .hero-photo-card img {
    min-height: 24rem;
  }

  .page-hero-frame,
  .page-hero-frame img {
    min-height: 22rem;
  }

  .page-hero-overlay {
    padding: 1rem;
  }

  .page-hero-notes {
    grid-template-columns: 1fr;
  }

  .chatbot-shell {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 5.6rem;
    justify-items: stretch;
  }

  .chatbot-panel {
    width: 100%;
    max-height: min(38rem, calc(100vh - 8rem));
  }

  .chatbot-form {
    grid-template-columns: 1fr;
  }

  .chatbot-toggle {
    width: 100%;
    justify-content: center;
  }
}
