/* Perspektywa Pasji — premium photography brand */
:root {
  --bg: #faf8f5;
  --bg-warm: #f5f1eb;
  --bg-elevated: #fffefb;
  --ivory: #fbf9f6;
  --line: rgba(44, 40, 36, 0.08);
  --line-strong: rgba(44, 40, 36, 0.14);
  --text: #2c2824;
  --text-soft: #4a4540;
  --muted: #6b6358;
  --accent: #a8946e;
  --accent-hover: #95845f;
  --gold-soft: rgba(168, 148, 110, 0.35);
  --champagne: #d4c4a8;
  --taupe: #8a8278;
  --shadow-sm: 0 1px 2px rgba(44, 40, 36, 0.04);
  --shadow-md: 0 8px 32px rgba(44, 40, 36, 0.06);
  --shadow-lg: 0 24px 64px rgba(44, 40, 36, 0.08);
  --radius: 2px;
  --radius-lg: 4px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-accent: "Italiana", var(--font-serif);
  --max-width: 1280px;
  --header-h: 4.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.45s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Layout ——— */
.wrap {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 1.5rem, var(--max-width));
  }
}

.section {
  padding-block: var(--space-2xl);
  position: relative;
}

.section--tight {
  padding-block: var(--space-xl);
}

.section--hero-pad {
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + var(--space-xl));
}

.decor-line {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: var(--space-md);
}

.decor-line--center {
  margin-inline: auto;
}

.section__eyebrow {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-sm);
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 var(--space-md);
}

.section__lead {
  font-size: 1.125rem;
  color: var(--text-soft);
  max-width: 38rem;
  margin: 0 0 var(--space-lg);
}

.section__lead--narrow {
  max-width: 32rem;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.2;
}

.logo span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  color: var(--text-soft);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--text);
  background: rgba(168, 148, 110, 0.08);
}

.nav-item {
  position: relative;
}

.nav-item__trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: none;
  background: none;
  font: inherit;
  color: var(--text-soft);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius);
}

.nav-item__trigger:hover {
  color: var(--text);
  background: rgba(168, 148, 110, 0.08);
}

.nav-item__trigger svg {
  width: 0.65rem;
  opacity: 0.6;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  min-width: 14rem;
  padding: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s, transform 0.25s var(--ease-out);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0.25rem);
}

.nav-dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-soft);
  border-radius: var(--radius);
}

.nav-dropdown a:hover {
  background: var(--bg-warm);
  color: var(--text);
}

.nav-dropdown a.is-active {
  color: var(--text);
  font-weight: 500;
  background: rgba(168, 148, 110, 0.1);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: transform 0.25s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .nav-desktop {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  padding: var(--space-lg);
  padding-bottom: max(var(--space-lg), env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: block;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.mobile-nav .sub {
  padding-left: 1rem;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.25s ease, color 0.25s, border-color 0.25s, transform 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--text);
  color: var(--bg-elevated);
  border-color: var(--text);
}

.btn--primary:hover {
  background: var(--text-soft);
  border-color: var(--text-soft);
  color: var(--bg-elevated);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(168, 148, 110, 0.06);
}

.btn--light {
  background: rgba(255, 254, 251, 0.92);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--light:hover {
  background: #fff;
  border-color: #fff;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ——— Hero ——— */
.hero {
  min-height: min(92vh, 900px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  background: var(--bg);
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.hero__visual {
  position: relative;
  min-height: 52vh;
  overflow: hidden;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(250, 248, 245, 0.08) 0%,
    rgba(250, 248, 245, 0.25) 45%,
    rgba(44, 40, 36, 0.12) 100%
  );
  pointer-events: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-xl) var(--space-2xl) clamp(1.5rem, 4vw, 3.5rem);
  background: linear-gradient(160deg, var(--ivory) 0%, var(--bg) 55%, var(--bg-warm) 100%);
  border-left: 1px solid var(--line);
}

@media (max-width: 960px) {
  .hero__content {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: var(--space-xl) clamp(1.35rem, 5vw, 2rem) var(--space-2xl);
    padding-left: max(clamp(1.35rem, 5vw, 2rem), env(safe-area-inset-left));
    padding-right: max(clamp(1.35rem, 5vw, 2rem), env(safe-area-inset-right));
  }
}

.hero__script {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--accent);
  margin: 0 0 var(--space-sm);
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 var(--space-md);
  max-width: 14ch;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--text-soft);
  max-width: 28rem;
  margin: 0;
  line-height: 1.7;
}

/* Hero alternate: full-bleed */
.hero--full {
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  position: relative;
  background: var(--text);
}

.hero--full .hero__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
}

.hero--full .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.hero--full .hero__gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  background: linear-gradient(
    to top,
    rgba(44, 40, 36, 0.75) 0%,
    rgba(44, 40, 36, 0.2) 45%,
    rgba(44, 40, 36, 0.15) 100%
  );
}

