/* ══════════════════════════════════════════
   OSTRZENIE GDYNIA — Main Stylesheet
   ══════════════════════════════════════════ */

:root {
  --ink: #1a1a1a;
  --ink-mid: #3d3d3d;
  --ink-soft: #6b6b6b;
  --ink-faint: #9a9a9a;
  --bg: #fafaf8;
  --bg-warm: #f4f2ee;
  --bg-card: #ffffff;
  --gold: #9a7b3e;
  --gold-lt: #b8974f;
  --border: #e4e0d8;
  --border-strong: #cdc9c0;
  --green: #2e7d52;
  --dark: #1a1a2e;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── TOPBAR ── */
.og-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 11px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.og-topbar__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 700; color: var(--gold);
  white-space: nowrap;
}
.og-topbar__right { display: flex; align-items: center; gap: 10px; }
.og-topbar__phone { font-size: 13px; color: var(--ink-soft); }
.og-btn-call {
  background: var(--ink); color: #fff;
  padding: 9px 20px; border-radius: 6px;
  font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; gap: 7px;
  transition: background .2s;
}
.og-btn-call:hover { background: var(--gold); color: #fff; }

/* ── HERO ── */
.og-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 52px;
}
.og-hero__left {
  padding: 80px 60px 60px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.og-hero__right {
  position: relative; overflow: hidden;
  background: var(--bg-warm);
}
.og-hero__right img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.og-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #edf7f2; border: 1px solid #b5dcc8;
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; font-weight: 500; color: var(--green);
  margin-bottom: 24px; width: fit-content;
}
.og-badge__dot {
  width: 7px; height: 7px; background: var(--green);
  border-radius: 50%; animation: og-blink 2s infinite;
}
@keyframes og-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.og-hero__tag {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.og-hero__h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700; line-height: 1.1;
  color: var(--ink); margin-bottom: 18px;
}
.og-hero__h1 em { font-style: normal; color: var(--gold); }
.og-hero__desc {
  font-size: 16px; color: var(--ink-mid);
  line-height: 1.7; max-width: 440px;
  margin-bottom: 36px; font-weight: 300;
}
.og-hero__actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
}
.og-btn-primary {
  background: var(--gold); color: #fff;
  padding: 15px 30px; border-radius: 6px;
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 9px;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(154,123,62,.28);
}
.og-btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); color: #fff; }
.og-btn-outline {
  border: 1.5px solid var(--border-strong); color: var(--ink-mid);
  padding: 14px 24px; border-radius: 6px;
  font-weight: 500; font-size: 15px;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all .2s;
}
.og-btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.og-hero__meta {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.og-meta-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--ink-soft);
}

.og-rating-chip {
  position: absolute; bottom: 28px; left: 28px; z-index: 2;
  background: #fff; border-radius: 10px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
}
.og-rating-chip__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--ink);
}
.og-rating-chip__stars { color: #f5a623; font-size: 14px; letter-spacing: 1px; }
.og-rating-chip__sub { font-size: 11px; color: var(--ink-soft); }

/* ── STATS ── */
.og-stats {
  background: var(--dark);
  padding: 40px 24px;
}
.og-stats__grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; text-align: center;
}
.og-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,4vw,3rem); font-weight: 700;
  color: #e8c97a; line-height: 1; margin-bottom: 6px;
}
.og-stat__lbl {
  font-size: 12px; color: rgba(255,255,255,.5);
  letter-spacing: .8px; text-transform: uppercase;
}

/* ── SECTION COMMONS ── */
.og-section { padding: 72px 24px; }
.og-section--warm { background: var(--bg-warm); }
.og-section--dark { background: var(--dark); }
.og-container { max-width: 1020px; margin: 0 auto; }

.og-sec-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.og-sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 12px; color: var(--ink);
}
.og-section--dark .og-sec-title { color: #fff; }
.og-sec-rule { width: 48px; height: 2px; background: var(--gold); margin: 14px 0; }
.og-sec-lead {
  color: var(--ink-soft); font-size: 16px;
  max-width: 540px; line-height: 1.7; font-weight: 300;
}

/* ── SERVICES ── */
.og-srv-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px; margin-top: 44px;
}
.og-srv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 26px 22px;
  transition: all .25s; position: relative; overflow: hidden;
}
.og-srv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.og-srv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.og-srv-card:hover::before { transform: scaleX(1); }
.og-srv-card__icon { font-size: 30px; margin-bottom: 14px; display: block; }
.og-srv-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.og-srv-card__desc { font-size: 13px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 14px; }
.og-srv-card__price { font-size: 14px; font-weight: 600; color: var(--gold); }

/* ── GALLERY ── */
.og-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px; margin-top: 44px;
}
.og-gal-item { overflow: hidden; border-radius: 10px; }
.og-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; filter: saturate(.85); }
.og-gal-item:hover img { transform: scale(1.05); filter: saturate(1); }
.og-gal-item--tall { grid-row: span 2; }

/* ── BEFORE/AFTER ── */
.og-ba-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px; margin-top: 44px;
}
.og-ba-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.og-ba-card img { width: 100%; height: 220px; object-fit: cover; }
.og-ba-card__caption { padding: 14px 16px; font-size: 13px; color: var(--ink-soft); }
.og-ba-card__caption strong { color: var(--gold); display: block; margin-bottom: 2px; font-size: 14px; }

