@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Josefin+Sans:ital,wght@0,300;0,400;0,600;1,300&family=Great+Vibes&display=swap');

/* ================================================
   SWIPER — INLINE
   ================================================ */
.swiper{overflow:hidden;position:relative;width:100%}
.swiper-wrapper{display:flex;align-items:stretch;box-sizing:content-box;transition-property:transform;will-change:transform}
.swiper-slide{flex-shrink:0;width:100%;position:relative}
.swiper-pagination{position:absolute;text-align:center;z-index:10;bottom:6px!important;left:0;width:100%}
.swiper-pagination-bullet{width:6px;height:6px;display:inline-block;border-radius:50%;background:rgba(100,160,255,.5);opacity:.45;margin:0 3px;cursor:pointer;transition:opacity .2s,transform .2s}
.swiper-pagination-bullet-active{opacity:1;transform:scale(1.35);background:#E8C820}
.swiper-button-prev::after,.swiper-button-next::after,
.swiper-button-prev::before,.swiper-button-next::before{display:none!important;content:none!important}

/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
  --c-primary:    var(--inv-primary,   #2E5A2A);
  --c-secondary:  var(--inv-secondary, #1A3A6E);
  --c-green:      #2E5A2A;
  --c-green-lt:   #4A8A44;
  --c-grey:       #606870;
  --c-blue:       #1A3A6E;
  --c-blue-lt:    #2A5A9E;
  --c-yellow:     #E8C820;
  --c-rain:       rgba(140,190,240,.55);
  --c-bg:         #EFF5EE;
  --c-bg-card:    #F5FAF4;
  --c-text:       #1A2418;
  --c-text-mid:   #2E4030;
  --c-text-dim:   rgba(26,36,24,.55);
  --c-border:     rgba(46,90,42,.18);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Josefin Sans', sans-serif;
  --font-script:  'Great Vibes', cursive;
  --nav-h:        62px;
  --r-card:       10px;
}

/* ================================================
   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); background: var(--c-bg); color: var(--c-text); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ================================================
   UTILITY
   ================================================ */
/* Standard reveal */
.xx-reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
}
.xx-reveal.visible { opacity: 1; transform: none; }

/* Unique Element: PUDDLE REFLECTION REVEAL
   Section titles start flipped (scaleY -1 = reflection in puddle),
   then transition to normal (scaleY 1 = title "emerges" from water) */
.tmh-puddle-reveal {
  opacity: 0;
  transform: scaleY(-1);
  transform-origin: bottom center;
  transition: opacity 1.0s ease, transform 1.0s cubic-bezier(.17,.67,.28,1.05);
  will-change: transform, opacity;
}
.tmh-puddle-reveal.visible {
  opacity: 1;
  transform: scaleY(1);
}

.xx-hidden { display: none !important; }
.xx-tab-panel.xx-hidden { display: none !important; }

#xx-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%; z-index: 9999;
  pointer-events: none; transition: width .12s linear;
}

/* ================================================
   FLOAT CONTROLS
   ================================================ */
.xx-fabs {
  position: fixed; bottom: calc(var(--nav-h) + 12px); right: 14px;
  display: flex; flex-direction: column; gap: 8px; z-index: 4000;
}
.xx-fb.tmh-fab {
  width: 44px; height: 44px; border-radius: 50%;
  background: white;
  border: 1.5px solid rgba(46,90,42,.2);
  color: var(--c-green);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  box-shadow: 0 2px 12px rgba(26,58,110,.15);
  transition: background .2s, transform .15s;
}
.xx-fb.tmh-fab:hover { background: var(--c-blue); color: white; transform: scale(1.07); }
.xx-fab-lbl { font-size: .44rem; letter-spacing: .07em; text-transform: uppercase; line-height: 1; }

/* ================================================
   BOTTOM NAV
   ================================================ */
