/* ==========================================================================
   EAGLE BLUE — Design Tokens
   ========================================================================== */
:root {
  /* Colors */
  --navy-deep:   #0E2536;
  --navy:        #1B364C;
  --navy-soft:   #294A64;
  --steel:       #4C7291;
  --steel-light: #7C99AF;
  --gold:        #E8A93A;
  --gold-light:  #F2C14E;
  --bg-light:    #EAEDF1;
  --page-bg:     #F7F9FC;
  --white:       #FFFFFF;
  --charcoal:    #2B2E33;
  --muted:       #6B7684;
  --border:      #E1E6EB;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(8, 31, 56, 0.08);
  --shadow-md: 0 8px 24px rgba(8, 31, 56, 0.12);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
p { margin: 0 0 1em; color: var(--charcoal); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A56B0E;
  font-weight: 700;
  margin-bottom: 0.75em;
}
.page-hero .eyebrow,
.hero-split .eyebrow,
.contact-info-card .eyebrow,
.site-footer .eyebrow { color: var(--gold-light); }
section { padding: 60px 0; }
@media (max-width: 720px) { section { padding: 40px 0; } }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-md); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.045em;
}
.brand-mark {
  width: 180px; height: 64px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.28));
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.85;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
}
.nav-cta {
  opacity: 1 !important;
  background: #FFC72C;
  color: var(--navy-deep);
  padding: 17px 42px;
  border: 1.5px solid #FFC72C;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.2;
  display: inline-block;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Products dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font: inherit;
}
.nav-dropdown .chevron {
  width: 11px; height: 11px;
  stroke: currentColor;
  transition: transform 0.18s ease;
}
.nav-dropdown:hover .chevron,
.nav-dropdown:focus-within .chevron,
.nav-dropdown.open .chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 20;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--navy);
  opacity: 1;
  font-size: 0.9rem;
  font-weight: 500;
}
.dropdown-menu a:hover,
.dropdown-menu a.active { background: var(--bg-light); color: var(--steel); }
.dropdown-menu a.active { font-weight: 700; }

@media (max-width: 860px) {
  .brand { font-size: 1.22rem; }
  .brand-mark { width: 118px; height: 42px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-cta { align-self: flex-start; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > a { justify-content: space-between; width: 100%; }
  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 4px 0 0 14px;
    margin-top: 6px;
  }
  .dropdown-menu::before { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { color: rgba(255,255,255,0.8); padding: 9px 0; }
  .dropdown-menu a:hover, .dropdown-menu a.active { background: transparent; color: var(--gold); }
}
@media (max-width: 400px) {
  .brand { font-size: 1.02rem; gap: 8px; }
  .brand-mark { width: 91px; height: 32px; }
}

/* ==========================================================================
   Hero — signature wing-sweep divider
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 56px 0 88px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 54px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 40%, 100% 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 640px; }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.hero h1.hero-heading-sm { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.hero-heading-lines { display: flex; flex-direction: column; gap: 2px; }
.hero-heading-lines span { display: block; text-align: left; }
.hero p.lead { color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 520px; }
.hero-wing {
  position: absolute;
  top: -60px; right: -80px;
  width: 520px; opacity: 0.16;
  z-index: 1;
}
@media (max-width: 720px) { .hero-wing { display: none; } }

.page-hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
  padding: 36px 0 46px;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 40px;
  background: var(--bg-light);
  clip-path: polygon(0 100%, 100% 55%, 100% 100%);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.7rem); }
.page-hero .lead { color: rgba(255,255,255,0.8); max-width: 560px; }
.page-hero.product-hero {
  background:
    linear-gradient(110deg, rgba(5, 28, 48, 0.9) 0%, rgba(10, 44, 70, 0.82) 52%, rgba(18, 64, 92, 0.7) 100%),
    url("../assets/images/products/image.jpg") center 54% / cover no-repeat;
}
.product-hero .container {
  position: relative;
  z-index: 1;
}
.product-hero .hero-split-text {
  max-width: 760px;
}
/* ==========================================================================
   Homepage content treatment
   ========================================================================== */
.home-intro-section {
  background: var(--white);
}
.home-intro-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}
.home-intro-copy p { color: var(--muted); }
.home-intro-centered {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.home-intro-centered p { text-align: left; }
.home-divisions-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(62,124,177,0.09), transparent 28%),
    linear-gradient(180deg, #F8FAFC 0%, #EEF3F7 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home-divisions-section .section-head {
  max-width: 720px;
  margin-bottom: 38px;
}
.home-trust-section {
  background: var(--white);
  padding-bottom: 100px;
}
.home-trust-section .eyebrow { color: #A56B0E; }
.home-trust-section .section-head h2 { color: var(--navy); }
.home-trust-card {
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-top: 5px solid var(--navy);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.home-trust-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.home-trust-card p { font-size: 1.1rem; line-height: 1.65; }
.home-trust-card .num { color: var(--gold); font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.home-trust-card h3 { color: var(--navy); }
.home-trust-card p { color: var(--muted); margin-bottom: 0; }
.home-trust-grid { gap: 32px; }
@media (max-width: 980px) { .home-trust-grid { grid-template-columns: 1fr; } }
/* ==========================================================================
   Divisions grid (product category cards)
   ========================================================================== */
.section-head { max-width: 620px; margin-bottom: 34px; }
.section-head p { color: var(--muted); }
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .divisions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .divisions-grid { grid-template-columns: 1fr; } }

.division-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(8, 38, 61, 0.1);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.division-card:hover {
  box-shadow: 0 20px 44px rgba(8, 38, 61, 0.17);
  transform: translateY(-6px);
  border-color: transparent;
}
.division-card-media {
  position: relative;
  height: 205px;
  overflow: hidden;
}
.division-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 30, 52, 0.62) 100%);
}
.division-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.division-card:hover .division-card-media img { transform: scale(1.05); }
.division-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.division-label {
  color: #A56B0E;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.division-card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.division-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.division-card .card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-top: auto;
}
.division-card:hover .card-link { color: var(--gold); }
@media (max-width: 980px) {
  .division-card { min-height: 370px; }
  .division-card-media { height: 190px; }
}
@media (max-width: 620px) {
  .divisions-grid { gap: 18px; }
  .division-card { min-height: 0; }
  .division-card-media { height: 190px; }
  .division-card-body { padding: 21px 20px 23px; }
}

