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

:root {
  --red: #7b1118;
  --red-dark: #4f0a0f;
  --gold: #b89045;
  --cream: #faf7f0;
  --paper: #fffdf9;
  --ink: #211c19;
  --muted: #6f6660;
  --line: #e7dfd3;
  --shadow: 0 18px 45px rgba(52, 32, 19, .10);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,253,249,.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(231,223,211,.8); }
.nav-wrap { min-height: 86px; display:flex; align-items:center; justify-content:space-between; gap: 24px; }
.brand img { display:block; width: 330px; max-width: 55vw; height:auto; border-radius: 3px; }
.main-nav { display:flex; align-items:center; gap: 28px; font-size: .93rem; font-weight: 600; }
.main-nav a { position:relative; padding: 8px 0; }
.main-nav a::after { content:""; position:absolute; left:0; bottom:2px; width:0; height:2px; background:var(--red); transition:.25s; }
.main-nav a:hover::after { width:100%; }
.menu-toggle { display:none; border:0; background:none; font-size: 1.8rem; cursor:pointer; color:var(--red); }

.hero { position:relative; overflow:hidden; background: radial-gradient(circle at 80% 20%, rgba(184,144,69,.18), transparent 35%), linear-gradient(135deg,#fffaf1 0%,#f4eadb 100%); }
.hero-pattern { position:absolute; inset:0; opacity:.22; background-image: repeating-linear-gradient(45deg, transparent 0 26px, rgba(123,17,24,.07) 27px 28px), repeating-linear-gradient(-45deg, transparent 0 26px, rgba(184,144,69,.09) 27px 28px); }
.hero-content { position:relative; min-height:650px; display:grid; grid-template-columns: 1.1fr .9fr; gap:60px; align-items:center; padding: 70px 0; }
.eyebrow { display:inline-block; text-transform:uppercase; letter-spacing:.18em; font-size:.73rem; font-weight:700; color:var(--red); margin-bottom:12px; }
h1,h2,h3 { margin:0 0 16px; line-height:1.05; }
h1,h2 { font-family:"Cormorant Garamond", Georgia, serif; }
h1 { font-size:clamp(3.2rem, 6vw, 5.6rem); font-weight:700; color:var(--red-dark); }
h1 span { color:var(--gold); }
h2 { font-size:clamp(2.5rem, 4vw, 4rem); color:var(--red-dark); }
h3 { font-size:1.15rem; }
.hero-copy > p { max-width:650px; color:var(--muted); font-size:1.08rem; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:25px; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:0 21px; border-radius:999px; font-weight:700; transition:.25s; }
.btn-primary { background:var(--red); color:#fff; box-shadow: 0 10px 25px rgba(123,17,24,.2); }
.btn-primary:hover { transform:translateY(-2px); background:var(--red-dark); }
.btn-light { background:#fff; border:1px solid var(--line); }
.btn-outline { border:1px solid var(--red); color:var(--red); }
.btn-outline:hover,.btn-light:hover { transform:translateY(-2px); box-shadow:var(--shadow); }
.quick-info { display:flex; gap:30px; margin-top:35px; }
.quick-info div { display:flex; flex-direction:column; }
.quick-info strong { font-size:.95rem; }
.quick-info small { color:var(--muted); }
.hero-card { min-height:400px; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:34px; background:rgba(255,255,255,.76); border:1px solid rgba(184,144,69,.3); border-radius:38% 38% 22px 22px; box-shadow:var(--shadow); position:relative; overflow:hidden; }
.card-glow { position:absolute; width:260px; height:260px; border-radius:50%; background:rgba(184,144,69,.15); filter:blur(5px); }
.hero-logo { width:280px; height:280px; border-radius:50%; overflow:hidden; position:relative; box-shadow:0 20px 50px rgba(0,0,0,.12); }
.hero-logo img { width:100%; height:100%; object-fit:cover; }
.hero-card p { position:relative; text-align:center; max-width:330px; margin:25px 0 0; color:var(--muted); font-size:.9rem; }

.section { padding:100px 0; }
.intro { background:#fff; }
.intro-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap:70px; align-items:center; }
.intro-grid p { font-size:1.15rem; color:var(--muted); max-width:700px; }
.products-section { background:var(--cream); }
.section-heading { display:flex; justify-content:space-between; gap:50px; align-items:end; margin-bottom:45px; }
.section-heading > p { max-width:420px; color:var(--muted); margin:0; }
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.product-card { background:#fff; overflow:hidden; border:1px solid var(--line); border-radius:var(--radius); padding:28px; min-height:190px; transition:.3s; }
.product-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:rgba(184,144,69,.5); }
.product-image { width:calc(100% + 56px); height:150px; object-fit:cover; display:block; margin:-28px -28px 18px; }\n.product-icon { font-size:2.1rem; margin-bottom:16px; }
.product-card p { margin:0; color:var(--muted); font-size:.92rem; }

.dhl-section { background:var(--red-dark); color:#fff; }
.dhl-grid { display:grid; grid-template-columns: 170px 1fr; gap:55px; align-items:center; }
.dhl-section h2 { color:#fff; }
.dhl-section .eyebrow { color:#d9bd7b; }
.dhl-section p { color:rgba(255,255,255,.78); max-width:720px; }
.dhl-badge { width:150px; height:150px; border-radius:50%; background:#ffd800; color:#d40511; display:grid; place-items:center; font-size:2.7rem; font-weight:900; box-shadow:0 15px 40px rgba(0,0,0,.18); }
.dhl-section .btn-light { background:#fff; color:var(--red-dark); }

.about-section { background:#fff; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.about-image { border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); background:var(--cream); }
.about-image img { width:100%; display:block; }
.about-grid p { color:var(--muted); }

.location-section { background:var(--cream); }
.location-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.location-card, .map-placeholder { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:42px; }
.muted { color:var(--muted); }
.details { margin-top:28px; display:grid; gap:20px; }
.details > div { display:flex; gap:15px; }
.details > div > span { font-size:1.3rem; }
.details a { color:var(--red); font-weight:600; }
.map-placeholder { min-height:430px; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; background:radial-gradient(circle at center, #f5eadb, #eee2d0); }
.map-pin { font-size:3rem; margin-bottom:12px; }
.map-placeholder a { color:var(--red); font-weight:700; margin-top:12px; }

.site-footer { background:#201916; color:#fff; padding:55px 0 25px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:50px; }
.footer-logo { width:300px; max-width:100%; height:auto; margin-bottom:18px; border-radius:2px; }
.site-footer p,.site-footer a { color:rgba(255,255,255,.7); }
.footer-grid h3 { color:#fff; font-family:Inter,Arial,sans-serif; font-size:1rem; }
.footer-grid a { display:block; margin:8px 0; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:40px; padding-top:22px; display:flex; justify-content:space-between; gap:20px; font-size:.85rem; color:rgba(255,255,255,.55); }
.footer-bottom div { display:flex; gap:20px; }

@media (max-width: 900px) {
  .hero-content,.intro-grid,.about-grid,.location-grid { grid-template-columns:1fr; }
  .hero-content { padding:55px 0; }
  .hero-card { min-height:340px; }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .dhl-grid { grid-template-columns:120px 1fr; gap:30px; }
  .dhl-badge { width:110px; height:110px; font-size:2rem; }
  .section-heading { align-items:start; flex-direction:column; gap:10px; }
}
@media (max-width: 680px) {
  .container { width:min(100% - 28px, 1160px); }
  .nav-wrap { min-height:72px; }
  .brand img { width:160px; }
  .menu-toggle { display:block; }
  .main-nav { position:absolute; left:14px; right:14px; top:72px; background:#fff; border:1px solid var(--line); border-radius:16px; padding:12px; display:none; flex-direction:column; align-items:stretch; gap:2px; box-shadow:var(--shadow); }
  .main-nav.open { display:flex; }
  .main-nav a { padding:12px 14px; }
  h1 { font-size:3.1rem; }
  h2 { font-size:2.7rem; }
  .hero-content { min-height:auto; }
  .hero-card { min-height:290px; border-radius:28px; }
  .hero-logo { width:210px; height:210px; }
  .quick-info { gap:18px; flex-wrap:wrap; }
  .section { padding:72px 0; }
  .product-grid { grid-template-columns:1fr; }
  .dhl-grid { grid-template-columns:1fr; text-align:center; }
  .dhl-grid .hero-actions { justify-content:center; }
  .dhl-badge { margin:0 auto; }
  .location-card,.map-placeholder { padding:28px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; }
}