#xx-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 3000; background: white;
  border-top: 1px solid rgba(46,90,42,.12);
  box-shadow: 0 -2px 16px rgba(26,58,110,.08);
}
.tmh-nav-inner { display: flex; justify-content: space-around; align-items: center; height: var(--nav-h); padding: 0 4px; }
.tmh-nav-btn { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 6px 8px; color: var(--c-text-dim); font-size: .56rem; letter-spacing: .07em; text-transform: uppercase; transition: color .2s; }
.tmh-nav-btn:hover { color: var(--c-blue); }

/* ================================================
   LIGHTBOX NAV
   ================================================ */
.tmh-lb-prev,.tmh-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(26,58,110,.2); border: 1px solid rgba(100,160,255,.3);
  color: white; font-size: 2.2rem; line-height: 1;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.tmh-lb-prev { left: 14px; }
.tmh-lb-next { right: 14px; }
.tmh-lb-prev:hover,.tmh-lb-next:hover { background: rgba(26,58,110,.4); }

/* ================================================
   SHARE SHEET
   ================================================ */
.tmh-share-box { background: white; border-radius: 20px 20px 0 0; padding: 26px 22px 30px; width: 100%; max-width: 480px; box-shadow: 0 -8px 32px rgba(26,58,110,.12); }
.tmh-share-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--c-blue); text-align: center; margin-bottom: 18px; font-style: italic; }
.tmh-share-btns { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 12px; }
.tmh-share-btn { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-radius: 10px; font-size: .8rem; font-weight: 600; letter-spacing: .04em; transition: opacity .2s; }
.tmh-share-btn:hover { opacity: .88; }
.tmh-sh-wa  { background: #25D366; color: white; }
.tmh-sh-tg  { background: #0088cc; color: white; }
.tmh-sh-fb  { background: #1877F2; color: white; }
.tmh-sh-cp  { background: var(--c-bg); color: var(--c-text); border: 1px solid var(--c-border); }
.tmh-share-close { display: block; width: 100%; padding: 12px; background: var(--c-bg); border-radius: 10px; color: var(--c-text-dim); font-size: .8rem; border: 1px solid var(--c-border); }

/* ================================================
   GATE — Signature #1: CSS Rain + Puddle Ripple
   ================================================ */
#xx-gate {
  position: fixed; inset: 0; z-index: 5000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(180deg, #080E14 0%, #0C1A28 35%, #0A1820 65%, #0C1C14 100%);
  transition: opacity .9s ease;
}
#xx-gate.xx-gate-out { opacity: 0; pointer-events: none; }

/* Sky gradient layers */
.tmh-gate-sky {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(26,58,110,.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 10%, rgba(46,90,42,.15) 0%, transparent 55%);
}

/* ── CSS RAIN — Signature #1 ── */
.tmh-rain-container {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 1;
}
.tmh-drop {
  position: absolute;
  width: 1.5px;
  top: -40px;
  background: linear-gradient(180deg, transparent 0%, rgba(140,190,240,.65) 40%, rgba(180,220,255,.8) 100%);
  border-radius: 2px;
  animation: tmh-rain-fall linear infinite;
  will-change: transform;
}
@keyframes tmh-rain-fall {
  0%   { transform: translateY(-60px) rotate(var(--drop-angle,−10deg)); opacity: 0; }
  6%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(var(--drop-angle,-10deg)); opacity: 0; }
}
/* Hero rain (lighter, fewer drops) */
.tmh-drop-hero { background: linear-gradient(180deg, transparent, rgba(180,220,255,.35)); }

/* ── PUDDLE RIPPLE ── */
.tmh-puddle-area {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none; z-index: 1;
}
.tmh-ripple {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(140,190,240,.5);
  animation: tmh-ripple-expand 3.2s ease-out infinite;
  pointer-events: none;
}
.tmh-ripple-2 { animation-delay:  .9s; border-color: rgba(140,190,240,.4); }
.tmh-ripple-3 { animation-delay: 1.8s; border-color: rgba(140,190,240,.3); }
.tmh-ripple-4 { animation-delay: 2.7s; border-color: rgba(140,190,240,.22); }
@keyframes tmh-ripple-expand {
  0%   { width: 0;    height: 0;    opacity: .9; }
  100% { width: 220px; height: 88px; opacity: 0; }
}

/* Gate content */
.tmh-gate-content {
  position: relative; z-index: 3;
  width: 100%; max-width: 420px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 28px 24px 36px;
  background: linear-gradient(to top, rgba(8,14,20,.97) 0%, rgba(8,14,20,.82) 60%, transparent 100%);
}
.tmh-gate-kicker {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-style: italic;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(140,190,240,.7); margin-bottom: 8px;
}
.tmh-gate-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140,190,240,.4), transparent);
}
.tmh-gate-to { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(140,190,240,.55); margin-bottom: 10px; }
.tmh-gate-to strong { color: rgba(220,235,255,.85); }

