:root {
  --navy: #092f4f;
  --navy-2: #0d3d63;
  --teal: #207e7a;
  --teal-deep: #166967;
  --seafoam: #dff2ef;
  --cream: #fbf4e9;
  --sand: #ead3a0;
  --coral: #df6b55;
  --gold: #e7bf67;
  --ink: #17324a;
  --muted: #607284;
  --white: #ffffff;
  --line: rgba(9, 47, 79, 0.14);
  --shadow: 0 18px 48px rgba(7, 35, 56, 0.14);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fffdf9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 9999;
  background: var(--navy); color: white; padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { top: 12px; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
}
.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.06;
  color: var(--navy);
  letter-spacing: -.035em;
}
.section-copy { color: var(--muted); max-width: 680px; font-size: 1.05rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; border-radius: 999px;
  text-decoration: none; font-weight: 800; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--navy); color: white; box-shadow: 0 10px 24px rgba(9,47,79,.2); }
.button.secondary { background: rgba(255,255,255,.75); color: var(--navy); border-color: rgba(9,47,79,.26); }
.button.light { background: white; color: var(--navy); }
.button.small { min-height: 42px; padding: 9px 18px; }

.announcement {
  background: var(--navy); color: #f7d58d; text-align: center;
  font-weight: 750; font-size: .92rem; padding: 8px 16px;
}
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,253,249,.94); backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: max-content; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: white; font-family: Georgia, serif; font-weight: 800; font-size: 1.1rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.brand-name { font-family: Georgia, serif; color: var(--navy); font-size: 1.38rem; font-weight: 800; }
.brand-sub { color: var(--teal); font-size: .68rem; letter-spacing: .19em; font-weight: 800; margin-top: 5px; }
.brand sup { font-family: ui-sans-serif, system-ui, sans-serif; font-size: .48em; top: -.55em; position: relative; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { text-decoration: none; color: var(--navy); font-weight: 750; font-size: .95rem; }
.main-nav a:hover { color: var(--teal); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); font-size: 1.6rem; }

.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 52%; opacity: .35;
  background-image: radial-gradient(circle at 24% 20%, rgba(223,107,85,.14), transparent 26%),
    repeating-radial-gradient(circle at 15% 40%, transparent 0 22px, rgba(32,126,122,.07) 23px 24px);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 48% 52%; min-height: 640px; }
.hero-copy { padding: 78px 58px 64px 0; align-self: center; }
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6.3vw, 6.55rem);
  line-height: .93; letter-spacing: -.06em; color: var(--navy); margin: 0 0 24px;
}
.hero-lead { color: #475f72; font-size: clamp(1rem, 1.5vw, 1.2rem); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 34px; }
.hero-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { display: grid; grid-template-columns: 36px 1fr; gap: 10px; align-items: start; }
.feature-icon { width: 34px; height: 34px; border: 1px solid rgba(32,126,122,.35); border-radius: 10px; display: grid; place-items: center; color: var(--teal); font-weight: 900; }
.feature strong { display: block; color: var(--teal-deep); font-size: .86rem; }
.feature span { display: block; color: var(--muted); font-size: .77rem; line-height: 1.35; }
.hero-media { position: relative; min-height: 640px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251,244,233,.15), transparent 35%); pointer-events: none; }
.hero-card {
  position: absolute; right: 28px; padding: 20px; width: 190px; border-radius: 20px;
  background: rgba(255,253,249,.94); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.75);
}
.hero-card.one { top: 150px; transform: rotate(1.5deg); }
.hero-card.two { bottom: 34px; transform: rotate(-1.5deg); }
.hero-card small { display: block; color: var(--navy); font-weight: 900; letter-spacing: .12em; font-size: .67rem; }
.hero-card strong { display: block; margin-top: 5px; font-family: Georgia, serif; color: var(--navy); font-size: 1.55rem; line-height: 1.02; }
.card-icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 14px; color: white; background: var(--coral); font-weight: 900; }
.hero-card.two .card-icon { background: var(--gold); color: var(--navy); }

