:root {
  --navy-950: #031023;
  --navy-900: #07182f;
  --navy-800: #0b2547;
  --gold-600: #bd8425;
  --gold-500: #d4a03a;
  --gold-300: #f0d490;
  --ivory: #fbf9f4;
  --paper: #ffffff;
  --ink: #172033;
  --muted: #667085;
  --line: rgba(7, 24, 47, 0.12);
  --shadow-sm: 0 12px 35px rgba(3, 16, 35, 0.08);
  --shadow-lg: 0 28px 70px rgba(3, 16, 35, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--navy-950); color: #fff; }
.section-white { background: var(--paper); }
.section-tint { background: #f3efe6; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.display-title,
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy-900);
  line-height: 1.05;
  margin: 0;
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #fff; }
.display-title { font-size: clamp(3.4rem, 7vw, 6.7rem); font-weight: 600; letter-spacing: -.035em; }
h1 { font-size: clamp(2.9rem, 5.2vw, 5.6rem); font-weight: 600; letter-spacing: -.025em; }
h2 { font-size: clamp(2.3rem, 4vw, 4.3rem); font-weight: 600; letter-spacing: -.02em; }
h3 { font-size: clamp(1.65rem, 2.3vw, 2.25rem); font-weight: 600; }
p { margin: 0; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 680px; }
.section-dark .lead { color: rgba(255,255,255,.72); }

.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.86);
  font-size: 12px;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a { transition: color var(--transition); }
.topbar a:hover { color: var(--gold-300); }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 14px; height: 14px; color: var(--gold-500); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7,24,47,.08);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 280px;
}
.brand img { width: 112px; height: 58px; object-fit: contain; }
.brand-copy { line-height: 1; }
.brand-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--navy-900); letter-spacing: .01em; }
.brand-sub { display: block; margin-top: 5px; color: var(--gold-600); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 29px; }
.site-nav a {
  position: relative;
  color: #293248;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--gold-500);
  transition: right var(--transition);
}
.site-nav a:hover,
.site-nav a.active { color: var(--gold-600); }
.site-nav a:hover::after,
.site-nav a.active::after { right: 0; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
}
.menu-toggle svg { width: 22px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #e1b657, var(--gold-600)); color: #07182f; box-shadow: 0 14px 34px rgba(189,132,37,.25); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(189,132,37,.33); }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-outline { background: transparent; color: var(--navy-900); border-color: rgba(7,24,47,.22); }
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-600); }
.btn-light { background: #fff; color: var(--navy-900); }
.btn svg { width: 16px; height: 16px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(212,160,58,.18), transparent 28%),
    linear-gradient(135deg, #031023 0%, #07182f 58%, #0a2141 100%);
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000, transparent 70%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 56px;
  padding: 76px 0 88px;
}
.hero-copy { max-width: 700px; }
.hero h1 { color: #fff; max-width: 740px; }
.hero h1 span { color: var(--gold-300); font-style: italic; }
.hero-text { margin-top: 25px; max-width: 590px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 46px; }
.hero-meta-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.75); font-size: 13px; }
.hero-meta-icon { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: var(--gold-300); }
.hero-meta-icon svg { width: 17px; }
.hero-visual { position: relative; min-height: 560px; }
.hero-image-wrap {
  position: absolute;
  inset: 0 0 0 28px;
  border-radius: 220px 220px 26px 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.14);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,16,35,.35), transparent 45%); }
