/* ═══════════════════════════════════════════════
   COLTER'S WATCH — Shared Stylesheet
   ColtersWatch.org
═══════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #0e2440; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── TOKENS ── */
:root {
  --navy:      #0e2440;
  --navy-2:    #1b3a5c;
  --teal:      #1a8a9a;
  --teal-2:    #157585;
  --teal-lt:   #e6f4f6;
  --teal-mid:  #c2e4ea;
  --gold:      #c8922a;
  --gold-2:    #b8832a;
  --gold-lt:   #fdf6e8;
  --warm-bg:   #faf8f5;
  --light:     #f2f5f8;
  --white:     #ffffff;
  --border:    #d4dde6;
  --border-lt: #e8eff4;
  --text:      #0e2440;
  --text-2:    #2d4257;
  --muted:     #6b7f93;
  --red:       #b53030;
  --green:     #1a7248;
  --shadow-sm: 0 1px 4px rgba(14,36,64,0.07);
  --shadow-md: 0 4px 20px rgba(14,36,64,0.1);
  --shadow-lg: 0 12px 40px rgba(14,36,64,0.14);
  --r:  12px;
  --r2: 8px;
}

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(14,36,64,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 38px; height: 38px; flex-shrink: 0; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.1;
}
.brand-name span { color: #7ec8d8; }
.brand-sub {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(180,210,220,0.6); display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 0.83rem; font-weight: 500; color: rgba(255,255,255,0.78);
  letter-spacing: 0.01em; transition: color 0.2s; position: relative;
}
.nav-links a.active { color: #fff; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--teal);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-apply {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%) !important;
  color: #fff !important; padding: 8px 18px; border-radius: 30px;
  font-weight: 600 !important; font-size: 0.8rem !important;
  box-shadow: 0 3px 10px rgba(26,138,154,0.3);
  display: inline-flex; align-items: center; gap: 7px;
  transition: box-shadow 0.2s, transform 0.2s !important;
}
.nav-apply:hover { box-shadow: 0 5px 16px rgba(26,138,154,0.5) !important; transform: translateY(-1px); }
.nav-apply::after { display: none !important; }
.nav-soon {
  background: rgba(255,255,255,0.2); border-radius: 10px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 2px 6px;
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(14,36,64,0.98); backdrop-filter: blur(14px);
    flex-direction: column; gap: 0; padding: 8px 0 18px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 28px; width: 100%; font-size: 0.9rem; }
  .nav-links a::after { display: none; }
  .nav-apply { margin: 10px 28px 0; border-radius: var(--r2); justify-content: center; }
}

/* ═══════════════════════════════════════════════
   PAGE HERO / HEADER
═══════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, #060f1c 0%, #0e2440 45%, #1b3a5c 100%);
  padding: 130px 24px 72px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(26,138,154,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #7ec8d8;
  margin-bottom: 14px; border-bottom: 1px solid rgba(126,200,216,0.3); padding-bottom: 8px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 18px;
}
.page-hero h1 em { font-style: italic; color: #7ec8d8; }
.page-hero p {
  font-size: 1rem; color: rgba(200,220,230,0.8); line-height: 1.78;
  font-weight: 300; max-width: 560px; margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════ */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
section.section { padding: 88px 24px; }
section.section-tight { padding: 64px 24px; }

.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700;
  color: var(--navy); line-height: 1.18; letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-body { font-size: 0.95rem; color: var(--muted); line-height: 1.82; margin-top: 14px; }
.text-center { text-align: center; }
.text-center .section-body { margin: 14px auto 0; max-width: 560px; }

/* ═══════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════ */
.card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--r); padding: 28px 32px; box-shadow: var(--shadow-sm);
}
.card-teal { background: var(--teal-lt); border-color: var(--teal-mid); }
.card-navy {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color: transparent; color: #fff;
}
.card-navy .section-label { color: #7ec8d8; }
.card-navy .section-title { color: #fff; }
.card-navy .section-body { color: rgba(180,200,220,0.75); }

/* Icon card */
.icon-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--r); padding: 28px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.icon-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--teal-mid); }
.icon-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-lt); border: 1px solid var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.icon-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.icon-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 30px; font-family: 'Inter', sans-serif;
  font-size: 0.88rem; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.22s; letter-spacing: 0.01em; text-decoration: none;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  color: #fff; box-shadow: 0 4px 14px rgba(26,138,154,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 22px rgba(26,138,154,0.5); transform: translateY(-2px); }
