/* ==========================================================================
   PUKEPUKE 'O TONGA — Design System
   Palette inspired by the Tongan flag (red/white), the Pacific (ocean teal)
   and ngatu / tapa cloth (cream, gold, deep ink).
   ========================================================================== */

:root {
  /* Colour tokens */
  --ink: #0a0a0a;
  --ink-2: #111111;
  --ink-3: #161616;
  --teal: #0f6f74;
  --teal-soft: #1d8a8a;
  --coral: #b54a08;
  --coral-deep: #8f3605;
  --gold: #e8b44a;
  --gold-soft: #f3d38a;
  --sand: #f6efe1;
  --paper: #fdfaf3;
  --white: #ffffff;
  --line: rgba(11, 32, 50, 0.12);
  --line-light: rgba(253, 250, 243, 0.16);
  --text: #1a1a1a;
  --text-light: #eaf3f4;
  --muted: #54687b;
  --muted-light: #a9c2c8;

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  /* Shape + shadow */
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 34px;
  --shadow-sm: 0 6px 18px rgba(11, 32, 50, 0.08);
  --shadow-md: 0 16px 44px rgba(11, 32, 50, 0.12);
  --shadow-lg: 0 34px 80px rgba(11, 32, 50, 0.22);
  --shadow-glow: 0 0 0 0 rgba(232, 180, 74, 0);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --nav-h: 84px;

  /* Ngatu / tapa pattern (gold diamonds) — used as watermark texture */
  --tapa: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23e8b44a' stroke-width='1.6' opacity='0.5'%3E%3Cpath d='M48 10 L74 36 L48 62 L22 36 Z'/%3E%3Cpath d='M48 62 L74 88 L48 114 L22 88 Z'/%3E%3Ccircle cx='48' cy='36' r='4' fill='%23e8b44a' opacity='0.55'/%3E%3Ccircle cx='48' cy='88' r='4' fill='%23e8b44a' opacity='0.55'/%3E%3C/g%3E%3C/svg%3E");
  --tapa-line: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='28' viewBox='0 0 120 28'%3E%3Cg fill='none' stroke='%23e8b44a' stroke-width='1.4' opacity='0.6'%3E%3Cpath d='M0 20 L15 6 L30 20 L45 6 L60 20 L75 6 L90 20 L105 6 L120 20'/%3E%3C/g%3E%3C/svg%3E");
  --waves: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='36' viewBox='0 0 140 36'%3E%3Cg fill='none' stroke='%230f6f74' stroke-width='2' opacity='0.35'%3E%3Cpath d='M0 10 Q 17.5 0 35 10 T 70 10 T 105 10 T 140 10'/%3E%3Cpath d='M0 24 Q 17.5 14 35 24 T 70 24 T 105 24 T 140 24'/%3E%3C/g%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Reset + base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Focus visibility for a11y */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }

