:root {
  --cream: #F5F2EC;
  --panel: #FBF8F1;
  --navy: #2E3A4A;
  --navy-soft: #46566A;
  --accent: #B35A4C;
  --accent-dark: #9A463B;
  --ornament: #D9CFC3;
  --line: rgba(46, 58, 74, 0.16);
  --shadow: 0 22px 60px rgba(46, 58, 74, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--cream);
  color: var(--navy);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.page {
  width: 100%;
  overflow-x: hidden;
  padding: clamp(18px, 4vw, 56px);
}

.section {
  position: relative;
  width: 100%;
  background: var(--cream);
  overflow: hidden;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-inline: clamp(22px, 6vw, 86px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(42px, 6vw, 72px);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ornament-dot {
  position: relative;
  width: 54px;
  height: 54px;
  display: inline-block;
  flex: 0 0 auto;
}

.ornament-dot::before,
.ornament-dot::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px solid var(--accent);
  transform: rotate(45deg);
}

.ornament-dot::after {
  inset: 22px;
  background: var(--accent);
}

.btn {
  min-width: 210px;
  border-radius: 999px;
  padding: 15px 26px 16px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(180deg, #C66A5B, var(--accent));
  color: #fff;
  box-shadow: 0 12px 24px rgba(179, 90, 76, 0.22);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #B85F52, var(--accent-dark));
  box-shadow: 0 16px 30px rgba(179, 90, 76, 0.28);
}

.btn--secondary {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: rgba(251, 248, 241, 0.58);
}

.btn--secondary:hover {
  background: var(--navy);
  color: #fff;
}

/* HERO */

.hero {
  position: relative;
  width: min(100%, 1440px);
  min-height: min(760px, calc(100vh - 80px));
  margin: 0 auto;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,0.92), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.45), rgba(245,242,236,0.25));
  z-index: -2;
}

.corner {
  position: absolute;
  width: clamp(170px, 22vw, 360px);
  height: clamp(170px, 22vw, 360px);
  opacity: 0.82;
  color: var(--ornament);
  pointer-events: none;
  z-index: -1;
}

.corner--tl { top: 0; left: 0; }
.corner--tr { top: 0; right: 0; transform: scaleX(-1); }
.corner--bl { bottom: 0; left: 0; transform: scaleY(-1); }
.corner--br { bottom: 0; right: 0; transform: scale(-1); }

