@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --background: oklch(0.985 0.012 90);
  --foreground: oklch(0.22 0.03 250);
  --card: oklch(1 0 0);
  --primary: oklch(0.27 0.05 250);
  --primary-foreground: oklch(0.98 0.01 90);
  --secondary: oklch(0.95 0.015 90);
  --muted-foreground: oklch(0.45 0.02 250);
  --accent: oklch(0.93 0.02 90);
  --border: oklch(0.88 0.015 90);
  --gold: oklch(0.72 0.13 80);
  --gold-soft: oklch(0.85 0.07 85);
  --coral: oklch(0.72 0.16 30);
  --teal: oklch(0.65 0.11 200);
  --rose: oklch(0.78 0.12 10);
  --gradient-banner: linear-gradient(120deg, oklch(0.27 0.05 250) 0%, oklch(0.45 0.09 220) 45%, oklch(0.72 0.13 80) 100%);
  --gradient-warm: linear-gradient(120deg, oklch(0.92 0.06 30) 0%, oklch(0.94 0.05 80) 50%, oklch(0.9 0.05 200) 100%);
  --shadow-elegant: 0 20px 50px -20px oklch(0.27 0.05 250 / 0.18);
  --shadow-soft: 0 8px 24px -12px oklch(0.27 0.05 250 / 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: "Cormorant Garamond", Georgia, serif; letter-spacing: -0.01em; color: var(--primary); font-weight: 600; line-height: 1.1; }

.container-bk { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
@media (min-width: 768px) { .section-pad { padding: 7rem 0; } }

/* Header */
.header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.header-row { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { height: 48px; width: auto; }
.brand-text { line-height: 1.05; }
.brand-name { font-weight: 800; letter-spacing: 0.04em; font-size: 1.15rem; color: var(--primary); text-transform: uppercase; }
.brand-tag { font-size: 10px; letter-spacing: 0.22em; color: var(--muted-foreground); text-transform: uppercase; margin-top: 2px; }
.nav { display: none; gap: 1.75rem; font-size: 0.875rem; align-items: center; }
.nav a { color: rgba(0,0,0,0.7); transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--primary); font-weight: 600; }
.btn-call { display: none; align-items: center; gap: 0.5rem; background: var(--primary); color: var(--primary-foreground); padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; box-shadow: var(--shadow-soft); }
.btn-call:hover { opacity: 0.9; }
.btn-call svg { width: 14px; height: 14px; }
@media (min-width: 768px) { .nav, .btn-call { display: inline-flex; } .brand-name { font-size: 1.25rem; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; transition: all .2s; }
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-soft); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { border: 1px solid var(--border); background: var(--background); color: var(--foreground); }
.btn-outline:hover { background: var(--secondary); }
.btn-gold { background: var(--gold); color: var(--primary); font-weight: 700; }
.btn-gold:hover { filter: brightness(1.1); }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background: var(--gradient-warm); }
.hero-grid { display: grid; gap: 3rem; align-items: center; padding: 4rem 0; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; padding: 6rem 0; } }
.hero p { margin-top: 1.5rem; color: var(--muted-foreground); font-size: 1.125rem; max-width: 36rem; }
.hero p strong { color: var(--foreground); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

/* Slider */
.slider { position: relative; aspect-ratio: 4/5; border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-elegant); border: 1px solid rgba(255,255,255,0.4); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; }
.slide.active { opacity: 1; }
.slide-bg { position: absolute; inset: 0; background: linear-gradient(135deg, white, var(--secondary), var(--accent)); }
.slide img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: contain; padding: 2rem; }
.slide-tag { position: absolute; left: 1.25rem; top: 1.25rem; background: var(--primary); color: var(--primary-foreground); font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; padding: 0.25rem 0.75rem; border-radius: 9999px; font-weight: 600; }
.slide-caption { position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; background: rgba(255,255,255,0.85); backdrop-filter: blur(6px); padding: 0.75rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; color: var(--primary); font-weight: 500; }
.dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.dots button { height: 6px; width: 12px; border-radius: 9999px; background: oklch(0.27 0.05 250 / 0.3); border: 0; cursor: pointer; transition: all .3s; }
.dots button.active { width: 32px; background: var(--primary); }

/* Sections common */
.eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--coral); font-weight: 600; }
.section-title { margin-top: 0.75rem; font-size: 2.25rem; }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.muted { color: var(--muted-foreground); line-height: 1.7; }

