/* Obie Modie — fontány & vodné prvky | self-contained stylesheet, no external CDN */

:root {
  --navy: #0d2438;
  --navy2: #12395a;
  --blue: #2f7fb5;
  --blue-light: #6fa6cd;
  --blue-lighter: #9fc6e2;
  --bg: #f6f9fb;
  --bg-soft: #e8f2f8;
  --bg-soft2: #f2f9fd;
  --border: #dbe4ea;
  --border-soft: #eef3f6;
  --text: #0d2438;
  --text-muted: #5d7387;
  --text-muted2: #48606f;
  --text-muted3: #6b8398;
  --text-light: #7d93a5;
  --text-lighter: #a9bccb;
  --white: #ffffff;
  --green: #3d8f63;
  --green-light: #4f9f6a;
  --green-lighter: #9fe0b8;

  --font-serif: Georgia, 'Times New Roman', 'Noto Serif', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Courier New', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --max: 1240px;
}

@keyframes omRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes omRipple { 0% { transform: scale(.6); opacity: .55; } 100% { transform: scale(1.9); opacity: 0; } }

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy2); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; margin: 0; }
p { margin: 0; }
button { font-family: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #b9c7d2; font-size: 12.5px; letter-spacing: .02em; }
.topbar .wrap { padding: 9px 28px; display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between; }
.topbar-group { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.topbar a { color: #b9c7d2; }
.topbar a:hover { color: #fff; }
.topbar .sep { color: #3f5568; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.site-header .wrap { padding: 16px 28px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--blue); display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--bg-soft), #fff); flex: none; }
.brand-mark span { width: 12px; height: 12px; border-radius: 50%; background: var(--blue); display: block; }
.brand-text { line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 25px; font-weight: 600; letter-spacing: .04em; color: var(--text); }
.brand-sub { font-family: var(--font-mono); font-size: 9.5px; color: var(--text-light); letter-spacing: .22em; margin-top: 3px; }

.main-nav { display: flex; gap: 26px; align-items: center; font-size: 14px; font-weight: 500; }
.main-nav a { color: var(--text); cursor: pointer; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--blue); }

.cart-btn { cursor: pointer; display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--blue); color: var(--navy2); background: #fff; border-radius: 999px; padding: 9px 18px; font-size: 13.5px; font-weight: 600; }
.cart-btn:hover { background: var(--bg-soft); }
.cart-count { min-width: 22px; height: 22px; border-radius: 999px; background: var(--blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; padding: 0 5px; }

.nav-toggle { display: none; cursor: pointer; background: none; border: 1px solid var(--border); border-radius: 6px; padding: 8px 10px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; border-radius: 999px; padding: 15px 30px; font-weight: 600; font-size: 14.5px; border: 1px solid transparent; font-family: var(--font-sans); }
.btn-primary { background: var(--navy2); color: #fff; }
.btn-primary:hover { background: var(--blue); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--bg-soft); color: var(--navy); }
.btn-outline { border: 1px solid rgba(255,255,255,.45); color: #fff; background: transparent; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-outline-dark { border: 1px solid var(--border); color: var(--text-muted2); background: #fff; }
.btn-outline-dark:hover { border-color: var(--blue-lighter); color: var(--navy2); }
.btn-sm { padding: 10px 16px; font-size: 12.5px; border-radius: 999px; }
.btn-block { width: 100%; text-align: center; }
.link-strong { font-size: 14px; font-weight: 600; color: var(--blue); white-space: nowrap; }
.link-strong:hover { color: var(--navy2); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(155deg, #0d2438 0%, #12395a 55%, #2f7fb5 140%); color: #fff; }
.hero::before { content: ''; position: absolute; inset: 0; opacity: .18; background: repeating-linear-gradient(115deg, rgba(255,255,255,.5) 0 1px, transparent 1px 22px); }
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); }
.hero .wrap { position: relative; padding: 96px 28px 104px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy { animation: omRise .7s ease both; }
.eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .28em; color: var(--blue-lighter); margin-bottom: 22px; text-transform: uppercase; }
.eyebrow-dark { color: var(--blue); }
.eyebrow-navy { color: var(--blue-light); }
.hero h1 { font-size: 60px; line-height: 1.06; font-weight: 500; margin: 0 0 24px; letter-spacing: -.01em; }
.hero p.lead { font-size: 17.5px; line-height: 1.7; color: #cfe0ec; max-width: 540px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 54px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-serif); font-size: 40px; line-height: 1; }
.hero-stats .lbl { font-size: 12.5px; color: var(--blue-lighter); margin-top: 6px; }
.hero-photo { position: relative; aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,.28); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-tag { position: absolute; left: 14px; bottom: 14px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; color: #fff; background: rgba(13,36,56,.55); padding: 8px 12px; border-radius: 2px; }
.hero-photo::after, .hero-photo::before { content: ''; position: absolute; top: 50%; left: 50%; width: 150px; height: 150px; margin: -75px 0 0 -75px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); animation: omRipple 4s ease-out infinite; pointer-events: none; }
.hero-photo::before { animation-delay: 1.3s; border-color: rgba(255,255,255,.4); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--navy); color: #fff; }
.page-hero .wrap { padding: 72px 28px 78px; }
.page-hero h1 { font-size: 52px; line-height: 1.08; margin: 0 0 18px; }
.page-hero p { font-size: 17px; line-height: 1.7; color: #b6cddd; max-width: 720px; margin: 0; }
.page-hero.with-photo .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 60px 28px; }
.page-hero-photo { aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,.25); }
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Simple hero for content pages ---------- */
.simple-hero { max-width: 1100px; margin: 0 auto; padding: 64px 28px 20px; }
.simple-hero .eyebrow { color: var(--blue); }
.simple-hero h1 { font-size: 50px; margin: 0 0 16px; line-height: 1.08; }
.simple-hero p { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 720px; }

/* ---------- Feature strip ---------- */
.feature-strip { background: #fff; border-bottom: 1px solid var(--border); }
.feature-strip .wrap { padding: 34px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); margin-top: 7px; flex: none; }
.feature-item .t { font-weight: 600; font-size: 14.5px; }
.feature-item .d { font-size: 13px; color: var(--text-muted3); margin-top: 4px; }

/* ---------- Section ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 84px 28px; }
.section-narrow { max-width: 1100px; margin: 0 auto; padding: 64px 28px 90px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head h2 { font-size: 44px; line-height: 1.1; }
.section-title { font-size: 44px; margin: 0 0 40px; }

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card { background: #fff; border: 1px solid var(--border); border-radius: 4px; transition: all .2s ease; }
.card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 18px 40px -26px rgba(13,36,56,.5); }

.service-card { cursor: pointer; padding: 34px 30px 32px; display: flex; flex-direction: column; gap: 12px; }
.service-card .n { font-family: var(--font-mono); font-size: 11px; color: var(--text-lighter); letter-spacing: .16em; }
.service-card .t { font-family: var(--font-serif); font-size: 27px; font-weight: 600; }
.service-card .d { font-size: 14px; line-height: 1.65; color: var(--text-muted); }
.service-card .p { margin-top: auto; padding-top: 18px; font-size: 13px; color: var(--blue); font-weight: 600; }

.photo-box { aspect-ratio: 4/3; overflow: hidden; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.photo-box img { width: 100%; height: 100%; object-fit: cover; }

.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body .cat { font-family: var(--font-mono); font-size: 10px; color: var(--text-lighter); letter-spacing: .14em; }
.product-body .name { font-weight: 600; font-size: 15px; line-height: 1.35; }
.product-body .short { font-size: 13px; color: var(--text-muted3); line-height: 1.55; }
.product-body .stock { font-size: 12.5px; color: var(--green-light); font-weight: 600; margin-top: 4px; }
.product-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price-tag { font-family: var(--font-serif); font-size: 26px; font-weight: 600; }
.add-btn { cursor: pointer; background: var(--navy2); color: #fff; font-size: 12.5px; font-weight: 600; padding: 10px 16px; border-radius: 999px; border: none; }
.add-btn:hover { background: var(--blue); }

/* ---------- Process steps ---------- */
.process { background: var(--navy); color: #fff; }
.process .wrap { padding: 84px 28px; }
.process h2 { font-size: 44px; margin: 0 0 52px; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.process-step { padding: 22px 24px 0 0; border-top: 1px solid rgba(255,255,255,.2); }
.process-step .num { font-family: var(--font-serif); font-size: 34px; color: var(--blue-light); }
.process-step .t { font-weight: 600; margin: 10px 0 8px; font-size: 15px; }
.process-step .d { font-size: 13.5px; color: #a9c3d6; line-height: 1.6; }

/* ---------- Technology section ---------- */
.tech-section { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tech-section .wrap { padding: 80px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.tech-photo { aspect-ratio: 16/11; border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.tech-photo img { width: 100%; height: 100%; object-fit: cover; }
.tech-list { display: grid; gap: 14px; margin-top: 24px; }
.tech-list-item { display: flex; gap: 12px; align-items: flex-start; padding-bottom: 14px; border-bottom: 1px solid var(--border-soft); font-size: 14.5px; line-height: 1.6; }
.tech-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.tech-list-item .letter { font-family: var(--font-mono); font-size: 11px; color: var(--blue); margin-top: 3px; flex: none; }

/* ---------- Testimonials ---------- */
.testimonial { background: #fff; border: 1px solid var(--border); padding: 32px 30px; border-radius: 4px; }
.testimonial .quote { font-family: var(--font-serif); font-size: 46px; color: var(--text-lighter); line-height: .6; }
.testimonial p { font-size: 15px; line-height: 1.7; color: var(--text-muted2); margin: 18px 0 22px; }
.testimonial .name { font-weight: 600; font-size: 14px; }
.testimonial .role { font-size: 12.5px; color: var(--text-light); margin-top: 3px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy2), var(--blue)); color: #fff; }
.cta-band .wrap { padding: 72px 28px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-size: 40px; margin: 0 0 10px; }
.cta-band p { font-size: 16px; color: #d6e8f4; margin: 0; }

/* ---------- Pricing table (page) ---------- */
.pricing-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plan { border: 1px solid var(--border); padding: 34px 30px; border-radius: 4px; position: relative; background: #fff; }
.plan.featured { border-color: var(--blue); background: var(--bg-soft2); }
.plan-badge { position: absolute; top: -12px; left: 30px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 999px; }
.plan .tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; color: var(--text-lighter); }
.plan .name { font-family: var(--font-serif); font-size: 30px; font-weight: 600; margin: 12px 0 6px; }
.plan .price { font-family: var(--font-serif); font-size: 42px; color: var(--navy2); }
.plan .price small { font-size: 15px; font-family: var(--font-sans); color: var(--text-light); }
.plan .feats { margin-top: 20px; font-size: 14px; line-height: 1.8; color: var(--text-muted); }

/* ---------- Price rows page ---------- */
.price-table { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.price-row { display: grid; grid-template-columns: 1.4fr 1fr .8fr; gap: 20px; padding: 20px 30px; border-bottom: 1px solid var(--border-soft); align-items: center; }
.price-row:last-child { border-bottom: none; }
.price-row .name { font-weight: 600; font-size: 15px; }
.price-row .unit { font-size: 13.5px; color: var(--text-light); }
.price-row .price { font-family: var(--font-serif); font-size: 24px; text-align: right; }
.note-cards { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.note-card { background: var(--bg-soft); border: 1px solid #cfe1ee; padding: 28px; border-radius: 4px; }
.note-card .t { font-weight: 600; margin-bottom: 8px; }
.note-card .d { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ---------- Gallery ---------- */
.gallery-card { overflow: hidden; }
.gallery-card .photo-box { aspect-ratio: 3/2; }
.gallery-body { padding: 24px 24px 26px; }
.gallery-body .place { font-family: var(--font-mono); font-size: 10px; color: var(--text-lighter); letter-spacing: .16em; }
.gallery-body .title { font-family: var(--font-serif); font-size: 25px; font-weight: 600; margin: 8px 0 10px; }
.gallery-body .desc { font-size: 13.5px; color: var(--text-muted3); line-height: 1.6; }
.tags { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.tag-pill { font-size: 11.5px; background: #f2f7fa; border: 1px solid #e2ebf1; color: var(--text-muted); padding: 5px 11px; border-radius: 999px; }

/* ---------- Blog ---------- */
.blog-card { cursor: pointer; overflow: hidden; display: flex; flex-direction: column; }
.blog-card .photo-box { aspect-ratio: 16/9; }
.blog-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-body .meta { font-family: var(--font-mono); font-size: 10px; color: var(--text-lighter); letter-spacing: .16em; }
.blog-body .title { font-family: var(--font-serif); font-size: 24px; font-weight: 600; margin: 10px 0 10px; line-height: 1.25; }
.blog-body .lead { font-size: 14px; color: var(--text-muted3); line-height: 1.65; }
.blog-body .more { margin-top: auto; padding-top: 18px; font-size: 13px; color: var(--blue); font-weight: 600; }

/* ---------- Article ---------- */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 54px 28px 90px; }
.back-link { font-size: 13px; color: var(--blue); font-weight: 600; }
.article-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-lighter); letter-spacing: .18em; margin: 30px 0 14px; }
.article-wrap h1 { font-size: 44px; line-height: 1.12; margin: 0 0 22px; }
.article-lead { font-size: 19px; line-height: 1.65; color: var(--text-muted2); margin: 0 0 34px; }
.article-photo { aspect-ratio: 16/8; overflow: hidden; border: 1px solid var(--border); border-radius: 4px; margin-bottom: 42px; }
.article-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-body { display: grid; gap: 20px; }
.article-body h2 { font-size: 29px; font-weight: 600; margin: 22px 0 4px; }
.article-body p { font-size: 16.5px; line-height: 1.85; color: #3f5768; }
.article-quote { border-left: 3px solid var(--blue); padding: 6px 0 6px 22px; font-family: var(--font-serif); font-size: 24px; color: var(--navy2); line-height: 1.45; }
.article-cta { margin-top: 54px; background: var(--navy); color: #fff; padding: 36px; border-radius: 4px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.article-cta .t { font-family: var(--font-serif); font-size: 26px; }
.article-cta .d { font-size: 14px; color: #a9c3d6; margin-top: 6px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.about-copy { font-size: 16px; line-height: 1.85; color: #3f5768; display: grid; gap: 18px; }
.facts-card { background: #fff; border: 1px solid var(--border); padding: 32px; border-radius: 4px; }
.facts-card .tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; color: var(--text-lighter); margin-bottom: 18px; }
.fact-row { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--border-soft); padding-bottom: 12px; margin-bottom: 12px; font-size: 14px; color: var(--text-muted2); }
.fact-row:last-child { border: none; margin: 0; padding: 0; }
.team-card { overflow: hidden; }
.team-card .photo-box { aspect-ratio: 1/1; }
.team-card .body { padding: 20px; }
.team-card .name { font-weight: 600; font-size: 15px; }
.team-card .role { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--border); padding: 34px; border-radius: 4px; display: grid; gap: 16px; }
.form-title { font-family: var(--font-serif); font-size: 26px; font-weight: 600; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input[type=text], input[type=email], input[type=tel], input, select, textarea {
  padding: 13px 15px; border: 1px solid var(--border); border-radius: 3px; font-family: var(--font-sans);
  font-size: 14px; outline: none; width: 100%; color: var(--text); background: #fff;
}
select { color: var(--text-muted2); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235d7387' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 34px; }
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); }
.checkbox-row { display: flex; gap: 10px; font-size: 13px; color: var(--text-muted3); line-height: 1.6; align-items: flex-start; }
.checkbox-row input { width: auto; margin-top: 3px; }
.form-msg-ok { font-size: 13.5px; color: var(--green); line-height: 1.6; background: #eef9f2; border: 1px solid #cdeedb; padding: 14px 16px; border-radius: 3px; }
.form-msg-err { font-size: 13.5px; color: #b23b3b; line-height: 1.6; background: #fdeeee; border: 1px solid #f3caca; padding: 14px 16px; border-radius: 3px; }
.field-hint { font-size: 12px; color: var(--text-light); }

/* ---------- Contact / checkout layout ---------- */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.split-checkout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: start; }
.info-card-dark { background: var(--navy); color: #fff; padding: 34px; border-radius: 4px; }
.info-card-dark .title { font-family: var(--font-serif); font-size: 26px; margin-bottom: 20px; }
.info-card-dark .body { font-size: 14.5px; line-height: 1.9; color: #cfe0ec; }
.hours-card { background: #fff; border: 1px solid var(--border); padding: 30px; border-radius: 4px; }
.hours-card .t { font-weight: 600; margin-bottom: 12px; }
.hours-card .d { font-size: 14px; color: var(--text-muted); line-height: 1.9; }
.map-photo { aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--border); border-radius: 4px; position: relative; }
.map-photo img { width: 100%; height: 100%; object-fit: cover; }
.map-photo .cap { position: absolute; left: 12px; bottom: 12px; font-family: var(--font-mono); font-size: 10px; color: #fff; background: rgba(13,36,56,.6); padding: 8px 12px; border-radius: 2px; letter-spacing: .08em; }

/* ---------- Checkout summary ---------- */
.summary-card { background: var(--navy); color: #fff; padding: 34px; border-radius: 4px; }
.summary-card .title { font-family: var(--font-serif); font-size: 26px; margin-bottom: 20px; }
.summary-lines { display: grid; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.18); }
.summary-line { display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; color: #cfe0ec; }
.summary-row { display: flex; justify-content: space-between; font-size: 13.5px; color: #a9c3d6; margin-top: 16px; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; }
.summary-total .lbl { font-size: 14px; }
.summary-total .val { font-family: var(--font-serif); font-size: 34px; }
.summary-empty { color: #a9c3d6; font-size: 13.5px; padding: 18px 0; }

/* ---------- Shop category chips ---------- */
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.chip { cursor: pointer; padding: 10px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 600; border: 1px solid var(--border); background: #fff; color: var(--text-muted2); }
.chip:hover { border-color: var(--blue); color: var(--navy2); }
.chip.active { border-color: var(--blue); background: var(--navy2); color: #fff; }
.shop-meta { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.info-strip { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; background: #fff; border: 1px solid var(--border); padding: 36px; border-radius: 4px; }
.info-strip .t { font-weight: 600; margin-bottom: 8px; }
.info-strip .d { font-size: 13.5px; color: var(--text-muted3); line-height: 1.65; }

/* ---------- FAQ (native details/summary) ---------- */
.faq-list { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 4px 28px; }
.faq-item:hover { border-color: var(--blue-lighter); }
.faq-item summary { cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 16px; line-height: 1.45; list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--blue); font-size: 20px; line-height: 1; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .a { padding: 0 0 20px; font-size: 15px; line-height: 1.75; color: var(--text-muted); }

/* ---------- Legal ---------- */
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 60px 28px 90px; }
.legal-eff { font-size: 13px; color: var(--text-light); margin-bottom: 38px; }
.legal-body { display: grid; gap: 16px; }
.legal-body h2 { font-size: 26px; font-weight: 600; margin: 20px 0 2px; }
.legal-body p { font-size: 15.5px; line-height: 1.8; color: #465d6d; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #a9c3d6; margin-top: auto; }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 64px 28px 34px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-name { font-family: var(--font-serif); font-size: 27px; color: #fff; letter-spacing: .04em; }
.footer-brand-sub { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .2em; color: #6b8ba3; margin: 6px 0 18px; }
.footer-col-title { color: #fff; font-weight: 600; font-size: 13.5px; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; font-size: 13.5px; }
.footer-links a { color: #a9c3d6; }
.footer-links a:hover { color: #fff; }
.footer-desc { font-size: 13.5px; line-height: 1.8; }
.footer-addr { font-size: 13.5px; line-height: 1.8; margin-top: 18px; color: #7fa0b8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom .wrap { padding: 20px 28px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: #6b8ba3; }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 90; display: none; justify-content: flex-end; }
.cart-overlay.open { display: flex; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(13,36,56,.45); border: none; cursor: pointer; padding: 0; }
.cart-panel { position: relative; width: 440px; max-width: 92vw; background: #fff; height: 100%; display: flex; flex-direction: column; box-shadow: -20px 0 60px -30px rgba(13,36,56,.6); }
.cart-head { padding: 26px 28px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-head .t { font-family: var(--font-serif); font-size: 27px; font-weight: 600; }
.cart-close { cursor: pointer; font-size: 22px; color: var(--text-light); line-height: 1; background: none; border: none; }
.cart-items { flex: 1; overflow-y: auto; padding: 22px 28px; }
.cart-line { display: grid; grid-template-columns: 64px 1fr; gap: 14px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border-soft); }
.cart-line img { width: 64px; height: 64px; object-fit: cover; border: 1px solid var(--border); border-radius: 2px; }
.cart-line .name { font-weight: 600; font-size: 14px; line-height: 1.4; }
.cart-line .unit { font-size: 12.5px; color: var(--text-light); margin-top: 3px; }
.qty-row { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.qty-btn { cursor: pointer; width: 26px; height: 26px; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; border-radius: 2px; background: #fff; font-size: 15px; }
.qty-row .total { margin-left: auto; font-weight: 600; font-size: 14px; }
.cart-foot { border-top: 1px solid var(--border); padding: 24px 28px 28px; }
.cart-empty { text-align: center; color: var(--text-light); font-size: 14.5px; padding: 60px 20px; line-height: 1.7; }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 80; background: #fff; border: 1px solid var(--border); box-shadow: 0 24px 60px -30px rgba(13,36,56,.55); border-radius: 4px; padding: 24px 28px; display: none; gap: 26px; align-items: center; flex-wrap: wrap; max-width: 1240px; margin: 0 auto; }
.cookie-banner.show { display: flex; }
.cookie-banner .txt { flex: 1; min-width: 280px; font-size: 13.5px; line-height: 1.7; color: var(--text-muted); }
.cookie-banner .txt b { color: var(--navy); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-link { cursor: pointer; padding: 12px 20px; font-size: 13px; font-weight: 600; color: var(--text-muted); background: none; border: none; }
.cookie-link:hover { color: var(--navy2); }

/* ---------- Misc ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 12px 18px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }
.badge-thankyou { max-width: 720px; margin: 0 auto; padding: 110px 28px 130px; text-align: center; }
.badge-thankyou .icon { width: 74px; height: 74px; border-radius: 50%; background: var(--bg-soft); border: 1px solid var(--blue-lighter); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 26px; }
.badge-thankyou h1 { font-size: 40px; margin: 0 0 16px; }
.badge-thankyou p { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 520px; margin: 0 auto 30px; }
.error-page { max-width: 640px; margin: 0 auto; padding: 130px 28px 150px; text-align: center; }
.error-page .code { font-family: var(--font-serif); font-size: 90px; color: var(--border); line-height: 1; }
.error-page h1 { font-size: 32px; margin: 18px 0 14px; }
.error-page p { font-size: 15px; color: var(--text-muted); margin-bottom: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { position: fixed; top: 73px; left: 0; right: 0; bottom: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 24px 28px; gap: 6px; overflow-y: auto; display: none; z-index: 55; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border-soft); }
  .nav-toggle { display: inline-block; }
  .hero .wrap, .page-hero.with-photo .wrap, .tech-section .wrap, .about-grid, .split-2, .split-checkout { grid-template-columns: 1fr; }
  .hero-photo { max-width: 420px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(1, 1fr); gap: 0; }
  .process-step { padding: 22px 0 0; }
  .feature-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .price-row { grid-template-columns: 1fr; gap: 4px; }
  .price-row .price { text-align: left; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-plans { grid-template-columns: 1fr; }
  .note-cards { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 40px; }
  .page-hero h1, .simple-hero h1 { font-size: 36px; }
  .section-head h2, .section-title, .process h2 { font-size: 32px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 56px 20px; }
  .topbar .wrap { justify-content: center; text-align: center; }
  .cta-band .wrap, .article-cta { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; padding: 48px 20px 24px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
}
