/* AK Děčín – main stylesheet */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0f2744;
  --navy2:   #1a3a5c;
  --gold:    #c8952a;
  --gold2:   #f0b429;
  --light:   #f4f7fc;
  --white:   #ffffff;
  --text:    #1e293b;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(15,39,68,.10);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,39,68,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 36px; height: 36px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.nav-logo-icon svg { width: 20px; height: 20px; fill: var(--navy); }
.nav-logo-text { color: var(--white); font-weight: 700; font-size: 1rem; line-height: 1.2; }
.nav-logo-text span { display: block; font-size: .72rem; font-weight: 400; color: var(--gold2); letter-spacing: .04em; }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .88rem; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: all .2s; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; font-weight: 700 !important; border-radius: 8px !important; }
.nav-cta:hover { background: var(--gold2) !important; color: var(--navy) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,25,51,.90) 0%,
    rgba(10,25,51,.78) 45%,
    rgba(10,25,51,.38) 100%
  );
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; width: 100%; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,149,42,.18); border: 1px solid rgba(200,149,42,.4); color: var(--gold2); font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
.hero-badge svg { width: 14px; height: 14px; fill: var(--gold2); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); line-height: 1.18; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold2); }
.hero p { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy); font-weight: 700; font-size: .95rem; padding: 14px 28px; border-radius: 10px; text-decoration: none; transition: all .2s; border: 2px solid transparent; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,149,42,.35); }
.btn-secondary { background: transparent; color: var(--white); font-weight: 600; font-size: .95rem; padding: 14px 28px; border-radius: 10px; text-decoration: none; border: 2px solid rgba(255,255,255,.3); transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--white); }
.stat-num span { color: var(--gold2); }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.55); font-weight: 500; margin-top: 2px; }
.hero-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 36px; backdrop-filter: blur(10px); }
.hero-card-title { color: var(--gold2); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.hero-service-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hero-service-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.82); font-size: .94rem; }
.hero-service-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-contact-block { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 10px; }
.hero-contact-block a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); text-decoration: none; font-size: .88rem; transition: color .2s; }
.hero-contact-block a:hover { color: var(--gold2); }
.hero-contact-block a svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.section-label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); line-height: 1.22; margin-bottom: 16px; }
.section-desc { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 620px; }
.section-head { margin-bottom: 56px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-desc { margin: 0 auto; }
.container { max-width: 1200px; margin: 0 auto; }

/* ── SERVICES ── */
#sluzby { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--border); transition: all .25s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, #fff7e6, #fdedc8); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--gold); font-size: .88rem; font-weight: 600; text-decoration: none; transition: gap .2s; }
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; fill: var(--gold); }