.bg-tint { background: var(--bg-light); }

.ceo-message {
  max-width: 760px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.hero-split {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 8px;
}
.hero-split-text { flex: 1.05; }
.hero-split-text h1 {
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
  line-height: 1.25;
  margin-bottom: 14px;
}
.hero-split-text .lead {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.65;
}
@media (max-width: 860px) {
  .hero-split { flex-direction: column; align-items: stretch; }
}

.spice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .spice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .spice-grid { grid-template-columns: 1fr; } }
.spice-card { text-align: center; }
.spice-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 12px;
  display: block;
}
.spice-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.product-row {
  display: flex;
  align-items: flex-start;
  gap: 44px;
  margin-bottom: 60px;
}
.product-row:last-child { margin-bottom: 0; }
.product-row-text { flex: 1.15; }
.product-row-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.product-row-text p { font-size: 0.95rem; line-height: 1.65; color: var(--charcoal); margin-bottom: 20px; }
.product-row-media { flex: 0.85; }
.product-row-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.product-row-media img.contain-photo {
  object-fit: contain;
  padding: 24px;
  box-sizing: border-box;
}
.product-row-media-small {
  flex: 0 0 340px;
  align-self: center;
}
.product-row-media-small img {
  height: 230px;
  object-fit: contain;
}
@media (max-width: 860px) {
  .product-row { flex-direction: column; }
  .product-row-media { order: -1; }
  .product-row-media img { height: 240px; }
  .product-row-media-small {
    width: min(100%, 380px);
    flex-basis: auto;
  }
  .product-row-media-small img { height: 210px; }
}
/* Pink Salt product images: align top edge with the first line of the paragraph, below the heading */
.product-row-media--align-para { margin-top: 44px; }
@media (max-width: 860px) {
  .product-row-media--align-para { margin-top: 0; }
}

.ceo-message p { margin-bottom: 1.1em; }
.ceo-sign { margin-top: 1.6em; color: var(--navy); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; }

/* ==========================================================================
   About page bits
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; } }
.values-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.values-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .values-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
.value-card { padding: 8px 0; }
.value-card .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.value-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--charcoal);
}
.value-card .card-subhead {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.value-card .bullet-list,
.product-row-text .bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.value-card .bullet-list li,
.product-row-text .bullet-list li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--charcoal);
}
.value-card .bullet-list li::before,
.product-row-text .bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* About page editorial layout */
.about-split,
.ceo-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 6vw, 76px);
}
.about-copy h2,
.ceo-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}
.about-copy p { color: var(--muted); }
.about-media {
  margin: 0;
  position: relative;
}
.about-media::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  right: -14px;
  bottom: -14px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--steel), var(--gold));
  opacity: 0.22;
}
.about-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(8, 31, 56, 0.16);
}