/* Gate names */
.tmh-gate-names { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-bottom: 10px; }
.tmh-gname { font-family: var(--font-script); color: white; }
.tmh-gname-g { font-size: clamp(2.8rem, 12vw, 4rem); line-height: 1.15; text-shadow: 0 0 30px rgba(140,190,240,.5); }
.tmh-gname-b { font-size: clamp(2.8rem, 12vw, 4rem); line-height: 1.15; text-shadow: 0 0 30px rgba(140,190,240,.5); }
.tmh-gate-et { font-family: var(--font-display); font-style: italic; font-size: .9rem; color: var(--c-yellow); line-height: 1.5; }

.tmh-gate-invite { font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(140,190,240,.5); margin-bottom: 3px; }
.tmh-gate-event { font-family: var(--font-display); font-size: clamp(1.05rem, 4.5vw, 1.4rem); color: rgba(220,235,255,.9); margin-bottom: 8px; font-style: italic; }
.tmh-gate-date { font-size: .7rem; letter-spacing: .1em; color: var(--c-yellow); border: 1px solid rgba(232,200,32,.3); padding: 4px 16px; border-radius: 20px; margin-bottom: 20px; }

.tmh-open-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--c-blue); color: white;
  font-family: var(--font-body); font-weight: 600;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 28px;
  border: 1.5px solid rgba(140,190,240,.35);
  transition: background .25s, transform .2s;
  box-shadow: 0 6px 24px rgba(26,58,110,.4);
}
.tmh-open-btn:hover { background: var(--c-blue-lt); transform: translateY(-2px); }

@media (max-height: 680px) {
  .tmh-gate-content { padding: 18px 20px 26px; }
  .tmh-gname-g,.tmh-gname-b { font-size: clamp(2.2rem, 9vw, 3rem); }
}

/* ================================================
   WRAP
   ================================================ */
#xx-wrap { background: var(--c-bg); padding-bottom: var(--nav-h); }

/* ================================================
   COMMON SECTION
   ================================================ */
.tmh-sec { padding: 56px 22px; max-width: 600px; margin: 0 auto; }
.tmh-sec-hd { text-align: center; margin-bottom: 32px; }
.tmh-kicker { font-family: var(--font-body); font-style: italic; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-blue); margin-bottom: 8px; }
.tmh-sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  color: var(--c-green); letter-spacing: .02em;
  margin-bottom: 12px; font-weight: 600;
}
.tmh-sec-rule {
  width: 80px; height: 2px; margin: 0 auto;
  background: linear-gradient(90deg, var(--c-blue), var(--c-yellow), var(--c-green));
  border-radius: 2px;
}

/* ================================================
   HERO
   ================================================ */