.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
.section--dark { background: var(--ink); color: var(--text-light); }
.section--sand { background: var(--sand); }
.section--teal { background: linear-gradient(160deg, #0d1f22, var(--ink-3)); color: var(--text-light); }
.section--coral { background: linear-gradient(150deg, var(--coral-deep), var(--coral)); color: #fff; }

.section--dark h1, .section--dark h2, .section--dark h3,
.section--teal h1, .section--teal h2, .section--teal h3,
.section--coral h1, .section--coral h2, .section--coral h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow--light { color: var(--gold-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::after { content: ""; width: 34px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }
.section-head p a { color: var(--coral); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.section p a:not(.btn) { text-decoration: underline; text-underline-offset: 3px; }
.section--dark .section-head p, .section--teal .section-head p { color: var(--muted-light); }
.section--coral .section-head p { color: rgba(255, 255, 255, 0.85); }

.lead { font-size: 1.15rem; color: var(--muted); }
.section--dark .lead, .section--teal .lead { color: var(--muted-light); }

.gradient-text {
  background: linear-gradient(100deg, var(--gold) 10%, var(--coral) 55%, var(--teal-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 12px 30px rgba(226, 122, 32, 0.35); }
.btn--primary:hover { background: var(--coral-deep); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(226, 122, 32, 0.4); }

.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 12px 30px rgba(232, 180, 74, 0.35); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(232, 180, 74, 0.45); }

.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(11, 32, 50, 0.35); }
.btn--ghost:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-3px); }

.btn--light { background: rgba(255, 255, 255, 0.12); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.45); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255, 255, 255, 0.24); transform: translateY(-3px); }

.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   Preloader
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__mark { display: grid; place-items: center; gap: 18px; }
.preloader__ring {
  width: 74px; height: 74px;
  border-radius: 50%;
  border: 3px solid rgba(232, 180, 74, 0.25);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}
.preloader__word {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-soft);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  animation: pulse-soft 1.4s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-soft { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

/* --------------------------------------------------------------------------
   Progress bar + back to top
   -------------------------------------------------------------------------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  z-index: 1200;
  transition: width 0.08s linear;
}

.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 1100;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.35s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--coral); color: #fff; }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 0;
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin-inline: auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; letter-spacing: 0.04em; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-soft); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > li > a {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
  border-radius: 10px;
  transition: color 0.25s ease;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 5px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links > li > a:hover { color: #fff; }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-links > li > a.active { color: var(--gold-soft); }

.nav-cta { display: inline-flex; align-items: center; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.9rem; }

.hamburger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  place-items: center;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  left: 0; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s ease;
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translateY(7px) rotate(45deg); }
.hamburger.open span::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-links {
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
}
@media (max-width: 1020px) {
  .hamburger { display: grid; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(170deg, var(--ink), #050505 80%);
    z-index: 1001;
    transform: translateX(100%);
    opacity: 0.6;
    padding: 24px;
  }
  .nav-links.open { transform: translateX(0); opacity: 1; }
  .nav-links > li > a { font-size: 1.5rem; font-family: var(--font-display); padding: 12px 20px; }
  .nav-links > li > a::after { display: none; }
  .nav-links .nav-mobile-cta { display: block; margin-top: 24px; }
}
@media (min-width: 1021px) { .nav-mobile-cta { display: none; } }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(29, 138, 138, 0.45), transparent 60%),
    radial-gradient(900px 600px at -10% 100%, rgba(226, 122, 32, 0.30), transparent 55%),
    linear-gradient(160deg, #050505 0%, var(--ink) 45%, #101010 100%);
  overflow: hidden;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: var(--tapa);
  background-size: 96px 96px;
  opacity: 0.07;
  z-index: 1;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
}
.hero__bgphoto {
  position: absolute;
  inset: 0;
  background: url("../assets/Heroimage.jpg") center/cover no-repeat;
  opacity: 0.5;
  animation: kenburns 26s ease-in-out infinite alternate;
}
.hero__bgphoto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 45%, rgba(0, 0, 0, 0.5) 100%);
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: drift 16s ease-in-out infinite alternate;
}
.hero__blob--1 { width: 420px; height: 420px; background: var(--teal); top: -120px; right: -80px; }
.hero__blob--2 { width: 340px; height: 340px; background: var(--coral); bottom: -100px; left: -90px; animation-delay: -6s; }
.hero__blob--3 { width: 260px; height: 260px; background: var(--gold); top: 40%; left: 55%; opacity: 0.35; animation-delay: -11s; }
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(46px, -30px) scale(1.08); }
  100% { transform: translate(-28px, 26px) scale(0.96); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: calc(var(--nav-h) + 40px) 0 90px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 26px;
}
.hero__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: pulse-soft 1.6s infinite; }

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 620;
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.9em) rotate(4deg);
  animation: word-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
@keyframes word-in { to { opacity: 1; transform: none; } }

.hero__lead {
  max-width: 640px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted-light);
  margin-bottom: 36px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(44px, 6vw, 72px);
}
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-item b { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; }
.meta-item span { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); }

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  width: 2px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-hint 1.8s ease-in-out infinite;
}
@keyframes scroll-hint { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { opacity: 0; } }

/* Floating shape graphics */
.float-item { position: absolute; z-index: 1; animation: floaty 7s ease-in-out infinite; opacity: 0.8; }
.float-item--1 { top: 18%; right: 12%; width: 64px; animation-delay: -1s; }
.float-item--2 { top: 56%; right: 5%; width: 40px; animation-delay: -3.5s; }
.float-item--3 { top: 30%; left: 6%; width: 46px; animation-delay: -5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(8deg); }
}

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */
.ticker {
  background: var(--ink);
  border-top: 1px solid rgba(232, 180, 74, 0.25);
  border-bottom: 1px solid rgba(232, 180, 74, 0.25);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-soft);
  white-space: nowrap;
}
.ticker__item::after { content: "✦"; font-style: normal; color: var(--coral); font-size: 0.8rem; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */
.reveal, .reveal-left, .reveal-right, .reveal-zoom {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal { transform: translateY(46px); }
.reveal-left { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }
.reveal-zoom { transform: scale(0.9); }
.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-zoom { opacity: 1; transform: none; transition: none; }
  .ticker__track, .hero__blob, .float-item { animation: none !important; }
}

/* --------------------------------------------------------------------------
   Journey / split feature
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split__media { position: relative; }
.split__media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.frame-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split__media .frame--alt { transform: rotate(2deg); }
.split__media::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(232, 180, 74, 0.55);
  transform: rotate(3deg);
  pointer-events: none;
}
.split__badge {
  position: absolute;
  bottom: -26px;
  right: -14px;
  z-index: 3;
  background: var(--coral);
  color: #fff;
  border-radius: 20px;
  padding: 18px 26px;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
.split__badge b { display: block; font-family: var(--font-display); font-size: 1.9rem; line-height: 1; }
.split__badge span { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.9; }
.split__body h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 18px; }
.split__body p { color: var(--muted); margin-bottom: 16px; }
.split__body .checks { margin: 26px 0 30px; display: grid; gap: 12px; }
.checks li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.checks li svg { width: 22px; height: 22px; flex: none; margin-top: 3px; }

/* --------------------------------------------------------------------------
   Image placeholder (upload zones)
   -------------------------------------------------------------------------- */
.img-ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(29, 138, 138, 0.18), transparent 55%),
    radial-gradient(120% 90% at 100% 100%, rgba(226, 122, 32, 0.16), transparent 55%),
    linear-gradient(160deg, #101010, #0a0a0a);
  color: var(--text-light);
  display: grid;
  place-items: center;
  text-align: center;
  aspect-ratio: var(--ph, 1);
  border: 2px dashed rgba(232, 180, 74, 0.55);
  padding: 24px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.img-ph:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.img-ph__inner { position: relative; z-index: 2; display: grid; gap: 12px; justify-items: center; }
.img-ph__icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(232, 180, 74, 0.14);
  border: 1px solid rgba(232, 180, 74, 0.4);
  color: var(--gold);
  animation: floaty 5s ease-in-out infinite;
}
.img-ph__icon svg { width: 28px; height: 28px; }
.img-ph__label { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); }
.img-ph__hint { font-size: 0.86rem; color: var(--muted-light); max-width: 240px; }
.img-ph__pattern {
  position: absolute; inset: 0;
  background-image: var(--tapa);
  background-size: 84px 84px;
  opacity: 0.10;
}
.img-ph--light {
  background:
    radial-gradient(120% 100% at 90% 0%, rgba(232, 180, 74, 0.22), transparent 55%),
    linear-gradient(160deg, #f3ead7, #e9dcc0);
  color: var(--ink);
  border-color: rgba(11, 32, 50, 0.28);
}
.img-ph--light .img-ph__label { color: var(--coral-deep); }
.img-ph--light .img-ph__hint { color: var(--muted); }
.img-ph--light .img-ph__icon { color: var(--coral); background: rgba(226, 122, 32, 0.12); border-color: rgba(226, 122, 32, 0.35); }

/* --------------------------------------------------------------------------
   Cards (programs / services)
   -------------------------------------------------------------------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 1100px) { .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 980px) { .cards-3, .cards-2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cards-3, .cards-2, .cards-4 { grid-template-columns: 1fr; } }

.program-card, .feature-card {
  position: relative;
  border-radius: var(--radius);
  padding: 38px 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.program-card:hover, .feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.program-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  height: 70%;
  background: var(--tapa);
  background-size: 76px 76px;
  opacity: 0.07;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.program-card:hover::after { opacity: 0.14; }
.program-card__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: linear-gradient(150deg, rgba(29, 138, 138, 0.14), rgba(232, 180, 74, 0.2));
  color: var(--teal);
  transition: transform 0.35s ease;
}
.program-card:hover .program-card__icon { transform: rotate(-8deg) scale(1.08); }
.program-card__icon svg { width: 30px; height: 30px; }
.program-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.feature-card h2 { font-size: 1.4rem; margin-bottom: 12px; }
.program-card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 20px; }
.program-card .card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--coral); font-size: 0.95rem;
}
.program-card .card-link svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.program-card .card-link:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
}
.stat span { display: block; margin-top: 10px; font-size: 0.88rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-light); }

/* --------------------------------------------------------------------------
   Timeline (about)
   -------------------------------------------------------------------------- */
.timeline { position: relative; max-width: 780px; margin-inline: auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(var(--gold), var(--teal), var(--coral));
  transform: translateX(-50%);
  opacity: 0.6;
}
.tl-item {
  position: relative;
  width: 50%;
  padding: 0 44px 52px;
}
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; text-align: left; }
.tl-item__dot {
  position: absolute;
  top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--coral);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 3px var(--coral);
}
.tl-item:nth-child(odd) .tl-item__dot { right: -9px; }
.tl-item:nth-child(even) .tl-item__dot { left: -9px; }
.tl-item__year {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 6px;
}
.tl-item h3 { font-size: 1.3rem; margin-bottom: 8px; }
.tl-item p { color: var(--muted); font-size: 0.98rem; }
@media (max-width: 720px) {
  .timeline::before { left: 9px; }
  .tl-item, .tl-item:nth-child(odd), .tl-item:nth-child(even) { width: 100%; left: 0; text-align: left; padding: 0 0 44px 46px; }
  .tl-item__dot, .tl-item:nth-child(odd) .tl-item__dot, .tl-item:nth-child(even) .tl-item__dot { left: 0; right: auto; }
}

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.team-card__photo { position: relative; aspect-ratio: 340 / 360; overflow: hidden; }
.team-card__photo .img-ph, .team-card__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  border: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover .img-ph, .team-card:hover img { transform: scale(1.07); }
.team-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 80px 26px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.96) 42%);
  color: #fff;
  transform: translateY(26px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover .team-card__body { transform: translateY(0); }
.team-card__role {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.team-card__name { font-family: var(--font-display); font-size: 1.35rem; color: #fff; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item .img-ph, .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  border-radius: 0; border: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img, .gallery-item:hover .img-ph { transform: scale(1.08); }
.gallery-item__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 18px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
}
.gallery-item:hover .gallery-item__cap { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(920px, 92vw);
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.3rem;
  display: grid; place-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.lightbox__close:hover { background: var(--coral); transform: rotate(90deg); }

/* --------------------------------------------------------------------------
   Music library
   -------------------------------------------------------------------------- */
.track-list { display: grid; gap: 14px; }
.track {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.track:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: rgba(226, 122, 32, 0.35); }
.track__play {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--coral), var(--coral-deep));
  color: #fff;
  box-shadow: 0 8px 20px rgba(226, 122, 32, 0.35);
  transition: transform 0.3s ease;
}
.track:hover .track__play { transform: scale(1.08); }
.track__play { -webkit-user-drag: none; user-select: none; }
.track__play.playing { animation: spin 2.6s linear infinite; }
.track__play svg { width: 22px; height: 22px; }
.track__info b { display: block; font-size: 1.02rem; }
.track__info span { font-size: 0.86rem; color: var(--muted); }
.track__len { font-size: 0.86rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.track__bar {
  grid-column: 2 / -1;
  height: 4px;
  border-radius: 3px;
  background: rgba(11, 32, 50, 0.1);
  overflow: hidden;
  display: none;
}
.track.playing .track__bar { display: block; }
.track__bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  transition: width 0.35s linear;
}

/* Vinyl */
.vinyl-wrap { display: grid; place-items: center; padding: 20px; }
.vinyl {
  width: min(360px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--coral-deep) 0 18%, #1a1a1a 18.5% 100%);
  position: relative;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  animation: spin 14s linear infinite;
  animation-play-state: paused;
}
.vinyl.playing { animation-play-state: running; }
.vinyl::before {
  content: "";
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.35);
}
.vinyl::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%, transparent 0 3px, rgba(255, 255, 255, 0.04) 3px 4px);
}
.vinyl__label {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, var(--gold-soft), var(--gold));
  display: grid;
  place-items: center;
  z-index: 2;
}
.vinyl__label span { font-family: var(--font-display); font-size: 0.8rem; color: var(--ink); text-align: center; padding: 6px; }