.hero-content {
  width: min(100%, 940px);
  margin: 0 auto;
  padding: clamp(84px, 13vh, 180px) clamp(22px, 6vw, 80px) clamp(54px, 8vh, 96px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: clamp(92px, 10vw, 132px);
  height: auto;
  display: block;
  margin: 0 auto 24px;
  opacity: 0.94;
}

.hero-eyebrow {
  margin-bottom: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.hero h1 {
  max-width: 960px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.hero-subline {
  width: min(100%, 680px);
  height: 1px;
  margin: 24px auto 18px;
  background: linear-gradient(90deg, transparent, rgba(46, 58, 74, 0.14), transparent);
}

.hero-lead {
  max-width: 760px;
  color: var(--accent);
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1.65;
  font-weight: 600;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-note {
  max-width: 850px;
  color: var(--navy-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-benefits {
  position: relative;
  border-top: 1px dashed rgba(217, 207, 195, 0.92);
  padding: 34px clamp(22px, 5vw, 80px) 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: rgba(251, 248, 241, 0.55);
}

.hero-benefit {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  padding: 0 18px;
}

.hero-benefit + .hero-benefit {
  border-left: 1px solid var(--line);
}

.hero-benefit-icon {
  width: 54px;
  height: 54px;
  color: var(--navy);
  flex: 0 0 auto;
}

.hero-benefit-icon .accent,
.study-icon .accent {
  color: var(--accent);
}

.hero-benefit-icon *,
.study-icon * {
  vector-effect: non-scaling-stroke;
}

/* ABOUT */

.about {
  margin-top: clamp(40px, 6vw, 80px);
  padding-block: clamp(86px, 11vw, 150px) clamp(74px, 9vw, 128px);
}

.about::before,
.about::after,
.offer::before,
.offer::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 72%);
}

.about::before,
.offer::before {
  right: -80px;
  top: -80px;
  transform: rotate(45deg);
}

.about::after,
.offer::after {
  left: -120px;
  bottom: -120px;
  transform: rotate(45deg);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: start;
}

.about-left {
  position: relative;
  padding-left: clamp(34px, 4vw, 72px);
}

.about-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: -24px;
  width: 1px;
  height: 72%;
  background: rgba(179, 90, 76, 0.35);
}

.about-left h2,
.offer-intro h2 {
  max-width: 560px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.about-left h2::after {
  content: "";
  display: block;
  width: min(100%, 520px);
  height: 1px;
  margin-top: 42px;
  background: linear-gradient(90deg, var(--accent), rgba(179, 90, 76, 0.15), transparent);
}

.about-right {
  position: relative;
  padding-left: clamp(34px, 4vw, 56px);
  border-left: 1px dashed rgba(217, 207, 195, 0.9);
}

.about-right p {
  color: var(--navy);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.78;
  margin-bottom: 22px;
}

.about-right p:last-child {
  margin-bottom: 0;
}

.about-cards {
  width: min(70vw, 1200px);
  margin: clamp(28px, 4vw, 48px) 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.about-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.about-card-icon {
  width: 54px;
  height: 54px;
  color: var(--accent);
}

.about-card h3 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--navy);
}

.about-card p {
  color: var(--navy-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* OFFER */

.offer {
  padding-block: clamp(86px, 10vw, 140px) clamp(76px, 9vw, 130px);
}

.offer .section-inner {
  /* Poprawka: oferta zaczyna się dokładnie w tej samej osi co O nas */
  padding-inline: clamp(22px, 6vw, 86px);
}

.offer-intro {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.offer-intro h2 {
  margin-bottom: 18px;
}

.offer-intro p {
  color: var(--navy-soft);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: clamp(56px, 8vw, 90px);
}

.language-card {
  position: relative;
  min-height: 220px;
  padding: 34px 26px 28px;
  border: 1px solid rgba(179, 90, 76, 0.22);
  border-radius: 10px;
  background: rgba(251, 248, 241, 0.62);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.language-card:hover {
  transform: translateY(-3px);
  border-color: rgba(179, 90, 76, 0.42);
  box-shadow: 0 18px 38px rgba(46, 58, 74, 0.08);
}

.language-card::before,
.language-card::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  opacity: 0.38;
  background:
    linear-gradient(45deg, transparent 43%, var(--ornament) 44%, var(--ornament) 56%, transparent 57%),
    linear-gradient(-45deg, transparent 43%, var(--ornament) 44%, var(--ornament) 56%, transparent 57%);
  background-size: 18px 18px;
  transform: rotate(45deg);
}

.language-card::before { left: 23%; top: 37%; }
.language-card::after { right: 23%; top: 37%; }

.language-media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.language-img {
  width: min(100%, 170px);
  height: 112px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.language-card h3 {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.05;
  font-weight: 600;
  color: var(--navy);
}

.language-card h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--accent);
}

.study-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.study-column + .study-column {
  padding-left: clamp(34px, 5vw, 70px);
  border-left: 1px solid rgba(179, 90, 76, 0.25);
}

.study-column h3 {
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--accent);
}

.study-list {
  display: grid;
  gap: 0;
}

.study-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(217, 207, 195, 0.95);
}

.study-item:last-child {
  border-bottom: 0;
}

.study-icon {
  width: 54px;
  height: 54px;
  color: var(--navy);
}

.study-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 1.06rem;
  letter-spacing: 0.04em;
}

.study-item span {
  color: var(--navy-soft);
  line-height: 1.55;
  font-size: 0.98rem;
}

/* RESPONSIVE */

@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-right {
    padding-left: 0;
    border-left: 0;
  }

  .about-cards {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-card {
    margin-top: 12px;
  }

  .language-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .study-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .study-column + .study-column {
    padding-left: 0;
    border-left: 0;
    padding-top: 34px;
    border-top: 1px solid rgba(179, 90, 76, 0.25);
  }
}

@media (max-width: 760px) {
  .page {
    padding: 0;
  }

  .hero {
    width: 100%;
    min-height: 100vh;
    box-shadow: none;
  }

  .corner {
    width: 180px;
    height: 180px;
    opacity: 0.62;
  }

  .corner--bl,
  .corner--br {
    display: none;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 82px 22px 44px;
  }

  .hero-logo {
    width: 92px;
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
  }

  .hero-lead,
  .hero-note {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-benefits {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px 34px;
  }

  .hero-benefit {
    min-height: auto;
    padding: 14px 0;
    border-left: 0;
  }

  .hero-benefit + .hero-benefit {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 22px;
  }

  .section-inner {
    padding-inline: 22px;
  }
}

@media (max-width: 620px) {
  .language-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .language-card {
    min-height: 180px;
    padding: 28px 20px 24px;
  }

  .language-media {
    height: 100px;
  }

  .language-img {
    height: 100px;
    width: min(100%, 155px);
  }

  .study-item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .study-icon {
    width: 48px;
    height: 48px;
  }
}
/* WHY */

.why {
  padding-block: clamp(86px, 10vw, 140px) clamp(76px, 9vw, 130px);
}

.why::before,
.why::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 72%);
}

.why::before {
  right: -80px;
  top: -80px;
  transform: rotate(45deg);
}

.why::after {
  left: -120px;
  bottom: -120px;
  transform: rotate(45deg);
}

.why-intro {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 62px);
}

