:root {
  --ink: #11110f;
  --muted: #65635f;
  --line: #e8dfcf;
  --paper: #fffdf9;
  --soft: #f8f3ea;
  --gold: #c99323;
  --gold-dark: #9c6d13;
  --green: #1f6b4b;
  --night: #080b0b;
  --shadow: 0 24px 70px rgba(38, 28, 15, 0.13);
  --shadow-strong: 0 34px 90px rgba(34, 23, 10, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

:focus-visible {
  outline: 3px solid rgba(201, 147, 35, 0.42);
  outline-offset: 4px;
}

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

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  background: var(--gold);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold-dark);
  outline-offset: 2px;
}

/* Active nav link indicator */
.nav a[aria-current="page"]:not(.quote-link)::after {
  transform: scaleX(1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(211, 180, 125, 0.35);
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.04);
  box-shadow: 0 12px 28px rgba(183, 123, 18, 0.16);
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(201, 147, 35, 0.48);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
}

.brand-name {
  display: block;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.32em;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.4vw, 38px);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  white-space: nowrap;
}

.nav a:not(.quote-link)::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.nav a:hover::after {
  transform: scaleX(1);
}

.quote-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quote-link,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #d4a032, #b67b12);
  box-shadow: 0 14px 34px rgba(180, 123, 18, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: #d6b873;
}

.quote-link:hover,
.btn:hover {
  transform: translateY(-2px);
}

.quote-link:hover,
.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(180, 123, 18, 0.34);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 14px 32px rgba(38, 28, 15, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  min-height: calc(100vh - 92px);
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 64px);
  background:
    radial-gradient(circle at 78% 20%, rgba(218, 176, 101, 0.14), transparent 34%),
    linear-gradient(90deg, #fffdf9 0%, #fffdf9 50%, #f7f1e8 100%);
  overflow: hidden;
}

section,
article[id] {
  scroll-margin-top: 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.9rem, 7.4vw, 7.5rem);
}

h1 span,
.contact h2 span {
  color: var(--gold-dark);
}

.hero-text {
  max-width: 660px;
  margin: 28px 0 0;
  color: #45423e;
  font-size: clamp(1.1rem, 1.5vw, 1.34rem);
  line-height: 1.75;
}

.hero-text-secondary {
  margin-top: 14px;
}

.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust-line span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px 0 32px;
  border: 1px solid rgba(201, 147, 35, 0.24);
  border-radius: 999px;
  color: #332c22;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  font-weight: 800;
}

.hero-trust-line span::before {
  position: absolute;
  left: 13px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 720px;
  margin-top: 42px;
}

.quick-stats div {
  min-height: 74px;
  padding-left: 18px;
  border-left: 1px solid #d9c28f;
  transition: transform 180ms ease, border-color 180ms ease;
}

.quick-stats div:hover {
  transform: translateY(-3px);
  border-left-color: var(--gold-dark);
}

.quick-stats strong,
.quick-stats span {
  display: block;
}

.quick-stats strong {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.quick-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.hero-photo {
  position: relative;
  width: min(760px, 100%);
  min-height: 590px;
  border-radius: 4px;
  overflow: hidden;
  background: #0b0c0b;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 38%),
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.28));
  content: "";
  pointer-events: none;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center;
}

.hero-photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.trust-card {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(350px, 70%);
  padding: 14px 18px;
  border: 1px solid #ddb86d;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(34, 23, 10, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(34, 23, 10, 0.2);
}

.trust-card p {
  margin: 0;
  color: #4c4945;
  font-size: 0.82rem;
  line-height: 1.45;
}

.faces {
  display: flex;
}

.faces span {
  display: block;
  width: 30px;
  height: 30px;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #d2a86a, #57381f);
}

.faces span:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #385f80, #d7b48b);
}