.tmh-hero { position: relative; min-height: 100dvh; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.xx-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; will-change: transform; }
.xx-hero-gradient { background: linear-gradient(160deg, #0A1418 0%, #0C2418 40%, #0A1428 100%); }
.xx-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,24,.82) 0%, rgba(10,20,24,.35) 45%, transparent 70%); }
.tmh-hero-rain { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.tmh-hero-content { position: relative; z-index: 2; padding: 48px 28px 64px; width: 100%; text-align: center; }
.tmh-hero-kicker { font-family: var(--font-body); font-style: italic; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(140,190,240,.7); margin-bottom: 12px; }
.tmh-hero-names { font-family: var(--font-script); color: white; text-shadow: 0 2px 24px rgba(26,58,110,.5); margin-bottom: 10px; line-height: 1.15; }
.tmh-hero-gname,.tmh-hero-bname { font-size: clamp(3.2rem, 14vw, 5.5rem); display: block; }
.tmh-hero-et { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--c-yellow); display: block; margin: 4px 0; }
.tmh-hero-date { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(140,190,240,.75); margin-bottom: 12px; }
.tmh-hero-quote { font-family: var(--font-display); font-style: italic; font-size: .9rem; color: rgba(220,235,255,.7); max-width: 360px; margin: 0 auto; line-height: 1.75; }
.tmh-hero-quote cite { display: block; font-size: .66rem; letter-spacing: .1em; margin-top: 6px; font-style: normal; opacity: .55; text-transform: uppercase; }

/* ================================================
   OPENING
   ================================================ */
.tmh-opening-sec { text-align: center; }
.tmh-opening-rain-decor { margin-bottom: 16px; }
.tmh-opening-text { font-family: var(--font-display); font-style: italic; font-size: clamp(.95rem, 4vw, 1.1rem); color: var(--c-text-mid); line-height: 1.9; max-width: 420px; margin: 0 auto; }

/* ================================================
   COUPLE
   ================================================ */
.tmh-couple-sec { background: var(--c-bg-card); }
.tmh-couple-grid { display: flex; flex-direction: column; gap: 36px; }
@media(min-width:520px) { .tmh-couple-grid { flex-direction: row; justify-content: center; gap: 28px; } }
.tmh-person-card { text-align: center; }
.tmh-person-photo-wrap { position: relative; width: 140px; height: 140px; margin: 0 auto 14px; }
.tmh-person-photo {
  width: 140px; height: 140px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 3px solid var(--c-blue);
  box-shadow: 0 0 0 4px rgba(26,58,110,.15), 0 4px 18px rgba(26,58,110,.15);
}
.tmh-photo-init { background: linear-gradient(135deg, var(--c-blue), var(--c-green)); display: flex; align-items: center; justify-content: center; }
.tmh-photo-init span { font-family: var(--font-display); font-size: 2.4rem; color: white; font-weight: 600; }
/* Ripple ring on photo */
.tmh-photo-rain-ring {
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1.5px dashed rgba(26,58,110,.25);
  animation: tmh-ring-spin 18s linear infinite;
}
@keyframes tmh-ring-spin { to { transform: rotate(360deg); } }
.tmh-person-lbl { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-blue); margin-bottom: 4px; }
.tmh-person-nick { font-family: var(--font-script); font-size: clamp(1.8rem, 7vw, 2.4rem); color: var(--c-green); line-height: 1.2; margin-bottom: 2px; }
.tmh-person-full { font-size: .76rem; color: var(--c-text-dim); margin-bottom: 4px; letter-spacing: .05em; }
.tmh-person-parents { font-size: .76rem; color: var(--c-text-dim); line-height: 1.7; font-style: italic; margin-bottom: 4px; }
.tmh-person-bio { font-size: .78rem; color: var(--c-text-dim); line-height: 1.7; font-style: italic; }

/* ================================================
   STORY / TIMELINE
   ================================================ */