.why-intro h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.why-card {
  position: relative;
  overflow: hidden;
  grid-column: span 3;
  min-height: 360px;
  padding: 34px 32px;
  border: 1px solid rgba(217, 207, 195, 0.72);
  border-radius: 10px;
  background: rgba(251, 248, 241, 0.72);
  box-shadow: 0 18px 44px rgba(46, 58, 74, 0.04);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  background: radial-gradient(
    120px circle at 50% 0%,
    rgba(179, 90, 76, 0.18),
    transparent 70%
  );
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 60px rgba(46, 58, 74, 0.10),
    0 6px 18px rgba(179, 90, 76, 0.08);
  border-color: rgba(179, 90, 76, 0.35);
  background: rgba(251, 248, 241, 0.9);
}

.why-card:hover::after {
  opacity: 1;
}

.why-card--bottom {
  grid-column: span 4;
}

.why-icon {
  width: 90px;
  height: 90px;
  color: var(--navy);
  margin: 0 auto 26px;
  transition: transform 220ms ease;
}

.why-card:hover .why-icon {
  transform: translateY(-3px) scale(1.04);
}

.why-icon .accent {
  color: var(--accent);
}

.why-card h3 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  line-height: 1.08;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

.why-card h3 span {
  color: var(--accent);
}

.why-card h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  background: var(--accent);
}

.why-card p,
.why-card li {
  color: var(--navy-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.why-card p + p {
  margin-top: 10px;
}

.why-card ul {
  list-style: none;
  margin: 4px 0 12px;
  padding: 0;
}

.why-card li {
  position: relative;
  padding-left: 18px;
}

.why-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--accent);
  font-size: 0.72rem;
}

@media (hover: hover) and (pointer: fine) {
  .why-card:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 1100px) {
  .why-card,
  .why-card--bottom {
    grid-column: span 6;
  }
}

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

  .why-card,
  .why-card--bottom {
    grid-column: auto;
    min-height: auto;
    padding: 30px 24px;
  }

  .why-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
  }
}

/* PRICING */

.pricing {
  padding-block: clamp(86px, 10vw, 140px) clamp(76px, 9vw, 130px);
}

.pricing::before,
.pricing::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 72%);
}

.pricing::before {
  right: -80px;
  top: -80px;
  transform: rotate(45deg);
}