.hero-badge {
  position: absolute;
  left: 0;
  bottom: 38px;
  z-index: 3;
  width: 154px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  color: var(--navy-900);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 8px solid rgba(255,255,255,.35);
  background-clip: padding-box;
}
.hero-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 25px; line-height: 1; }
.hero-badge small { display: block; margin-top: 5px; color: var(--gold-600); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.trust-strip { position: relative; z-index: 4; margin-top: -34px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.trust-item { display: flex; gap: 14px; align-items: center; padding: 24px 25px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); color: var(--gold-300); }
.trust-icon svg { width: 20px; }
.trust-item strong { display: block; color: var(--navy-900); font-family: 'Cormorant Garamond', serif; font-size: 18px; line-height: 1.1; }
.trust-item span { color: var(--muted); font-size: 11px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-heading-copy { max-width: 740px; }
.section-heading h2 { margin-top: 12px; }
.section-heading .lead { margin-top: 16px; }

.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.collection-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: 0 14px 38px rgba(3,16,35,.10);
}
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.8,.2,1); }
.collection-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,16,35,.88) 0%, rgba(3,16,35,.18) 65%, transparent 100%); }
.collection-card:hover img { transform: scale(1.065); }
.collection-card-content { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 25px; color: #fff; }
.collection-card h3 { color: #fff; }
.collection-card p { margin-top: 8px; color: rgba(255,255,255,.7); font-size: 13px; }
.collection-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--gold-300); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.collection-link svg { width: 15px; transition: transform var(--transition); }
.collection-card:hover .collection-link svg { transform: translateX(4px); }

.story-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 72px; align-items: center; }
.story-visual { position: relative; }
.story-image { border-radius: var(--radius-lg); overflow: hidden; min-height: 610px; box-shadow: var(--shadow-lg); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-quote { position: absolute; right: -26px; bottom: 38px; width: min(330px, 78%); background: #fff; border-radius: 18px; padding: 28px; box-shadow: var(--shadow-lg); }
.story-quote p { font-family: 'Cormorant Garamond', serif; color: var(--navy-900); font-size: 24px; line-height: 1.25; }
.story-quote span { display: block; margin-top: 12px; color: var(--gold-600); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.story-copy h2 { margin-top: 12px; }
.story-copy .lead { margin-top: 20px; }
.story-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 30px 0 34px; }
.story-point { padding: 19px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.55); }
.story-point strong { display: block; color: var(--navy-900); font-family: 'Cormorant Garamond', serif; font-size: 20px; }
.story-point span { color: var(--muted); font-size: 12px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; padding: 32px; border: 1px solid rgba(255,255,255,.10); border-radius: 20px; background: rgba(255,255,255,.045); overflow: hidden; transition: transform var(--transition), background var(--transition), border-color var(--transition); }
.service-card::before { content: ''; position: absolute; width: 130px; height: 130px; border-radius: 50%; background: rgba(212,160,58,.14); right: -60px; top: -70px; }
.service-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); border-color: rgba(212,160,58,.3); }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: rgba(212,160,58,.15); color: var(--gold-300); }
.service-icon svg { width: 23px; }
.service-card h3 { margin-top: 25px; font-size: 28px; }
.service-card p { margin-top: 12px; color: rgba(255,255,255,.64); font-size: 13px; }