/* ── ABOUT ── */
#o-nas { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-photo-frame { width: 100%; aspect-ratio: 4/5; border-radius: 20px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.about-photo-frame svg { width: 120px; height: 120px; fill: rgba(255,255,255,.15); }
.about-photo-badge { position: absolute; bottom: -16px; right: -16px; background: var(--gold); color: var(--navy); border-radius: 14px; padding: 16px 20px; box-shadow: 0 8px 24px rgba(200,149,42,.4); font-weight: 800; text-align: center; }
.about-photo-badge .num { font-size: 2rem; line-height: 1; }
.about-photo-badge .lbl { font-size: .72rem; font-weight: 600; opacity: .85; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-value { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border-radius: 10px; background: var(--light); border-left: 3px solid var(--gold); }
.about-value-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.about-value h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-value p { font-size: .86rem; color: var(--muted); line-height: 1.6; }
.about-hashtags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.hashtag { background: var(--light); color: var(--navy2); font-size: .82rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; border: 1px solid var(--border); }

/* ── WHY US ── */
#proc-my { background: var(--navy); padding: 80px 5%; }
#proc-my .section-title { color: var(--white); }
#proc-my .section-label { color: var(--gold2); }
#proc-my .section-desc { color: rgba(255,255,255,.6); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: all .25s; }
.why-card:hover { background: rgba(255,255,255,.10); border-color: rgba(200,149,42,.4); }
.why-num { font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.why-card h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── CENA ── */
#cena { background: var(--light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; border: 1px solid var(--border); transition: all .25s; position: relative; }
.price-card.featured { background: var(--navy); border-color: var(--navy); transform: scale(1.04); }
.price-card.featured .price-name { color: var(--gold2); }
.price-card.featured .price-amount { color: var(--white); }
.price-card.featured .price-desc { color: rgba(255,255,255,.6); }
.price-card.featured .price-feature { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.1); }
.price-card.featured .price-feature svg { fill: var(--gold2); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 12px; }
.price-name { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.price-amount { font-size: 1.9rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.price-amount span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-desc { font-size: .87rem; color: var(--muted); margin-bottom: 24px; line-height: 1.55; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.price-feature { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--border); }
.price-feature svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.btn-price { display: block; text-align: center; text-decoration: none; font-weight: 700; font-size: .9rem; padding: 13px; border-radius: 10px; transition: all .2s; }
.btn-price-outline { border: 2px solid var(--navy); color: var(--navy); }
.btn-price-outline:hover { background: var(--navy); color: var(--white); }
.btn-price-gold { background: var(--gold); color: var(--navy); border: 2px solid transparent; }
.btn-price-gold:hover { background: var(--gold2); }

/* ── KONTAKT ── */
#kontakt { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: var(--radius); background: var(--light); border: 1px solid var(--border); }
.contact-item-icon { width: 46px; height: 46px; border-radius: 10px; background: linear-gradient(135deg, var(--navy), var(--navy2)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; fill: var(--gold2); }
.contact-item h4 { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: .97rem; color: var(--navy); font-weight: 600; text-decoration: none; transition: color .2s; }
.contact-item a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--light); border-radius: 18px; padding: 36px; border: 1px solid var(--border); }
.contact-form-wrap h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap > p { font-size: .88rem; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border-radius: 8px; border: 1px solid var(--border); font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--text); background: var(--white); outline: none; transition: border .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .78rem; color: var(--muted); margin-bottom: 16px; }
.btn-submit { width: 100%; background: var(--navy); color: var(--white); font-weight: 700; font-size: .95rem; padding: 14px; border-radius: 10px; border: none; cursor: pointer; transition: all .2s; }
.btn-submit:hover { background: var(--navy2); transform: translateY(-1px); }
.map-wrap { margin-top: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 220px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; margin-top: 14px; }
.footer-col h4 { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .82rem; }
.footer-bottom a { color: var(--gold2); text-decoration: none; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s; text-decoration: none; }
.social-btn:hover { background: var(--gold); }
.social-btn svg { width: 16px; height: 16px; fill: var(--white); }

/* ── REFERENCE ── */
#reference { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--border); position: relative; display: flex; flex-direction: column; gap: 20px; transition: box-shadow .25s; }
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(10,25,51,.08); }
.testimonial-quote { font-size: 3.5rem; line-height: .6; color: var(--gold); font-family: Georgia, serif; flex-shrink: 0; }
.testimonial-text { font-size: .95rem; color: var(--text); line-height: 1.75; flex: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border); }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy2)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: .95rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: .92rem; color: var(--navy); }
.testimonial-location { font-size: .8rem; color: var(--muted); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 2px; }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); }

/* ── FAQ ── */
#faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.faq-intro { position: sticky; top: 100px; }
.faq-intro .section-label { margin-bottom: 12px; }
.faq-intro .section-title { margin-bottom: 16px; }
.faq-intro p { font-size: .97rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-family: 'Inter', sans-serif; font-size: .97rem; font-weight: 600; color: var(--navy); transition: color .2s; }
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; }
.faq-icon svg { width: 12px; height: 12px; fill: var(--navy); transition: transform .25s; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-icon svg { fill: var(--navy); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-answer-inner { padding: 0 0 20px; font-size: .92rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── BLOG LISTING ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(10,25,51,.09); }
.blog-card-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--navy); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-thumb-placeholder { display: flex; align-items: center; justify-content: center; }
.blog-card-thumb-placeholder svg { width: 48px; height: 48px; fill: rgba(255,255,255,.15); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-card-date { font-size: .78rem; color: var(--muted); }
.blog-card-cat { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: rgba(200,149,42,.12); color: var(--gold); padding: 3px 10px; border-radius: 10px; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: .88rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: .88rem; font-weight: 600; text-decoration: none; transition: gap .2s; margin-top: auto; }
.blog-card-link:hover { gap: 10px; }
.blog-card-link svg { width: 16px; height: 16px; }
.blog-pagination { margin-top: 48px; display: flex; justify-content: center; }
.blog-pagination .nav-links { display: flex; gap: 8px; }
.blog-pagination .page-numbers { padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border); color: var(--navy); text-decoration: none; font-size: .88rem; font-weight: 600; transition: all .2s; }
.blog-pagination .page-numbers.current, .blog-pagination .page-numbers:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── SINGLE POST ── */
.single-post-wrap { max-width: 780px; margin: 0 auto; }
.single-post-content { font-size: 1rem; color: var(--text); line-height: 1.85; }
.single-post-content h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin: 40px 0 14px; }
.single-post-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.single-post-content p { margin-bottom: 18px; }
.single-post-content ul, .single-post-content ol { padding-left: 20px; margin-bottom: 18px; }
.single-post-content li { margin-bottom: 6px; }
.single-post-content a { color: var(--gold); }
.single-post-content blockquote { border-left: 3px solid var(--gold); padding: 14px 20px; background: var(--light); border-radius: 0 10px 10px 0; margin: 24px 0; font-style: italic; color: var(--navy); }
.single-post-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.single-post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.single-post-nav { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.post-nav-link { color: var(--navy); text-decoration: none; font-size: .88rem; font-weight: 600; max-width: 45%; }
.post-nav-link:hover { color: var(--gold); }

/* ── BLOG RESPONSIVE ── */
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); border: 2px solid rgba(200,149,42,.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s;
  box-shadow: 0 4px 16px rgba(10,25,51,.25);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; stroke: var(--white); }