/* ── PROCESS ── */
.og-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 18px; margin-top: 48px;
}
.og-step {
  text-align: center; padding: 32px 18px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
}
.og-step__num {
  width: 52px; height: 52px;
  border: 2px solid var(--gold); border-radius: 50%;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.og-step__title { font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.og-step__desc { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* ── REVIEWS ── */
.og-rev-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; margin-top: 44px;
}
.og-rev-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.og-rev-card:hover { box-shadow: var(--shadow-md); }
.og-rev-card__stars { color: #f5a623; font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.og-rev-card__text { font-size: 14px; color: var(--ink-mid); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.og-rev-card__author { display: flex; align-items: center; gap: 12px; }
.og-rev-card__ava {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #2d6a8a);
  font-weight: 700; font-size: 14px; color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.og-rev-card__name { font-weight: 600; font-size: 14px; }
.og-rev-card__role { font-size: 12px; color: var(--ink-faint); }

.og-grating {
  margin-top: 36px; display: flex; justify-content: center;
}
.og-grating__box {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 28px; box-shadow: var(--shadow-sm);
}
.og-grating__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--ink); line-height: 1;
}
.og-grating__stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.og-grating__count { font-size: 13px; color: var(--ink-soft); }

/* ── ABOUT ── */
.og-about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.og-about-photo {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.og-about-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }
.og-about-text p { color: var(--ink-mid); font-size: 15px; line-height: 1.8; margin-top: 16px; font-weight: 300; }

.og-area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.og-area-tag {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 14px; font-size: 12px; color: var(--ink-soft);
}
.og-area-tag--main { background: #fef8ec; border-color: #e8c97a; color: var(--gold); font-weight: 500; }

/* ── FAQ ── */
.og-faq { margin-top: 44px; border-top: 1px solid var(--border); }
.og-faq-item { border-bottom: 1px solid var(--border); }
.og-faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 4px; cursor: pointer;
  font-weight: 500; font-size: 15px; color: var(--ink);
  list-style: none;
}
.og-faq-item summary::-webkit-details-marker { display: none; }
.og-faq-plus { color: var(--gold); font-size: 22px; flex-shrink: 0; transition: transform .3s; }
details[open] .og-faq-plus { transform: rotate(45deg); }
.og-faq-answer { padding: 0 4px 20px; font-size: 14px; color: var(--ink-soft); line-height: 1.75; }

/* ── CTA FINAL ── */
.og-cta-final {
  background: var(--dark); color: #fff;
  text-align: center; padding: 80px 24px;
}
.og-cta-final .og-sec-title { color: #fff; }
.og-cta-final__sub {
  color: rgba(255,255,255,.6); max-width: 480px;
  margin: 14px auto 40px; font-size: 16px;
}
.og-cta-final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.og-btn-gold {
  background: var(--gold); color: #fff;
  padding: 16px 36px; border-radius: 6px;
  font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; gap: 9px;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(154,123,62,.4);
}
.og-btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); color: #fff; }
.og-btn-light {
  border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8);
  padding: 15px 28px; border-radius: 6px;
  font-weight: 500; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px; transition: all .2s;
}
.og-btn-light:hover { border-color: var(--gold); color: var(--gold-lt); }
.og-cta-final__address { font-size: 14px; color: rgba(255,255,255,.4); }

/* ── MAP ── */
.og-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ── FOOTER ── */
.og-footer {
  background: #111; color: rgba(255,255,255,.5);
  padding: 40px 24px; text-align: center; font-size: 13px;
}
.og-footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--gold); font-weight: 700;
  display: block; margin-bottom: 10px;
}
.og-footer__links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.og-footer__links a { color: rgba(255,255,255,.4); font-size: 12px; transition: color .2s; }
.og-footer__links a:hover { color: var(--gold-lt); }

/* ── FLOAT MOBILE ── */
.og-float {
  display: none; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 999;
  background: var(--gold); color: #fff;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
  align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(154,123,62,.45);
  white-space: nowrap;
}

/* ── PRICING TABLE ── */
.og-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 44px;
}
.og-price-cat {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.og-price-cat:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.og-price-cat__header {
  background: linear-gradient(135deg, var(--dark), #2d3a5e);
  color: #fff; padding: 20px 20px 16px;
}
.og-price-cat__icon { font-size: 26px; display: block; margin-bottom: 8px; }
.og-price-cat__title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.3; }
.og-price-cat__badge {
  display: inline-block; margin-top: 8px;
  background: #e8c97a; color: #1a1a1a;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 3px 10px; border-radius: 4px;
}
.og-price-cat__body { background: var(--bg-card); padding: 6px 0; }
.og-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px; font-size: 13px; color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
}
.og-price-row:last-child { border-bottom: none; }
.og-price-val { font-weight: 700; color: var(--gold); white-space: nowrap; margin-left: 12px; }

@media (max-width: 900px) { .og-price-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .og-price-grid { grid-template-columns: 1fr; } }

/* ── REVEAL ANIMATION ── */
.og-reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.og-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .og-srv-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .og-hero { grid-template-columns: 1fr; min-height: auto; }
  .og-hero__right { height: 55vw; min-height: 280px; }
  .og-hero__left { padding: 60px 24px 40px; }
  .og-about-grid { grid-template-columns: 1fr; }
  .og-about-photo { aspect-ratio: 4/3; }
  .og-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .og-gal-item--tall { grid-row: span 1; }
  .og-ba-grid { grid-template-columns: 1fr; }
  .og-steps { grid-template-columns: repeat(2,1fr); }
  .og-rev-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .og-stats__grid { grid-template-columns: repeat(2,1fr); }
  .og-srv-grid { grid-template-columns: 1fr; }
  .og-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 150px; }
  .og-steps { grid-template-columns: 1fr; }
  .og-section { padding: 52px 16px; }
  .og-hero__actions { flex-direction: column; }
  .og-hero__actions a { justify-content: center; text-align: center; }
  .og-topbar__phone { display: none; }
  .og-float { display: inline-flex; }
}
