:root {
  --color-primary: #d6336c;
  --color-accent: #ff4081;
  --color-soft: #ffb6c1;
  --color-bg: #fff5f8;
  --color-text: #3d2330;
  --color-muted: #7e5b67;
  --color-white: #ffffff;
  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow-soft: 0 10px 30px rgba(214, 51, 108, 0.12);
  --shadow-card: 0 8px 22px rgba(214, 51, 108, 0.08);
  --font-main: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.top-strip {
  background: var(--color-white);
  border-bottom: 1px solid rgba(214, 51, 108, 0.12);
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
}

.top-strip a {
  color: var(--color-muted);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 245, 248, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(214, 51, 108, 0.1);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.95rem 0;
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(214, 51, 108, 0.35);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  padding: 0.4rem 0.65rem;
  font-size: 1.3rem;
}

.main-nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-accent);
}

main section {
  padding: var(--space-xl) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 var(--space-md);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.08;
}

.hero-copy p {
  max-width: 50ch;
  color: var(--color-muted);
}

.hero-badges {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.hero-badges span {
  background: var(--color-white);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 51, 108, 0.16);
  font-size: 0.9rem;
}

.collage {
  position: relative;
  min-height: 460px;
}

.collage img {
  position: absolute;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s ease;
}

.collage img:nth-child(1) {
  width: 58%;
  top: 2%;
  left: 1%;
  transform: rotate(-4deg);
}

.collage img:nth-child(2) {
  width: 52%;
  right: 2%;
  top: 26%;
  transform: rotate(5deg);
}

.collage img:nth-child(3) {
  width: 56%;
  left: 18%;
  bottom: 1%;
  transform: rotate(-1.5deg);
}

.collage:hover img:nth-child(1) {
  transform: rotate(-6deg) translateY(-6px);
}

.collage:hover img:nth-child(2) {
  transform: rotate(7deg) translateY(-7px);
}

.collage:hover img:nth-child(3) {
  transform: rotate(-3deg) translateY(-6px);
}

.asym-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-md);
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.steps article h3,
.card h3 {
  margin-top: 0;
}

.muted {
  color: var(--color-muted);
}

.testimonial-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.faq-list {
  display: grid;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  border: 1px solid rgba(214, 51, 108, 0.12);
}

.faq-item button {
  all: unset;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--color-muted);
}

.faq-item.open .faq-content {
  max-height: 180px;
  margin-top: var(--space-xs);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid rgba(214, 51, 108, 0.28);
}

.map-wrap iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  min-height: 310px;
}

form {
  display: grid;
  gap: var(--space-sm);
}

label {
  font-weight: 600;
  font-size: 0.94rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(214, 51, 108, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.8rem;
  font: inherit;
  background: var(--color-white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  color: #ad174b;
  font-size: 0.86rem;
  min-height: 1rem;
}

.checkbox-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.28rem;
}

.footer {
  background: #ffe6ef;
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(214, 51, 108, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: var(--space-md);
  padding: 2.2rem 0;
}

.footer h4 {
  margin: 0 0 0.6rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.footer small {
  display: block;
  text-align: center;
  padding: 0 0 1.2rem;
  color: var(--color-muted);
}

.cookie-panel {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: var(--color-white);
  width: min(390px, calc(100% - 2rem));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
  z-index: 70;
  border: 1px solid rgba(214, 51, 108, 0.15);
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.cookie-settings {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.cookie-settings label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-weight: 500;
}

.page-hero {
  padding-top: 2.6rem;
}

.page-hero h1 {
  margin: 0 0 var(--space-sm);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.trust-chip {
  background: linear-gradient(150deg, #fff, #ffe9f1);
  border: 1px solid rgba(214, 51, 108, 0.2);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.trust-chip i {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.spotlight {
  border: 1px solid rgba(214, 51, 108, 0.14);
  background: radial-gradient(circle at 20% 10%, #fff, #ffe8f1 70%);
}

.province-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.metric-box {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(214, 51, 108, 0.16);
}

.metric-box strong {
  font-size: 1.8rem;
  color: var(--color-primary);
  display: block;
  line-height: 1.2;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-item {
  border-left: 3px solid rgba(214, 51, 108, 0.28);
  padding-left: 0.9rem;
}

.timeline-item h3 {
  margin: 0;
  font-size: 1.03rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-row span {
  font-size: 0.86rem;
  background: #fff;
  border: 1px solid rgba(214, 51, 108, 0.2);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.tab-btn {
  border: 1px solid rgba(214, 51, 108, 0.25);
  background: #fff;
  color: var(--color-primary);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--color-primary);
  color: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.notice-card {
  border: 1px solid rgba(214, 51, 108, 0.18);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem;
}

.interactive-cta {
  background: linear-gradient(130deg, #ffd4e3, #ffeff5);
  border: 1px solid rgba(214, 51, 108, 0.15);
}

[data-tilt] {
  transform-style: preserve-3d;
}

[data-tilt]:hover {
  transition: transform 0.2s ease;
}

@media (max-width: 980px) {

  .hero-grid,
  .asym-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .collage {
    min-height: 390px;
  }

  .steps,
  .testimonial-ribbon,
  .trust-strip,
  .province-grid,
  .disclosure-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 4%;
    background: var(--color-white);
    border: 1px solid rgba(214, 51, 108, 0.15);
    border-radius: var(--radius-md);
    padding: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
    box-shadow: var(--shadow-card);
  }

  .main-nav.open {
    display: flex;
  }

  .steps,
  .testimonial-ribbon,
  .trust-strip,
  .province-grid,
  .disclosure-grid {
    grid-template-columns: 1fr;
  }
}