.tmh-story-sec { background: var(--c-bg); }
.tmh-story-list { display: flex; flex-direction: column; gap: 24px; }
.tmh-story-item { display: flex; flex-direction: column; gap: 12px; background: var(--c-bg-card); border-radius: var(--r-card); padding: 20px; border-left: 3px solid var(--c-blue); box-shadow: 0 2px 14px rgba(26,58,110,.07); }
.tmh-story-img-wrap { border-radius: 8px; overflow: hidden; }
.tmh-story-img { width: 100%; padding-top: 55%; background-size: cover; background-position: center; }
.tmh-story-title { font-family: var(--font-display); font-size: 1rem; color: var(--c-green); margin-bottom: 4px; font-weight: 600; }
.tmh-story-desc { font-size: .82rem; color: var(--c-text-mid); line-height: 1.8; }

.tmh-tl-sec { background: var(--c-bg-card); }
.tmh-tl-list { position: relative; display: flex; flex-direction: column; gap: 0; }
.tmh-tl-list::before { content: ''; position: absolute; left: 9px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--c-blue), var(--c-green), var(--c-blue)); opacity: .4; }
.tmh-tl-item { display: flex; gap: 18px; padding: 0 0 26px; position: relative; }
.tmh-tl-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--c-blue); border: 3px solid var(--c-bg-card); box-shadow: 0 0 0 2px var(--c-blue); flex-shrink: 0; margin-top: 3px; position: relative; z-index: 1; }
.tmh-tl-body { flex: 1; }
.tmh-tl-date { font-size: .63rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-blue); display: block; margin-bottom: 4px; }
.tmh-tl-title { font-family: var(--font-display); font-size: .96rem; color: var(--c-green); margin-bottom: 4px; font-weight: 600; }
.tmh-tl-desc { font-size: .78rem; color: var(--c-text-dim); line-height: 1.75; }

/* ================================================
   EVENTS
   ================================================ */
.tmh-events-sec { background: var(--c-bg); }
.tmh-event-card { background: var(--c-bg-card); border-radius: var(--r-card); padding: 28px 22px; margin-bottom: 20px; border: 1px solid rgba(26,58,110,.12); box-shadow: 0 3px 18px rgba(26,58,110,.06); position: relative; overflow: hidden; text-align: center; }
.tmh-event-rain-corner { position: absolute; top: 0; right: 0; opacity: .6; }
.tmh-event-type { font-family: var(--font-display); font-size: 1.15rem; color: var(--c-green); margin-bottom: 8px; font-weight: 600; }
.tmh-event-date { font-size: .8rem; color: var(--c-blue); margin-bottom: 4px; font-weight: 600; }
.tmh-event-time { font-size: .76rem; color: var(--c-text-dim); letter-spacing: .06em; margin-bottom: 10px; }
.tmh-event-venue { font-family: var(--font-display); font-size: .95rem; color: var(--c-text-mid); margin-bottom: 4px; }
.tmh-event-addr { font-size: .78rem; color: var(--c-text-dim); line-height: 1.65; margin-bottom: 12px; }
.tmh-map-embed { border-radius: 8px; overflow: hidden; margin-top: 10px; }
.tmh-livestream { text-align: center; padding: 10px 0; }
.tmh-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--c-blue); color: white; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 9px 18px; border-radius: 20px; transition: background .2s, transform .15s; margin-bottom: 10px; cursor: pointer; border: none; }
.tmh-btn:hover { background: var(--c-blue-lt); transform: translateY(-1px); }

/* ================================================
   COUNTDOWN — Raindrop shapes
   ================================================ */
.tmh-cd-sec { background: var(--c-bg-card); text-align: center; }
.tmh-cd-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; max-width: 380px; margin: 0 auto; }
.tmh-cd-drop { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.tmh-cd-drop-shape {
  position: relative;
  width: 64px; height: 80px;
  background: linear-gradient(180deg, var(--c-blue) 0%, var(--c-blue-lt) 100%);
  /* Raindrop shape: round top, pointed bottom via clip-path */
  clip-path: polygon(50% 0%, 100% 40%, 100% 75%, 85% 95%, 50% 100%, 15% 95%, 0% 75%, 0% 40%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(26,58,110,.25);
  transition: transform .3s ease;
}
.tmh-cd-drop:hover .tmh-cd-drop-shape { transform: translateY(-4px); }
.tmh-cd-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: white; line-height: 1; position: relative; z-index: 1; }
.tmh-cd-puddle {
  width: 44px; height: 8px; border-radius: 50%;
  background: rgba(26,58,110,.18);
  /* Puddle shadow under drop */
}
.tmh-cd-lbl { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-blue); }
/* Blue alternates with green */
.tmh-cd-h .tmh-cd-drop-shape, .tmh-cd-s .tmh-cd-drop-shape { background: linear-gradient(180deg, var(--c-green) 0%, var(--c-green-lt) 100%); }
.tmh-cd-h .tmh-cd-lbl, .tmh-cd-s .tmh-cd-lbl { color: var(--c-green); }

