/* Причал — сайт-2026. Дизайн-система: речная/кобальтовая палитра, лёгкая/элегантная подача — медиа в главной роли, CTA приглушены */
:root {
  --navy-950: #071c33;
  --navy-900: #0b2c52;
  --navy-800: #123a6b;
  --cobalt-700: #17469e;
  --cobalt-600: #2159c9;
  --cobalt-500: #3670e6;
  --sky-400: #7fb0f5;
  --sky-200: #cfe2fb;
  --aqua-500: #1f9baa;
  --foam-50: #f4f8fc;
  --foam-100: #e6f0fb;
  --ink-900: #10192a;
  --ink-700: #3d4a5e;
  --white: #ffffff;
  --danger: #b23b3b;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 14px 40px rgba(7, 28, 51, .11);
  --shadow-card: 0 4px 18px rgba(7, 28, 51, .07);
  --max-width: 1200px;
  --tap-min: 44px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink-900);
  background: var(--foam-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 7vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 5vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 3.5vw, 1.5rem); }
p { margin: 0 0 1em; }
a { color: var(--cobalt-600); text-decoration: none; }
a:hover { color: var(--navy-900); }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 88px 0; } }
.section--tight { padding: 40px 0; }
.section--alt { background: var(--foam-100); }
.section--dark { background: var(--navy-950); color: var(--foam-50); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .76rem;
  color: var(--cobalt-600);
  margin-bottom: .7em;
}
.lead { font-size: 1.1rem; color: var(--ink-700); max-width: 640px; font-weight: 400; }

/* Buttons — deliberately quiet. CTAs stay present but never compete with the photography.
   44px min height keeps WCAG touch-target size without visual bulk (slim padding/weight/shadow). */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: var(--tap-min);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold {
  background: var(--cobalt-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(33, 89, 201, .22);
}
.btn--gold:hover { color: var(--white); background: var(--cobalt-700); box-shadow: 0 6px 18px rgba(33, 89, 201, .28); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.btn--ghost:hover { color: var(--white); border-color: var(--sky-400); background: rgba(255,255,255,.08); }
.btn--outline-dark {
  background: transparent;
  border-color: rgba(7,28,51,.28);
  color: var(--navy-900);
}
.btn--outline-dark:hover { border-color: var(--navy-900); background: rgba(7,28,51,.04); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 8px 18px; font-size: .84rem; min-height: 38px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 248, 252, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(7,28,51,.06);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: var(--max-width); margin: 0 auto;
  gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; color: var(--navy-950); }
.brand img { height: 32px; width: auto; }
.nav { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.nav a { font-weight: 500; font-size: .93rem; color: var(--ink-900); }
.nav a:hover { color: var(--cobalt-600); }
.nav-phone, .nav .btn { display: none; }
.nav-phone { align-items: center; gap: 8px; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .88rem; color: var(--navy-950); white-space: nowrap;
  min-width: var(--tap-min); min-height: var(--tap-min); justify-content: center;
}
.header-phone svg { flex-shrink: 0; width: 18px; height: 18px; }
.header-cta .btn--sm { padding: 6px 14px; font-size: .76rem; min-height: 34px; }
.nav-toggle {
  display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--navy-950);
  min-width: var(--tap-min); min-height: var(--tap-min);
}

@media (max-width: 900px) {
  .nav { position: fixed; inset: 58px 0 0 0; background: var(--foam-50); flex-direction: column; align-items: flex-start; padding: 20px; display: none; overflow-y: auto; z-index: 99; }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 4px; font-size: 1.1rem; width: 100%; border-bottom: 1px solid rgba(7,28,51,.08); }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .brand span { display: none; }
  .site-header__inner { padding: 10px 14px; gap: 8px; }
  .header-cta { gap: 6px; }
  .header-phone { padding: 8px; color: var(--cobalt-600); }
  .header-phone__text { display: none; }
  .header-cta .btn--sm { padding: 5px 12px; font-size: .72rem; min-height: 32px; }
  .nav-phone { display: flex; margin-top: 10px; padding: 12px 4px; font-size: 1.15rem; font-weight: 700; color: var(--cobalt-600); }
  .nav .btn { display: inline-flex; margin-top: 14px; }
}

/* Hero — the photograph is the point; overlay stays light except where copy needs contrast */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,28,51,.08) 0%, rgba(7,28,51,.22) 45%, rgba(5,18,33,.72) 100%);
}
.hero__content { position: relative; padding: 56px 24px 52px; max-width: var(--max-width); margin: 0 auto; width: 100%; }
.hero__badge {
  display: inline-block; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28);
  padding: 6px 16px; border-radius: 999px; font-size: .74rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 20px; text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.hero h1 { color: var(--white); max-width: 780px; text-shadow: 0 2px 22px rgba(0,0,0,.32); }
