:root {
  --accent: #2563eb;
  --surface-dark: #111827;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-alt: #f3f4f6;
  --surface-strong: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;
  --border: rgba(17, 24, 39, 0.10);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --transition: 180ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.68;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
p, ul, ol { margin-top: 0; }

h1, h2, h3, h4, h5, h6, .site-title {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.03em; margin: 0 0 0.8rem; }
h1 { font-size: clamp(2.6rem, 4.2vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.2vw, 3.2rem); }
h3 { font-size: clamp(1.28rem, 2vw, 1.7rem); }

.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 5rem 0; }
.section--tight-top { padding-top: 1.5rem; }
.section--alt {
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--narrow .container { width: min(calc(100% - 2rem), 920px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.button-row,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.section-actions--centered { justify-content: center; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}
.button:hover { transform: translateY(-1px); color: #fff; }
.button--ghost {
  background: #fff;
  border-color: var(--surface-strong);
  color: var(--text);
  box-shadow: none;
}
.button--ghost:hover { border-color: var(--accent); color: var(--accent); }
.button--small { min-height: 42px; padding: 0.65rem 1rem; font-size: 0.94rem; }
.text-link { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--accent); font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.92);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.site-branding { display: flex; flex-direction: column; gap: 0.12rem; }
.site-title { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.site-tagline { margin: 0; color: var(--muted); font-size: 0.92rem; }
.site-logo img { max-height: 52px; width: auto; }
.primary-navigation { display: flex; align-items: center; gap: 1rem; }
.primary-navigation .menu, .site-footer .menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.primary-navigation a { font-weight: 600; }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--surface-strong);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.hero--corporate {
  padding: 2rem 0 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 1.5rem;
  align-items: stretch;
}
.hero__content,
.card--hero-points {
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero__content {
  padding: clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(17, 24, 39, 0.78)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.28), transparent 35%);
  color: #fff;
}
.hero__lead {
  max-width: 42rem;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.84);
  margin-bottom: 1.8rem;
}
.card--hero-points {
  background: #fff;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}
.hero-point {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-soft);
}
.hero-point strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.hero-point span { color: var(--muted); font-size: 0.96rem; }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}
.split-section--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); }

.section-heading { max-width: 48rem; margin-bottom: 2.25rem; }
.section-heading--centered { margin-inline: auto; text-align: center; }
.section-heading p { color: var(--muted); }

.intro-panel,
.content-card,
.card,
.post-card,
.contact-box,
.value-card,
.private-album-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.intro-panel--soft,
.content-card { padding: clamp(1.5rem, 3vw, 2.4rem); }
.entry-header { margin-bottom: 1.8rem; }
.entry-header--service, .private-album-header { text-align: center; }
.entry-intro {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}
.entry-cover { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.6rem; }
.entry-cover img { width: 100%; object-fit: cover; }
.entry-content > * + * { margin-top: 1.25rem; }
.entry-content p, .entry-content li, .entry-content blockquote, .entry-content figcaption { color: #1f2937; }
.entry-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 0.15em; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: 2rem; }
.entry-content .wp-block-image, .entry-content .wp-block-gallery, .entry-content .gallery { margin: 1.5rem 0; }
.entry-content blockquote {
  margin: 1.75rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--accent);
  background: var(--surface-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.entry-content input,
.entry-content textarea,
.entry-content select,
.entry-content button,
.search-form input,
.search-form button {
  width: 100%;
  max-width: 100%;
}
.entry-content input,
.entry-content textarea,
.entry-content select,
.search-form input {
  padding: 0.9rem 1rem;
  border: 1px solid var(--surface-strong);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
}
.entry-content button,
.search-form button {
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.value-stack {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}
.value-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
}
.value-item h3 { margin-bottom: 0.35rem; }
.value-item p { margin: 0; color: var(--muted); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.case-card,
.offer-card { overflow: hidden; }
.case-card__media {
  min-height: 210px;
  background: linear-gradient(135deg, #dbeafe, #f3f4f6);
  border-bottom: 1px solid var(--border);
}
.case-card__body,
.offer-card { padding: 1.4rem; }
.offer-card__price {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.95rem;
}
.offer-card ul { margin: 1rem 0 0; padding-left: 1rem; }
.offer-card li + li { margin-top: 0.35rem; }

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--shadow);
}
.cta-panel__actions { text-align: right; }
.cta-panel__note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.service-link-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.service-link-card p { color: var(--muted); }

.contact-box,
.private-album-card,
.post-card { padding: 1.5rem; }
.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.site-footer__inner { display: flex; justify-content: center; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

@media (max-width: 980px) {
  .hero__grid,
  .split-section,
  .split-section--reverse,
  .cta-panel,
  .cards-grid,
  .service-links-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel__actions { text-align: left; }

  .primary-navigation {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
  }
  .primary-navigation .menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .site-header.is-open .primary-navigation { display: flex; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero--corporate { padding-top: 1.2rem; }
  .hero__content { padding: 1.5rem; }
  .card--hero-points,
  .cta-panel,
  .content-card,
  .service-link-card,
  .offer-card,
  .case-card__body { padding: 1.2rem; }
}
