@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold: #00387B;
  --gold-light: #2491e7;
  --accent: #00387B;
  --accent-hover: #2491e7;
  --accent-soft: rgba(0,120,214,0.10);
  --accent-soft-2: rgba(0,120,214,0.18);
  --white: #ffffff;
  --off-white: #f5f7f9;
  --black: #0b0d10;
  --surface: #151a1f;
  --surface-2: #212731;
  --text-dark: #111418;
  --text-muted: #5e6770;
  --line-light: rgba(17, 20, 24, 0.10);
  --border: rgba(255,255,255,0.12);
  --header-utility-height: 60px;
  --header-nav-height: 62px;
  --header-expanded: calc(var(--header-utility-height) + var(--header-nav-height));
  --header-collapsed: 60px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font: inherit; }
button { background: none; border: 0; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

main { position: relative; z-index: 1; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.section-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
}
.section-title em { font-style: italic; }

.btn-primary,
.btn-ghost,
.btn-light-solid,
.btn-light-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 32px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(240,237,232,0.3); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(240,237,232,0.06); }
.btn-light-solid { background: var(--accent); color: var(--white); }
.btn-light-solid:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-2px); }
.btn-light-outline { border: 1px solid rgba(255,255,255,0.26); color: var(--white); }
.btn-light-outline:hover { background: rgba(255,255,255,0.08); }

.quick-actions {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.quick-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.quick-btn-wa {
  background: #25D366;
  color: #fff;
  transform: translateX(120%);
  opacity: 0;
}
.quick-btn-quote {
  background: var(--accent);
  color: var(--white);
  transform: translateX(120%);
  opacity: 0;
}
.quick-main {
  width: 52px; height: 52px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px rgba(0,120,214,0.30);
}
.quick-actions.is-open .quick-btn-wa,
.quick-actions.is-open .quick-btn-quote { transform: none; opacity: 1; }
.quick-btn-wa { transition-delay: 0.05s; }
.quick-btn-quote { transition-delay: 0.1s; }

@media (max-width: 980px) { .container { padding: 0 24px; } }
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .quick-actions { right: 16px; bottom: 20px; }
}
/* === Consolidated shared styles migrated from ASPX pages === */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-section { animation: fadeIn 0.6s ease forwards; }
.fade-in { animation: fadeIn 0.8s ease-out; }
.slide-up { animation: slideInUp 0.8s ease-out; }
.scale-in { animation: scaleUp 0.6s ease-out; }

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.nav-scrolled {
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.9) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.media-section {
  scroll-margin-top: 160px;
}

.u-page-shell { background: #ffffff; color: #1a1a1a; }
.u-bg-page-gradient { background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%); }
.u-bg-white { background: #ffffff; }
.u-bg-soft { background: #f8f8f8; }
.u-bg-gold-soft { background: var(--accent-soft); }

.u-panel-outline { background: #ffffff; border: 1px solid rgba(26,26,26,0.08); }
.u-card-soft-gold { background: #f8f8f8; border-color: rgba(0,120,214,0.20); }
.u-card-white-gold { background: #ffffff; border-color: rgba(0,120,214,0.20); }
.u-border-gold { border: 1px solid rgba(0,120,214,0.20); }

.u-text-dark { color: #1a1a1a; }
.u-text-muted { color: rgba(26,26,26,0.6); }
.u-text-muted-strong { color: rgba(26,26,26,0.66); }
.u-text-gold { color: var(--accent); }
.u-bullet-gold { color: var(--accent); font-weight: bold; }
.u-text-center { text-align: center; }

.u-stack-12 {
  display: grid;
  gap: 12px;
}

.u-label-mini {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4D4D4D;
}

.u-icon-16 { width: 16px; height: 16px; }
.u-icon-18 { width: 18px; height: 18px; }
.u-icon-gold-18-fixed { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }
.u-icon-gold-24 { width: 24px; height: 24px; color: var(--accent); }
.u-icon-gold-28 { width: 28px; height: 28px; color: var(--accent); }
.u-icon-dark-28 { width: 28px; height: 28px; color: #0f0f0f; }
.u-icon-gold-48 { width: 48px; height: 48px; color: var(--accent); }
.u-icon-gold-48-center { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 16px; }

.u-icon-box-gold {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.u-panel-gold-gradient {
  background: linear-gradient(135deg, var(--accent-soft), rgba(36,145,231,0.12));
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-filter-chip {
  background: var(--accent-soft);
  border: 2px solid rgba(0,120,214,0.3);
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  color: #1a1a1a;
}
.u-filter-chip:hover,
.u-filter-chip.is-active {
  background: var(--accent-soft-2);
  border-color: rgba(0,120,214,0.5);
}

.u-btn-gold {
  background: var(--accent);
  color: #ffffff;
}
.u-btn-gold:hover {
  background: var(--accent-hover);
}

.u-input-basic,
.u-textarea-basic {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(26,26,26,0.1);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}
.u-textarea-basic { min-height: 80px; }

.contact-field {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(26,26,26,0.10);
  border-radius: 14px;
  font-family: inherit;
  font-size: 14px;
  color: #1a1a1a;
  background: #ffffff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-field:focus {
  border-color: rgba(0,120,214,0.85);
  box-shadow: 0 0 0 4px rgba(0,120,214,0.12);
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.contact-chip {
  position: relative;
  display: block;
  cursor: pointer;
}
.contact-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(26,26,26,0.10);
  background: #ffffff;
  color: rgba(26,26,26,0.78);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all .25s ease;
}
.contact-chip input:checked + span {
  background: rgba(0,120,214,0.12);
  border-color: rgba(0,120,214,0.55);
  color: #1a1a1a;
  box-shadow: 0 8px 22px rgba(0,120,214,0.14);
}
.contact-chip span:hover {
  border-color: rgba(0,120,214,0.45);
}