.visit-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: stretch; }
.visit-card { padding: 42px; border-radius: var(--radius-md); background: var(--navy-900); color: #fff; }
.visit-card h2 { color: #fff; margin-top: 12px; }
.visit-card > p { margin-top: 18px; color: rgba(255,255,255,.67); }
.contact-list { display: grid; gap: 18px; margin-top: 30px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row-icon { flex: 0 0 40px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(212,160,58,.14); color: var(--gold-300); }
.contact-row-icon svg { width: 18px; }
.contact-row strong { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.contact-row span,
.contact-row a { display: block; color: rgba(255,255,255,.72); font-size: 13px; }
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.map-card { overflow: hidden; border-radius: var(--radius-md); min-height: 520px; box-shadow: var(--shadow-sm); background: #eae7df; }
.map-card iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-panel::after { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -210px; top: -210px; background: radial-gradient(circle, rgba(212,160,58,.35), transparent 68%); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: #fff; max-width: 750px; }
.cta-panel p { margin-top: 14px; color: rgba(255,255,255,.67); max-width: 650px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

.page-hero { position: relative; overflow: hidden; min-height: 470px; display: flex; align-items: center; color: #fff; background: var(--navy-950); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,16,35,.96) 0%, rgba(3,16,35,.74) 50%, rgba(3,16,35,.30) 100%); z-index: 1; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 2; padding: 95px 0; max-width: 760px; }
.page-hero h1 { color: #fff; }
.page-hero p { margin-top: 20px; color: rgba(255,255,255,.72); font-size: 1.08rem; max-width: 620px; }
.breadcrumb { display: flex; gap: 9px; align-items: center; margin-bottom: 20px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-300); }
.breadcrumb span { color: rgba(255,255,255,.45); }

.about-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.about-seal { position: relative; padding: 58px 50px; border-radius: var(--radius-lg); background: var(--navy-900); color: #fff; min-height: 480px; display: flex; align-items: end; overflow: hidden; }
.about-seal::before { content: ''; position: absolute; inset: 25px; border: 1px solid rgba(212,160,58,.25); border-radius: calc(var(--radius-lg) - 10px); }
.about-seal img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.about-seal::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,16,35,.98), rgba(3,16,35,.15)); }
.about-seal-content { position: relative; z-index: 2; }
.about-seal strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 42px; line-height: 1; }
.about-seal span { display: block; margin-top: 8px; color: var(--gold-300); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.about-copy h2 { margin-top: 12px; }
.about-copy p { margin-top: 20px; color: var(--muted); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { padding: 28px; border-radius: 18px; border: 1px solid var(--line); background: #fff; }
.value-card .number { color: var(--gold-500); font-family: 'Cormorant Garamond', serif; font-size: 34px; }
.value-card h3 { font-size: 24px; margin-top: 16px; }
.value-card p { margin-top: 10px; color: var(--muted); font-size: 13px; }
.profile-card { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: center; padding: 44px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.profile-logo { min-height: 240px; border-radius: 22px; display: grid; place-items: center; background: #f4f0e8; padding: 28px; }
.profile-logo img { width: 100%; max-width: 210px; }
.profile-copy h2 { font-size: 42px; }
.profile-role { margin-top: 5px; color: var(--gold-600); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.profile-copy p { margin-top: 18px; color: var(--muted); }
.profile-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.catalog-card { overflow: hidden; border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.catalog-media { height: 330px; overflow: hidden; background: var(--navy-900); }
.catalog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.catalog-card:hover img { transform: scale(1.06); }
.catalog-body { padding: 27px; }
.catalog-body h3 { font-size: 28px; }
.catalog-body p { margin-top: 10px; color: var(--muted); font-size: 13px; }
.catalog-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.catalog-tag { color: var(--gold-600); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.text-link { display: inline-flex; gap: 7px; align-items: center; color: var(--navy-900); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.text-link svg { width: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card { padding: 30px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.process-number { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--navy-900); color: var(--gold-300); font-family: 'Cormorant Garamond', serif; font-size: 20px; }
.process-card h3 { margin-top: 22px; font-size: 25px; }
.process-card p { margin-top: 10px; color: var(--muted); font-size: 13px; }

.gallery-grid { columns: 3 320px; column-gap: 18px; }
.gallery-item { position: relative; display: block; width: 100%; margin: 0 0 18px; border: 0; padding: 0; overflow: hidden; border-radius: 18px; background: var(--navy-900); }
.gallery-item img { width: 100%; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.gallery-item::after { content: 'View'; position: absolute; inset: 0; display: grid; place-items: center; background: rgba(3,16,35,.58); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover img { transform: scale(1.055); }
.gallery-item:hover::after { opacity: 1; }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(3,16,35,.94); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 88vh; border-radius: 16px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 22px; right: 22px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
.contact-panel { padding: 38px; border-radius: 24px; background: var(--navy-900); color: #fff; }
.contact-panel h2 { color: #fff; }
.contact-panel > p { margin-top: 14px; color: rgba(255,255,255,.67); }
.address-block { margin-top: 28px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.address-block h3 { color: var(--gold-300); font-size: 24px; }
.address-block p { margin-top: 8px; color: rgba(255,255,255,.75); font-size: 13px; }
.form-card { padding: 40px; border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 38px; }
.form-card > p { margin-top: 10px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-900); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input,
.field select,
.field textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; padding: 13px 14px; color: var(--ink); background: #fcfbf8; outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(212,160,58,.12); }
.form-note { margin-top: 14px; color: var(--muted); font-size: 11px; }
.form-status { margin-top: 14px; color: var(--gold-600); font-size: 12px; font-weight: 700; }

.site-footer { background: #020a16; color: rgba(255,255,255,.68); }
.footer-main { display: grid; grid-template-columns: 1.35fr .7fr .9fr 1fr; gap: 46px; padding: 70px 0 52px; }
.footer-brand img { width: 150px; filter: invert(1); opacity: .92; }
.footer-brand h3 { color: #fff; margin-top: 18px; font-size: 29px; }
.footer-brand p { margin-top: 13px; max-width: 380px; font-size: 13px; }
.footer-title { color: #fff; font-size: 18px; margin-bottom: 18px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { font-size: 13px; transition: color var(--transition), transform var(--transition); }
.footer-links a:hover { color: var(--gold-300); transform: translateX(3px); }
.footer-contact { display: grid; gap: 13px; font-size: 13px; }
.footer-contact a:hover { color: var(--gold-300); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); transition: background var(--transition), border-color var(--transition); }
.social-link:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }
.social-link svg { width: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 20px 0; display: flex; justify-content: space-between; gap: 20px; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 11px; }
  .brand { min-width: 235px; }
  .brand img { width: 92px; }
  .brand-name { font-size: 22px; }
  .hero-grid { gap: 30px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .collection-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > :nth-child(2) { display: none; }
}

@media (max-width: 860px) {
  .topbar { display: none; }
  .header-inner { min-height: 76px; }
  .brand { min-width: 0; }
  .brand img { width: 82px; height: 46px; }
  .brand-name { font-size: 20px; }
  .brand-sub { font-size: 8px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    padding: 34px;
    background: #fff;
    box-shadow: -20px 0 55px rgba(3,16,35,.15);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    transform: translateX(105%);
    transition: transform 300ms ease;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { padding: 16px 2px; border-bottom: 1px solid var(--line); font-size: 12px; }
  .site-nav a::after { display: none; }
  .site-nav .btn { margin-top: 20px; border-bottom: 0; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding: 70px 0 90px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; min-height: 520px; }
  .hero-image-wrap { inset: 0 18px; }
  .hero-badge { left: 0; bottom: 22px; width: 130px; }
  .story-grid, .about-intro, .visit-grid, .contact-layout { grid-template-columns: 1fr; }
  .story-copy { order: 1; }
  .story-visual { order: 2; }
  .story-quote { right: 18px; }
  .visit-grid .map-card { min-height: 420px; }
  .map-card iframe { min-height: 420px; }
  .cta-panel { padding: 42px; flex-direction: column; align-items: flex-start; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-logo { min-height: 210px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .brand img { width: 72px; }
  .brand-name { font-size: 18px; }
  .hero-grid { padding-top: 58px; }
  .hero-text { font-size: .98rem; }
  .hero-visual { min-height: 420px; }
  .hero-image-wrap { border-radius: 130px 130px 22px 22px; }
  .hero-meta { gap: 16px; }
  .hero-badge { width: 112px; border-width: 5px; }
  .hero-badge strong { font-size: 21px; }
  .trust-strip { margin-top: -24px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 32px; }
  .collection-grid, .catalog-grid, .service-grid, .value-grid, .process-grid { grid-template-columns: 1fr; }
  .collection-card { min-height: 440px; }
  .story-image { min-height: 470px; }
  .story-points { grid-template-columns: 1fr; }
  .story-quote { position: relative; right: auto; bottom: auto; width: calc(100% - 24px); margin: -90px auto 0; }
  .visit-card, .form-card, .contact-panel { padding: 28px; }
  .cta-panel { padding: 32px 25px; }
  .page-hero { min-height: 390px; }
  .page-hero-content { padding: 72px 0; }
  .about-seal { min-height: 400px; padding: 38px; }
  .profile-card { padding: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .gallery-grid { columns: 1; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
