/* Divine Labels — custom label solutions */
:root {
  --navy: #1b2a4a;
  --navy-700: #243a63;
  --navy-900: #121d33;
  --gold: #b08d4f;
  --gold-light: #c9a86a;
  --silver: #8a93a3;
  --ink: #2b3344;
  --muted: #5b6678;
  --bg: #f7f8fb;
  --bg-soft: #eef1f6;
  --line: #e4e8f0;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(18,29,51,.08);
  --shadow: 0 10px 30px rgba(18,29,51,.10);
  --shadow-lg: 0 24px 60px rgba(18,29,51,.16);
  --radius: 16px;
  --maxw: 1180px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: .78rem;
}
.eyebrow svg { width: 18px; height: 18px; }
h1,h2,h3 { margin: 0; color: var(--navy); font-weight: 700; line-height: 1.15; }
.h-accent { width: 84px; height: 4px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); border-radius: 99px; }
.center { text-align: center; }
.center .h-accent { margin: 18px auto 0; }
.lead { color: var(--muted); font-size: 1.12rem; font-weight: 300; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 12px; font-weight: 600;
  font-size: .98rem; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn svg { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: linear-gradient(135deg,var(--navy),var(--navy-700)); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: #2a2110; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(176,141,79,.35); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* header */
header.site {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 60;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand .mark {
  width: 52px; height: 52px; border-radius: 12px; overflow: hidden;
  background: #f3efe5; display: grid; place-items: center; box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand .mark img { width: 100%; height: 100%; object-fit: cover; }
.brand .name { font-family: var(--serif); font-weight: 800; font-size: 1.35rem; color: var(--navy); letter-spacing: .01em; }
.brand .tag { font-size: .72rem; color: var(--gold); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-weight: 500; color: var(--ink); position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: inline-flex; }
.menu-btn { display: none; background: none; border: 0; cursor: pointer; color: var(--navy); padding: 6px; }
.menu-btn svg { width: 28px; height: 28px; }
.mobile-menu { display: none; flex-direction: column; gap: 6px; padding: 8px 0 18px; border-top: 1px solid var(--line); }
.mobile-menu a { padding: 12px 6px; font-weight: 500; border-radius: 8px; }
.mobile-menu a:hover { background: var(--bg-soft); }
.mobile-menu.open { display: flex; }

/* hero */
.hero {
  padding: 150px 0 96px;
  background:
    radial-gradient(900px 500px at 88% -8%, rgba(176,141,79,.10), transparent 60%),
    linear-gradient(160deg,#f8f5ee 0%, #ffffff 45%, var(--bg) 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 300; color: var(--ink); margin: 22px 0 0; }
.hero h1 .strong { display: block; font-weight: 800; color: var(--navy); font-family: var(--serif); }
.hero h1 .sub { display: block; font-size: clamp(1.5rem,2.6vw,2.2rem); color: var(--muted); margin-top: 6px; font-weight: 300; }
.hero p.lead { max-width: 30rem; margin: 26px 0 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hero-collage img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }
.hero-collage .tall { aspect-ratio: 3/4; }
.hero-collage .col-2 { display: grid; gap: 18px; margin-top: 34px; }
.hero-collage .col-2 img { aspect-ratio: 4/3; }
.stat-badge {
  position: absolute; left: -26px; bottom: -28px; background: #fff;
  padding: 20px 26px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); text-align: left;
}
.stat-badge .big { font-size: 2rem; font-weight: 800; color: var(--gold); font-family: var(--serif); line-height: 1; }
.stat-badge .lbl { color: var(--muted); font-weight: 600; font-size: .9rem; margin-top: 4px; }

/* products */
#products { background: var(--bg); }
.cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; margin-top: 56px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .thumb img { transform: scale(1.06); }
.card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card .ico {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(176,141,79,.12); color: var(--gold); margin: -50px 0 16px; position: relative;
  border: 4px solid #fff; box-shadow: var(--shadow-sm);
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-weight: 300; font-size: .96rem; margin: 0 0 18px; }
.card .more { margin-top: auto; color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; }
.card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .more svg { transform: translateX(4px); }

/* about */
#about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media > img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.about-emblem {
  position: absolute; right: -22px; top: -22px; width: 120px; height: 120px;
  background: #fff; border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); padding: 14px; overflow: hidden;
}
.about-emblem img { object-fit: contain; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.stat {
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  display: flex; gap: 16px; align-items: center;
}
.stat .si { width: 52px; height: 52px; border-radius: 50%; background: #fff; color: var(--navy); display: grid; place-items: center; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.stat .si svg { width: 24px; height: 24px; }
.stat .sv { display: block; font-size: 1.6rem; font-weight: 800; color: var(--navy); font-family: var(--serif); line-height: 1.1; }
.stat .sl { display: block; color: var(--muted); font-size: .88rem; font-weight: 500; margin-top: 4px; }

/* features (why us) */
.features { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.features::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 380px at 85% 10%, rgba(176,141,79,.16), transparent 60%);
  pointer-events: none;
}
.features h2, .features .lead { color: #fff; }
.features .lead { opacity: .8; }
.features .eyebrow { color: var(--gold-light); }
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 54px; position: relative; }
.feature {
  display: flex; gap: 20px; padding: 28px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, transform .25s ease;
}
.feature:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.feature .fi { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: #2a2110; display: grid; place-items: center; flex-shrink: 0; }
.feature .fi svg { width: 28px; height: 28px; }
.feature h3 { color: #fff; font-size: 1.14rem; margin-bottom: 6px; }
.feature p { color: rgba(255,255,255,.72); font-weight: 300; margin: 0; font-size: .96rem; }

/* CTA */
.cta-wrap { background: var(--bg); padding: 0 0 96px; }
.cta {
  max-width: var(--maxw); margin: 0 auto; padding: 60px 40px; border-radius: 24px; text-align: center; color: #fff;
  background: linear-gradient(135deg,var(--navy),var(--navy-700)); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(500px 260px at 80% 0%, rgba(201,168,106,.28), transparent 60%); }
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(1.8rem,3.4vw,2.6rem); font-weight: 300; }
.cta h2 b { font-family: var(--serif); }
.cta p { color: rgba(255,255,255,.85); margin: 14px auto 28px; max-width: 38rem; font-weight: 300; }

/* contact */
#contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; }
.contact-info h2, .contact-form h2 { font-size: 1.6rem; margin-bottom: 8px; }
.info-list { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.info {
  display: flex; gap: 18px; align-items: flex-start;
}
.info .ii { width: 50px; height: 50px; border-radius: 12px; background: rgba(176,141,79,.12); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.info .ii svg { width: 22px; height: 22px; }
.info .t { font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.info .d { color: var(--muted); font-weight: 300; }
.info .d a:hover { color: var(--gold); }
.gst-badge { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; background: var(--bg-soft); border: 1px dashed var(--silver); padding: 12px 18px; border-radius: 12px; font-size: .9rem; color: var(--navy); font-weight: 600; }
.gst-badge svg { width: 18px; height: 18px; color: var(--gold); }

.contact-form { background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: .96rem; background: #fff; color: var(--ink); transition: border .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,141,79,.15); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.form-ok { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 11px; background: #ecf7ee; color: #1f7a39; font-weight: 600; border: 1px solid #c9ead1; }
.form-ok.show { display: block; }

/* footer */
footer.site { background: var(--navy-900); color: #cdd5e3; padding: 72px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 48px; }
.foot-brand .brand .name { color: #fff; }
.foot-brand .brand .mark { background: rgba(255,255,255,.06); }
.foot-brand p { color: rgba(255,255,255,.65); font-weight: 300; margin: 20px 0 0; max-width: 30rem; }
.foot h4 { color: #fff; font-size: 1.05rem; margin: 0 0 18px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.foot ul a, .foot ul li { color: rgba(255,255,255,.7); font-weight: 300; }
.foot ul a:hover { color: var(--gold-light); }
.foot .fline { display: flex; gap: 12px; align-items: flex-start; }
.foot .fline svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 26px; text-align: center; color: rgba(255,255,255,.55); font-size: .88rem; }
.foot-bottom b { color: rgba(255,255,255,.8); font-weight: 600; }

/* responsive */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stat-badge { left: 0; }
  .hero { padding-top: 130px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .section { padding: 72px 0; }
  .cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta { padding: 44px 24px; border-radius: 18px; }
}
