:root {
  --brand: #2d3097;
  --brand-dark: #1f2270;
  --brand-soft: #eef0fa;
  --accent: #00a8e4;
  --ink: #000000;
  --muted: #4a4a55;
  --paper: #f5f6fb;
  --white: #ffffff;
  --line: #dcdfee;
  --shadow: 0 18px 40px rgba(45, 48, 151, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Outfit, system-ui, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-lockup-text {
  display: block;
}

.wordmark .brand-lockup-text > span {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  padding: 88px 0 64px;
}

.hero-copy {
  max-width: 720px;
}

.about-grid,
.contact-grid,
.ceo-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.ceo-layout {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.lead,
.section-head p,
.about p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: transparent;
}

.strip {
  border-block: 1px solid var(--line);
  background: var(--brand-soft);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 88px;
  align-items: center;
}

.strip p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.strip span {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: 88px 0;
  scroll-margin-top: 84px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.product-image {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, var(--brand-soft));
}

.product-image img {
  max-height: 260px;
  width: auto;
  object-fit: contain;
}

.product-body {
  padding: 22px 24px 26px;
}

.tag {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.generic {
  margin: -8px 0 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-body p:last-child {
  margin: 0;
  color: var(--muted);
}

.about {
  background: var(--brand);
  color: #ffffff;
}

.about .eyebrow {
  color: var(--accent);
}

.about p,
.about-notes p {
  color: #ccd0f0;
}

.about-notes {
  display: grid;
  gap: 18px;
}

.about-notes div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.ceo {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.ceo-sign {
  margin: 24px 0 0;
  color: var(--muted);
}

.ceo-sign strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.ceo-sign span {
  display: block;
}

.ceo-letter {
  margin: 0;
  padding: 8px 0 0 28px;
  border-left: 3px solid var(--brand);
}

.ceo-letter p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

.ceo-letter p:last-child {
  margin-bottom: 0;
}

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.contact-meta li {
  margin-bottom: 12px;
}

.contact-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-meta a:hover {
  color: var(--brand);
}

.contact-actions {
  display: grid;
  gap: 20px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 22px 45px rgba(45, 48, 151, 0.16);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.contact-card-icon.whatsapp {
  background: #e8f7ed;
  color: #25d366;
}

.contact-card-icon.phone {
  background: var(--brand-soft);
  color: var(--brand);
}

.contact-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink);
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 20px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  width: 100%;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #1eb956;
  color: #ffffff;
}

.btn-call {
  background: var(--brand);
  color: var(--white);
}

.btn-call:hover {
  background: var(--brand-dark);
  color: var(--white);
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.footer-row p:last-child {
  max-width: 36ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.wordmark-footer {
  font-size: 1.5rem;
}

@media (max-width: 860px) {
  .about-grid,
  .contact-grid,
  .ceo-layout,
  .product-grid,
  .strip-grid,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .ceo-letter {
    padding-left: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 76px 20px auto;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .section {
    padding: 56px 0;
  }

  .footer-row {
    display: grid;
  }
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 20px 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

@media (max-width: 600px) {
  .floating-whatsapp span {
    display: none;
  }
  .floating-whatsapp {
    padding: 14px;
    border-radius: 50%;
    bottom: 18px;
    right: 18px;
  }
}

/* ---- Logo lockup ---- */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: none;
  object-fit: contain;
}

.footer-row .brand-mark {
  width: 46px;
  height: 46px;
}

/* ---- Product categories ---- */
.product-category + .product-category {
  margin-top: 56px;
}

.category-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}

.category-head h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--brand);
}

.category-head span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-image {
  height: 220px;
  min-height: 0;
  align-content: center;
}

.product-image img {
  max-height: 200px;
}

/* Placeholder tile for products with no photograph yet */
.product-image.is-placeholder {
  background: linear-gradient(150deg, var(--brand), var(--brand-dark));
  padding: 20px;
}

.placeholder-mark {
  display: grid;
  place-items: center;
  gap: 6px;
  text-align: center;
  color: #ffffff;
}

.placeholder-mark strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}

.placeholder-mark span {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.strength-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.strength-list li {
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 600;
}

/* ---- Contact / addresses ---- */

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.address-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 16px;
}

.address-card h3 {
  margin: 0 0 6px;
  font-family: Outfit, sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.address-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
}

@media (max-width: 720px) {
  .address-grid {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }
}

.product-body h4 {
  margin: 0 0 4px;
  font-size: 1.45rem;
}

.contact-btn + .contact-btn {
  margin-top: 10px;
}

.btn-call-alt {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn-call-alt:hover {
  background: var(--brand-soft);
  color: var(--brand);
}
