/* ===== CSS VARIABLES ===== */
:root {
  --navy-deep: #0a1a33;
  --navy-panel: #13294b;
  --navy-line: rgba(255, 255, 255, 0.12);
  --gold: #c9a55c;
  --gold-soft: #e3cb94;
  --cream: #f7f5f0;
  --slate: #5a6b85;
  --ink: #101820;
  --white: #ffffff;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-dark {
  border: 1px solid rgba(16, 24, 32, 0.25);
  color: var(--navy-deep);
}
.btn-outline-dark:hover {
  border-color: var(--navy-deep);
  background: var(--navy-deep);
  color: var(--white);
}

/* ===== NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 26, 51, 0);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
  padding: 22px 0;
}
header.scrolled {
  background: rgba(10, 26, 51, 0.97);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  padding: 14px 0;
  backdrop-filter: blur(8px);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo-text {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}
.logo-text span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a.active {
  color: var(--gold-soft);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 80vh;
  min-height: 700px;
  max-height: 800px;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/landing-page.png");
  background-size: cover;
  background-position: center right;
  opacity: 0.9;
}
.hero-bg::after {
  content: "";
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8, 19, 38, 0.97) 0%,
    rgba(8, 19, 38, 0.88) 32%,
    rgba(8, 19, 38, 0.45) 60%,
    rgba(8, 19, 38, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  max-width: 580px;
}
.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero p.lead {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 50px;
}
.hero-actions .btn {
  padding: 12px 28px;
  font-size: 14.5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  color: var(--white);
  transition: all 0.25s ease;
}
.hero-actions .btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* ===== HERO FEATURES ===== */
.hero-features-wrapper {
  position: relative;
  margin-top: -60px;
  z-index: 10;
}
.hero-features {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 28px 32px;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid rgba(16, 24, 32, 0.08);
}
.hero-feature-item:last-child {
  border-right: none;
}
.feature-icon-circle {
  width: 48px;
  height: 48px;
  background: var(--navy-panel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-feature-text h4 {
  font-family: "Fraunces", serif;
  font-size: 15px;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.hero-feature-text p {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.4;
}
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gold-soft);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -10px; }
  60% { top: 36px; }
  100% { top: 36px; opacity: 0; }
}

/* ===== SECTION GENERIC ===== */
section {
  padding: 120px 0;
}
.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: 38px;
  color: var(--navy-deep);
  margin-top: 18px;
  line-height: 1.18;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow {
  justify-content: center;
}
.section-head.light h2 {
  color: var(--white);
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}
.about-copy p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 20px;
}
.about-side {
  background: var(--navy-deep);
  color: var(--white);
  padding: 44px 38px;
  position: relative;
}
.about-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 4px;
  background: var(--gold);
}
.about-side h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 18px;
}
.grain-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.grain-row span {
  width: 7px;
  height: 7px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
  transform: rotate(45deg);
}
.grain-row p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.about-side .divider {
  height: 1px;
  background: var(--navy-line);
  margin: 30px 0;
}

/* ===== VISION MISSION ===== */
.vm {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
}
.vm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 20%,
    rgba(201, 165, 92, 0.08),
    transparent 45%
  );
}
.vm-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.vm-card h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 16px;
}
.vm-card .big {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 23px;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 24px;
}
.vm-card ul li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--navy-line);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
.vm-card ul li:last-child {
  border-bottom: 1px solid var(--navy-line);
}
.vm-card ul li .idx {
  font-family: "Fraunces", serif;
  color: var(--gold-soft);
  font-size: 14px;
  flex-shrink: 0;
  padding-top: 1px;
}

/* ===== CORE VALUES ===== */
.values {
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(16, 24, 32, 0.08);
  border: 1px solid rgba(16, 24, 32, 0.08);
}
.value-card {
  background: var(--white);
  padding: 36px 26px;
  transition: background 0.25s ease;
}
.value-card:hover {
  background: #fbf9f4;
}
.value-card .vnum {
  font-family: "Fraunces", serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.value-card h4 {
  font-size: 18px;
  color: var(--navy-deep);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--slate);
}

/* ===== WHY CHOOSE ===== */
.why {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.why-item {
  display: flex;
  gap: 16px;
  padding: 22px 18px 22px 0;
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
}
.why-item:nth-child(odd) {
  border-right: 1px solid rgba(16, 24, 32, 0.08);
  padding-right: 28px;
}
.why-item:nth-child(even) {
  padding-left: 28px;
}
.why-mark {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.why-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}
.why-visual {
  background: var(--navy-deep);
  color: var(--white);
  padding: 48px 40px;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-visual .quote-mark {
  font-family: "Fraunces", serif;
  font-size: 64px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 18px;
}
.why-visual p {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--white);
}
.why-visual .sig {
  margin-top: 28px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--navy-deep);
  color: var(--white);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--navy-line);
  border: 1px solid var(--navy-line);
}
.product-card {
  background: var(--navy-panel);
  padding: 34px 26px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.product-card:hover {
  background: #1a3358;
}
.product-card .pnum {
  font-family: "Fraunces", serif;
  color: var(--gold-soft);
  font-size: 13px;
}
.product-card h4 {
  font-size: 16.5px;
  line-height: 1.35;
  color: var(--white);
  margin-top: 20px;
  font-weight: 500;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--cream);
}
.contact-panel {
  background: var(--navy-deep);
  color: var(--white);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.contact-panel::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border: 1px solid var(--navy-line);
  border-radius: 50%;
}
.contact-left h2 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}
.contact-left p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
  margin-bottom: 30px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info .row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info .icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--navy-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info .row strong {
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-info .row span {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}
.contact-right {
  border-left: 1px solid var(--navy-line);
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-right h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
}
.contact-right .btn-primary {
  width: fit-content;
  margin-bottom: 22px;
}
.contact-right .small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep);
  border-top: 3px solid var(--gold);
  padding: 72px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s ease;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 165, 92, 0.08);
}
.footer-col h5 {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-contact-row:last-child {
  margin-bottom: 0;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(201, 165, 92, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-soft);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact-info strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}
.footer-contact-info span,
.footer-contact-info a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-info a:hover {
  color: var(--gold-soft);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.footer-bottom .fnote {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom .fnote-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero {
    height: auto;
    max-height: none;
    min-height: 85vh;
    padding: 120px 0 60px;
    background: white;
  }
  .nav-links,
  .nav-cta .btn-outline {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero-feature-item {
    border-right: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid rgba(16, 24, 32, 0.08);
    padding-bottom: 20px;
  }
  .hero-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .hero-features-wrapper {
    margin-top: -30px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .about-grid,
  .vm-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
  .contact-right {
    border-left: none;
    border-top: 1px solid var(--navy-line);
    padding-left: 0;
    padding-top: 32px;
    margin-top: 8px;
  }
  section {
    padding: 80px 0;
  }
  .why-item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  .why-item:nth-child(even) {
    padding-left: 0;
  }
  .why-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .section-head h2 {
    font-size: 28px;
  }
  .values-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    padding: 32px 20px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 16, 32, 0.95);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.show {
  display: flex;
  opacity: 1;
}
.modal-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.modal.show .modal-content {
  transform: scale(1);
}
.close-modal {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1001;
}
.close-modal:hover {
  color: var(--gold-soft);
}
.product-card.modal-trigger {
  cursor: pointer;
}
.product-card.modal-trigger:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  z-index: 3;
  pointer-events: none;
}