.faces span:last-child {
  background: linear-gradient(135deg, #192f2b, #c8913a);
}

.section {
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(201, 147, 35, 0.2);
  border-bottom: 1px solid rgba(201, 147, 35, 0.2);
  background: #0a0d0c;
}

.proof-strip article {
  position: relative;
  min-height: 210px;
  padding: 30px clamp(20px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    #0a0d0c;
  transition: background 220ms ease, transform 220ms ease;
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip article:hover {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(201, 147, 35, 0.16), rgba(255, 255, 255, 0.03)),
    #0d1210;
  transform: translateY(-6px);
}

.proof-strip span {
  display: block;
  margin-bottom: 34px;
  color: rgba(246, 222, 176, 0.68);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.proof-strip strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.proof-strip p {
  margin: 12px 0 0;
  line-height: 1.62;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 44px;
  text-align: center;
}

.mobile-service-note {
  display: none;
}

.section-heading h2,
.about h2,
.contact h2,
.legal h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.services {
  background: linear-gradient(180deg, #fffdf9, #f8f3ea);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(202, 162, 86, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(55, 39, 18, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 420ms ease;
  content: "";
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 147, 35, 0.48);
  box-shadow: var(--shadow-strong);
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-card:hover .service-icon {
  transform: rotate(-5deg) scale(1.06);
}

.service-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #d7a33b, #a86f0b);
  font-size: 1.7rem;
  transition: transform 220ms ease;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.service-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.visual-card {
  min-height: 235px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  transition: transform 220ms ease;
}

.service-card:hover .visual-card {
  transform: scale(1.015);
}

.invite-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid #d4c2a2;
  color: #191512;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.96), transparent 24%),
    linear-gradient(135deg, #f7eee1, #e0ccb0);
}

.phone-frame {
  width: min(240px, 100%);
  padding: 14px;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 18px;
  background: #f1f4ef;
  box-shadow: 0 18px 44px rgba(45, 35, 20, 0.16);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #26352d;
  font-size: 0.78rem;
  font-weight: 900;
}

.chat-header small {
  color: #18864a;
  font-size: 0.72rem;
}

.chat-bubble {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 16px 16px 4px 16px;
  color: #fff;
  background: #128c4c;
  box-shadow: 0 12px 28px rgba(18, 140, 76, 0.28);
}

.chat-bubble strong,
.chat-bubble span,
.chat-bubble small,
.chat-bubble em {
  display: block;
}

.chat-bubble strong {
  font-size: 0.94rem;
}

.chat-bubble span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
}

.chat-bubble small,
.chat-bubble em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-style: normal;
}

.chat-bubble em {
  justify-self: end;
  margin-top: 4px;
}

.check-preview {
  display: grid;
  place-items: center;
  align-content: center;
  color: #dff7e6;
  background: linear-gradient(160deg, #09201a, #12382b);
}

.check-preview strong {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 14px 0;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #24b669;
  font-size: 2.6rem;
}

.report-preview {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f3f6f1);
}

.report-topline,
.report-mini-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-topline {
  padding-bottom: 14px;
  border-bottom: 1px solid #e3e8e4;
}

.report-topline span,
.report-mini-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.report-topline strong {
  color: var(--green);
  font-size: 2rem;
}

.report-bars {
  display: grid;
  gap: 10px;
}

.report-bars span {
  display: block;
  width: var(--bar);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  box-shadow: 0 8px 20px rgba(201, 147, 35, 0.18);
}

.report-mini-metrics p {
  display: grid;
  flex: 1;
  gap: 4px;
  margin: 0;
  padding: 14px;
  border: 1px solid #e3e8e4;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.report-mini-metrics strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.process {
  background: #fffdf9;
}

.command-center {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  color: #f8f1e4;
  background:
    linear-gradient(135deg, rgba(5, 8, 8, 0.96), rgba(12, 22, 18, 0.91)),
    radial-gradient(circle at 78% 20%, rgba(201, 147, 35, 0.28), transparent 38%);
}

.command-copy h2 {
  max-width: 620px;
  font-size: clamp(2.3rem, 4.7vw, 4.6rem);
}

.command-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.assurance-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.assurance-list span {
  position: relative;
  padding: 13px 16px 13px 42px;
  border: 1px solid rgba(215, 173, 94, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #f6deb0;
  font-weight: 600;
  line-height: 1.45;
}

.assurance-list strong {
  display: block;
  color: #fff;
  font-weight: 900;
}

.assurance-list span::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #24b669;
  box-shadow: 0 0 0 7px rgba(36, 182, 105, 0.12);
  transform: translateY(-50%);
  content: "";
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(220, 177, 94, 0.32);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    #09100e;
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.32);
}

.dashboard-shell::before {
  display: none;
}

.dashboard-topbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-topbar span,
.dashboard-topbar em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-style: normal;
}

