:root {
  --navy: #071A3A;
  --navy-2: #0B244D;
  --blue: #215E96;
  --yellow: #FFC400;
  --yellow-soft: #FFE58A;
  --warm: #FAF7F2;
  --cream: #FFFDF8;
  --text: #172331;
  --muted: #566170;
  --line: rgba(7, 26, 58, 0.12);
  --white: #FFFFFF;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(7, 26, 58, 0.14);
  --container: 1180px;
  --font: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--warm);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.wrap { width: min(var(--container), calc(100% - 44px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 26, 58, 0.08);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.nav-logo { width: 260px; flex: 0 0 auto; }
.nav-logo img { width: 100%; height: auto; }
.nav-shell { display: flex; align-items: center; gap: 22px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 6px; padding: 0; margin: 0; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { background: var(--yellow); }
.lang-switch { display: flex; align-items: center; gap: 3px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); }
.lang-switch a { width: 34px; height: 30px; border-radius: 999px; display: grid; place-items: center; font-weight: 900; color: var(--navy); font-size: .72rem; letter-spacing: .08em; }
.lang-switch a.active { background: var(--navy); color: var(--white); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: var(--navy); border-radius: 12px; padding: 12px; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 999px; }

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.04) brightness(.9); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(7,26,58,.96) 0%, rgba(7,26,58,.88) 42%, rgba(7,26,58,.54) 70%, rgba(7,26,58,.24) 100%); pointer-events: none; }
.hero::after { content: ""; position: absolute; right: -160px; bottom: -160px; z-index: 1; width: 460px; height: 460px; background: var(--yellow); opacity: .82; clip-path: polygon(12% 0, 78% 0, 100% 50%, 78% 100%, 12% 100%, 0 50%); transform: rotate(-8deg); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 110px 0; color: var(--white); text-shadow: 0 2px 18px rgba(0,0,0,.42); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px 9px 18px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .105em;
  text-transform: uppercase;
  border-radius: 999px;
  font-size: .76rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.hero h1, .subhero h1 {
  margin: 24px 0 18px;
  font-size: clamp(3.1rem, 8vw, 6.35rem);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 900;
}
.hero h1 { text-shadow: 0 4px 24px rgba(0,0,0,.58); }
.hero .lede {
  margin: 0;
  max-width: 700px;
  font-size: clamp(1.1rem, 2.5vw, 1.42rem);
  color: rgba(255,255,255,.98);
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 2px 16px rgba(0,0,0,.58);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--navy); box-shadow: 0 14px 36px rgba(255,196,0,.25); }
.btn-primary:hover { background: #FFD64A; }
.btn-ghost { border-color: rgba(255,255,255,.76); color: var(--white); background: rgba(7,26,58,.28); }
.btn-ghost:hover { background: var(--white); color: var(--navy); }

.section { padding: 86px 0; }
.section.alt { background: var(--cream); }
.retail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: -132px; position: relative; z-index: 4; }
.retail-card {
  background: var(--white);
  border: 1px solid rgba(7,26,58,.08);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  min-height: 250px;
}
.card-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 28px;
}
.retail-card h3, .dept-card h3, .operation-card h3, .photo-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.45rem; line-height: 1.06; letter-spacing: -.028em; font-weight: 900; }
.retail-card p, .dept-card p, .operation-card p, .photo-card p, .copy-block p, .section-head p, .split-grid p, .note-band p { margin: 0; color: var(--muted); font-weight: 700; }

