:root {
  --navy: #10213f;
  --blue: #244c83;
  --cream: #fbf7ef;
  --white: #ffffff;
  --coral: #e86353;
  --gold: #efc56a;
  --text: #1c2638;
  --muted: #5f6878;
  --border: #e6e1d8;
  --shadow: 0 16px 40px rgba(16, 33, 63, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(251, 247, 239, .94);
  border-bottom: 1px solid rgba(16, 33, 63, .08);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.08rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: .94rem;
}
.nav-links a:hover { color: var(--coral); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--navy);
}

.hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(circle at 90% 20%, rgba(239, 197, 106, .30), transparent 28%),
    linear-gradient(135deg, #fbf7ef, #edf4ff);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 640px; }
.campaign-label,
.section-label {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.13; }
h1 {
  margin: 0 0 25px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  letter-spacing: -.055em;
}
.hero-line {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 800;
}
.hero-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-buttons,
.final-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(16, 33, 63, .15);
}
.primary { color: white; background: var(--coral); }
.secondary,
.outline {
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(16, 33, 63, .25);
}
.dark { color: white; background: var(--navy); }

.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 520px;
}
.hero-image-card img {
  height: 100%;
  object-fit: cover;
}
.hero-image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(16, 33, 63, .78);
  color: white;
  backdrop-filter: blur(8px);
}
.hero-image-badge span {
  display: block;
  font-size: .78rem;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-image-badge strong {
  font-size: 1.05rem;
}


.section { padding: 90px 0; background: white; }
.alternate { background: var(--cream); }
.section h2,
.final-banner h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  letter-spacing: -.035em;
}
.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.split-section.reverse {
  grid-template-columns: 1.1fr .9fr;
}
.section-image {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  min-height: 420px;
}
.section-image img {
  height: 100%;
  object-fit: cover;
}
.readable-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}
.readable-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.content-list {
  display: grid;
  gap: 18px;
}
.content-item {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fffdf8;
}
.content-text h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.28rem;
}
.content-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}
.mini-image {
  overflow: hidden;
  border-radius: 20px;
  min-height: 190px;
}
.mini-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.content-item:hover .mini-image img {
  transform: scale(1.04);
}
.highlight-item {
  background: #edf4ff;
}

.vision-section {
  color: white;
  background: var(--navy);
}
.vision-section h2 { color: white; }
.section-label.light { color: var(--gold); }
.light-copy p { color: rgba(255,255,255,.82); }

.final-banner {
  padding: 90px 0;
  text-align: center;
  background: #edf4ff;
}
.final-banner h2 {
  margin-bottom: 20px;
}
.final-links {
  justify-content: center;
}
.share-message {
  min-height: 28px;
  color: var(--muted);
}

footer {
  padding: 28px 0;
  color: white;
  background: #091428;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-content p { margin: 0; }
.footer-content div {
  display: flex;
  gap: 10px;
}
.footer-content a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(16,33,63,.15);
  }
  .nav-links.open { display: flex; }
  .hero-grid,
  .split-section,
  .split-section.reverse,
  .content-item {
    grid-template-columns: 1fr;
  }
  .hero-image-card,
  .section-image {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 135px 0 70px; }
  h1 { font-size: 3.5rem; }
  .section, .final-banner { padding: 72px 0; }
  .hero-buttons .button,
  .final-links .button { width: 100%; }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}



.instagram-section {
  background: #f7f4ec;
}
.instagram-grid {
  align-items: center;
}
.instagram-profile-card {
  background: #0b1020;
  padding: 14px;
}
.instagram-profile-card img {
  border-radius: 20px;
  object-fit: contain;
  background: #0b1020;
}
.instagram-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.ubdss-link-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ubdss-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(16, 33, 63, .15);
}
.ubdss-link-card span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
}
.ubdss-link-card strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
}
.footer-social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 560px) {
  .instagram-action-row .button,
  .instagram-action-row .ubdss-link-card {
    width: 100%;
    justify-content: center;
  }
  .qr-card {
    flex-direction: column;
    text-align: center;
  }
  .footer-social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}


.qr-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding: 20px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.qr-card img {
  width: 145px;
  height: 145px;
  border-radius: 14px;
  background: white;
  padding: 8px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.qr-copy h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.2rem;
}
.qr-copy p {
  margin: 0 0 6px;
  color: var(--muted);
}
.qr-highlight {
  color: var(--coral) !important;
  font-weight: 800;
  font-size: 1.15rem;
}


.qr-card-final {
  max-width: 760px;
  margin: 34px auto 0;
  justify-content: center;
  text-align: left;
}
.qr-card-final img {
  width: 200px;
  height: 200px;
}


#what-ill-bring h2 {
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  margin-bottom: 34px;
}
#what-ill-bring .content-text h3 {
  font-size: 1.45rem;
}
.footer-disclaimer {
  padding: 0 0 28px;
  text-align: center;
}
.footer-disclaimer p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}


#why-me h2 {
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  margin-bottom: 34px;
}
#why-me .readable-copy p {
  font-size: 1.14rem;
}


/* Make all main section titles clearer and more prominent */
.section h2,
.final-banner h2,
.photo-strip-header h2 {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.content-text h3,
.qr-copy h3 {
  font-size: 1.55rem;
  font-weight: 800;
}

.section-label,
.campaign-label {
  font-weight: 800;
}

@media (max-width: 560px) {
  .section h2,
  .final-banner h2,
  .photo-strip-header h2 {
    font-size: 3rem;
  }

  .content-text h3,
  .qr-copy h3 {
    font-size: 1.35rem;
  }
}


.large-section-label {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: none;
  margin-bottom: 18px;
}

#about .large-section-label,
#why-me .large-section-label,
#what-ill-bring .large-section-label {
  color: var(--navy);
}

#vision .large-section-label {
  color: var(--gold);
}