.back-to-top:hover svg { stroke: var(--navy); }

/* ── SHARE BUTTONS ── */
.single-post-share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; padding: 20px 24px; background: var(--light); border-radius: 12px; border: 1px solid var(--border); }
.share-label { font-size: .82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-right: 4px; }
.share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 8px; font-size: .85rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif; }
.share-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.share-fb { background: #1877f2; color: #fff; }
.share-fb svg { fill: #fff; }
.share-fb:hover { background: #1464d0; }
.share-li { background: #0a66c2; color: #fff; }
.share-li svg { fill: #fff; }
.share-li:hover { background: #084f97; }
.share-copy { background: var(--white); color: var(--navy); border: 1px solid var(--border) !important; }
.share-copy svg { fill: none; stroke: var(--navy); stroke-width: 2; }
.share-copy:hover { background: var(--navy); color: var(--white); }
.share-copy:hover svg { stroke: var(--white); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  padding: 20px 5%;
}
.cookie-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.cookie-text strong { color: var(--white); font-size: .95rem; display: block; margin-bottom: 4px; }
.cookie-text p { color: rgba(255,255,255,.65); font-size: .83rem; line-height: 1.55; margin: 0; max-width: 640px; }
.cookie-btns { display: flex; align-items: center; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-link { color: rgba(255,255,255,.5); font-size: .82rem; text-decoration: underline; white-space: nowrap; }
.cookie-btn-link:hover { color: var(--gold2); }
.cookie-btn-decline { background: transparent; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600; padding: 9px 18px; border-radius: 8px; cursor: pointer; transition: all .2s; white-space: nowrap; }
.cookie-btn-decline:hover { border-color: rgba(255,255,255,.6); color: var(--white); }
.cookie-btn-accept { background: var(--gold); border: none; color: var(--navy); font-size: .85rem; font-weight: 700; padding: 9px 20px; border-radius: 8px; cursor: pointer; transition: background .2s; white-space: nowrap; }
.cookie-btn-accept:hover { background: var(--gold2); }

/* ── GDPR PAGE ── */
.gdpr-content { max-width: 860px; margin: 0 auto; }
.gdpr-content h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin: 40px 0 12px; }
.gdpr-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 28px 0 8px; }
.gdpr-content p, .gdpr-content li { font-size: .95rem; color: var(--muted); line-height: 1.8; }
.gdpr-content ul { padding-left: 20px; margin-bottom: 16px; }
.gdpr-content li { margin-bottom: 6px; }
.gdpr-content a { color: var(--gold); text-decoration: none; }
.gdpr-content a:hover { text-decoration: underline; }
.gdpr-updated { display: inline-block; background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 8px 16px; font-size: .82rem; color: var(--muted); margin-bottom: 32px; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { max-width: 700px; position: relative; }
.page-hero-inner .section-label { color: var(--gold2); display: block; margin-bottom: 12px; }
.page-hero-inner h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); line-height: 1.18; margin-bottom: 16px; }
.page-hero-inner p { color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.7; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--navy); padding: 64px 5%; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.cta-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--white); margin-bottom: 8px; }
.cta-strip p { color: rgba(255,255,255,.65); font-size: .97rem; line-height: 1.6; }
.cta-strip-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* Nav: last menu item as CTA button */
.nav-links li:last-child > a,
.nav-links .nav-cta { background: var(--gold); color: var(--navy) !important; padding: 8px 18px; border-radius: 8px; font-weight: 700; transition: background .2s; }
.nav-links li:last-child > a:hover,
.nav-links .nav-cta:hover { background: var(--gold2); color: var(--navy) !important; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 68px 0 0 0; background: var(--navy); padding: 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 12px 16px; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .about-photo-frame { aspect-ratio: 3/2; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}