/* ================================================
   GALLERY — Rain on Glass (Signature #2)
   ================================================ */
.tmh-gallery-sec { background: var(--c-bg); overflow: hidden; }
.tmh-gal-sub { font-size: .78rem; color: var(--c-text-dim); font-style: italic; margin-top: 8px; }
.tmh-gal-wrap { position: relative; margin: 0 -22px; }
.tmh-glass-swiper { padding: 12px 16px 44px; }
.tmh-glass-slide { width: 280px !important; }
.tmh-glass-inner { cursor: pointer; }
.tmh-glass-frame {
  position: relative;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(26,58,110,.15);
  box-shadow: 0 4px 20px rgba(26,58,110,.12);
}
/* Photo with very subtle glass effect */
.tmh-glass-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: blur(0.4px) saturate(0.88);
  transition: filter .4s ease, transform .4s ease;
}
.tmh-glass-inner:hover .tmh-glass-img {
  filter: blur(0px) saturate(1);
  transform: scale(1.03);
}
/* SVG rain streaks — fixed overlay */
.tmh-rain-streaks {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 2;
}
/* Glass sheen top-left */
.tmh-glass-sheen {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background: linear-gradient(135deg,
    rgba(220,235,255,.08) 0%,
    transparent 40%,
    rgba(26,58,110,.04) 100%);
}
.tmh-glass-cap { font-family: var(--font-display); font-style: italic; font-size: .76rem; color: var(--c-text-dim); text-align: center; margin-top: 10px; }

/* Nav buttons */
.tmh-gal-prev,.tmh-gal-next {
  position: absolute; top: 44%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: white; border: 1.5px solid rgba(26,58,110,.2);
  color: var(--c-blue); display: flex; align-items: center; justify-content: center;
  z-index: 10; cursor: pointer;
  box-shadow: 0 2px 10px rgba(26,58,110,.15);
  transition: background .2s, border-color .2s, transform .15s;
}
.tmh-gal-prev:hover,.tmh-gal-next:hover { background: var(--c-blue); color: white; border-color: var(--c-blue); transform: translateY(-50%) scale(1.08); }
.tmh-gal-prev { left: 4px; }
.tmh-gal-next { right: 4px; }
.tmh-gal-pagination { bottom: 18px !important; }

/* ================================================
   RUNDOWN
   ================================================ */
.tmh-rundown-sec { background: var(--c-bg-card); }
.tmh-rundown-list { display: flex; flex-direction: column; gap: 0; }
.tmh-rundown-item { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid rgba(26,58,110,.1); }
.tmh-rundown-item:last-child { border-bottom: none; }
.tmh-rd-time { font-family: var(--font-display); font-size: .72rem; color: var(--c-blue); min-width: 52px; padding-top: 2px; letter-spacing: .06em; }
.tmh-rd-title { font-family: var(--font-display); font-size: .92rem; color: var(--c-green); margin-bottom: 2px; font-weight: 600; }
.tmh-rd-desc { font-size: .76rem; color: var(--c-text-dim); line-height: 1.65; }

/* ================================================
   RSVP
   ================================================ */