.hero .lead { color: rgba(255,255,255,.92); max-width: 600px; text-shadow: 0 1px 14px rgba(0,0,0,.28); }
.hero__actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero--sm { min-height: 48vh; }
@media (max-width: 640px) {
  .hero { min-height: 82vh; }
  .hero--sm { min-height: 52vh; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}

/* Cards */
.grid { display: grid; gap: 30px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; gap: 22px; } }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.card__img { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__img img { transform: scale(1.03); }
.card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .35em; }
.card__meta { font-size: .82rem; color: var(--cobalt-600); font-weight: 600; letter-spacing: .04em; margin-bottom: .5em; }
.card__body p { color: var(--ink-700); flex: 1; }
.card__link { display: inline-block; margin-top: 10px; font-weight: 600; color: var(--cobalt-600); }

/* USP boxes (banket page) */
.usp-box {
  background: var(--white); border-radius: var(--radius-md); padding: 24px 26px;
  box-shadow: var(--shadow-card); border-top: 2px solid var(--cobalt-500);
}
.usp-box h3 { font-size: 1.1rem; margin-bottom: .35em; }
.usp-box p { color: var(--ink-700); margin: 0; font-size: .95rem; }

/* Venue capacity table */
.venue-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.venue-table th, .venue-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--foam-100); }
.venue-table th { background: var(--navy-950); color: var(--white); font-family: 'Playfair Display', serif; font-weight: 600; }
.venue-table tr:last-child td { border-bottom: none; }
.venue-table td.price { font-weight: 700; color: var(--cobalt-700); white-space: nowrap; }
@media (max-width: 640px) {
  .venue-table { display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
}

/* Pricing block */
.price-box { background: var(--white); border-radius: var(--radius-md); padding: 24px 26px; box-shadow: var(--shadow-card); border-left: 3px solid var(--cobalt-500); }
.price-box h4 { margin-bottom: .3em; color: var(--navy-900); font-family: 'Manrope', sans-serif; font-weight: 700; text-transform: uppercase; font-size: .82rem; letter-spacing: .07em; }
.price-box .price-value { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--cobalt-700); font-weight: 700; }
.price-box p { color: var(--ink-700); font-size: .92rem; margin: .4em 0 0; }

/* Gallery — fewer, larger photos read as a curated portfolio rather than a thumbnail wall */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid a { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid a:hover img { transform: scale(1.04); }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* Testimonials */
.testimonial { background: var(--white); border-radius: var(--radius-md); padding: 26px 28px; box-shadow: var(--shadow-card); }
.testimonial__stars { color: var(--aqua-500); letter-spacing: .12em; margin-bottom: .5em; }
.testimonial__author { font-weight: 700; color: var(--navy-900); margin-top: .8em; }
.testimonial__date { font-size: .82rem; color: var(--ink-700); opacity: .7; }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(7,28,51,.1); padding: 18px 0; }
.faq-item summary {
  cursor: pointer; font-weight: 600; font-family: 'Playfair Display', serif; font-size: 1.05rem;
  color: var(--navy-950); list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; min-height: var(--tap-min);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--cobalt-600); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 10px; color: var(--ink-700); }