/* --------------------------------------------------------------------------
   Video / POT TV
   -------------------------------------------------------------------------- */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 860px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.video-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.video-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    radial-gradient(80% 100% at 20% 0%, rgba(29, 138, 138, 0.35), transparent 60%),
    linear-gradient(150deg, #0f0f0f, #050505);
}
.video-card__media img.yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-card:hover .yt-thumb { transform: scale(1.06); }
.video-card__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card__media .play {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 0 0 0 rgba(226, 122, 32, 0.5);
  animation: ripple 2.4s ease-out infinite;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.video-card:hover .play { transform: scale(1.12); }
@keyframes ripple {
  0% { box-shadow: 0 0 0 0 rgba(226, 122, 32, 0.55); }
  100% { box-shadow: 0 0 0 34px rgba(226, 122, 32, 0); }
}
.play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-card__body { padding: 22px 24px; color: #fff; }
.video-card__body .tag { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.video-card__body h3 { color: #fff; font-size: 1.25rem; margin: 8px 0 6px; }
.video-card__body p { font-size: 0.92rem; color: var(--muted-light); }

/* --------------------------------------------------------------------------
   Shop
   -------------------------------------------------------------------------- */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 1020px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .shop-grid { grid-template-columns: 1fr; } }

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
}
.product-card__media .img-ph, .product-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  aspect-ratio: auto;
  border-radius: 0; border: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .img-ph, .product-card:hover img { transform: scale(1.06); }
.product-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card__body h3 { font-size: 1.12rem; }
.product-card__body p { font-size: 0.9rem; color: var(--muted); flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.product-card__price { font-family: var(--font-display); font-size: 1.3rem; color: var(--coral); font-weight: 600; }
.product-card__add {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.product-card__add:hover { background: var(--coral); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.info-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--ink), #101010);
  color: var(--text-light);
  padding: clamp(30px, 4vw, 46px);
  position: relative;
  overflow: hidden;
}
.info-card::after { content: ""; position: absolute; inset: 0; background-image: var(--tapa); background-size: 88px 88px; opacity: 0.08; pointer-events: none; }
.info-card > * { position: relative; z-index: 1; }
.info-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.info-card > p { color: var(--muted-light); margin-bottom: 30px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--line-light); }
.info-row svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.info-row b { display: block; color: #fff; font-weight: 600; }
.info-row span { font-size: 0.94rem; color: var(--muted-light); }
.info-hours { margin-top: 26px; border-top: 1px dashed var(--line-light); padding-top: 22px; }
.info-hours h4 { color: var(--gold-soft); font-family: var(--font-body); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 12px; }
.info-hours li { display: flex; justify-content: space-between; padding: 7px 0; font-size: 0.95rem; color: var(--muted-light); }
.info-hours li b { color: #fff; font-weight: 500; }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.84rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field textarea {
  padding: 15px 18px;
  border-radius: 14px;
  border: 1.5px solid rgba(11, 32, 50, 0.14);
  background: var(--sand);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 111, 116, 0.15);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-card .btn { margin-top: 24px; width: 100%; justify-content: center; }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(15, 111, 116, 0.1);
  border: 1px solid rgba(15, 111, 116, 0.35);
  color: var(--teal);
  font-weight: 500;
  align-items: center;
  gap: 12px;
}
.form-success.show { display: flex; animation: pop-in 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.form-success svg { width: 22px; height: 22px; flex: none; }
@keyframes pop-in { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }

/* --------------------------------------------------------------------------
   News / CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(232, 180, 74, 0.25), transparent 60%),
    linear-gradient(150deg, var(--ink-3), var(--teal));
  color: #fff;
  padding: clamp(44px, 6vw, 80px);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--tapa);
  background-size: 96px 96px;
  opacity: 0.08;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted-light); max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero__cta { justify-content: center; }
.cta-band > * { position: relative; z-index: 1; }

/* Newsletter */
.newsletter {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 26px auto 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  padding: 10px 18px;
  font-size: 0.98rem;
}
.newsletter input::placeholder { color: var(--muted-light); }
.newsletter .btn { padding: 11px 24px; flex: none; }

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(70px, 10vw, 130px)) 0 clamp(60px, 8vw, 110px);
  color: #fff;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(29, 138, 138, 0.4), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(226, 122, 32, 0.28), transparent 55%),
    linear-gradient(155deg, #050505, var(--ink) 55%, #101010);
  overflow: hidden;
}
.page-hero__pattern { position: absolute; inset: 0; background-image: var(--tapa); background-size: 96px 96px; opacity: 0.08; z-index: 1; }
.page-hero__photo {
  position: absolute;
  inset: 0;
  background: url("../assets/Heorimage2.jpg") center/cover no-repeat;
  opacity: 0.35;
}
.page-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.55));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); color: #fff; margin-bottom: 18px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { color: var(--muted-light); max-width: 680px; font-size: 1.12rem; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--gold-soft); transition: color 0.3s ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255, 255, 255, 0.5); }