.who-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .who-grid { grid-template-columns: 1fr 1fr; } }
.who-img-wrap { position: relative; }
.who-img-glow { position: absolute; inset: -1rem; z-index: -1; border-radius: 1.5rem; filter: blur(40px); background: linear-gradient(135deg, oklch(0.72 0.16 30 / 0.2), oklch(0.72 0.13 80 / 0.2), oklch(0.65 0.11 200 / 0.2)); }
.who-img { border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-elegant); aspect-ratio: 4/3; }
.who-img img { height: 100%; width: 100%; object-fit: cover; }
.who-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--primary); color: var(--primary-foreground); padding: 1rem 1.5rem; border-radius: 1rem; box-shadow: var(--shadow-elegant); display: none; }
@media (min-width: 768px) { .who-badge { display: block; } }
.who-badge .lbl { font-size: 0.75rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.18em; }
.who-badge .val { font-family: "Cormorant Garamond", serif; font-size: 1.875rem; color: var(--primary-foreground); }
.bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; font-size: 0.875rem; }
.bullets li { display: flex; align-items: center; gap: 0.5rem; }
.dot { height: 8px; width: 8px; border-radius: 9999px; flex-shrink: 0; }

.bg-coral { background: var(--coral); } .bg-teal { background: var(--teal); } .bg-gold { background: var(--gold); } .bg-rose { background: var(--rose); } .bg-primary { background: var(--primary); }
.text-coral { color: var(--coral); } .text-gold { color: var(--gold); } .text-teal { color: var(--teal); } .text-primary { color: var(--primary); }

.strengths-section { background: oklch(0.95 0.015 90 / 0.5); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gold-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 2.5rem 0; }
.cards { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards.cards-4 { grid-template-columns: repeat(4, 1fr); } .cards.cards-3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--card); padding: 1.5rem; border-radius: 1rem; border: 1px solid var(--border); box-shadow: var(--shadow-soft); transition: transform .2s; }
.card:hover { transform: translateY(-4px); }
.card-num { display: inline-flex; height: 48px; width: 48px; align-items: center; justify-content: center; border-radius: 0.75rem; color: white; font-family: "Cormorant Garamond", serif; font-size: 1.5rem; box-shadow: var(--shadow-soft); }
.card h3 { margin-top: 1rem; font-size: 1.5rem; }
.card .desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* Stats */
.stats-head { max-width: 36rem; margin: 0 auto; text-align: center; }
.stats-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { position: relative; border-radius: 1rem; border: 1px solid var(--border); background: var(--card); padding: 2rem 1rem; text-align: center; box-shadow: var(--shadow-soft); overflow: hidden; }
.stat-bar { position: absolute; top: 0; left: 0; right: 0; height: 6px; }
.stat-icon { display: inline-flex; height: 48px; width: 48px; align-items: center; justify-content: center; border-radius: 0.75rem; color: white; box-shadow: var(--shadow-soft); }
.stat-icon svg { width: 24px; height: 24px; }
.stat-v { font-family: "Cormorant Garamond", serif; font-size: 2.25rem; color: var(--primary); margin-top: 1rem; }
@media (min-width: 768px) { .stat-v { font-size: 3rem; } }
.stat-l { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); margin-top: 0.5rem; }

/* CTA banner */
.cta-banner { padding: 2.5rem; border-radius: 1.5rem; display: grid; gap: 2rem; align-items: center; box-shadow: var(--shadow-elegant); position: relative; overflow: hidden; background: var(--gradient-banner); color: var(--primary-foreground); }
@media (min-width: 768px) { .cta-banner { padding: 3.5rem; grid-template-columns: 1fr auto; } }
.cta-banner h2 { color: var(--primary-foreground); font-size: 1.875rem; }
@media (min-width: 768px) { .cta-banner h2 { font-size: 2.25rem; } }
.cta-banner p { margin-top: 0.75rem; color: oklch(0.98 0.01 90 / 0.85); max-width: 36rem; }

/* Mini banner */
.mini-banner { background: var(--gradient-banner); color: var(--primary-foreground); padding: 4rem 0; position: relative; overflow: hidden; }
.mini-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 200px at 80% 50%, oklch(0.72 0.13 80 / 0.35), transparent 70%); pointer-events: none; }
.mini-banner .eyebrow { color: var(--gold-soft); }
.mini-banner h1 { color: var(--primary-foreground); margin-top: 0.5rem; font-size: 2.25rem; }
@media (min-width: 768px) { .mini-banner h1 { font-size: 3.75rem; } }
.mini-banner p { margin-top: 1rem; max-width: 36rem; color: oklch(0.98 0.01 90 / 0.85); }
.mini-banner .container-bk { position: relative; z-index: 1; }

