
:root {
  --navy: #10243a;
  --gold: #d18f2c;
  --cream: #f8f6f2;
  --text: #243447;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(16, 36, 58, 0.08);
  --radius: 22px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(248,246,242,0.95);
  backdrop-filter: blur(12px);
  z-index: 999;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-wrapper {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 150px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}

.hero {
  padding: 10px 0;
  text-align: center;
}

.hero-logo {
  width: min(420px, 90%);
  margin: 0 auto 40px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero-text {
  max-width: 720px;
  margin: auto;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f1b451);
  color: white;
}

.btn-secondary,
.btn-outline {
  border: 1px solid rgba(16,36,58,0.15);
  color: var(--navy);
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.section-label {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 700;
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 20px 0;
}

.cards-grid,
.markets-grid,
.stats-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.cards-grid {
  grid-template-columns: repeat(3,1fr);
}

.markets-grid {
  grid-template-columns: repeat(3,1fr);
}

.stats-grid {
  grid-template-columns: repeat(4,1fr);
}

.info-card,
.sector-card,
.market-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(209,143,44,0.12);
}

.sector-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  background: rgba(209,143,44,0.09);
}

.sector-icon img {
  width: 40px;
  height: 40px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(209,143,44,0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-image {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  height: 220px;
}

.product-card h3 {
  font-size: 1.35rem;
  margin-top: 8px;
}

.product-card p {
  line-height: 1.7;
}

.product-card ul {
  list-style: disc inside;
  gap: 8px;
  display: grid;
}

.product-card a {
  margin-top: auto;
  width: fit-content;
}

.product-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.products-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.products-list {
  display: grid;
  gap: 40px;
}

.product-detail-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(209,143,44,0.12);
}

.product-detail-image.album {
  display: grid;
  gap: 12px;
}

.product-detail-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: var(--shadow);
  border: 1px solid rgba(209,143,44,0.15);
}

.product-detail-content h3 {
  margin-bottom: 18px;
}

.product-detail-content p {
  margin-bottom: 28px;
  line-height: 1.8;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(209,143,44,0.15);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.try-product {
  background: #f8f6f2;
  padding: 90px 0;
}

.try-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 40px;
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(209,143,44,0.12);
}

.try-image img {
  width: 100%;
  border-radius: 22px;
  display: block;
  box-shadow: var(--shadow);
}

.try-content h3 {
  margin-bottom: 18px;
}

.try-content p {
  margin-bottom: 28px;
  line-height: 1.8;
}

@media(max-width: 992px) {
  .try-card,
  .product-detail-card {
    grid-template-columns: 1fr;
  }
}

.section-dark {
  background: var(--navy);
  padding: 90px 0;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-item strong {
  display: block;
  font-size: 3rem;
  color: var(--gold);
}

.market-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.market-flag {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(16, 36, 58, 0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

.market-name {
  font-weight: 600;
}

.cta-banner {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--navy), #183858);
  color: white;
}

.cta-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-form {
  margin-top: 28px;
  background: white;
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16,36,58,0.03);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(16,36,58,0.08);
}

.contact-form textarea { resize: vertical; }

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.contact-note { color: rgba(16,36,58,0.6); font-size: 0.95rem; }

@media(max-width: 768px){
  .contact-grid { grid-template-columns: 1fr; }
}

/* honeypot field — visually hidden but present for bots */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* flash message */
.flash-message {
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-weight: 600;
  color: white;
}
.flash-message.success { background: linear-gradient(90deg,#2b9348,#59c36a); }
.flash-message.error { background: linear-gradient(90deg,#b22222,#ff6b6b); }

/* invalid input styling (visible when JS sets aria-invalid="true") */
.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"],
.contact-form select[aria-invalid="true"] {
  border-color: #b22222;
  box-shadow: 0 0 0 4px rgba(178,34,34,0.08);
  background: #fff7f7;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form input:focus[aria-invalid="true"],
.contact-form textarea:focus[aria-invalid="true"] {
  box-shadow: 0 0 0 6px rgba(178,34,34,0.12);
}

.btn-light {
  background: white;
  color: var(--navy);
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.footer {
  background: #0d1d30;
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
  padding-bottom: 50px;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer h4 {
  color: white;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.footer-nav,
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 14px;
}

.footer-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer ul li {
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 24px;
  color: rgba(255,255,255,0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 24px;
}

.hamburger {
  display: none;
}

@media(max-width: 768px){

  .cards-grid,
  .product-summary-grid,
  .markets-grid,
  .stats-grid,
  .footer-grid,
  .cta-wrapper{
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: block;
    background: transparent;
    border: none;
    font-size: 1.5rem;
  }

  .hero {
    padding: 100px 0;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