.btn-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; box-shadow: 0 4px 14px rgba(14,36,64,0.25);
}
.btn-navy:hover { box-shadow: 0 6px 22px rgba(14,36,64,0.35); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-outline-white {
  background: transparent; color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }
.btn-white {
  background: #fff; color: var(--teal-2);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-white:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.2); transform: translateY(-2px); }
.btn-lg { padding: 15px 34px; font-size: 0.95rem; }

/* ═══════════════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 0; }
.field-inner { position: relative; }
.field-inner input,
.field-inner select,
.field-inner textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--r2);
  padding: 20px 14px 8px; font-size: 0.91rem; font-family: 'Inter', sans-serif;
  color: var(--text); background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.field-inner select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7f93' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.field-inner textarea { min-height: 100px; resize: vertical; padding-top: 22px; }
.field-inner input:focus,
.field-inner select:focus,
.field-inner textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,138,154,0.12);
}
.field-inner label {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 0.88rem; color: var(--muted); pointer-events: none;
  transition: all 0.18s ease; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: calc(100% - 28px);
}
.field-inner textarea ~ label { top: 18px; transform: none; }
.field-inner input:focus ~ label,
.field-inner input:not(:placeholder-shown) ~ label,
.field-inner select:focus ~ label,
.field-inner textarea:focus ~ label,
.field-inner textarea:not(:placeholder-shown) ~ label {
  top: 8px; transform: none; font-size: 0.7rem; font-weight: 600; color: var(--teal); letter-spacing: 0.03em;
}
.field-inner select:focus ~ label { top: 8px; transform: none; font-size: 0.7rem; font-weight: 600; color: var(--teal); }
.field-hint { font-size: 0.74rem; color: var(--muted); margin-top: 5px; padding-left: 2px; }
.field-error { font-size: 0.74rem; color: var(--red); margin-top: 4px; display: none; }
.field-error.show { display: block; }
.req { color: var(--red); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 540px) { .field-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-2) 0%, var(--teal) 60%, #1e9aab 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.07) 0%, transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 700;
  color: #fff; margin-bottom: 14px; line-height: 1.22;
}
.cta-banner p { font-size: 0.95rem; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 28px; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer { background: var(--navy); color: rgba(180,200,220,0.7); padding: 56px 24px 28px; }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px;
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; }
.footer-brand-name span { color: #7ec8d8; }
.footer-brand-sub { font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(180,200,220,0.4); margin-bottom: 12px; }
.footer-desc { font-size: 0.81rem; line-height: 1.75; max-width: 260px; margin-bottom: 16px; }
.footer-social {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 8px 14px; font-size: 0.8rem; color: rgba(180,200,220,0.7);
  transition: all 0.2s;
}
.footer-social:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.88); margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(180,200,220,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: #7ec8d8; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; font-size: 0.74rem;
}
.footer-bottom a { color: #7ec8d8; }
.footer-memorial {
  background: rgba(200,146,42,0.1); border: 1px solid rgba(200,146,42,0.2);
  border-radius: 20px; padding: 5px 14px; font-size: 0.7rem; color: var(--gold); font-weight: 600;
}

/* ═══════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--navy); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(10px);
  transition: all 0.3s; z-index: 500; box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--teal); }

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════ */
.faq-item { border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; margin-bottom: 8px; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--teal); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer; gap: 16px; background: var(--white); transition: background 0.2s;
}
.faq-item.open .faq-q { background: var(--teal-lt); }
.faq-q h4 { font-size: 0.91rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.2rem; color: var(--teal); transition: all 0.3s; font-weight: 300; line-height: 1;
}
.faq-item.open .faq-icon { background: var(--teal); border-color: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 20px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 18px; }
.faq-a p { font-size: 0.87rem; color: var(--text-2); line-height: 1.8; }

/* ═══════════════════════════════════════════════
   NOTICE BANNER
═══════════════════════════════════════════════ */
.notice-banner {
  background: var(--gold-lt); border: 1px solid #e8d0a0; border-left: 4px solid var(--gold);
  border-radius: var(--r2); padding: 16px 20px; margin-bottom: 24px;
  display: flex; gap: 14px; align-items: flex-start;
}
.notice-banner-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.notice-banner-text h4 { font-size: 0.88rem; font-weight: 700; color: #7a5000; margin-bottom: 3px; }
.notice-banner-text p { font-size: 0.82rem; color: #8a6200; line-height: 1.6; }