/* About */
.two-col { display: grid; gap: 3rem; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }
.values li { display: flex; gap: 0.75rem; margin-top: 0.75rem; color: var(--muted-foreground); }
.values .dot { margin-top: 0.5rem; }
.factory-section { background: oklch(0.95 0.015 90 / 0.5); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.factory-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .factory-grid { grid-template-columns: 1fr 1fr; } }
.factory-img { border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-elegant); aspect-ratio: 4/3; }
.factory-img img { height: 100%; width: 100%; object-fit: cover; }

/* Infrastructure */
.infra-cards { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .infra-cards { grid-template-columns: repeat(3, 1fr); } }
.infra-card { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-soft); }
.infra-card .img-box { aspect-ratio: 4/3; overflow: hidden; }
.infra-card img { height: 100%; width: 100%; object-fit: cover; }
.infra-card .body { padding: 1.25rem; }
.infra-card h3 { font-size: 1.5rem; }
.infra-card .desc { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

.process-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-item .img-box { aspect-ratio: 4/3; border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); }
.process-item img { height: 100%; width: 100%; object-fit: cover; transition: transform .7s; }
.process-item:hover img { transform: scale(1.05); }
.process-label { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; font-family: "Cormorant Garamond", serif; font-size: 1.25rem; color: var(--primary); }

/* Products */
.product-info { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .product-info { grid-template-columns: repeat(3, 1fr); } }
.info-card { border-radius: 1rem; border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.info-card .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; }
.info-card h3 { margin-top: 0.5rem; font-size: 1.5rem; }
.info-list { margin-top: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.info-list-1 { grid-template-columns: 1fr; }
.info-list li { display: flex; align-items: center; gap: 0.5rem; }
.info-list .mini-dot { height: 6px; width: 6px; border-radius: 9999px; flex-shrink: 0; }
.gallery-section { background: oklch(0.95 0.015 90 / 0.5); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; margin-top: 2.5rem; }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(5, 1fr); } }
.g-item { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-soft); }
.g-item .img-box { aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(135deg, var(--secondary), var(--accent)); }
.g-item img { height: 100%; width: 100%; object-fit: contain; padding: 1rem; transition: transform .7s; }
.g-item:hover img { transform: scale(1.05); }
.g-item .meta { padding: 0.75rem; }
.g-item .tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--coral); font-weight: 600; }
.g-item .name { font-size: 0.875rem; color: var(--primary); font-weight: 500; }

/* Contact */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-row { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .contact-row { grid-template-columns: 1fr 1fr; } }
.contact-card { border-radius: 1rem; border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.contact-card .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; margin-bottom: 0.75rem; }
.contact-person { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 0.75rem; }
.contact-person .name { font-family: "Cormorant Garamond", serif; font-size: 1.125rem; font-weight: 700; color: var(--primary); }
.contact-person .ph { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }
.contact-person .ph:hover { color: var(--coral); }
.email-link { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.125rem; color: var(--primary); word-break: break-all; }
.email-link:hover { color: var(--coral); }
address { font-style: normal; color: var(--muted-foreground); line-height: 1.7; }
form { border-radius: 1rem; border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { form { padding: 2rem; } }
form h3 { font-size: 1.5rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
form label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); display: block; }
form input, form textarea { width: 100%; margin-top: 0.25rem; padding: 0.5rem 0.75rem; border: 1px solid var(--border); border-radius: 0.375rem; background: var(--background); font-size: 0.875rem; font-family: inherit; }
form input:focus, form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
form button { align-self: flex-start; }

/* Footer */
.footer { margin-top: 6rem; border-top: 1px solid var(--border); background: oklch(0.95 0.015 90 / 0.4); }
.footer-grid { display: grid; gap: 2.5rem; padding: 5rem 0 5rem; font-size: 0.875rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; padding: 6rem 0; } }
.footer-brand { font-family: "Inter", sans-serif; font-weight: 800; letter-spacing: 0.04em; font-size: 1.5rem; color: var(--primary); text-transform: uppercase; }
.footer-tag { font-size: 11px; letter-spacing: 0.22em; color: var(--muted-foreground); text-transform: uppercase; margin-top: 0.25rem; }
.footer p { margin-top: 1rem; color: var(--muted-foreground); max-width: 28rem; line-height: 1.7; }
.footer h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 1rem; font-family: "Inter", sans-serif; font-weight: 600; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-row { display: flex; flex-direction: column; gap: 0.5rem; padding: 2rem 0; font-size: 0.75rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .footer-bottom-row { flex-direction: row; justify-content: space-between; } }
.footer-bottom-row a { color: var(--primary); font-weight: 600; }
.footer-bottom-row a:hover { color: var(--gold); }

/* Pill */
.pill { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid oklch(0.72 0.13 80 / 0.4); background: rgba(255,255,255,0.6); backdrop-filter: blur(6px); padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }
