:root {
  --white: #f2f5f7;
  --navy: #1c2b3a;
  --blue: #a8c8d8;
  --navy-dim: rgba(28,43,58,0.55);
  --navy-faint: rgba(28,43,58,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100vh; background: var(--white); }

.hm-wrap {
  background: var(--white);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* TICKER */
.hm-ticker { background: var(--navy); overflow: hidden; padding: 8px 0; }
.hm-ticker-inner { display: flex; animation: hmTicker 28s linear infinite; white-space: nowrap; width: max-content; }
.hm-ticker-item { display: inline-flex; align-items: center; gap: 20px; padding: 0 32px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242,245,247,0.55); }
.hm-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--blue); display: inline-block; opacity: 0.6; }
@keyframes hmTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* NAV */
.hm-nav { background: var(--navy); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 60px; position: sticky; top: 0; z-index: 100; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
.hm-logo { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 20px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); text-decoration: none; }
.hm-nav-links { display: flex; gap: 36px; list-style: none; }
.hm-nav-links a { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242,245,247,0.45); text-decoration: none; transition: color 0.2s; }
.hm-nav-links a:hover { color: var(--white); }
.hm-season { color: var(--blue) !important; }
.hm-nav-actions { display: flex; gap: 20px; align-items: center; }
.hm-nav-btn { color: rgba(242,245,247,0.55); display: flex; align-items: center; text-decoration: none; transition: color 0.2s; }
.hm-nav-btn:hover { color: var(--white); }

/* BREADCRUMB */
.hm-breadcrumb { padding: 20px 48px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-dim); border-bottom: 0.5px solid var(--navy-faint); display: flex; align-items: center; gap: 10px; }
.hm-breadcrumb a { color: var(--navy-dim); text-decoration: none; transition: color 0.2s; }
.hm-breadcrumb a:hover { color: var(--navy); }
.hm-bc-sep { opacity: 0.3; }

/* PAGE LAYOUT */
.hm-info-page { display: grid; grid-template-columns: 280px 1fr; gap: 0; flex: 1 1 auto; }

.hm-info-header {
  padding: 56px 40px 56px 48px;
  border-right: 0.5px solid var(--navy-faint);
  position: sticky;
  top: 60px;
  align-self: start;
}
.hm-info-eyebrow {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hm-info-eyebrow::before { content: ''; width: 24px; height: 0.5px; background: var(--blue); }
.hm-info-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 40px; line-height: 1.05; color: var(--navy); letter-spacing: -0.01em; }

.hm-info-body { padding: 56px 48px; }

/* SHARED SECTION */
.hm-info-section { margin-bottom: 48px; }
.hm-info-section h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 24px; color: var(--navy); margin-bottom: 20px; letter-spacing: 0.02em; }
.hm-info-section p { font-size: 13px; line-height: 1.9; color: var(--navy-dim); letter-spacing: 0.02em; margin-bottom: 14px; }
.hm-info-section p:last-child { margin-bottom: 0; }
.hm-info-section a { color: var(--navy); border-bottom: 0.5px solid var(--blue); text-decoration: none; transition: color 0.2s; }
.hm-info-section a:hover { color: var(--blue); }
.hm-info-section strong { font-weight: 500; color: var(--navy); }

/* INFO GRID (table-style rows) */
.hm-info-grid { margin-bottom: 24px; border-top: 0.5px solid var(--navy-faint); }
.hm-info-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 0.5px solid var(--navy-faint); font-size: 12px; letter-spacing: 0.04em; }
.hm-info-row span:first-child { color: var(--navy-dim); }
.hm-info-row span:last-child { color: var(--navy); font-weight: 400; }

/* FAQ */
.hm-faq-list { display: flex; flex-direction: column; gap: 0; }
.hm-faq-item { padding: 28px 0; border-bottom: 0.5px solid var(--navy-faint); }
.hm-faq-item:first-child { padding-top: 0; }
.hm-faq-item h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 20px; color: var(--navy); margin-bottom: 12px; letter-spacing: 0.02em; }
.hm-faq-item p { font-size: 13px; line-height: 1.9; color: var(--navy-dim); letter-spacing: 0.02em; }
.hm-faq-item a { color: var(--navy); border-bottom: 0.5px solid var(--blue); text-decoration: none; }
.hm-faq-item a:hover { color: var(--blue); }

/* CONTACT */
.hm-contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.hm-contact-intro { font-size: 14px; line-height: 1.8; color: var(--navy-dim); margin-bottom: 40px; letter-spacing: 0.02em; }
.hm-contact-channels { display: flex; flex-direction: column; gap: 0; }
.hm-contact-channel { padding: 18px 0; border-bottom: 0.5px solid var(--navy-faint); }
.hm-contact-channel:first-child { border-top: 0.5px solid var(--navy-faint); }
.hm-channel-label { display: block; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy-dim); margin-bottom: 6px; }
.hm-channel-value { font-size: 13px; color: var(--navy); text-decoration: none; letter-spacing: 0.04em; border-bottom: 0.5px solid transparent; transition: border-color 0.2s, color 0.2s; }
.hm-channel-value:hover { color: var(--blue); border-color: var(--blue); }