.category-section { padding: 26px 0 80px; background: white; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card {
  min-height: 275px; border-radius: 18px; position: relative; overflow: hidden; color: white;
  text-decoration: none; box-shadow: 0 12px 28px rgba(7,35,56,.13);
}
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.category-card:hover img { transform: scale(1.045); }
.category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(3,19,31,.86) 100%); }
.category-content { position: absolute; inset: auto 20px 18px; z-index: 2; }
.category-content h3 { margin: 0; font-size: 1.35rem; }
.category-content p { margin: 5px 38px 0 0; font-size: .9rem; color: rgba(255,255,255,.88); }
.arrow { position: absolute; right: 0; bottom: 0; width: 34px; height: 34px; border-radius: 50%; background: white; color: var(--navy); display: grid; place-items: center; font-weight: 900; }

.intro { padding: 92px 0; background: linear-gradient(180deg,#fffdf9 0,#f7fbfa 100%); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.intro-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.point-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: 0 12px 26px rgba(9,47,79,.06); }
.point-card span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--seafoam); color: var(--teal-deep); font-weight: 900; }
.point-card h3 { color: var(--navy); margin: 16px 0 8px; font-size: 1.08rem; }
.point-card p { color: var(--muted); margin: 0; font-size: .93rem; }

.process { padding: 92px 0; background: var(--navy); color: white; }
.process .section-title { color: white; }
.process .section-copy { color: rgba(255,255,255,.72); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.process-card { border: 1px solid rgba(255,255,255,.16); border-radius: 20px; padding: 30px; background: rgba(255,255,255,.055); }
.process-card b { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--navy); }
.process-card h3 { margin: 18px 0 8px; font-size: 1.25rem; }
.process-card p { color: rgba(255,255,255,.72); margin: 0; }

.service-band { padding: 68px 0; background: var(--seafoam); position: relative; overflow: hidden; }
.service-band::before { content: ""; position: absolute; width: 380px; height: 380px; left: -160px; bottom: -210px; border: 60px solid rgba(32,126,122,.08); border-radius: 50%; }
.service-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-item { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: center; }
.service-item .icon { width: 52px; height: 52px; border-radius: 16px; border: 1px solid rgba(9,47,79,.16); display: grid; place-items: center; color: var(--teal-deep); font-size: 1.25rem; }
.service-item strong { display: block; color: var(--navy); }
.service-item span { color: var(--muted); font-size: .9rem; }