.purpose-section {
  background: linear-gradient(135deg, #EEF2F5 0%, #F8FAFB 100%);
}
.purpose-grid { gap: 28px; }
.purpose-card,
.guide-card,
.benefit-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.purpose-card {
  padding: 38px;
  min-height: 230px;
  box-shadow: var(--shadow-sm);
}
.vision-card {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.mission-card {
  background: linear-gradient(145deg, var(--navy-soft) 0%, var(--steel) 100%);
}
.purpose-card .num,
.purpose-card h3,
.purpose-card p { color: var(--white); }
.purpose-card .num {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 24px;
}
.purpose-card h3 { font-size: 1.45rem; }
.purpose-card p { color: rgba(255,255,255,0.84); margin-bottom: 0; }

.guide-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
}
.guide-integrity { background: var(--white); border-top-color: var(--navy); }
.guide-quality { background: var(--white); border-top-color: var(--navy-soft); }
.guide-customer { background: var(--white); border-top-color: var(--gold); }
.guide-card .num {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.guide-integrity .num { color: var(--navy); }
.guide-quality .num { color: var(--navy-soft); }
.guide-customer .num { color: #A56B0E; }

.why-intro { margin-bottom: 48px; }
.benefit-grid { gap: 16px; }
.benefit-card {
  padding: 26px 22px;
  min-height: 220px;
  border: 1px solid rgba(8,31,56,0.08);
  border-top: 4px solid var(--navy);
}
.benefit-blue { background: #E9F0F6; border-top-color: var(--navy); }
.benefit-gold { background: #FBF3DF; border-top-color: var(--gold); }
.benefit-teal { background: #EEF2F5; border-top-color: var(--navy-soft); }
.benefit-coral { background: #F6F8FA; border-top-color: var(--navy-soft); }
.benefit-card h3 { font-size: 1.08rem; }
.benefit-card p { margin-bottom: 0; color: #4B5967; }

.ceo-split { align-items: start; }
.ceo-copy { min-width: 0; }
.ceo-message {
  max-width: none;
  border: 0;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 34px 36px;
  box-shadow: var(--shadow-sm);
}
.ceo-message p { color: #4B5967; }
.ceo-media {
  position: sticky;
  top: 112px;
}
.ceo-media img { aspect-ratio: 4 / 5; }

@media (max-width: 900px) {
  .about-split,
  .ceo-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-media { max-width: 680px; }
  .ceo-media {
    position: relative;
    top: auto;
    order: -1;
  }
  .ceo-media img { aspect-ratio: 3 / 2; }
}
@media (max-width: 640px) {
  .values-grid.cols-2,
  .values-grid.cols-4 { grid-template-columns: 1fr; }
  .purpose-card,
  .guide-card { padding: 28px 24px; }
  .benefit-card { min-height: 0; }
  .ceo-message { padding: 28px 24px; }
  .about-media::before { right: -8px; bottom: -8px; }
}

/* ==========================================================================
   Data tables (product specification tables)
   ========================================================================== */
.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.data-table th,
.data-table td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.data-table th:last-child,
.data-table td:last-child { border-right: none; }
.data-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:nth-child(even) { background: var(--bg-light); }
/* For tables with rowspan-grouped items, shade by product group instead of raw row index */
.data-table tbody tr.row-group-a { background: var(--white); }
.data-table tbody tr.row-group-b { background: var(--bg-light); }
.data-table td strong { color: var(--navy); font-weight: 600; }
@media (max-width: 700px) {
  .data-table th, .data-table td { padding: 10px 12px; font-size: 0.85rem; }
}

/* ==========================================================================
   Contact / Inquiry form
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
#inquiry-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(8, 38, 61, 0.08);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--charcoal);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--steel);
  outline: none;
  box-shadow: 0 0 0 3px rgba(62,124,177,0.15);
}
.form-error {
  color: #C0392B;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: #C0392B; }
.form-group.invalid .form-error { display: block; }
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 13px 22px;
}
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form-status.success { display: block; background: #E7F5EC; color: #1E7A43; }
.form-status.error { display: block; background: #FCEBEA; color: #C0392B; }

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card ul li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 20px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.contact-info-card ul li svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-map-wrap {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  flex: 1;
  min-height: 270px;
}
.contact-map-wrap iframe { display: block; width: 100%; height: 100%; }
@media (max-width: 900px) {
  .contact-info-card { height: auto; }
  .contact-map-wrap { min-height: 260px; }
}
@media (max-width: 560px) {
  #inquiry-form,
  .contact-info-card { padding: 22px 18px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-family: var(--font-body); }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}
.footer-brand img {
  width: 100px;
  height: 35px;
  object-fit: contain;
  filter: drop-shadow(0 3px 7px rgba(0,0,0,0.28));
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--gold-light); text-decoration: underline; }