.hero--full .wrap {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: min(100% - clamp(2rem, 8vw, 5rem), var(--max-width));
  margin-inline: auto;
  padding-inline: clamp(1.35rem, 4.5vw, 2.5rem);
  padding-left: max(clamp(1.35rem, 4.5vw, 2.5rem), env(safe-area-inset-left));
  padding-right: max(clamp(1.35rem, 4.5vw, 2.5rem), env(safe-area-inset-right));
  padding-bottom: max(clamp(2.75rem, 8vw, 5rem), calc(env(safe-area-inset-bottom, 0px) + 2rem));
}

.hero--full .hero__script {
  margin-bottom: 0.65rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero--full h1 {
  color: var(--bg-elevated);
  max-width: 20ch;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.25);
}

.hero--full .hero__lead {
  color: rgba(255, 254, 251, 0.9);
  max-width: 38rem;
  margin-bottom: 0;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 720px) {
  .hero--full {
    min-height: min(92vh, 880px);
    align-items: flex-end;
  }

  .hero--full .wrap {
    width: min(100% - clamp(1.25rem, 5vw, 2rem), var(--max-width));
    padding-inline: clamp(1.15rem, 4vw, 1.75rem);
    padding-left: max(clamp(1.15rem, 4vw, 1.75rem), env(safe-area-inset-left));
    padding-right: max(clamp(1.15rem, 4vw, 1.75rem), env(safe-area-inset-right));
    padding-bottom: max(2.5rem, calc(env(safe-area-inset-bottom, 0px) + 1.75rem));
  }

  .hero--full h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.65rem);
    line-height: 1.12;
    max-width: none;
  }

  .hero--full .hero__lead {
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .hero--full .hero__script {
    font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  }

  .hero--full .hero__gradient {
    background: linear-gradient(
      to top,
      rgba(28, 26, 24, 0.88) 0%,
      rgba(44, 40, 36, 0.45) 42%,
      rgba(44, 40, 36, 0.22) 100%
    );
  }

  .hero--full .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: var(--space-md);
    width: 100%;
    max-width: 100%;
  }

  .hero--full .hero__actions .btn {
    width: 100%;
    min-height: 3rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .hero--full .wrap {
    padding-inline: 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}

/* Strona główna — hero z kolumną tekstu (split) */
@media (max-width: 960px) {
  .hero:not(.hero--full) .hero__visual {
    min-height: min(52vh, 480px);
  }

  .hero:not(.hero--full) h1 {
    max-width: none;
  }

  .hero:not(.hero--full) .hero__lead {
    max-width: 40rem;
  }

  .hero:not(.hero--full) .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: var(--space-md);
  }

  .hero:not(.hero--full) .hero__actions .btn {
    width: 100%;
    min-height: 3rem;
    justify-content: center;
  }
}

.hero--full .hero__actions .btn--primary {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--bg-elevated);
}

.hero--full .hero__actions .btn--primary:hover {
  background: transparent;
  color: var(--bg-elevated);
  border-color: var(--bg-elevated);
}

.hero--full .hero__actions .btn--ghost {
  border-color: rgba(255, 254, 251, 0.45);
  color: var(--bg-elevated);
}

.hero--full .hero__actions .btn--ghost:hover {
  background: rgba(255, 254, 251, 0.12);
  border-color: #fff;
}

/* ——— Cards & grids ——— */
.grid-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.benefit-card {
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s var(--ease-out);
}

.benefit-card:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-card__icon {
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  margin-bottom: var(--space-md);
  opacity: 0.7;
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 var(--space-xs);
  color: var(--text);
}

.benefit-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (max-width: 900px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

.spec-tile {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
}

.spec-tile__img {
  flex: 1;
  min-height: 220px;
  overflow: hidden;
}

.spec-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.spec-tile:hover .spec-tile__img img {
  transform: scale(1.04);
}

.spec-tile__body {
  padding: var(--space-lg);
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
}

.spec-tile__body h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  margin: 0 0 var(--space-sm);
}

.spec-tile__body p {
  margin: 0 0 var(--space-md);
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.spec-tile--text-only {
  background: linear-gradient(145deg, var(--ivory), var(--bg-warm));
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  min-height: 420px;
}

.spec-tile--text-only .spec-tile__body {
  border: none;
  background: transparent;
  padding: 0;
}

.spec-tile--text-only h2 {
  font-size: 1.85rem;
}

/* ——— Editorial gallery ——— */
.gallery-editorial {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (max-width: 900px) {
  .gallery-editorial {
    grid-template-columns: 1fr;
  }
}

.gallery-block {
  margin-bottom: var(--space-3xl);
}

.gallery-block:last-child {
  margin-bottom: 0;
}

.gallery-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.gallery-block__head h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0;
}

.gallery-block__head a {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.ge-cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-warm);
}

.ge-cell--tall {
  grid-row: span 2;
  min-height: 520px;
}

.ge-cell--wide {
  min-height: 280px;
}

.ge-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out), opacity 0.4s ease;
}

.ge-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 40, 36, 0);
  transition: background 0.4s ease;
  pointer-events: none;
}

.ge-cell:hover::after {
  background: rgba(44, 40, 36, 0.06);
}