/* Lead form — the site's primary conversion unit, kept understated: a calm card, not a shouting box */
.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(7,28,51,.06);
}
@media (min-width: 640px) { .lead-form { padding: 36px; } }
.lead-form h3 { margin-bottom: .2em; }
.lead-form .lead-form__sub { color: var(--ink-700); margin-bottom: 16px; font-size: .95rem; }
.lead-form__trust {
  display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 20px;
  font-size: .82rem; font-weight: 600; color: var(--ink-700);
}
.lead-form__trust span { display: flex; align-items: center; gap: 6px; }
.lead-form__trust span::before { content: '✓'; color: var(--aqua-500); font-weight: 700; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 6px; color: var(--navy-900); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(7,28,51,.14); font-size: 16px; font-family: inherit;
  background: var(--foam-50); min-height: var(--tap-min);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cobalt-500); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .8rem; color: var(--ink-700); opacity: .75; margin-top: 12px; }
.form-note a { font-weight: 600; }
.form-success { display: none; padding: 22px; background: var(--navy-950); color: var(--white); border-radius: var(--radius-md); text-align: center; }
.form-success.is-visible { display: block; }
.lead-form.is-submitted form { display: none; }

/* CTA banner — a quiet interruption, not a billboard */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950), var(--cobalt-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: .25em; }
.cta-banner p { color: rgba(255,255,255,.8); margin: 0; font-weight: 400; }
.cta-banner .btn { background: var(--white); color: var(--navy-950); box-shadow: none; }
.cta-banner .btn:hover { background: var(--foam-100); color: var(--navy-950); }
@media (max-width: 640px) { .cta-banner { padding: 28px 24px; } .cta-banner .btn { width: 100%; } }

/* Breadcrumbs */
.breadcrumbs { font-size: .85rem; color: var(--ink-700); margin-bottom: 16px; }
.breadcrumbs a { color: var(--ink-700); }
.breadcrumbs a:hover { color: var(--cobalt-600); }

/* Footer */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.85); padding: 56px 0 26px; }
.site-footer h4 { color: var(--white); font-family: 'Manrope', sans-serif; font-size: .9rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--sky-400); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-grid li { margin-bottom: 10px; list-style: none; }
.footer-grid ul { padding: 0; margin: 0; }
.footer-grid a { display: inline-block; min-height: 32px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; font-size: .82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.5); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 30px; } }
.tag-list { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0; }
.tag { background: var(--foam-100); color: var(--navy-900); padding: 6px 14px; border-radius: 999px; font-size: .84rem; font-weight: 500; }
.badge-row { display: flex; gap: 24px; flex-wrap: wrap; margin: 26px 0; }
.badge-row .badge { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy-900); }
.badge-row .badge .num { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--cobalt-600); }
.related-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.related-links a { background: var(--white); border: 1.5px solid rgba(7,28,51,.12); padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: .88rem; min-height: 40px; display: inline-flex; align-items: center; }
.related-links a:hover { border-color: var(--cobalt-500); color: var(--cobalt-600); }
figure.pull-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
figure.pull-photo img { width: 100%; height: 100%; object-fit: cover; }
.small-print { font-size: .82rem; color: var(--ink-700); opacity: .8; }
.legal-body h2 { margin-top: 1.4em; }
.legal-body ul { color: var(--ink-700); }

/* Blog */
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 22px 24px 26px; }
.blog-card__meta { font-size: .8rem; color: var(--ink-700); opacity: .7; margin-bottom: .5em; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body h2 { margin-top: 1.3em; }
.post-body p, .post-body li { color: var(--ink-700); font-size: 1.05rem; }
.post-body img { border-radius: var(--radius-md); margin: 1.4em 0; }
