:root {
  --blush: #e36888;
  --tangerine: #f49a6e;
  --butter: #f6d06b;
  --sea: #6bb6a6;
  --matcha: #b8d8a7;
  --warm-white: #fff8f3;
  --cream: #fdf5ee;
  --deep-text: #2d1f1a;
  --muted: #6b5a54;
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-secondary);
  background: var(--warm-white);
  color: var(--deep-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Top nav */
.ex-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,248,243,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,31,26,0.08);
}
.ex-nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}
.ex-nav-logo {
  display: inline-flex;
  align-items: center;
}
.ex-nav-logo img {
  height: 60px;
}
.ex-nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: auto;
  gap: 0.75rem;
  flex: 0 0 auto;
}
.ex-breadcrumbs {
  display: none;
}
.ex-nav-back-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  border: 1.5px solid var(--blush);
  background: #fff;
  color: var(--blush);
  box-shadow: none;
  transition: background-color 0.24s, color 0.24s;
}
.ex-nav-back-card:hover {
  background: var(--blush);
  color: #fff;
}
.ex-nav-back-card:focus-visible {
  outline: 2px solid rgba(227,104,136,0.55);
  outline-offset: 2px;
}
.ex-back-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  background: none;
  box-shadow: none;
}
.ex-back-icon svg {
  width: 16px;
  height: 16px;
}
.ex-back-copy {
  display: inline-flex;
  align-items: center;
}
.ex-back-title {
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 700;
  color: currentColor;
}
.ex-back-subtitle {
  display: none;
}

@media (max-width: 980px) {
  .ex-nav-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
  }
  .ex-nav-logo img {
    height: 52px;
  }
  .ex-nav-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    gap: 0.9rem;
  }
  .ex-breadcrumbs {
    flex: 1 1 42%;
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    width: 100%;
  }
  .ex-breadcrumbs a,
  .ex-breadcrumbs .active {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.34rem 0.78rem;
    font-size: 0.82rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.01em;
  }
  .ex-breadcrumbs a {
    color: #6f5a54;
    background: #fff;
    border: 1px solid rgba(45,31,26,0.1);
    transition: color 0.24s, background-color 0.24s, border-color 0.24s, transform 0.24s;
  }
  .ex-breadcrumbs a:hover {
    transform: translateY(-1px);
    border-color: rgba(227,104,136,0.24);
    color: var(--blush);
  }
  .ex-breadcrumbs a:focus-visible {
    outline: 2px solid rgba(227,104,136,0.55);
    outline-offset: 2px;
  }
  .ex-breadcrumbs .active {
    color: #fff;
    background: linear-gradient(135deg, var(--blush), var(--tangerine));
  }
  .ex-breadcrumbs span[aria-hidden='true'] {
    color: #b39589;
    font-size: 0.75rem;
    font-weight: 700;
  }
  .ex-nav-back-card {
    min-width: 0;
    flex: initial;
    gap: 0.85rem;
    padding: 0.72rem 1rem;
    border-radius: 14px;
    background: linear-gradient(125deg, rgba(227,104,136,0.14), rgba(244,154,110,0.16));
    border: 1px solid rgba(227,104,136,0.26);
    color: inherit;
    box-shadow: 0 8px 24px rgba(45,31,26,0.08);
    transition: transform 0.24s, box-shadow 0.24s, border-color 0.24s;
    width: 100%;
  }
  .ex-nav-back-card:hover {
    transform: translateY(-2px);
    border-color: rgba(227,104,136,0.4);
    box-shadow: 0 14px 30px rgba(45,31,26,0.12);
    background: linear-gradient(125deg, rgba(227,104,136,0.14), rgba(244,154,110,0.16));
    color: inherit;
  }
  .ex-nav-back-card:focus-visible {
    outline: 2px solid rgba(227,104,136,0.58);
    outline-offset: 3px;
  }
  .ex-back-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--blush), var(--tangerine));
    box-shadow: 0 6px 16px rgba(227,104,136,0.28);
  }
  .ex-back-icon svg {
    width: 17px;
    height: 17px;
  }
  .ex-back-copy {
    min-width: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.16rem;
  }
  .ex-back-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #4d2e28;
  }
  .ex-back-subtitle {
    display: inline;
    font-size: 0.8rem;
    line-height: 1.2;
    color: #755e56;
  }
}

/* Hero */
.ex-hero {
  position: relative;
  height: 420px;
  margin-top: 100px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ex-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ex-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,31,26,0.65), rgba(227,104,136,0.45));
}
.ex-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 800px; padding: 0 2rem;
}
.ex-label {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #fff; margin-bottom: 1rem;
}
.ex-label::before, .ex-label::after {
  content: ''; width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--butter), var(--tangerine));
  border-radius: 2px;
}
.ex-hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.ex-hero p {
  font-size: 1.15rem;
  opacity: 0.95;
}

/* Body */
.ex-body {
  max-width: 1100px; margin: 0 auto;
  padding: 5rem 2rem;
}
.ex-intro {
  font-size: 1.15rem; color: var(--muted);
  max-width: 800px; margin: 0 auto 4rem;
  text-align: center;
}
.ex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 4rem;
}
.ex-feature {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 10px 30px rgba(45,31,26,0.06);
  border: 1px solid rgba(45,31,26,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ex-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(227,104,136,0.12);
}
.ex-feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blush), var(--tangerine));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: #fff;
}
.ex-feature h3 {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.ex-feature p { color: var(--muted); font-size: 0.98rem; }

.ex-media {
  margin-bottom: 4rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45,31,26,0.12);
  background: #000;
  aspect-ratio: 16 / 9;
  position: relative;
}
.ex-media img, .ex-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ex-media-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  pointer-events: none;
}
.ex-details {
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(45,31,26,0.06);
}
.ex-details h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--deep-text);
}
.ex-details p { color: var(--muted); margin-bottom: 1rem; font-size: 1.02rem; }
.ex-details ul {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem 2rem;
}
.ex-details li {
  position: relative; padding-left: 1.75rem;
  color: var(--deep-text); font-weight: 500;
}
.ex-details li::before {
  content: ''; position: absolute;
  left: 0; top: 0.55rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--tangerine));
}

/* CTA */
.ex-cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--blush), var(--tangerine));
  border-radius: 24px;
  color: #fff;
}
.ex-cta h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.ex-cta p { opacity: 0.95; margin-bottom: 1.75rem; }
.ex-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--blush);
  padding: 0.95rem 2.25rem;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ex-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }

/* Footer */
.ex-foot {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(45,31,26,0.08);
}

@media (max-width: 720px) {
  .ex-hero { margin-top: 88px; }
  .ex-hero { height: 340px; }
  .ex-body { padding: 3rem 1.25rem; }
  .ex-details { padding: 2rem 1.5rem; }
}
