/* FotoLume — fotostudio Hrvatska. Stylesheet (self-hosted, no external CDN). */

:root {
  --fl-accent: #B07D52;
  --bg: #FFFDFA;
  --text: #3A3129;
  --text-soft: #5A5046;
  --text-softer: #6A6055;
  --text-article: #4C4339;
  --muted: #9C8C77;
  --muted2: #8A7B67;
  --border: #EFE3D2;
  --border2: #E3D5C0;
  --border3: #D9C4A9;
  --border4: #F1E7DA;
  --cream: #F9F3EA;
  --dark: #3A3129;
  --dark-soft: #4E4438;
  --dark-softer: #4A4036;
  --dark-text: #D8CDBE;
  --dark-text2: #CFC3B3;
  --dark-text3: #B3A797;
  --dark-accent: #C4A98A;
  --success: #4C7A57;
  --error: #A5563F;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: Karla, Helvetica, Arial, sans-serif;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font-sans); text-wrap: pretty; line-height: 1.5; }
* { box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { color: var(--fl-accent); text-decoration: none; }
a:hover { color: var(--text); text-decoration: underline; }
::selection { background: #EFE3D2; }
button { font: inherit; }

@keyframes flFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes flSlide { from { transform: translateX(30px); opacity: .4; } to { transform: none; opacity: 1; } }

.page-shell { min-height: 100vh; display: flex; flex-direction: column; }

/* ---------- Layout ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 28px; }
.section { max-width: 1240px; margin: 0 auto; padding: 72px 28px; }
.section-tight { max-width: 1240px; margin: 0 auto; padding: 60px 28px 80px; }
.section-narrow { max-width: 900px; margin: 0 auto; padding: 60px 28px 80px; }

/* ---------- Typography ---------- */
.eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.eyebrow-sm { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; margin: 0; }
.lead { font-size: 17px; line-height: 1.75; color: var(--text-soft); margin: 0 0 40px; max-width: 70ch; }

/* ---------- Buttons ---------- */
.btn { cursor: pointer; display: inline-block; border: none; border-radius: 2px; font-size: 14px; letter-spacing: .06em; padding: 15px 30px; font-family: var(--font-sans); transition: background .15s ease, border-color .15s ease, color .15s ease; }
.btn:hover { text-decoration: none; }
.btn-accent { background: var(--fl-accent); color: #FFFDFA; }
.btn-accent:hover { background: var(--dark); color: #FFFDFA; }
.btn-dark { background: var(--dark); color: #FFFDFA; }
.btn-dark:hover { background: var(--fl-accent); color: #FFFDFA; }
.btn-outline { border: 1px solid var(--border3); color: var(--text); background: transparent; }
.btn-outline:hover { background: #F7F0E6; color: var(--text); }
.btn-outline-dark { border: 1px solid #7E7060; color: #FFFDFA; background: transparent; }
.btn-outline-dark:hover { background: var(--dark-softer); color: #FFFDFA; }
.btn-sm { padding: 12px 24px; font-size: 13px; }
.btn-block { display: block; width: 100%; text-align: center; padding: 15px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Promo bar ---------- */
.promo-bar { background: var(--fl-accent); color: #FFFDFA; font-size: 13px; letter-spacing: .06em; text-align: center; padding: 9px 16px; font-weight: 500; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,253,250,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.site-header-inner { max-width: 1240px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; gap: 28px; }
.brand { cursor: pointer; display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand-name { font-family: var(--font-serif); font-size: 28px; letter-spacing: .02em; font-weight: 500; color: var(--text); }
.brand-sub { font-size: 9px; letter-spacing: .34em; color: var(--muted); margin-top: 5px; text-transform: uppercase; }
.main-nav { display: flex; gap: 20px; flex-wrap: wrap; margin-left: auto; align-items: center; }
.nav-link { cursor: pointer; font-size: 13.5px; letter-spacing: .05em; color: var(--text-soft); padding: 6px 0; border-bottom: 1px solid transparent; }
.nav-link:hover, .nav-link.is-active { color: var(--text); border-bottom: 1px solid var(--fl-accent); text-decoration: none; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.cart-btn { cursor: pointer; display: flex; align-items: center; gap: 8px; border: 1px solid var(--border2); padding: 9px 14px; border-radius: 2px; font-size: 13px; letter-spacing: .05em; background: var(--bg); color: var(--text); }
.cart-btn:hover { border-color: var(--fl-accent); text-decoration: none; }
.nav-toggle { display: none; cursor: pointer; border: 1px solid var(--border2); border-radius: 2px; background: var(--bg); padding: 8px 10px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero { padding: 64px 28px 40px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-title { font-size: 64px; line-height: 1.04; margin: 0 0 24px; letter-spacing: -.01em; }
.hero-title em { font-style: italic; color: var(--fl-accent); }
.hero-text { font-size: 17.5px; line-height: 1.7; color: var(--text-soft); margin: 0 0 32px; max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 24px; }
.hero-stat-num { font-family: var(--font-serif); font-size: 32px; }
.hero-stat-label { font-size: 12px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.hero-media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-wide { grid-column: span 2; aspect-ratio: 16/10; overflow: hidden; border-radius: 2px; }
.hero-media-sq { aspect-ratio: 1; overflow: hidden; border-radius: 2px; }

.photo { background: repeating-linear-gradient(135deg,#F1E8DC 0 10px,#E7DCCB 10px 20px); overflow: hidden; }
.photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Strip ---------- */
.trust-strip { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 28px; }
.trust-strip-inner { max-width: 1240px; margin: 0 auto; display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-between; font-size: 13px; letter-spacing: .08em; color: var(--muted2); text-transform: uppercase; }

/* ---------- Section headers ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.section-title { font-size: 42px; margin: 0; }
.section-link { cursor: pointer; font-size: 13.5px; letter-spacing: .06em; border-bottom: 1px solid var(--border3); padding-bottom: 3px; color: var(--text); }
.section-link:hover { color: var(--fl-accent); text-decoration: none; }

/* ---------- Service cards (home grid) ---------- */
.grid-services { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 18px; }
.card-service { display: block; cursor: pointer; border: 1px solid var(--border); background: var(--bg); padding: 0 0 22px; border-radius: 2px; text-decoration: none; color: inherit; }
.card-service:hover { border-color: var(--border3); background: #FDFAF5; text-decoration: none; }
.card-service .photo { aspect-ratio: 4/3; }
.card-service h3 { font-weight: 500; font-size: 24px; margin: 20px 20px 10px; }
.card-service p { font-size: 14.5px; line-height: 1.65; color: var(--text-soft); margin: 0 20px 14px; }
.card-service .price { font-size: 13px; letter-spacing: .06em; color: var(--fl-accent); margin: 0 20px; }

/* ---------- Dark "how we work" section ---------- */
.section-dark { background: var(--dark); color: #F7F0E6; padding: 76px 28px; }
.section-dark-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.section-dark .eyebrow { color: var(--dark-accent); }
.section-dark h2 { font-size: 40px; margin: 0 0 18px; color: #FFFDFA; }
.section-dark-text { font-size: 16px; line-height: 1.75; color: var(--dark-text); margin: 0 0 26px; }
.steps { display: grid; gap: 14px; }
.step { display: flex; gap: 20px; border-bottom: 1px solid var(--dark-soft); padding-bottom: 14px; }
.step-n { font-family: var(--font-serif); font-size: 28px; color: var(--dark-accent); min-width: 44px; }
.step h4 { margin: 4px 0 6px; font-size: 17px; font-weight: 600; letter-spacing: .02em; color: #FFFDFA; font-family: var(--font-sans); }
.step p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--dark-text2); }

/* ---------- Guide cards ---------- */
.grid-guides { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 18px; }
.card-guide-home { display: block; cursor: pointer; background: var(--cream); padding: 26px; border-radius: 2px; border: 1px solid var(--border4); text-decoration: none; color: inherit; }
.card-guide-home:hover { background: #F4EADD; text-decoration: none; }
.card-guide-home h3 { font-weight: 500; font-size: 23px; margin: 0 0 10px; }
.card-guide-home p { font-size: 14.5px; line-height: 1.65; color: var(--text-soft); margin: 0 0 14px; }
.card-guide-home .link { font-size: 13px; letter-spacing: .06em; color: var(--fl-accent); }

.grid-guides-index { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 18px; }
.card-guide { display: block; cursor: pointer; border: 1px solid var(--border); background: var(--bg); border-radius: 2px; text-decoration: none; color: inherit; }
.card-guide:hover { background: #FDF9F3; border-color: var(--border3); text-decoration: none; }
.card-guide .photo { aspect-ratio: 16/9; }
.card-guide-body { padding: 24px; }
.card-guide-body h3 { font-weight: 500; font-size: 24px; margin: 0 0 10px; }
.card-guide-body p { font-size: 14.5px; line-height: 1.65; color: var(--text-soft); margin: 0 0 12px; }
.card-guide-body .link { font-size: 13px; letter-spacing: .06em; color: var(--fl-accent); }

/* ---------- Testimonials ---------- */
.section-cream { background: var(--cream); padding: 72px 28px; border-top: 1px solid var(--border); }
.section-cream-tight { background: var(--cream); border-top: 1px solid var(--border); }
.grid-testimonials { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 18px; }
.card-testimonial { background: var(--bg); border: 1px solid var(--border); padding: 28px; border-radius: 2px; }
.card-testimonial p.quote { font-family: var(--font-serif); font-size: 20px; line-height: 1.55; font-style: italic; margin: 0 0 18px; color: #43392F; }
.card-testimonial p.who { margin: 0; font-size: 13px; letter-spacing: .06em; color: var(--muted); }

/* ---------- Shop teaser ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split .photo { aspect-ratio: 5/4; border-radius: 2px; }
.split h2 { font-size: 40px; margin: 0 0 18px; }
.split p { font-size: 16.5px; line-height: 1.7; color: var(--text-soft); margin: 0 0 24px; }

/* ---------- Page title ---------- */
.page-title { font-size: 54px; margin: 0 0 18px; }
.page-title-lg { font-size: 52px; margin: 0 0 18px; line-height: 1.08; }

/* ---------- Services (full) ---------- */
.services-list { display: grid; gap: 20px; }
.service-row { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; border: 1px solid var(--border); background: var(--bg); border-radius: 2px; overflow: hidden; }
.service-row .photo { min-height: 270px; }
.service-row-body { padding: 34px 34px 34px 0; }
.service-row-body h2 { font-weight: 500; font-size: 30px; margin: 0 0 12px; }
.service-row-body > p { font-size: 15.5px; line-height: 1.7; color: var(--text-soft); margin: 0 0 18px; max-width: 60ch; }
.service-bullets { margin: 0 0 20px; padding: 0; list-style: none; display: grid; gap: 8px; }
.service-bullets li { font-size: 14.5px; color: var(--text-soft); padding-left: 18px; position: relative; line-height: 1.6; }
.service-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--fl-accent); }
.service-row-footer { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 18px; }
.service-price { font-family: var(--font-serif); font-size: 26px; }
.service-duration { font-size: 13px; color: var(--muted); letter-spacing: .05em; }
.service-row-footer .btn { margin-left: auto; }
.custom-box { margin-top: 48px; background: var(--cream); border: 1px solid var(--border); padding: 34px; }
.custom-box h3 { font-weight: 500; font-size: 26px; margin: 0 0 12px; }
.custom-box p { font-size: 15.5px; line-height: 1.7; color: var(--text-soft); margin: 0 0 18px; max-width: 72ch; }

/* ---------- Portfolio ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.filter-chip { cursor: pointer; border: 1px solid var(--border2); padding: 9px 18px; font-size: 13px; letter-spacing: .05em; border-radius: 999px; background: var(--bg); color: var(--text-soft); }
.filter-chip.is-active { background: var(--dark); color: #FFFDFA; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 2px; background: repeating-linear-gradient(135deg,#F1E8DC 0 10px,#E6DAC8 10px 20px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item[data-ratio="4-5"] { aspect-ratio: 4/5; }
.gallery-item[data-ratio="1-1"] { aspect-ratio: 1/1; }
.gallery-item[data-ratio="4-3"] { aspect-ratio: 4/3; }
.gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; color: #fff; font-size: 10.5px; letter-spacing: .06em; background: linear-gradient(0deg,rgba(0,0,0,.55),transparent); }

/* ---------- Articles / guides ---------- */
.article-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; margin-top: 26px; }
.back-link { cursor: pointer; font-size: 12.5px; letter-spacing: .08em; color: var(--muted); }
.article-title { font-size: 48px; line-height: 1.1; margin: 0 0 20px; }
.article-lead { font-size: 18px; line-height: 1.7; color: var(--text-soft); margin: 0 0 30px; }
.article-hero { aspect-ratio: 16/9; margin-bottom: 34px; border-radius: 2px; }
.article-section { margin-bottom: 34px; }
.article-section h2 { font-weight: 500; font-size: 30px; margin: 0 0 14px; }
.article-section p { font-size: 16px; line-height: 1.8; color: var(--text-article); margin: 0 0 16px; }
.article-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; background: var(--cream); padding: 22px 24px; border-left: 2px solid var(--fl-accent); }
.article-list li { font-size: 15px; line-height: 1.6; color: var(--text-article); }
.article-footer { border-top: 1px solid var(--border); padding-top: 26px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.article-footer p { margin: 0; font-size: 15.5px; color: var(--text-soft); }
.aside-box { background: var(--cream); border: 1px solid var(--border); padding: 26px; margin-bottom: 20px; }
.aside-box h3 { font-weight: 500; font-size: 22px; margin: 0 0 14px; }
.aside-box-plain { border: 1px solid var(--border); padding: 26px; }
.aside-box-plain h3 { font-weight: 500; font-size: 22px; margin: 0 0 10px; }
.aside-box-plain p { font-size: 14.5px; line-height: 1.65; color: var(--text-soft); margin: 0 0 16px; }
.aside-links { display: grid; gap: 12px; }
.aside-links a { cursor: pointer; font-size: 14.5px; line-height: 1.5; color: var(--text-soft); border-bottom: 1px solid var(--border); padding-bottom: 10px; text-decoration: none; display: block; }
.aside-links a:hover { color: var(--fl-accent); }

/* ---------- Cjenik (pricing) ---------- */
.grid-packages { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 18px; margin-bottom: 44px; }
.package-card { border: 1px solid var(--border); padding: 32px; border-radius: 2px; display: flex; flex-direction: column; }
.package-card .badge { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 16px; opacity: .7; }
.package-card h2 { font-weight: 500; font-size: 28px; margin: 0 0 8px; }
.package-card .price { font-family: var(--font-serif); font-size: 44px; margin: 0 0 18px; }
.package-items { display: grid; gap: 10px; margin-bottom: 24px; }
.package-items span { font-size: 14.5px; line-height: 1.55; opacity: .9; }
.package-card .btn-choose { cursor: pointer; margin-top: auto; text-align: center; border: 1px solid currentColor; padding: 12px; font-size: 13px; letter-spacing: .06em; background: transparent; color: inherit; text-decoration: none; display: block; }
.package-card.dark { background: var(--dark); color: #F7F0E6; }
.package-card.light { background: var(--bg); color: var(--text); }
.addons-title { font-size: 34px; margin: 0 0 20px; }
.addons-list { border: 1px solid var(--border); }
.addon-row { display: flex; justify-content: space-between; gap: 20px; padding: 18px 24px; border-bottom: 1px solid var(--border4); align-items: baseline; }
.addon-row:last-child { border-bottom: none; }
.addon-row strong { font-size: 15.5px; font-weight: 600; }
.addon-row p { margin: 6px 0 0; font-size: 14px; color: #7C7062; line-height: 1.55; }
.addon-price { font-family: var(--font-serif); font-size: 22px; white-space: nowrap; }

/* ---------- Trgovina (shop) ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(255px,1fr)); gap: 18px; }
.shop-card { border: 1px solid var(--border); background: var(--bg); border-radius: 2px; display: flex; flex-direction: column; }
.shop-card .photo { aspect-ratio: 1/1; }
.shop-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.shop-card-body h3 { font-weight: 500; font-size: 22px; margin: 0 0 8px; }
.shop-card-body p { font-size: 14px; line-height: 1.6; color: var(--text-softer); margin: 0 0 16px; }
.shop-card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.shop-price { font-family: var(--font-serif); font-size: 24px; }
.btn-add { cursor: pointer; border: none; background: var(--dark); color: #FFFDFA; padding: 10px 16px; font-size: 12.5px; letter-spacing: .06em; border-radius: 2px; }
.btn-add:hover { background: var(--fl-accent); }
.shop-info-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 18px; }
.shop-info-card { background: var(--cream); padding: 24px; border: 1px solid var(--border4); }
.shop-info-card h4 { margin: 0 0 8px; font-size: 15.5px; font-weight: 600; font-family: var(--font-sans); }
.shop-info-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-softer); }

/* ---------- O nama (about) ---------- */
.about-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; margin-bottom: 60px; }
.about-top p { font-size: 17px; line-height: 1.75; color: var(--text-article); margin: 0 0 16px; }
.about-media { display: grid; gap: 12px; }
.about-media .photo { aspect-ratio: 4/5; border-radius: 2px; }
.about-info-box { background: var(--cream); padding: 22px; border: 1px solid var(--border4); font-size: 14.5px; line-height: 1.7; color: var(--text-soft); }
.team-title { font-size: 38px; margin: 0 0 26px; }
.grid-team { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 18px; }
.team-card { border: 1px solid var(--border); background: var(--bg); }
.team-card .photo { aspect-ratio: 1/1; }
.team-card-body { padding: 20px; }
.team-card-body h3 { font-weight: 500; font-size: 22px; margin: 0 0 4px; }
.team-role { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.team-bio { font-size: 14px; line-height: 1.6; color: var(--text-softer); margin: 0; }

/* ---------- Kontakt (contact) ---------- */
.contact-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; }
.contact-title { font-size: 52px; margin: 0 0 18px; }
.contact-lead { font-size: 16.5px; line-height: 1.75; color: var(--text-soft); margin: 0 0 30px; max-width: 56ch; }
.form-grid { display: grid; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea { border: 1px solid var(--border2); background: var(--bg); padding: 13px 14px; font-size: 15px; font-family: var(--font-sans); color: var(--text); border-radius: 2px; width: 100%; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--fl-accent); outline-offset: 1px; }
.chip-group { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { cursor: pointer; border: 1px solid var(--border2); padding: 9px 16px; font-size: 13px; border-radius: 999px; background: var(--bg); color: var(--text-soft); }
.chip.is-active { background: var(--dark); color: #FFFDFA; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.6; color: var(--text-softer); }
.consent-row input { margin-top: 3px; }
.form-submit-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.form-msg-ok { font-size: 14px; color: var(--success); }
.form-msg-error { font-size: 14px; color: var(--error); }
.contact-aside { display: grid; gap: 18px; align-content: start; }
.contact-card-dark { background: var(--dark); color: #F7F0E6; padding: 30px; }
.contact-card-dark h3 { font-weight: 500; font-size: 24px; margin: 0 0 16px; color: #FFFDFA; }
.contact-card-dark p { margin: 0 0 10px; font-size: 15px; line-height: 1.7; color: var(--dark-text); }
.contact-card-dark p:last-child { color: var(--dark-text3); font-size: 14px; margin-bottom: 0; }
.map-placeholder { aspect-ratio: 4/3; border-radius: 2px; background: repeating-linear-gradient(135deg,#EFE5D6 0 10px,#E4D8C6 10px 20px); display: flex; align-items: flex-end; padding: 14px; color: var(--muted2); font: 11px ui-monospace,SFMono-Regular,monospace; letter-spacing: .08em; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; align-items: baseline; background: none; border: none; width: 100%; text-align: left; color: inherit; }
.faq-q h3 { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: .01em; font-family: var(--font-sans); }
.faq-sign { font-size: 20px; color: var(--fl-accent); line-height: 1; font-family: var(--font-serif); }
.faq-a { margin: 0 0 22px; font-size: 15.5px; line-height: 1.75; color: var(--text-soft); max-width: 70ch; display: none; }
.faq-item.is-open .faq-a { display: block; }

/* ---------- Legal ---------- */
.legal-updated { font-size: 13.5px; color: var(--muted); margin: 0 0 34px; }
.legal-section { margin-bottom: 30px; }
.legal-section h2 { font-weight: 500; font-size: 26px; margin: 0 0 12px; }
.legal-section p { font-size: 15.5px; line-height: 1.8; color: var(--text-article); margin: 0 0 14px; }
.legal-box { background: var(--cream); border: 1px solid var(--border); padding: 26px; font-size: 14.5px; line-height: 1.75; color: var(--text-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--dark-text2); padding: 60px 28px 30px; margin-top: auto; }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-name { font-family: var(--font-serif); font-size: 28px; color: #FFFDFA; }
.footer-brand-sub { font-size: 9px; letter-spacing: .34em; color: var(--muted); margin: 6px 0 18px; text-transform: uppercase; }
.footer-desc { font-size: 14.5px; line-height: 1.75; margin: 0 0 16px; max-width: 38ch; }
.footer-contact { font-size: 14px; line-height: 1.8; margin: 0; color: var(--dark-text3); }
.footer-col h4 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--dark-accent); margin: 0 0 16px; font-family: var(--font-sans); font-weight: 600; }
.footer-links { display: grid; gap: 10px; }
.footer-link { cursor: pointer; font-size: 14.5px; color: var(--dark-text2); text-decoration: none; }
.footer-link:hover { color: #FFFDFA; text-decoration: none; }
.footer-bottom { max-width: 1240px; margin: 34px auto 0; border-top: 1px solid var(--dark-soft); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(58,49,41,.45); display: none; justify-content: flex-end; }
.cart-overlay.is-open { display: flex; }
.cart-panel { width: 440px; max-width: 100%; background: var(--bg); height: 100%; overflow-y: auto; padding: 30px; animation: flSlide .28s ease both; display: flex; flex-direction: column; }
.cart-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; }
.cart-head h2 { font-weight: 400; font-size: 32px; }
.cart-close { cursor: pointer; font-size: 22px; color: var(--muted); background: none; border: none; }
.cart-empty { padding: 40px 0; border-top: 1px solid var(--border); }
.cart-empty p { font-size: 15.5px; line-height: 1.7; color: var(--text-soft); margin: 0 0 20px; }
.cart-lines { border-top: 1px solid var(--border); }
.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border4); }
.cart-line-thumb { width: 70px; height: 70px; flex: none; background: repeating-linear-gradient(135deg,#F2EAE0 0 8px,#E8DDCC 8px 16px); overflow: hidden; border-radius: 2px; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-body { flex: 1; }
.cart-line-body h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; font-family: var(--font-sans); }
.cart-line-body .meta { margin: 0 0 8px; font-size: 13px; color: var(--muted); }
.cart-qty { display: flex; gap: 10px; align-items: center; }
.qty-btn { cursor: pointer; border: 1px solid var(--border2); width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: 15px; background: var(--bg); }
.cart-remove { cursor: pointer; margin-left: 8px; font-size: 12.5px; color: var(--error); letter-spacing: .04em; background: none; border: none; }
.cart-line-total { font-family: var(--font-serif); font-size: 19px; }
.cart-summary { padding: 18px 0; display: grid; gap: 8px; font-size: 14.5px; color: var(--text-soft); }
.cart-summary-row { display: flex; justify-content: space-between; }
.cart-summary-total { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 6px; font-family: var(--font-serif); font-size: 24px; color: var(--text); }
.cart-note { margin: 2px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.cart-order-done { margin: 16px 0 0; font-size: 14.5px; line-height: 1.7; color: var(--success); background: #F1F5EE; padding: 16px; }
.cart-terms { margin: 14px 0 0; font-size: 12.5px; line-height: 1.65; color: var(--muted); }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 80; background: var(--bg); border: 1px solid var(--border3); box-shadow: 0 12px 40px rgba(58,49,41,.16); padding: 22px 26px; display: flex; gap: 26px; align-items: center; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.cookie-banner p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--text-article); flex: 1; min-width: 280px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn-reject { cursor: pointer; border: 1px solid var(--border2); padding: 12px 20px; font-size: 13px; letter-spacing: .05em; background: var(--bg); }
.cookie-btn-accept { cursor: pointer; background: var(--dark); color: #FFFDFA; padding: 12px 22px; font-size: 13px; letter-spacing: .05em; border: none; }
.cookie-btn-accept:hover { background: var(--fl-accent); }
[hidden] { display: none !important; }

/* ---------- Skip link (a11y) ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--dark); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero, .section-dark-inner, .split, .about-top, .contact-layout, .article-layout { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
  .page-title, .page-title-lg { font-size: 38px; }
  .article-title { font-size: 34px; }
  .service-row { grid-template-columns: 1fr; }
  .service-row-body { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cart-panel { width: 100%; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .main-nav.is-open { display: flex; width: 100%; flex-direction: column; align-items: flex-start; gap: 4px; order: 3; padding-top: 10px; border-top: 1px solid var(--border); margin-top: 10px; }
  .site-header-inner { flex-wrap: wrap; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .header-actions { order: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .section, .section-tight, .section-narrow { padding-left: 20px; padding-right: 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero-title { font-size: 36px; }
}
