*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue-deep:   #1A3A5C;
  --blue-mid:    #2C5F8A;
  --blue-light:  #D6E8F5;
  --blue-pale:   #EEF5FB;
  --white:       #FFFFFF;
  --off-white:   #F7FAFD;
  --text-dark:   #0E1F30;
  --text-mid:    #3D5A73;
  --text-muted:  #7A9AB5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--blue-light);
  transition: padding 0.4s ease;
}
nav.scrolled { padding: 16px 60px; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-deep);
  text-decoration: none;
}

.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--blue-mid); }

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 90px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  background: var(--white);
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero-title em { font-style: italic; color: var(--blue-mid); }

.hero-sub {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 340px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
  border-bottom: 1px solid var(--blue-mid);
  padding-bottom: 6px;
  transition: gap 0.3s, color 0.3s;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
  width: fit-content;
}
.hero-cta:hover { gap: 26px; color: var(--blue-mid); }
.hero-cta::after { content: '→'; font-size: 1rem; }

.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1A3A5C 0%, #2C5F8A 60%, #3A7AB5 100%);
  opacity: 0;
  animation: fadeIn 1.2s 0.3s forwards;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder svg { opacity: 0.18; }

.hero-tag {
  position: absolute;
  bottom: 48px;
  left: -1px;
  background: var(--white);
  color: var(--blue-deep);
  padding: 18px 28px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-tag span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-top: 4px;
  font-weight: 500;
  color: var(--blue-mid);
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--blue-deep);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 24s linear infinite;
}
.marquee-track span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin: 0 40px;
}
.marquee-track span.dot {
  color: rgba(255,255,255,0.35);
  letter-spacing: 0;
  margin: 0 12px;
}

/* ── MILESTONE BANNER ── */
.milestone-banner {
  background: var(--blue-pale);
  border-top: 2px solid var(--blue-light);
  border-bottom: 2px solid var(--blue-light);
  padding: 56px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  text-align: center;
}
.milestone-divider { width: 1px; height: 70px; background: var(--blue-light); }
.milestone-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--blue-deep);
  line-height: 1;
}
.milestone-text {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 8px;
}
.milestone-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--blue-deep);
  font-style: italic;
  max-width: 300px;
  line-height: 1.45;
}

/* ── SECTION BASE ── */
section { padding: 120px 80px; }

.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 28px;
}

/* ── ABOUT ── */
#about {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-block {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1A3A5C 0%, #2C5F8A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-block svg { opacity: 0.18; }

.about-badge {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--blue-mid);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.about-badge small {
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 3px;
  color: var(--blue-light);
}

.about-body p {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--blue-light);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--blue-deep);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── PRODUCTS ── */
#products { background: var(--white); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.view-all {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--blue-mid);
  padding-bottom: 4px;
  transition: color 0.3s;
}
.view-all:hover { color: var(--blue-mid); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card { cursor: pointer; }

.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.02); }

.product-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-inner svg { opacity: 0.22; transition: opacity 0.4s; }
.product-card:hover .product-img-inner svg { opacity: 0.32; }

.product-card:nth-child(1) .product-img { background: linear-gradient(160deg, #1A3A5C, #2C5F8A); }
.product-card:nth-child(2) .product-img { background: linear-gradient(160deg, #1E4870, #3374A8); }
.product-card:nth-child(3) .product-img { background: linear-gradient(160deg, #163350, #254F7A); }

.product-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(14,31,48,0.7) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  justify-content: flex-end;
}
.product-card:hover .product-overlay { opacity: 1; }

.quick-view {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 14px;
}

.product-info { padding: 20px 0 0; }
.product-cat {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.product-price {
  font-size: 0.82rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* ── CONTACT ── */
#contact {
  background: var(--blue-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
#contact .section-title { color: var(--white); }
#contact .section-label { color: var(--blue-light); }

.contact-tagline {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; }

.contact-item-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 6px;
}
.contact-item-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 300;
}

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,154,181,0.5); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue-light); }
.form-group select option { background: var(--blue-deep); }

.submit-btn {
  align-self: flex-start;
  background: var(--white);
  color: var(--blue-deep);
  border: none;
  padding: 16px 40px;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  transition: background 0.3s, transform 0.2s;
}
.submit-btn:hover { background: var(--blue-light); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: #0B1E2F;
  padding: 36px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}
.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--blue-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 13px 24px; }
  .nav-links { gap: 22px; }
  #home { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 28px; }
  .hero-right { height: 60vw; }
  .milestone-banner { flex-direction: column; gap: 24px; padding: 40px 28px; }
  .milestone-divider { width: 60px; height: 1px; }
  #about { grid-template-columns: 1fr; padding: 80px 28px; gap: 40px; }
  .about-badge { top: -16px; right: 0; }
  #products { padding: 80px 28px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  #contact { grid-template-columns: 1fr; padding: 80px 28px; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 18px; text-align: center; padding: 28px 24px; }
  section { padding: 80px 28px; }
}
@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