/* --------------------------------------------------------------------------
   Wave divider
   -------------------------------------------------------------------------- */
.wave-divider { display: block; width: 100%; height: 70px; margin-bottom: -1px; }
.wave-divider path { fill: var(--paper); }

/* Footer */
.site-footer { background: var(--ink); color: var(--text-light); padding: clamp(60px, 8vw, 90px) 0 0; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; background-image: var(--tapa); background-size: 96px 96px; opacity: 0.05; pointer-events: none; }
.footer-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: 50px;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2, .site-footer h4 {
  color: var(--gold-soft); font-family: var(--font-body); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-brand p { color: var(--muted-light); margin: 16px 0 22px; max-width: 300px; font-size: 0.95rem; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-light);
  transition: all 0.3s ease;
}
.socials a:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-4px); }
.socials svg { width: 19px; height: 19px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted-light); transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted-light); margin-bottom: 14px; font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line-light);
  padding: 26px 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: 0.88rem; color: var(--muted-light);
}
.footer-bottom a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--gold); }
.info-row a { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Misc animations
   -------------------------------------------------------------------------- */
.spin-slow { animation: spin 22s linear infinite; }
@keyframes bounce-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.animated-text {
  display: inline-block;
  animation: bounce-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Print-friendly */
@media print {
  .preloader, .to-top, .progress-bar, .hero__scroll, .ticker { display: none; }
  body { background: #fff; }
}
