/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* === Brand tokens === */
:root {
  --umbraco-blue: #3544B1;
  --umbraco-deep: #1a2266;
  --sandstone: #E8DDD3;
  --sandstone-light: #F5F0EB;
  --sandstone-dark: #C4B5A5;
  --rose-white: #FAFAF8;
  --warm-black: #1C1917;
  --warm-gray: #57534E;
  --accent-gold: #E8C84A;
  --accent-rose: #E8B4B8;
  --max-w: 1100px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--rose-white);
  color: var(--warm-black);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* === NOISE TEXTURE === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
}

a { color: var(--umbraco-blue); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--umbraco-deep); }

/* === ANIMATIONS === */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
}

/* === HEADER === */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--sandstone-dark);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  background: var(--rose-white);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--umbraco-blue) 0%, var(--accent-gold) 40%, var(--accent-gold) 60%, var(--umbraco-blue) 100%);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-mark {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img { width: 72px; height: auto; }

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-black);
  margin: 5px 0;
  transition: all 0.2s ease;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.25s ease, left 0.25s ease;
}

.header-nav a:hover { color: var(--umbraco-blue); }
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; left: 0; }
.header-nav a.active { color: var(--umbraco-blue); }

.header-meta {
  font-size: 0.8rem;
  color: var(--warm-gray);
  text-align: right;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.header-meta strong {
  color: var(--warm-black);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === BUTTONS === */
.btn {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.btn-primary {
  background: var(--umbraco-blue);
  color: white;
}

.btn-primary:hover {
  background: var(--umbraco-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(53, 68, 177, 0.3);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--warm-black);
  border: 1.5px solid var(--warm-black);
}

.btn-outline:hover {
  background: var(--warm-black);
  color: white;
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--warm-black);
}

.btn-gold:hover {
  background: #d4b433;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 200, 74, 0.35);
  color: var(--warm-black);
}

/* === SECTION LABELS === */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--umbraco-blue);
  margin-bottom: 0.75rem;
}

.section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--umbraco-blue);
  margin-left: 8px;
  vertical-align: middle;
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--sandstone-light) 0%, var(--sandstone) 100%);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border: 2px solid var(--sandstone-dark);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--sandstone-dark);
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  animation: slideIn 0.6s ease-out both;
}

.page-hero h1 .highlight {
  color: var(--umbraco-blue);
  position: relative;
}

.page-hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.15em;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold);
}

.page-hero p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--warm-gray);
  animation: slideIn 0.6s 0.1s ease-out both;
}

/* === PAGE CONTENT === */
.page-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 3rem 3rem;
}

.page-body h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--warm-black);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 3px solid var(--accent-gold);
  display: inline-block;
}

.page-body h2:first-child { margin-top: 0; }

.page-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
  color: var(--warm-gray);
}

.page-body .attribution {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sandstone-dark);
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* === ABOUT SECTIONS === */
.about-section { margin-bottom: 3rem; }

.about-section h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--warm-black);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 3px solid var(--accent-gold);
  display: inline-block;
}

.about-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
  color: var(--warm-gray);
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.benefit {
  padding: 1.25rem;
  background: var(--sandstone-light);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.benefit:hover {
  border-color: var(--umbraco-blue);
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.benefit h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--warm-black);
  margin-bottom: 0.35rem;
}

.benefit p { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.5; margin-bottom: 0; }

/* Timeline */
.timeline { margin-top: 0.75rem; }

.timeline-item {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sandstone-dark);
}
.timeline-item:last-child { border-bottom: none; }

.timeline-item .time {
  flex-shrink: 0;
  width: 70px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--umbraco-blue);
  padding-top: 0.15rem;
}

.timeline-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.timeline-item p { font-size: 0.85rem; color: var(--warm-gray); margin-bottom: 0; }

/* FAQ */
.faq { margin-top: 0.5rem; }

.faq details {
  border-bottom: 1px solid var(--sandstone-dark);
  padding: 0.85rem 0;
}

.faq summary {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--warm-black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.02em;
}

.faq summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--warm-gray);
  transition: transform 0.15s;
}

.faq details[open] summary::after { content: '\2212'; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--warm-gray); line-height: 1.6; }

/* About CTA */
.about-cta {
  text-align: center;
  background: var(--umbraco-deep);
  color: white;
  padding: 2.5rem 2rem;
  margin: 2rem 0;
}

.about-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: 0.5rem;
  border: none;
  padding: 0;
  display: block;
}

.about-cta p { color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
.about-cta .cta-row { justify-content: center; }

.colophon {
  text-align: center;
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-style: italic;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sandstone-dark);
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  background: white;
  overflow: hidden;
  border: 1px solid var(--sandstone-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.gallery-item--wide { grid-column: 1 / -1; }

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-item--wide img { max-height: 400px; }
.gallery-item:not(.gallery-item--wide) img { aspect-ratio: 16 / 9; }

.gallery-item figcaption { padding: 1rem 1.25rem 1.25rem; }

.gallery-item figcaption strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--warm-black);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.gallery-item figcaption span {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--sandstone-light);
  border: 1px solid var(--sandstone-dark);
}

.gallery-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--warm-black);
  margin-bottom: 0.35rem;
}

.gallery-cta p { font-size: 0.9rem; color: var(--warm-gray); }

/* === FOOTER === */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  max-width: 100%;
  border-top: 1px solid var(--sandstone-dark);
  font-size: 0.72rem;
  color: var(--warm-gray);
  background: var(--sandstone-light);
}

.footer a {
  color: var(--umbraco-blue);
  text-decoration: none;
}

.footer a:hover { text-decoration: underline; }

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.heart {
  color: var(--umbraco-blue);
  display: inline-block;
  animation: heartbeat 2s ease-in-out infinite;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .header { padding: 1.25rem 1.5rem; flex-wrap: wrap; }
  .header-meta { display: none; }
  .mobile-toggle { display: block; }
  .header-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 10;
    padding-top: 1rem;
    gap: 0.75rem;
    border-top: 1px solid var(--sandstone-dark);
    margin-top: 1rem;
  }
  .header-nav.open { display: flex; }

  .page-hero { padding: 2.5rem 1.5rem; }
  .page-hero h1 { font-size: 1.75rem; }

  .page-body { padding: 2rem 1.5rem; }

  .benefits-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  .footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem 1.5rem;
  }
}
</style>