.newsletter { padding: 72px 0; background: #fff7ec; }
.newsletter-box { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 38px; border-radius: 24px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.newsletter h2 { margin: 0 0 6px; color: var(--navy); font-family: Georgia, serif; font-size: 2rem; }
.newsletter p { margin: 0; color: var(--muted); }
.newsletter-form { display: flex; gap: 10px; min-width: 430px; }
.newsletter-form input { flex: 1; min-height: 48px; border: 1px solid rgba(9,47,79,.22); border-radius: 999px; padding: 0 18px; background: #fff; }
.newsletter-form input:focus { outline: 3px solid rgba(32,126,122,.18); border-color: var(--teal); }

.site-footer { background: #071f34; color: white; padding: 54px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 44px; }
.footer-brand p { max-width: 420px; color: rgba(255,255,255,.68); }
.footer-title { font-weight: 850; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; gap: 20px; align-items: center; justify-content: space-between; color: rgba(255,255,255,.62); font-size: .88rem; }
.footer-bottom a { color: inherit; }

.page-hero { padding: 80px 0 54px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; color: var(--navy); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.content-section { padding: 70px 0; }
.content-narrow { max-width: 860px; }
.content-narrow h2 { color: var(--navy); margin-top: 38px; }
.content-narrow p, .content-narrow li { color: #4f6476; }

.catalog-layout { display: grid; grid-template-columns: 1fr 310px; gap: 28px; align-items: start; }
.pdf-frame { width: 100%; height: 78vh; min-height: 680px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); }
.catalog-panel { position: sticky; top: 120px; border: 1px solid var(--line); border-radius: 20px; padding: 24px; background: white; }
.catalog-panel h2 { margin-top: 0; color: var(--navy); font-family: Georgia, serif; }
.catalog-panel p { color: var(--muted); }
.catalog-panel .button { width: 100%; margin-top: 8px; }

.order-wrap { background: linear-gradient(180deg,var(--cream),#f7fbfa); }
.order-card { background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.order-intro { padding: 34px; background: var(--navy); color: white; }
.order-intro h2 { margin: 0; font-family: Georgia,serif; font-size: 2rem; }
.order-intro p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.order-form { padding: 34px; }
.form-section + .form-section { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 34px; }
.form-heading { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.form-heading b { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 50%; background: var(--seafoam); color: var(--teal-deep); }
.form-heading h3 { margin: 0; color: var(--navy); }
.form-heading p { margin: 3px 0 0; color: var(--muted); }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.wide { grid-column: 1 / -1; }
label { display: grid; gap: 7px; color: var(--navy); font-weight: 750; font-size: .91rem; }
input, select, textarea { width: 100%; border: 1px solid rgba(9,47,79,.22); border-radius: 11px; padding: 12px 13px; color: var(--ink); background: white; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(32,126,122,.15); border-color: var(--teal); }
.required { color: var(--coral); }
.item-grid { display: grid; grid-template-columns: 1.4fr 1fr .7fr 1fr .55fr; gap: 12px; padding: 18px; background: #f8fbfa; border: 1px solid var(--line); border-radius: 14px; }
.item-grid + .item-grid { margin-top: 12px; }
.item-label { grid-column: 1 / -1; font-weight: 900; color: var(--teal-deep); }
.form-note { margin-top: 26px; padding: 18px; background: var(--cream); border-radius: 14px; color: var(--muted); font-size: .9rem; }
.form-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

.thank-you { text-align: center; padding: 120px 0; }
.thank-you .check { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: var(--seafoam); color: var(--teal-deep); font-size: 2rem; }

@media (max-width: 1040px) {
  .main-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 64px 0 44px; }
  .hero-media { min-height: 560px; margin: 0 -20px; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-panel { position: static; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fffdf9;
    padding: 18px 20px 24px; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav .button { width: 100%; }
  .hero h1 { font-size: clamp(3.15rem, 14vw, 5rem); }
  .hero-features { grid-template-columns: 1fr; }
  .hero-media { min-height: 470px; }
  .hero-card { width: 160px; padding: 15px; right: 14px; }
  .hero-card.one { top: 70px; }
  .hero-card strong { font-size: 1.2rem; }
  .intro-points, .process-grid, .service-grid { grid-template-columns: 1fr; }
  .newsletter-box { grid-template-columns: 1fr; }
  .newsletter-form { min-width: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .item-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand-name { font-size: 1.15rem; }
  .brand-mark { width: 41px; height: 41px; }
  .hero-copy { padding-top: 50px; }
  .hero-actions .button { width: 100%; }
  .hero-media { min-height: 390px; }
  .hero-card.one { top: 25px; }
  .hero-card.two { bottom: 18px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 245px; }
  .intro, .process { padding: 68px 0; }
  .intro-points { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .field-grid, .item-grid { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .pdf-frame { min-height: 520px; height: 70vh; }
}


/* Interactive catalog and request cart */
.catalog-hero { background: linear-gradient(135deg,var(--cream),#eef9f7); }
.catalog-hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.cart-count { display:inline-grid; place-items:center; min-width:24px; height:24px; padding:0 7px; border-radius:999px; background:rgba(255,255,255,.18); margin-left:6px; }
.catalog-browser-section { background:#edf5f3; }
.catalog-help { max-width:880px; margin:0 auto 24px; padding:16px 18px; border:1px solid var(--line); border-radius:14px; background:white; color:var(--muted); }
.mini-plus { display:inline-grid; place-items:center; width:22px; height:22px; border-radius:50%; background:var(--coral); color:white; font-weight:900; }
.catalog-pages { display:grid; gap:34px; max-width:800px; margin:0 auto; }
.catalog-page { background:white; border:1px solid var(--line); border-radius:20px; box-shadow:var(--shadow); overflow:hidden; }
.catalog-page-head { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 18px; border-bottom:1px solid var(--line); }
.catalog-page-head h2 { margin:0; font:700 1rem/1.2 system-ui,sans-serif; color:var(--navy); }
.catalog-page-head span { font-size:.82rem; color:var(--muted); white-space:nowrap; }
.catalog-page-image { position:relative; width:100%; background:white; }
.catalog-page-image img { display:block; width:100%; height:auto; }
.product-hotspot { position:absolute; border:2px solid transparent; background:transparent; border-radius:10px; cursor:pointer; transition:.18s ease; }
.product-hotspot::after { content:'+'; position:absolute; right:5px; top:5px; display:grid; place-items:center; width:26px; height:26px; border-radius:50%; background:var(--coral); color:white; font-weight:900; box-shadow:0 4px 12px rgba(9,47,79,.2); }
.product-hotspot:hover,.product-hotspot:focus-visible { border-color:var(--coral); background:rgba(234,106,82,.07); outline:none; }
.floating-cart { position:fixed; z-index:80; right:20px; bottom:20px; border:0; border-radius:999px; padding:13px 18px; background:var(--navy); color:white; font-weight:900; box-shadow:0 12px 30px rgba(9,47,79,.28); cursor:pointer; }
.floating-cart span { display:inline-grid; place-items:center; min-width:24px; height:24px; margin-left:6px; border-radius:999px; background:var(--gold); color:var(--navy); }
.catalog-modal,.cart-drawer { position:fixed; inset:0; z-index:100; }
.modal-backdrop,.drawer-backdrop { position:absolute; inset:0; background:rgba(3,20,34,.62); backdrop-filter:blur(3px); }
.modal-card { position:relative; z-index:1; width:min(620px,calc(100% - 28px)); max-height:calc(100vh - 30px); overflow:auto; margin:15px auto; padding:30px; border-radius:22px; background:white; box-shadow:0 24px 70px rgba(0,0,0,.28); }
.modal-card h2,.drawer-head h2 { margin:0 0 8px; color:var(--navy); font-family:Georgia,serif; }
.modal-close { border:0; background:transparent; color:var(--navy); font-size:2rem; line-height:1; cursor:pointer; }
.modal-card>.modal-close { position:absolute; right:18px; top:14px; }
.modal-product-meta { margin:0 0 20px; padding:14px; border-radius:14px; background:var(--cream); color:var(--muted); }
.modal-product-meta strong { color:var(--navy); }
.field-grid.compact { grid-template-columns:repeat(2,minmax(0,1fr)); }
.button.full { width:100%; justify-content:center; }
.drawer-panel { position:absolute; z-index:1; right:0; top:0; bottom:0; width:min(460px,100%); padding:26px; overflow:auto; background:white; box-shadow:-20px 0 60px rgba(0,0,0,.24); }
.drawer-head { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; border-bottom:1px solid var(--line); padding-bottom:16px; }
.cart-items { display:grid; gap:12px; padding:18px 0; }
.cart-empty { padding:28px 10px; text-align:center; color:var(--muted); }
.cart-item { padding:15px; border:1px solid var(--line); border-radius:14px; background:#f8fbfa; }
.cart-item-top { display:flex; justify-content:space-between; gap:12px; }
.cart-item h3 { margin:0; font-size:1rem; color:var(--navy); }
.cart-item p { margin:5px 0 0; color:var(--muted); font-size:.88rem; }
.cart-remove { border:0; background:transparent; color:#a13a2d; text-decoration:underline; cursor:pointer; }
.drawer-note { margin:10px 0 18px; padding:14px; border-radius:12px; background:var(--cream); color:var(--muted); font-size:.86rem; }
.request-cart-items { display:grid; gap:14px; }
.request-item { padding:18px; border:1px solid var(--line); border-radius:14px; background:#f8fbfa; }
.request-item-head { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-bottom:10px; }
.request-item-head h4 { margin:0; color:var(--navy); }
.request-item-head p { margin:4px 0 0; color:var(--muted); font-size:.86rem; }
.manual-item { margin-top:20px; padding:18px; border:1px dashed rgba(9,47,79,.25); border-radius:14px; }
.manual-item h4 { margin-top:0; color:var(--navy); }
@media (max-width:700px){
 .catalog-pages{gap:20px}.catalog-page{border-radius:12px}.catalog-page-head{padding:11px 12px}
 .product-hotspot::after{width:23px;height:23px;right:2px;top:2px;font-size:.9rem}
 .modal-card{padding:24px 18px}.field-grid.compact{grid-template-columns:1fr}.drawer-panel{padding:20px}
 .floating-cart{right:12px;bottom:12px}.item-grid{grid-template-columns:1fr 1fr}.item-grid .item-label{grid-column:1/-1}
}