/* CONTACT FORM */
.hm-contact-form { display: flex; flex-direction: column; gap: 20px; }
.hm-form-row { display: flex; flex-direction: column; gap: 8px; }
.hm-form-row label { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy-dim); }
.hm-form-row input,
.hm-form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(28,43,58,0.2);
  padding: 10px 0;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}
.hm-form-row input:focus,
.hm-form-row textarea:focus { border-color: var(--navy); }
.hm-form-row input::placeholder,
.hm-form-row textarea::placeholder { color: rgba(28,43,58,0.25); }
.hm-form-submit {
  align-self: flex-start;
  background: var(--blue);
  color: var(--navy);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 400;
  margin-top: 8px;
}
.hm-form-submit:hover { background: #bdd4e2; }

/* TRACK ORDER */
.hm-track-layout { display: flex; flex-direction: column; gap: 48px; }
.hm-track-intro { font-size: 14px; line-height: 1.8; color: var(--navy-dim); letter-spacing: 0.02em; }
.hm-track-box { background: var(--navy-faint); padding: 36px; border-radius: 2px; }
.hm-track-label { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy-dim); margin-bottom: 16px; }
.hm-track-form { display: flex; gap: 10px; }
.hm-track-form input {
  flex: 1;
  background: var(--white);
  border: 0.5px solid rgba(28,43,58,0.15);
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--navy);
  border-radius: 1px;
  outline: none;
}
.hm-track-form input:focus { border-color: var(--navy); }
.hm-track-form button {
  background: var(--navy);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.hm-track-form button:hover { background: var(--blue); color: var(--navy); }
.hm-track-note { font-size: 11px; color: var(--navy-dim); margin-top: 12px; letter-spacing: 0.03em; }
.hm-track-help { font-size: 13px; color: var(--navy-dim); }
.hm-track-help a { color: var(--navy); border-bottom: 0.5px solid var(--blue); text-decoration: none; }
.hm-track-help a:hover { color: var(--blue); }

.hm-track-carriers {}
.hm-carriers-label { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy-dim); margin-bottom: 16px; }
.hm-carriers-list { display: flex; gap: 12px; flex-wrap: wrap; }
.hm-carrier { background: var(--white); border: 0.5px solid rgba(28,43,58,0.12); padding: 10px 20px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-dim); border-radius: 1px; }

/* FOOTER */
.hm-footer { background: var(--navy); padding: 24px 48px; margin-top: auto; }
.hm-footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.hm-footer-copy { font-size: 10px; letter-spacing: 0.08em; color: rgba(242,245,247,0.18); font-family: 'Jost', sans-serif; }
.hm-footer-payments { display: flex; gap: 8px; }
.hm-payment-badge { background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.08); border-radius: 3px; padding: 4px 8px; font-size: 9px; letter-spacing: 0.06em; color: rgba(242,245,247,0.25); text-transform: uppercase; font-family: 'Jost', sans-serif; }

/* MOBILE */
@media (max-width: 768px) {
  .hm-nav { padding: 0 20px; }
  .hm-nav-links { display: none; }
  .hm-breadcrumb { padding: 16px 20px; }
  .hm-info-page { grid-template-columns: 1fr; }
  .hm-info-header { position: static; padding: 40px 20px 24px; border-right: none; border-bottom: 0.5px solid var(--navy-faint); }
  .hm-info-body { padding: 32px 20px; }
  .hm-contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .hm-footer { padding: 24px 20px; }
}
/* ── FULL FOOTER ── */
.hm-footer {
  background: var(--navy);
  padding: 56px 48px 32px;
  margin-top: auto;
}
.hm-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.hm-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.hm-footer-desc {
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(242,245,247,0.3);
  max-width: 220px;
  margin-bottom: 24px;
  font-family: 'Jost', sans-serif;
}
.hm-footer-socials { display: flex; gap: 14px; }
.hm-footer-social {
  width: 32px; height: 32px;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.hm-footer-social:hover {
  border-color: var(--blue);
  background: rgba(168,200,216,0.08);
}
.hm-footer-social:hover svg { stroke: var(--blue) !important; }

.hm-footer-col-title {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,245,247,0.25);
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
}
.hm-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hm-footer-links a {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(242,245,247,0.4);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Jost', sans-serif;
}
.hm-footer-links a:hover { color: var(--white); }

.hm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hm-footer-copy {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(242,245,247,0.18);
  font-family: 'Jost', sans-serif;
}
.hm-footer-payments { display: flex; gap: 8px; align-items: center; }
.hm-payment-badge {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(242,245,247,0.25);
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

@media (max-width: 768px) {
  .hm-footer { padding: 40px 20px 24px; }
  .hm-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