.pricing::after {
  left: -120px;
  bottom: -120px;
  transform: rotate(45deg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1380px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 48px 30px 42px;
  border: 1px solid rgba(217, 207, 195, 0.72);
  border-radius: 10px;
  background: rgba(251, 248, 241, 0.72);
  box-shadow: 0 18px 44px rgba(46, 58, 74, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  background: radial-gradient(
    130px circle at 50% 0%,
    rgba(179, 90, 76, 0.16),
    transparent 70%
  );
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 60px rgba(46, 58, 74, 0.10),
    0 6px 18px rgba(179, 90, 76, 0.08);
  border-color: rgba(179, 90, 76, 0.35);
  background: rgba(251, 248, 241, 0.92);
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-icon {
  width: 94px;
  height: 94px;
  color: var(--navy);
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 50%;
  background: rgba(217, 207, 195, 0.26);
  transition: transform 220ms ease;
}

.pricing-card:hover .pricing-icon {
  transform: translateY(-3px) scale(1.04);
}

.pricing-icon .accent {
  color: var(--accent);
}

.pricing-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 2.2vw, 2.45rem);
  line-height: 1.05;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.pricing-card h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--accent);
}

.pricing-separator {
  width: 100%;
  height: 1px;
  margin: 12px 0 40px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 207, 195, 0.95),
    transparent
  );
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  color: var(--navy);
}

.price .from {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  color: var(--accent);
  margin-right: 2px;
}

.price .amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.1rem, 6vw, 5.8rem);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.price .currency {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  color: var(--accent);
}

.pricing-note {
  margin-top: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--navy);
}

.pricing-small {
  margin-top: 14px;
  color: var(--navy-soft);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 260px;
}

.pricing-card-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #C66A5B, var(--accent));
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(179, 90, 76, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(179, 90, 76, 0.25);
}

@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
  }
}

@media (max-width: 620px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .pricing-card {
    min-height: auto;
    padding: 38px 24px 36px;
  }

  .pricing-icon {
    width: 82px;
    height: 82px;
  }

  .price .amount {
    font-size: clamp(4rem, 20vw, 5.4rem);
  }
}
/* TRUSTED */

.trusted {
  padding-block: clamp(78px, 9vw, 130px);
}

.trusted::before,
.trusted::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 72%);
}

.trusted::before {
  right: -95px;
  top: -90px;
  transform: rotate(45deg);
}

.trusted::after {
  left: -115px;
  bottom: -120px;
  transform: rotate(45deg);
}

.trusted-inner {
  text-align: left;
}

.trusted-intro {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.trusted-intro h2 {
  max-width: 760px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.trusted-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  border-block: 1px solid rgba(217, 207, 195, 0.72);
}

.trusted-carousel::before,
.trusted-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trusted-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), transparent);
}

.trusted-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream), transparent);
}

.trusted-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(56px, 8vw, 110px);
  animation: trusted-scroll 34s linear infinite;
}

.trusted-carousel:hover .trusted-track {
  animation-play-state: paused;
}

.trusted-track a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 74px;
  text-decoration: none;
}

.trusted-track img {
  max-width: 160px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(0.85);
  opacity: 0.58;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.trusted-track a:hover img {
  filter: grayscale(0) saturate(1) contrast(1);
  opacity: 1;
  transform: scale(1.06);
}

.trusted-note {
  max-width: 760px;
  margin-top: clamp(32px, 4vw, 50px);
  color: var(--navy-soft);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

@keyframes trusted-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .trusted-carousel {
    padding: 24px 0;
  }

  .trusted-carousel::before,
  .trusted-carousel::after {
    width: 56px;
  }

  .trusted-track {
    gap: 44px;
    animation-duration: 26s;
  }

  .trusted-track a {
    min-width: 125px;
    height: 64px;
  }

  .trusted-track img {
    max-width: 130px;
    max-height: 48px;
  }
}
/* START */

.start {
  padding-block: clamp(78px, 9vw, 130px);
}

.start::before,
.start::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 72%);
}

.start::before {
  right: -95px;
  top: -90px;
  transform: rotate(45deg);
}

.start::after {
  left: -115px;
  bottom: -120px;
  transform: rotate(45deg);
}

.start-intro {
  max-width: 760px;
  margin-bottom: clamp(48px, 7vw, 82px);
}

.start-intro h2 {
  max-width: 760px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.start-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.start-step {
  position: relative;
  text-align: center;
}

.start-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 82px;
  left: calc(50% + 68px);
  width: calc(100% - 58px);
  border-top: 2px dashed rgba(179, 90, 76, 0.42);
}

.start-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 76px;
  right: -42px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  transform: rotate(45deg);
  z-index: 2;
}