.split-grid { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: center; }
h2 { margin: 16px 0 18px; color: var(--navy); font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: .95; letter-spacing: -.055em; font-weight: 900; }
.split-grid p { font-size: 1.18rem; }
.category-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.category-tags span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--warm); color: var(--navy); font-weight: 900; letter-spacing: .035em; }
.tag-feature { background: var(--navy); color: #fff; padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.tag-feature img { max-width: 260px; margin: 0 auto 20px; filter: drop-shadow(0 18px 30px rgba(0,0,0,.28)); }
.tag-feature p { color: var(--yellow); text-align: center; font-weight: 900; letter-spacing: .045em; text-transform: uppercase; font-size: .92rem; }

.section-head { max-width: 820px; margin-bottom: 34px; }
.section-head p { font-size: 1.15rem; }
.photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.photo-card { overflow: hidden; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(7,26,58,.1); }
.photo-card picture { aspect-ratio: 4/3; display: block; overflow: hidden; background: #d8d8d8; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .42s ease; }
.photo-card:hover img { transform: scale(1.035); }
.photo-card div { padding: 24px; }

.subhero {
  padding: 118px 0 74px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.subhero::after { content: ""; position: absolute; right: -100px; top: 52px; width: 280px; height: 165px; background: var(--yellow); clip-path: polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%, 16% 50%); opacity: .95; transform: rotate(-6deg); }
.subhero .wrap { position: relative; z-index: 1; }
.subhero p { max-width: 820px; color: rgba(255,255,255,.86); font-size: 1.24rem; font-weight: 700; margin: 0; }
.subhero .eyebrow { box-shadow: none; }

.about-layout { display: grid; grid-template-columns: 1.2fr 420px; gap: 54px; align-items: start; }
.copy-block { background: var(--white); border-radius: var(--radius); padding: 42px; box-shadow: 0 22px 55px rgba(7,26,58,.09); border: 1px solid var(--line); }
.copy-block p { font-size: 1.18rem; margin-bottom: 18px; }
.copy-block p:last-child { margin-bottom: 0; }
.facts-card { background: var(--navy); border-radius: var(--radius); padding: 28px; color: var(--white); position: sticky; top: 108px; }
.fact { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.fact:last-child { border-bottom: 0; }
.fact span { display: block; color: var(--yellow); font-weight: 900; text-transform: uppercase; letter-spacing: .11em; font-size: .72rem; }
.fact strong { display: block; font-size: 1.24rem; line-height: 1.2; margin-top: 6px; }

.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dept-card { position: relative; background: var(--white); border-radius: var(--radius); padding: 30px; min-height: 285px; border: 1px solid var(--line); box-shadow: 0 18px 44px rgba(7,26,58,.08); overflow: hidden; }
.dept-card::before { content: ""; position: absolute; right: -38px; top: -40px; width: 130px; height: 90px; background: var(--yellow); clip-path: polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%, 16% 50%); transform: rotate(12deg); opacity: .95; }
.dept-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 18px; background: var(--navy); color: var(--yellow); margin-bottom: 30px; position: relative; }
.dept-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.mini-cta { padding: 54px 0; background: var(--navy); color: #fff; }
.mini-cta p { max-width: 900px; margin: 0; font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -.05em; font-weight: 900; }

.photo-mosaic { display: grid; grid-template-columns: 1.45fr .9fr; grid-template-rows: 260px 260px; gap: 20px; }
.photo-mosaic picture { border-radius: var(--radius); overflow: hidden; box-shadow: 0 22px 52px rgba(7,26,58,.12); background: #ddd; }
.photo-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-large { grid-row: 1 / 3; }
.operations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.operation-card { background: var(--white); padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); min-height: 245px; }
.operation-card span { width: 42px; height: 42px; display: grid; place-items: center; background: var(--yellow); color: var(--navy); border-radius: 14px; font-weight: 900; margin-bottom: 20px; }
.note-band { background: var(--navy); color: var(--white); }
.note-band h2 { color: var(--white); }
.note-band p { color: rgba(255,255,255,.88); font-size: 1.18rem; max-width: 880px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: start; }
.contact-card, .form-card { background: var(--white); border: 1px solid var(--line); box-shadow: 0 20px 55px rgba(7,26,58,.1); border-radius: var(--radius); padding: 34px; }
.contact-card h2 { margin-top: 0; }
.contact-details { display: grid; gap: 16px; }
.contact-details div { padding: 18px; border-radius: 16px; background: var(--warm); border: 1px solid var(--line); }
.contact-details span { display: block; color: var(--muted); font-weight: 900; text-transform: uppercase; letter-spacing: .09em; font-size: .74rem; margin-bottom: 4px; }
.contact-details strong { color: var(--navy); font-size: 1.1rem; }
.small-note { margin: 20px 0 0; color: var(--muted); font-weight: 700; }
form { display: grid; gap: 16px; }
label { display: grid; gap: 7px; font-weight: 900; color: var(--navy); }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; background: var(--warm); padding: 15px 16px; color: var(--text); outline: none; }
input:focus, textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,196,0,.25); }
textarea { resize: vertical; }
.form-status { margin: 4px 0 0; color: var(--muted); font-weight: 700; }

.site-footer { background: var(--navy); color: var(--white); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 44px; }
.footer-brand img { max-width: 330px; }
.footer-brand p { margin: 16px 0 0; color: rgba(255,255,255,.83); font-weight: 900; letter-spacing: .035em; }
.footer-brand .footer-since { color: var(--yellow); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.site-footer h4 { margin: 0 0 14px; color: var(--yellow); text-transform: uppercase; letter-spacing: .11em; font-size: .78rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; color: rgba(255,255,255,.82); font-weight: 700; }
.site-footer a:hover { color: var(--yellow); }
.copyright { margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.65); font-weight: 700; font-size: .92rem; }

.not-found { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 40px; background: var(--warm); }
.not-found img { max-width: 360px; margin: 0 auto 24px; }
.not-found h1 { font-size: clamp(2.8rem, 8vw, 5rem); color: var(--navy); line-height: .95; margin: 0 0 14px; letter-spacing: -.05em; }
.not-found p { color: var(--muted); font-weight: 700; margin-bottom: 24px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .58s ease, transform .58s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .nav-shell { position: fixed; left: 22px; right: 22px; top: 92px; display: none; flex-direction: column; align-items: stretch; background: var(--cream); border: 1px solid var(--line); border-radius: 24px; padding: 18px; box-shadow: var(--shadow); }
  .nav-shell.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; }
  .nav-links a { justify-content: center; }
  .lang-switch { justify-content: center; }
  .nav-toggle { display: block; }
  .nav-logo { width: 230px; }
  .retail-grid, .dept-grid, .photo-grid { grid-template-columns: 1fr 1fr; }
  .split-grid, .about-layout, .contact-grid { grid-template-columns: 1fr; }
  .operations-grid { grid-template-columns: 1fr 1fr; }
  .facts-card { position: static; }
}
@media (max-width: 700px) {
  .wrap { width: min(100% - 30px, var(--container)); }
  .nav { min-height: 74px; }
  .nav-logo { width: 198px; }
  .hero { min-height: 690px; align-items: end; }
  .hero::before { background: linear-gradient(180deg, rgba(7,26,58,.58) 0%, rgba(7,26,58,.9) 46%, rgba(7,26,58,.98) 100%); }
  .hero::after { width: 260px; height: 240px; right: -120px; bottom: 80px; opacity: .34; }
  .hero-content { padding: 120px 0 60px; }
  .hero h1, .subhero h1 { letter-spacing: -.055em; }
  .retail-grid { margin-top: -72px; }
  .retail-grid, .dept-grid, .photo-grid, .operations-grid { grid-template-columns: 1fr; }
  .section { padding: 66px 0; }
  .retail-card, .dept-card, .copy-block, .contact-card, .form-card { padding: 24px; }
  .photo-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .photo-mosaic picture { aspect-ratio: 1.4/1; }
  .mosaic-large { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand img { max-width: 270px; }
  .btn { width: 100%; }
}