.dashboard-topbar strong {
  color: #fff;
  text-transform: uppercase;
}

.dashboard-topbar em {
  text-align: right;
}

.dashboard-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.dashboard-metrics article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.dashboard-metrics span,
.dashboard-metrics strong {
  display: block;
}

.dashboard-metrics span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-metrics strong {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.dashboard-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 14px;
}

.scanner-panel,
.activity-panel {
  min-height: 290px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.scanner-panel {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.scan-ring {
  position: relative;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border: 1px solid rgba(36, 182, 105, 0.45);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(36, 182, 105, 0.25), rgba(36, 182, 105, 0.05));
}

.scan-ring::before,
.scan-ring::after {
  position: absolute;
  border-radius: inherit;
  content: "";
}

.scan-ring::before {
  inset: 18px;
  border: 2px solid #24b669;
}

.scan-ring::after {
  width: 46px;
  height: 46px;
  background: #24b669;
  box-shadow: 0 0 34px rgba(36, 182, 105, 0.54);
}

.scanner-panel h3,
.activity-panel h3 {
  margin: 18px 0 8px;
  color: #fff;
}

.scanner-panel p,
.activity-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.scanner-panel strong {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(215, 173, 94, 0.38);
  border-radius: 999px;
  color: #f6deb0;
}

.activity-panel {
  display: grid;
  align-content: start;
  gap: 12px;
}

.activity-panel h3 {
  margin-top: 0;
}

.activity-panel p {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.activity-panel p:last-child {
  border-bottom: 0;
}

.activity-panel span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 147, 35, 0.12);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.timeline article {
  position: relative;
  padding-top: 58px;
  transition: transform 200ms ease;
}

.timeline article:hover {
  transform: translateY(-5px);
}

.timeline article::before {
  position: absolute;
  top: 23px;
  right: 0;
  left: 46px;
  border-top: 1px dashed #d6bb81;
  content: "";
}

.timeline article:last-child::before {
  display: none;
}

.timeline span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-weight: 800;
}

.timeline span svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.event-types {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  max-width: 1320px;
  margin: clamp(54px, 6vw, 86px) auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(210, 171, 100, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.95), rgba(248, 243, 234, 0.98)),
    #fbf6ed;
}

.event-types-copy h2 {
  margin: 0;
  max-width: 430px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.03;
}

.event-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.event-type-grid article {
  position: relative;
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(201, 147, 35, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.event-type-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 147, 35, 0.48);
  background: #fff;
  box-shadow: 0 18px 48px rgba(55, 39, 18, 0.08);
}

.event-type-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.event-type-grid strong {
  display: block;
  color: #302b25;
  font-size: 0.98rem;
  line-height: 1.35;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 147, 35, 0.11), transparent 32%),
    #fffdf9;
}

.about-copy {
  max-width: 780px;
}

.about-copy h2 {
  max-width: 680px;
}

.about-copy p {
  margin: 22px 0 0;
  color: #4e4a45;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.85;
}

.about-copy p:nth-of-type(3) {
  color: var(--ink);
  font-weight: 800;
}

.about-proof {
  display: grid;
  gap: 16px;
}