.start-icon-wrap {
  position: relative;
  width: 148px;
  height: 148px;
  margin: 0 auto 34px;
  border-radius: 999px;
  background: rgba(217, 207, 195, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.start-icon {
  width: 78px;
  height: 78px;
  color: var(--navy);
}

.start-icon .accent {
  color: var(--accent);
}

.start-number {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(179, 90, 76, 0.18);
}

.start-step h3 {
  max-width: 260px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
  font-weight: 600;
  color: var(--navy);
}

.start-step h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin: 22px auto 0;
  background: var(--accent);
}

@media (max-width: 980px) {
  .start-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 48px;
  }

  .start-step::before,
  .start-step::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .start-steps {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .start-icon-wrap {
    width: 136px;
    height: 136px;
    margin-bottom: 32px;
  }

  .start-icon {
    width: 72px;
    height: 72px;
  }
}
/* CONTACT */

.contact {
  padding-block: clamp(78px, 9vw, 130px);
}

.contact::before {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 80px);
  bottom: -95px;
  width: 360px;
  height: 240px;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--ornament) 47%, var(--ornament) 53%, transparent 54%);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 72%);
  transform: rotate(45deg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: clamp(40px, 6vw, 86px);
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-bottom: 34px;
}

.contact-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px dashed rgba(217, 207, 195, 0.95);
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(217, 207, 195, 0.24);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 34px;
  height: 34px;
}

.contact-icon .accent {
  color: var(--accent);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.15;
  font-weight: 600;
}

.contact-item span {
  display: block;
  color: var(--navy-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-item a {
  text-decoration: none;
}

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

.contact-cta {
  width: 100%;
  max-width: 420px;
  min-height: 62px;
  padding: 18px 24px;
  border: 2px solid rgba(255,255,255,0.55);
  outline: 1px solid var(--accent);
  border-radius: 6px;
  background: linear-gradient(180deg, #C66A5B, var(--accent));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(179, 90, 76, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(179, 90, 76, 0.28);
}

.contact-cta span {
  font-size: 1.6rem;
  line-height: 1;
}

.contact-map-wrap {
  position: relative;
  min-height: 560px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 24px 58px rgba(46, 58, 74, 0.1);
}

.contact-map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 242, 236, 0.25);
  pointer-events: none;
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(0.55) contrast(0.9) brightness(1.08);
}

.map-badge {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  top: 45%;
  z-index: 2;
  width: min(260px, calc(100% - 36px));
  padding: 22px 24px;
  border-radius: 12px;
  background: rgba(251, 248, 241, 0.92);
  box-shadow: 0 18px 44px rgba(46, 58, 74, 0.16);
}

.map-badge strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.1;
}

.map-badge span {
  display: block;
  color: var(--navy-soft);
  line-height: 1.55;
  margin-bottom: 10px;
}

.map-badge a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}

.contact-modes {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 46px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 14px;
  background: rgba(251, 248, 241, 0.94);
  box-shadow: 0 16px 40px rgba(46, 58, 74, 0.12);
}

.contact-modes div {
  padding: 22px 28px;
}

.contact-modes div + div {
  border-left: 1px solid rgba(179, 90, 76, 0.22);
}

.contact-modes strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: var(--navy);
}