.tmh-rsvp-sec { background: linear-gradient(180deg, var(--c-bg) 0%, #E8F0F8 100%); }
.tmh-rsvp-wrap { max-width: 420px; margin: 0 auto; }
.tmh-rsvp-form { display: flex; flex-direction: column; gap: 14px; }
.tmh-field { display: flex; flex-direction: column; gap: 5px; }
.tmh-label { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-blue); }
.tmh-input { width: 100%; padding: 12px 14px; border: 1.5px solid rgba(26,58,110,.2); border-radius: 10px; background: white; color: var(--c-text); font-size: .86rem; outline: none; transition: border-color .2s; }
.tmh-input:focus { border-color: var(--c-blue); }
.tmh-select { appearance: none; }
.tmh-textarea { resize: vertical; min-height: 80px; }
.tmh-submit-btn { display: block; width: 100%; background: var(--c-blue); color: white; font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; padding: 14px; border-radius: 10px; border: none; cursor: pointer; transition: background .2s, transform .15s; box-shadow: 0 4px 14px rgba(26,58,110,.25); }
.tmh-submit-btn:hover { background: var(--c-blue-lt); transform: translateY(-1px); }
.tmh-rsvp-exp { text-align: center; color: var(--c-text-dim); font-style: italic; font-size: .86rem; }

/* ================================================
   WISHES
   ================================================ */
.tmh-wishes-sec { background: var(--c-bg-card); }
.tmh-wish-form-wrap { margin-bottom: 20px; }
.tmh-wish-toggle { display: flex; align-items: center; gap: 8px; color: var(--c-blue); font-family: var(--font-display); font-size: .85rem; letter-spacing: .06em; padding: 10px 0; border-bottom: 1.5px solid rgba(26,58,110,.2); width: 100%; cursor: pointer; transition: color .2s; }
.tmh-wish-toggle:hover { color: var(--c-green); }
.tmh-wish-form { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.tmh-wish-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.tmh-wish-item { display: flex; gap: 12px; align-items: flex-start; background: white; border-radius: 10px; padding: 14px; border-left: 3px solid var(--c-blue); box-shadow: 0 1px 8px rgba(26,58,110,.06); }
.tmh-wish-drop { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--c-blue), var(--c-blue-lt)); color: white; font-family: var(--font-display); font-size: .88rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tmh-wish-name { font-family: var(--font-display); font-size: .88rem; color: var(--c-green); font-weight: 600; }
.tmh-wish-rel { font-size: .66rem; color: var(--c-blue); letter-spacing: .08em; text-transform: uppercase; margin-left: 6px; }
.tmh-wish-msg { font-size: .8rem; color: var(--c-text-mid); line-height: 1.75; margin-top: 4px; font-style: italic; }
.tmh-more-btn { display: block; width: 100%; margin-top: 14px; background: none; color: var(--c-blue); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; padding: 12px; border: 1.5px solid rgba(26,58,110,.2); border-radius: 10px; cursor: pointer; transition: background .2s, color .2s; }
.tmh-more-btn:hover { background: var(--c-blue); color: white; }

/* ================================================
   GIFT
   ================================================ */
.tmh-gift-sec { background: var(--c-bg); }
.tmh-tabs { display: flex; margin-bottom: 18px; border-radius: 10px; overflow: hidden; border: 1.5px solid rgba(26,58,110,.15); }
.tmh-tab { flex: 1; padding: 11px; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--c-text-dim); background: transparent; transition: background .2s, color .2s; cursor: pointer; border: none; }
.tmh-tab.active { background: var(--c-blue); color: white; }
.tmh-bank-card { background: var(--c-bg-card); border-radius: var(--r-card); padding: 24px; text-align: center; margin-bottom: 14px; border: 1px solid rgba(26,58,110,.12); }
.tmh-bank-drop { font-size: 1.8rem; color: var(--c-blue); margin-bottom: 8px; opacity: .5; }
.tmh-bank-name { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-blue); margin-bottom: 6px; }
.tmh-bank-no { font-family: var(--font-display); font-size: 1.5rem; color: var(--c-green); letter-spacing: .12em; margin-bottom: 4px; font-weight: 600; }
.tmh-bank-holder { font-size: .78rem; color: var(--c-text-dim); margin-bottom: 14px; }
.tmh-addr-text { font-size: .84rem; color: var(--c-text-mid); line-height: 1.75; margin-bottom: 14px; font-style: italic; }
.tmh-copy-btn { display: inline-flex; align-items: center; gap: 6px; background: none; color: var(--c-blue); border: 1.5px solid rgba(26,58,110,.25); border-radius: 20px; font-size: .72rem; font-weight: 600; letter-spacing: .08em; padding: 8px 18px; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.tmh-copy-btn:hover { background: var(--c-blue); color: white; border-color: var(--c-blue); }
.tmh-copy-light { border-color: rgba(255,255,255,.4); color: white; }
.tmh-copy-light:hover { background: rgba(255,255,255,.2); border-color: white; color: white; }

/* ================================================
   CONTACT
   ================================================ */
.tmh-contact-sec { background: var(--c-bg-card); }
.tmh-contact-card,.tmh-notes-card { background: white; border-radius: 10px; padding: 18px; margin-bottom: 12px; border: 1px solid rgba(26,58,110,.1); }
.tmh-contact-name { font-family: var(--font-display); font-size: .96rem; color: var(--c-green); margin-bottom: 10px; font-weight: 600; }
.tmh-notes-lbl { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-blue); margin-bottom: 6px; }
.tmh-notes-text { font-size: .8rem; color: var(--c-text-mid); line-height: 1.75; font-style: italic; }