.about-proof article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(202, 162, 86, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(55, 39, 18, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.about-proof article:hover {
  transform: translateX(8px);
  border-color: rgba(201, 147, 35, 0.52);
  box-shadow: var(--shadow-strong);
}

.about-proof strong {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #d4a032, #9c6d13);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.about-proof span {
  color: var(--muted);
  line-height: 1.62;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 8, 8, 0.94), rgba(5, 8, 8, 0.7)),
    linear-gradient(135deg, #111, #3b2f20 56%, #0e1613);
}

.contact-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: #f4ddb0;
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(218, 174, 91, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.contact-form .form-wide,
.contact-form button,
.response-note,
.privacy-note,
.form-note {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(215, 173, 94, 0.84);
  background: rgba(0, 0, 0, 0.32);
  box-shadow: 0 0 0 4px rgba(201, 147, 35, 0.16);
  outline: none;
}

.contact-form option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.optional-field {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
}

.response-note {
  margin: -4px 0 0;
  color: #f7dfae;
  font-size: 0.92rem;
  font-weight: 900;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: #f7dfae;
}

.privacy-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.faq {
  background: linear-gradient(180deg, #fffdf9, #f8f3ea);
}

.faq-grid {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq details {
  overflow: hidden;
  border: 1px solid rgba(202, 162, 86, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(55, 39, 18, 0.06);
}

.faq summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  float: right;
  color: var(--gold-dark);
  content: "+";
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: clamp(58px, 7vw, 90px) clamp(20px, 5vw, 72px);
  background: #f8f3ea;
}

.legal article {
  padding: 32px;
  border: 1px solid rgba(203, 161, 83, 0.22);
  border-radius: 8px;
  background: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.legal article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(55, 39, 18, 0.09);
}

.legal p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(160px, 0.6fr));
  gap: 36px;
  padding: 48px clamp(20px, 5vw, 72px) 26px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--night);
}

.footer .brand-name {
  color: #fff;
}

.footer-logo {
  display: block;
  width: min(280px, 100%);
  height: 84px;
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
  transform: translateX(-46px) scale(1.45);
}

.footer-tagline {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p {
  max-width: 340px;
  line-height: 1.65;
}

.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer a,
.footer span {
  display: block;
  margin: 9px 0;
}

.footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer a:hover {
  color: #f6deb0;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-height: 36px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(246, 222, 176, 0.24);
  border-radius: 999px;
  color: #f6deb0;
}

.footer .social-links a:hover {
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.copyright {
  grid-column: 1 / -1;
  max-width: none;
  margin: 10px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 80px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf9;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 10px;
  }

  .quote-link {
    margin-top: 6px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .proof-strip,
  .service-grid,
  .command-center,
  .timeline,
  .legal,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --section-y: 62px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 1.15rem;
    letter-spacing: 0.22em;
  }

  .brand-tagline {
    font-size: 0.58rem;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.45rem);
    line-height: 1.02;
  }

  .hero {
    gap: 22px;
    padding-top: 26px;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .hero-trust-line {
    margin-top: 16px;
  }

  .hero-trust-line span:nth-child(2) {
    display: none;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .quick-stats,
  .proof-strip,
  .service-grid,
  .command-center,
  .dashboard-metrics,
  .timeline,
  .legal,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-photo {
    min-height: 280px;
  }

  .hero-photo img {
    height: 280px;
    object-position: 58% center;
  }

  .quick-stats {
    display: none;
  }

  .trust-card {
    display: none;
  }

  .proof-strip {
    position: relative;
    display: grid;
    gap: 0;
    margin: 0 20px 18px;
    padding: 18px;
    border: 1px solid rgba(201, 147, 35, 0.34);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
      #070908;
    box-shadow: 0 22px 60px rgba(13, 10, 5, 0.2);
  }

  .proof-strip::before {
    display: block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    content: "The INVYTE control promise";
  }

  .proof-strip article {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    padding: 14px 0;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
  }

  .proof-strip article:nth-child(n + 4) {
    display: none;
  }

  .proof-strip span {
    display: grid;
    width: 28px;
    height: 28px;
    margin: 0;
    place-items: center;
    border: 1px solid rgba(201, 147, 35, 0.5);
    border-radius: 999px;
    color: var(--gold);
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
  }

  .proof-strip strong {
    font-size: 1rem;
    line-height: 1.25;
  }

  .proof-strip p {
    grid-column: 2;
    margin-top: 5px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .mobile-service-note {
    display: block;
    max-width: 34rem;
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .service-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      "icon title"
      "copy copy"
      "preview preview";
    column-gap: 14px;
    padding: 20px;
  }

  .service-icon {
    grid-area: icon;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }

  .service-icon svg {
    width: 23px;
    height: 23px;
  }

  .service-card h3 {
    grid-area: title;
    align-self: center;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.25;
  }

  .service-card p {
    grid-area: copy;
    margin: 14px 0 16px;
    line-height: 1.58;
  }

  .service-card .visual-card {
    grid-area: preview;
    min-height: 156px;
  }

  .invite-preview {
    padding: 16px;
  }

  .phone-frame {
    width: min(220px, 100%);
    padding: 11px;
    border-radius: 15px;
  }

  .chat-header {
    margin-bottom: 9px;
    font-size: 0.72rem;
  }

  .chat-bubble {
    gap: 3px;
    padding: 13px;
    border-radius: 14px 14px 4px 14px;
  }

  .chat-bubble strong {
    font-size: 0.86rem;
  }

  .chat-bubble span {
    font-size: 0.82rem;
  }

  .chat-bubble small,
  .chat-bubble em {
    font-size: 0.68rem;
  }

  .check-preview strong {
    width: 64px;
    height: 64px;
    margin: 10px 0;
    font-size: 2.2rem;
  }

  .report-preview {
    gap: 12px;
    padding: 16px;
  }

  .report-topline {
    padding-bottom: 10px;
  }

  .report-bars {
    gap: 8px;
  }

  .report-bars span {
    height: 9px;
  }

  .report-mini-metrics p {
    padding: 10px;
  }

  .report-mini-metrics strong {
    font-size: 1.05rem;
  }

  .event-types,
  .about {
    display: none;
  }

  .nav a[href="#about"],
  .footer a[href="#about"] {
    display: none;
  }

  .legal {
    padding: 34px 20px;
  }

  .legal article {
    padding: 22px;
  }

  .legal h2 {
    font-size: 1.55rem;
  }

  .timeline article::before {
    display: none;
  }

  .process {
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(248, 243, 234, 0.96)),
      radial-gradient(circle at 8% 0%, rgba(201, 147, 35, 0.12), transparent 34%);
  }

  .process .section-heading h2 {
    max-width: 21rem;
    margin-inline: auto;
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.03;
  }

  .timeline {
    position: relative;
    gap: 0;
    max-width: 560px;
    padding-left: 2px;
  }

  .timeline::before {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 23px;
    width: 1px;
    background: linear-gradient(180deg, rgba(201, 147, 35, 0.82), rgba(201, 147, 35, 0.12));
    content: "";
  }

  .timeline article {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-areas:
      "icon title"
      ". copy";
    align-items: center;
    column-gap: 16px;
    padding: 0 0 24px;
    transform: none;
  }

  .timeline article:last-child {
    padding-bottom: 0;
  }

  .timeline article:hover {
    transform: none;
  }

  .timeline span {
    grid-area: icon;
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    width: 48px;
    height: 48px;
    color: var(--gold);
    background: #0a0d0c;
    box-shadow: 0 10px 28px rgba(38, 28, 15, 0.12);
  }

  .timeline h3,
  .timeline p {
    grid-column: auto;
  }

  .timeline h3 {
    grid-area: title;
    margin-top: 2px;
    margin-bottom: 6px;
    font-size: 1rem;
    line-height: 1.25;
  }

  .timeline p {
    grid-area: copy;
    align-self: start;
    max-width: 31rem;
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .timeline article:last-child p {
    padding-right: 72px;
  }

  .dashboard-topbar {
    grid-template-columns: 1fr;
  }

  .dashboard-topbar em {
    text-align: left;
  }

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

}

@media (max-width: 440px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 240px;
    height: 240px;
  }

  .event-type-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Visual improvements (modern-web-design skill) ── */

/* Reading progress bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  background-size: 200% 100%;
  animation: bar-shimmer 2.5s linear infinite;
  pointer-events: none;
  transition: width 0.08s linear;
}

@keyframes bar-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Scroll indicator */
.hero {
  position: relative;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 500ms ease;
  pointer-events: none;
  white-space: nowrap;
}

.scroll-indicator.is-hidden {
  opacity: 0;
}

.scroll-indicator::after {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  content: "";
  animation: scroll-line 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 720px) {
  .scroll-indicator { display: none; }
}

/* Hero headline gradient shimmer */
h1 span {
  background: linear-gradient(90deg, var(--gold-dark) 0%, #e0aa35 35%, var(--gold-dark) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shimmer 4s linear infinite;
}

@keyframes text-shimmer {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}

/* Service icon SVG sizing */
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Scan ring pulse */
.scan-ring {
  animation: ring-glow 2.8s ease-in-out infinite;
}

@keyframes ring-glow {
  0%, 100% { box-shadow: 0 0 0 0   rgba(36, 182, 105, 0.28); }
  50%       { box-shadow: 0 0 0 18px rgba(36, 182, 105, 0); }
}

.scan-ring::after {
  animation: dot-breathe 2.8s ease-in-out infinite;
}

@keyframes dot-breathe {
  0%, 100% { box-shadow: 0 0 34px rgba(36, 182, 105, 0.54); transform: scale(1); }
  50%       { box-shadow: 0 0 60px rgba(36, 182, 105, 0.7);  transform: scale(1.1); }
}

/* Activity panel stagger: triggers when dashboard shell reveals */
.activity-panel p {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 380ms ease, transform 380ms ease;
}

.dashboard-shell.is-visible .activity-panel p:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 320ms;
}

.dashboard-shell.is-visible .activity-panel p:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 520ms;
}

.dashboard-shell.is-visible .activity-panel p:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 720ms;
}

.dashboard-shell.is-visible .activity-panel p:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 920ms;
}

/* Stagger: proof strip articles */
.proof-strip article.reveal:nth-child(2) { transition-delay: 80ms;  }
.proof-strip article.reveal:nth-child(3) { transition-delay: 160ms; }
.proof-strip article.reveal:nth-child(4) { transition-delay: 240ms; }

/* Stagger: service cards */
.service-card.reveal:nth-child(2) { transition-delay: 100ms; }
.service-card.reveal:nth-child(3) { transition-delay: 200ms; }

/* Stagger: timeline articles */
.timeline article.reveal:nth-child(2) { transition-delay: 120ms; }
.timeline article.reveal:nth-child(3) { transition-delay: 240ms; }
.timeline article.reveal:nth-child(4) { transition-delay: 360ms; }

/* Stagger: FAQ items */
.faq-grid details.reveal:nth-child(2) { transition-delay: 70ms;  }
.faq-grid details.reveal:nth-child(3) { transition-delay: 140ms; }
.faq-grid details.reveal:nth-child(4) { transition-delay: 210ms; }
.faq-grid details.reveal:nth-child(5) { transition-delay: 280ms; }

/* FAQ smooth content reveal on open */
.faq details p {
  animation: faq-reveal 280ms ease both;
}

@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Premium upgrades ─────────────────────────────── */

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 20px 0 16px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0;
  transform: scale(0.85) translateY(14px);
  transition: opacity 320ms ease, transform 320ms ease, box-shadow 220ms ease, padding 220ms ease;
  pointer-events: none;
  text-decoration: none;
}