.contact-modes span {
  color: var(--navy-soft);
}

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

  .contact-info {
    justify-content: flex-start;
  }

  .contact-map-wrap,
  .contact-map {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .contact-item {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon svg {
    width: 30px;
    height: 30px;
  }

  .contact-cta {
    max-width: none;
  }

  .contact-map-wrap,
  .contact-map {
    min-height: 500px;
  }

  .map-badge {
    top: 22px;
    right: 18px;
    left: 18px;
    width: auto;
  }

  .contact-modes {
    grid-template-columns: 1fr;
  }

  .contact-modes div + div {
    border-left: 0;
    border-top: 1px solid rgba(179, 90, 76, 0.22);
  }
}
/* FOOTER */

.site-footer {
  position: relative;
  overflow: hidden;

  /* 🔥 FIX FULL WIDTH */
  width: calc(100% + (clamp(18px, 4vw, 56px) * 2));
  margin-left: calc(clamp(18px, 4vw, 56px) * -1);
  margin-right: calc(clamp(18px, 4vw, 56px) * -1);

  padding: clamp(82px, 9vw, 130px) clamp(22px, 6vw, 86px) clamp(44px, 5vw, 70px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 36%),
    linear-gradient(180deg, #102A42 0%, #0B2238 100%);
  color: #F5F2EC;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  opacity: 0.11;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 46%, #F5F2EC 47%, #F5F2EC 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #F5F2EC 47%, #F5F2EC 53%, transparent 54%);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 72%);
}

.site-footer::before {
  left: -90px;
  top: -80px;
  transform: rotate(45deg);
}

.site-footer::after {
  right: -90px;
  top: -80px;
  transform: rotate(45deg);
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

.footer-heading {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.footer-ornament {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 22px;
  position: relative;
}

.footer-ornament::before,
.footer-ornament::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px solid var(--accent);
  transform: rotate(45deg);
}

.footer-ornament::after {
  inset: 18px;
  background: var(--accent);
}

.footer-heading h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: #F8F1E6;
  margin-bottom: 18px;
}

.footer-heading p {
  color: rgba(245, 242, 236, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.45fr 1fr 1fr;
  gap: 0;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.footer-item {
  min-height: 150px;
  padding: 18px 28px;
  text-align: center;
  border-left: 1px solid rgba(245, 242, 236, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-item:first-child {
  border-left: 0;
}

.footer-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  color: #F8F1E6;
  line-height: 1.1;
}

.footer-item span,
.footer-item a {
  display: block;
  color: rgba(245, 242, 236, 0.78);
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.55;
  text-decoration: none;
}

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

.footer-item span:last-child,
.footer-item a:first-of-type {
  color: #D7826E;
}

.footer-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 236, 0.16);
  border-radius: 22px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255,255,255,0.035);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-cta::before,
.footer-cta::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  opacity: 0.09;
  background-image:
    linear-gradient(45deg, transparent 46%, #F5F2EC 47%, #F5F2EC 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #F5F2EC 47%, #F5F2EC 53%, transparent 54%);
  background-size: 44px 44px;
  pointer-events: none;
}

.footer-cta::before {
  left: -50px;
  bottom: -50px;
  transform: rotate(45deg);
}

.footer-cta::after {
  right: -50px;
  top: -50px;
  transform: rotate(45deg);
}

.footer-cta h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 600;
  color: #F8F1E6;
}

.footer-cta p {
  position: relative;
  z-index: 1;
  color: #D7826E;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.5;
}

.footer-btn {
  position: relative;
  z-index: 1;
  min-width: 250px;
}

/* FOOTER BOTTOM */

.footer-bottom {
  margin-top: clamp(34px, 4vw, 54px);
  padding-top: 22px;
  border-top: 1px solid rgba(245, 242, 236, 0.14);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;

  text-align: center;
  color: rgba(245, 242, 236, 0.58);
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.footer-bottom a {
  color: rgba(245, 242, 236, 0.78);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: #D7826E;
}

.footer-bottom-separator {
  color: var(--accent);
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    gap: 3px;
  }

  .footer-bottom-separator {
    display: none;
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-item {
    border-left: 0;
    border-top: 1px solid rgba(245, 242, 236, 0.14);
  }

  .footer-item:nth-child(-n+2) {
    border-top: 0;
  }

  .footer-item--wide {
    grid-column: span 2;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .site-footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-inline: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-item,
  .footer-item:nth-child(-n+2) {
    border-top: 1px solid rgba(245, 242, 236, 0.14);
  }

  .footer-item:first-child {
    border-top: 0;
  }

  .footer-item--wide {
    grid-column: auto;
  }

  .footer-item {
    min-height: auto;
    padding: 24px 0;
  }
}
body {
  background: #0B2238;
}

.page {
  background: var(--cream);
}

.site-footer {
  margin-bottom: calc(clamp(18px, 4vw, 56px) * -1);
}
/* STICKY NAV */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: rgba(251, 248, 241, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(46, 58, 74, 0.1);
  transform: translateY(-120%);
  transition: transform 260ms ease;
}

.site-nav.nav-visible {
  transform: translateY(0);
}

.nav-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 10px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.nav-brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--navy);
}

.nav-brand span {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  color: var(--navy-soft);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.8vw, 26px);
}

.nav-menu > a:not(.nav-cta) {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-menu > a:not(.nav-cta):hover {
  color: var(--accent);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #C66A5B, var(--accent));
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--navy);
  text-decoration: none;
}

.social-icon {
  width: 18px;
  height: 18px;
  opacity: 0.75;
}

.nav-socials a:hover {
  background: rgba(179, 90, 76, 0.08);
}

.nav-socials a:hover .social-icon {
  color: var(--accent);
  opacity: 1;
}

.nav-toggle {
  display: none;
}

/* MOBILE NAV */

@media (max-width: 920px) {
  .nav-inner {
    padding: 10px 20px;
  }

  .nav-logo {
    width: 46px;
    height: 46px;
  }

  .nav-brand strong {
    font-size: 1.32rem;
  }

  .nav-brand span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex !important;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(46, 58, 74, 0.18);
    border-radius: 999px;
    background: rgba(251, 248, 241, 0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 100001;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(46, 58, 74, 0.1);
    background: rgba(251, 248, 241, 0.99);
    box-shadow: 0 22px 52px rgba(46, 58, 74, 0.16);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.menu-open .nav-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu > a:not(.nav-cta) {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(217, 207, 195, 0.65);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 12px;
    justify-content: center;
    text-align: center;
    display: inline-flex;
  }

  .nav-socials {
    justify-content: center;
    padding-top: 14px;
  }
}
/* LANGUAGE SWITCHER */

.nav-lang{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:18px;
}

.nav-lang a{
    width:32px;
    height:32px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;

    background:rgba(179,90,76,.08);
    transition:.25s;
}

.nav-lang a:hover{
    background:rgba(179,90,76,.16);
    transform:translateY(-2px);
}

.flag{
    font-size:18px;
    line-height:1;
}

.lang {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.flag {
  font-size: 18px;
  line-height: 1;
}

/* hover */
.lang:hover {
  background: rgba(179, 90, 76, 0.08);
  transform: scale(1.05);
}

/* aktywny język */
.lang.active {
  background: rgba(179, 90, 76, 0.14);
}

/* NAV SAFEGUARD + LANGUAGE SWITCHER MOBILE */
@media (max-width:920px){

    .nav-lang{
        width:100%;
        justify-content:center;
        margin:18px 0 6px;
        gap:16px;
    }

    .nav-lang a{
        width:38px;
        height:38px;
    }

    .flag{
        font-size:22px;
    }

}

/* FINAL CLIENT CORRECTIONS */

.hero-actions {
  margin-bottom: 0;
}

/* Longer text blocks requested by the owner */
.about-right p:not(.about-signature),
.why-card p,
.why-card li {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-signature {
  margin-top: 26px;
  text-align: right;
  font-style: italic;
  color: var(--accent);
}

.contact-actions {
  width: 100%;
  max-width: 420px;
  display: grid;
  gap: 14px;
}

.contact-actions .contact-cta {
  width: 100%;
  max-width: none;
}

.contact-cta--secondary {
  background: rgba(251, 248, 241, 0.78);
  color: var(--navy);
  border: 1px solid rgba(46, 58, 74, 0.18);
  outline: 1px solid rgba(179, 90, 76, 0.42);
  box-shadow: 0 12px 28px rgba(46, 58, 74, 0.08);
}

.contact-cta--secondary:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 36px rgba(46, 58, 74, 0.18);
}

.flag-icon {
  width: 22px;
  height: 16px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(46, 58, 74, 0.12);
}

@media (max-width: 920px) {
  .flag-icon {
    width: 25px;
    height: 17px;
  }
}



/* HERO JOURNAL BUTTON + MOBILE SCROLL FIX */

.btn--journal {
  border-color: rgba(179, 90, 76, 0.65);
  color: var(--accent-dark);
}

.btn--journal:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    grid-template-rows: auto auto;
    touch-action: pan-y;
  }

  .hero-content {
    justify-content: flex-start;
    padding: 76px 22px 34px;
  }

  .hero-actions {
    margin-bottom: 0;
  }
}