/* ================================================
   HASHTAG
   ================================================ */
.tmh-hashtag-sec { background: linear-gradient(135deg, var(--c-blue) 0%, #0C2A52 100%); text-align: center; }
.tmh-hashtag-inner { padding: 0; }
.tmh-hashtag-lbl { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(140,190,240,.75); margin-bottom: 14px; }
.tmh-hashtag-tag { font-family: var(--font-script); font-size: clamp(2.4rem, 10vw, 3.8rem); color: white; text-shadow: 0 0 30px rgba(140,190,240,.4); margin-bottom: 18px; line-height: 1.2; }

/* ================================================
   CLOSING
   ================================================ */
.tmh-closing-sec { background: var(--c-bg-card); text-align: center; }
.tmh-closing-inner { padding: 16px 0; }
.tmh-closing-ripples { display: flex; justify-content: center; gap: 0; margin-bottom: 28px; position: relative; height: 40px; }
.tmh-closing-ripple { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1.5px solid rgba(26,58,110,.2); animation: tmh-closing-ripple 3s ease-out infinite; }
@keyframes tmh-closing-ripple { 0% { width:0; height:0; opacity:.8; } 100% { width:180px; height:72px; opacity:0; } }
.tmh-closing-names { font-family: var(--font-script); font-size: clamp(2.4rem, 10vw, 3.4rem); color: var(--c-green); margin-bottom: 16px; line-height: 1.2; }
.tmh-closing-text { font-family: var(--font-display); font-style: italic; font-size: .9rem; color: var(--c-text-mid); line-height: 1.85; max-width: 380px; margin: 0 auto 24px; }
.tmh-closing-cta { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; max-width: 380px; margin: 0 auto 20px; }
@media(max-width:360px) { .tmh-closing-cta { grid-template-columns: repeat(2,1fr); } }
.tmh-cta-btn { display: flex; align-items: center; justify-content: center; gap: 5px; background: white; color: var(--c-blue); font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 12px 8px; border-radius: 10px; border: 1.5px solid rgba(26,58,110,.15); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.tmh-cta-btn:hover { background: var(--c-blue); color: white; border-color: var(--c-blue); }
.tmh-brand { font-size: .66rem; color: var(--c-text-dim); letter-spacing: .06em; }
.tmh-brand a { color: var(--c-green); font-weight: 600; }
