:root {
  --ht-bg: #f4f8fc;
  --ht-bg-alt: #ecf4fb;
  --ht-panel: #ffffff;
  --ht-line: rgba(28, 84, 128, 0.12);
  --ht-ink: #17324a;
  --ht-muted: #56758f;
  --ht-accent: #1d78b5;
  --ht-accent-2: #54a6dc;
  --ht-accent-soft: rgba(29, 120, 181, 0.12);
  --ht-shadow: 0 22px 60px rgba(16, 24, 40, 0.1);
  --ht-radius-xl: 28px;
  --ht-radius-lg: 20px;
  --ht-max-width: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ht-ink);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.9), transparent 28%),
    linear-gradient(180deg, var(--ht-bg) 0%, var(--ht-bg-alt) 100%);
}
#preloader { position: fixed; inset: 0; z-index: 9999; background: var(--ht-bg); transition: all .6s ease-out; }
#preloader::after { animation-delay: -.5s; }
#preloader::before, #preloader::after { content: ""; position: absolute; border: 4px solid #59bec5; border-radius: 50%; animation: animate-preloader 2s cubic-bezier(0,.2,.8,1) infinite; }
@keyframes animate-preloader { 0% { width: 10px; height: 10px; top: calc(50% - 5px); left: calc(50% - 5px); opacity: 1; } 100% { width: 72px; height: 72px; top: calc(50% - 36px); left: calc(50% - 36px); opacity: 0; } }
.skiptranslate { opacity: 0; display: none; position: absolute !important; top: -5000px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.ht-shell { width: min(var(--ht-max-width), calc(100% - 40px)); margin: 0 auto; }
.ht-topbar { position: sticky; top: 0; z-index: 40; backdrop-filter: blur(14px); background: rgba(255,255,255,.78); border-bottom: 1px solid var(--ht-line); }
.ht-topbar-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ht-brand { display: flex; align-items: center; gap: 12px; }
.ht-brand img { width: 44px; height: 44px; }
.ht-brand-copy strong, .ht-brand-copy span { display: block; }
.ht-brand-copy strong { font-family: "Playfair Display", serif; font-size: 1.15rem; font-weight: 700; }
.ht-brand-copy span { color: var(--ht-muted); font-size: .92rem; }
.ht-nav-toggle { display:none; align-items:center; justify-content:center; flex-direction:column; gap:5px; width:48px; height:48px; padding:0; border:1px solid var(--ht-line); border-radius:16px; background:rgba(255,255,255,.9); color:var(--ht-ink); }
.ht-nav-toggle span { width:18px; height:2px; border-radius:999px; background:currentColor; transition:transform .2s ease, opacity .2s ease; }
.ht-nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.ht-nav a { padding: 10px 14px; border-radius: 999px; color: var(--ht-muted); font-size: .95rem; }
.ht-nav a.active, .ht-nav a:hover { color: var(--ht-accent); background: var(--ht-accent-soft); }

.ht-main { padding: 24px 0 48px; }
.ht-hero {
  min-height: 340px; padding: 40px; border-radius: var(--ht-radius-xl); color: white; box-shadow: var(--ht-shadow);
  background: linear-gradient(135deg, rgba(6,47,75,.76), rgba(22,109,167,.24)), url("../img/tips/comfortable.jpeg") center/cover;
}
.ht-eyebrow { display: inline-flex; width: fit-content; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.16); font-size: .9rem; }
.ht-hero h1 { margin: 18px 0 14px; max-width: 10ch; font-family: "Playfair Display", serif; font-size: clamp(2.8rem, 6vw, 5rem); line-height: .95; }
.ht-hero p { max-width: 60ch; margin: 0; color: rgba(255,255,255,.88); line-height: 1.7; font-size: 1.05rem; }
.ht-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.ht-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border-radius: 999px; font-weight: 700; }
.ht-btn-primary { background: linear-gradient(135deg, var(--ht-accent), var(--ht-accent-2)); color: white; }
.ht-btn-secondary { color: white; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.12); }

.ht-section { padding: 28px 0; }
.ht-section-head { margin-bottom: 22px; }
.ht-kicker { color: var(--ht-accent); text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; font-weight: 700; }
.ht-section-head h2 { margin: 8px 0 10px; font-family: "Playfair Display", serif; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.02; }
.ht-section-head p { margin: 0; color: var(--ht-muted); line-height: 1.7; }
.ht-grid { display: grid; gap: 18px; }

.ht-card {
  display: grid; grid-template-columns: 320px 1fr; gap: 22px; padding: 22px;
  border-radius: var(--ht-radius-lg); background: var(--ht-panel); border: 1px solid var(--ht-line);
  box-shadow: 0 18px 50px rgba(15,23,42,.06);
}
.ht-card > div { min-width: 0; }
.ht-card img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; border-radius: 18px; }
.ht-card h3 { margin: 0 0 12px; font-family: "Playfair Display", serif; font-size: 1.55rem; }
.ht-card p { margin: 0 0 12px; color: var(--ht-muted); line-height: 1.72; }
.ht-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.ht-link { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 14px; border-radius: 999px; background: var(--ht-accent-soft); color: var(--ht-accent); font-weight: 700; }

.ht-form-panel { padding: 22px; border-radius: 18px; background: rgba(29,120,181,.04); border: 1px solid var(--ht-line); }
.ht-form-panel form { display: grid; gap: 12px; }
.ht-form-panel textarea, .ht-form-panel input[type="file"] { width: 100%; border: 1px solid var(--ht-line); border-radius: 14px; padding: 14px 16px; font: inherit; background: white; }
.ht-form-panel textarea { min-height: 120px; resize: vertical; }

.ht-footer { padding: 24px 0 42px; }
.ht-footer-box { display: flex; justify-content: space-between; gap: 18px; padding: 24px 28px; border-radius: var(--ht-radius-lg); background: var(--ht-panel); border: 1px solid var(--ht-line); }
.ht-footer-box p { margin: 0; color: var(--ht-muted); }
.ht-footer-links { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 980px) { .ht-topbar-inner { position: relative; flex-wrap: nowrap; padding: 14px 0; } .ht-brand { flex: 1; min-width: 0; } .ht-nav-toggle { display: inline-flex; } .ht-nav { display:none; position:absolute; top:calc(100% + 10px); right:0; width:min(320px, calc(100vw - 24px)); flex-direction:column; gap:6px; padding:14px; border:1px solid var(--ht-line); border-radius:22px; background:rgba(255,255,255,.96); box-shadow:0 18px 40px rgba(16,24,40,.08); } .ht-topbar-inner.nav-open .ht-nav { display:flex; } .ht-topbar-inner.nav-open .ht-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .ht-topbar-inner.nav-open .ht-nav-toggle span:nth-child(2) { opacity: 0; } .ht-topbar-inner.nav-open .ht-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } .ht-nav a { width:100%; padding:12px 14px; } .ht-card { grid-template-columns: 1fr; } .ht-card img { height: auto; min-height: 0; aspect-ratio: 16 / 10; } .ht-footer-box { flex-direction: column; align-items: flex-start; } }
@media (max-width: 640px) { .ht-shell { width: min(var(--ht-max-width), calc(100% - 24px)); } .ht-brand-copy span { display:none; } .ht-hero { min-height: 320px; padding: 24px; } .ht-hero h1 { max-width: none; } }