.whatsapp-float.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.whatsapp-float:hover {
  box-shadow: 0 12px 38px rgba(37, 211, 102, 0.5);
  transform: scale(1.04) translateY(-2px);
}

.whatsapp-float svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.whatsapp-label {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 56px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp-label { display: none; }
}

/* Event type card icons */
.event-type-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(156, 109, 19, 0.45);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 180ms ease, transform 180ms ease;
}

.event-type-grid article:hover .event-type-icon {
  stroke: var(--gold-dark);
  transform: scale(1.15);
}

/* Testimonials section */
.testimonials {
  background: linear-gradient(180deg, #f8f3ea, #fffdf9);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  margin: 0;
  padding: 32px 28px 28px;
  border: 1px solid rgba(202, 162, 86, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(55, 39, 18, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.testimonial-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  content: "";
}

.testimonial-card::after {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(201, 147, 35, 0.18);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  content: "\201C";
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 147, 35, 0.44);
  box-shadow: 0 28px 70px rgba(55, 39, 18, 0.12);
}

.testimonial-card > p {
  margin: 0 0 24px;
  color: #4a4540;
  font-size: 1.02rem;
  line-height: 1.78;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(202, 162, 86, 0.2);
}

.testimonial-rating {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.testimonial-avatar {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  font-size: 0.78rem;
  font-weight: 900;
}

.testimonial-card footer strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
}

.testimonial-card footer span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.testimonial-card footer .testimonial-avatar {
  display: grid;
  color: #fff;
  font-size: 0.78rem;
}

@media (max-width: 1040px) {
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

/* Section transition accents: top gold line on dark sections */
.command-center {
  box-shadow: inset 0 2px 0 rgba(201, 147, 35, 0.45);
}

.contact {
  box-shadow: inset 0 2px 0 rgba(201, 147, 35, 0.45);
}

/* Footer top accent */
.footer {
  border-top: 2px solid var(--gold-dark);
}

/* Header scroll shrink */
.site-header {
  transition: min-height 280ms ease, box-shadow 280ms ease, background 280ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  box-shadow: 0 4px 28px rgba(38, 28, 15, 0.13);
  background: rgba(255, 253, 249, 0.96);
}

/* Contact pull-quote */
.contact-pull-quote {
  position: relative;
  margin: 22px 0 20px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: #f6deb0;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-style: italic;
  line-height: 1.6;
}

/* Stagger: testimonial cards */
.testimonial-card.reveal:nth-child(2) { transition-delay: 120ms; }
.testimonial-card.reveal:nth-child(3) { transition-delay: 240ms; }

/* Stagger: event type cards */
.event-type-grid article.reveal:nth-child(2) { transition-delay: 80ms; }
.event-type-grid article.reveal:nth-child(3) { transition-delay: 160ms; }
.event-type-grid article.reveal:nth-child(4) { transition-delay: 240ms; }
.event-type-grid article.reveal:nth-child(5) { transition-delay: 320ms; }
.event-type-grid article.reveal:nth-child(6) { transition-delay: 400ms; }

/* Stagger: about-proof articles */
.about-proof article.reveal:nth-child(2) { transition-delay: 120ms; }
.about-proof article.reveal:nth-child(3) { transition-delay: 240ms; }

/* Form success state */
.contact-form.is-submitted {
  border-color: rgba(36, 182, 105, 0.45);
  box-shadow: 0 0 0 3px rgba(36, 182, 105, 0.1), 0 28px 80px rgba(0, 0, 0, 0.2);
  transition: border-color 320ms ease, box-shadow 320ms ease;
}

.form-note.is-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(36, 182, 105, 0.35);
  border-radius: 8px;
  background: rgba(36, 182, 105, 0.12);
  color: #24b669;
  font-weight: 700;
  font-size: 0.92rem;
}

.form-note.is-success svg {
  flex: 0 0 auto;
}

/* Contact list link hover */
.contact-list a {
  transition: color 180ms ease, letter-spacing 180ms ease;
}

.contact-list a:hover {
  color: #fff;
  letter-spacing: 0.012em;
}