.ge-cell:hover img {
  transform: scale(1.03);
}

.ge-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 640px) {
  .ge-row {
    grid-template-columns: 1fr;
  }
  .ge-cell--tall {
    min-height: 360px;
    grid-row: auto;
  }
}

.gallery-wedding-placeholder {
  min-height: 320px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ivory) 0%, #f0ebe3 50%, var(--bg-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  text-align: center;
}

.gallery-wedding-placeholder p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 28rem;
  margin: 0;
  line-height: 1.6;
}

/* ——— About strip ——— */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-top: var(--space-xl);
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }
}

.about-split__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 254, 251, 0.35);
  pointer-events: none;
  border-radius: 2px;
}

/* ——— Offer cards ——— */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.offer-card {
  padding: var(--space-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
  border-color: rgba(168, 148, 110, 0.4);
  box-shadow: var(--shadow-md);
}

.offer-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin: 0 0 var(--space-sm);
}

.offer-card ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.1rem;
  color: var(--text-soft);
  font-size: 0.9375rem;
}

.offer-card li {
  margin-bottom: 0.4rem;
}

/* ——— Packages ——— */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (max-width: 960px) {
  .packages {
    grid-template-columns: 1fr;
  }
}

.package-card {
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.package-card--featured {
  border-color: rgba(168, 148, 110, 0.45);
  background: linear-gradient(180deg, #fffefb 0%, var(--ivory) 100%);
}

.package-card h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  margin: var(--space-sm) 0 var(--space-xs);
}

.package-card .price,
.offer-card .price {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-md);
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.package-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.package-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 1.25rem;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.package-card ul.offer-list li {
  border-bottom: none;
  padding-left: 1rem;
}

.package-card ul.offer-list li::before {
  top: 0.55rem;
  opacity: 0.55;
}

/* ——— Testimonials ——— */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonial {
  padding: var(--space-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial::before {
  content: "“";
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-soft);
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  opacity: 0.9;
}

.testimonial p {
  margin: 0 0 var(--space-md);
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.7;
  font-style: italic;
}

.testimonial footer {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.stars {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 720px;
  margin: var(--space-xl) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: var(--space-md) 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.faq-item button:hover {
  color: var(--accent-hover);
}

.faq-item button .chev {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.faq-item.is-open button .chev {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 0 var(--space-md);
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* ——— Forms ——— */
.form {
  display: grid;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168, 148, 110, 0.15);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: var(--space-sm);
}

.form-success {
  display: none;
  padding: var(--space-md);
  background: rgba(168, 148, 110, 0.1);
  border: 1px solid rgba(168, 148, 110, 0.35);
  border-radius: var(--radius);
  color: var(--text-soft);
  font-size: 0.9375rem;
}

.form-success.is-visible {
  display: block;
}

.form-error {
  display: none;
  padding: var(--space-md);
  background: rgba(180, 90, 70, 0.08);
  border: 1px solid rgba(180, 90, 70, 0.35);
  border-radius: var(--radius);
  color: var(--text-soft);
  font-size: 0.9375rem;
}

.form-error.is-visible {
  display: block;
}

/* ——— CTA band ——— */
.cta-band {
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
  background: linear-gradient(165deg, var(--text) 0%, #3d3832 100%);
  color: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(168, 148, 110, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 var(--space-sm);
  color: var(--bg-elevated);
}

.cta-band p {
  font-size: 1.0625rem;
  color: rgba(255, 254, 251, 0.78);
  max-width: 36rem;
  margin: 0 auto var(--space-lg);
  line-height: 1.65;
}

.cta-band .btn--primary {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--bg-elevated);
}

.cta-band .btn--primary:hover {
  background: transparent;
  color: var(--bg-elevated);
}

/* ——— Contact page layout ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  padding: var(--space-lg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 var(--space-md);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.contact-list strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-list a {
  color: var(--text);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-row a {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-soft);
}

.social-row a:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* ——— Footer ——— */
.site-footer {
  padding: var(--space-2xl) var(--space-md) var(--space-lg);
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 22rem;
  line-height: 1.65;
  margin: 0;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-md);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-soft);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--taupe);
}

/* ——— Page header ——— */
.page-hero {
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + var(--space-xl));
  padding-bottom: var(--space-xl);
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--bg) 100%);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  margin: 0 0 var(--space-sm);
}

.page-hero p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-soft);
  font-size: 1.0625rem;
}

/* ——— Reveal animation ——— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ——— Sport page accent ——— */
.page-sport .hero--full .hero__gradient {
  background: linear-gradient(to top, rgba(28, 26, 24, 0.82) 0%, rgba(44, 40, 36, 0.25) 50%, rgba(44, 40, 36, 0.2) 100%);
}

@media (max-width: 720px) {
  .page-sport .hero--full .hero__gradient {
    background: linear-gradient(
      to top,
      rgba(28, 26, 24, 0.88) 0%,
      rgba(44, 40, 36, 0.45) 42%,
      rgba(44, 40, 36, 0.22) 100%
    );
  }
}

/* ——— Utility ——— */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}
