/* ========================================
   VARIABLES
   ======================================== */
:root {
  --yellow: #F8E45C;
  --teal: #2F9AA8;
  --mint: #8FD8C7;
  --gray: #E4E4E4;
  --bordo: #B71E3C;
  --white: #FAFAF8;
  --dark: #1A1A1A;
  --text: #2D2D2D;
  --text-light: #5A5A5A;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50%;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

/* ========================================
   DOT ELEMENT
   ======================================== */
.dot {
  display: inline-block;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.dot--brand { background: var(--bordo); }
.text--bordo { color: var(--bordo); font-weight: 600; }
.dot--teal { background: var(--teal); }
.dot--mint { background: var(--mint); }
.dot--yellow { background: var(--yellow); }

.dot--float {
  position: absolute;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

.dot--float:nth-child(2n) { animation-delay: -2s; animation-duration: 8s; }
.dot--float:nth-child(3n) { animation-delay: -4s; animation-duration: 7s; }
.dot--float:nth-child(4n) { animation-delay: -1s; animation-duration: 9s; }
.dot--float:nth-child(5n) { animation-delay: -3s; animation-duration: 6s; opacity: 0.5; }
.dot--float:nth-child(7n) { animation: float-drift 10s ease-in-out infinite; opacity: 0.3; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.05); }
}

@keyframes float-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(8px, -12px) scale(1.1); opacity: 0.45; }
  50% { transform: translate(-4px, -20px) scale(1); opacity: 0.35; }
  75% { transform: translate(6px, -8px) scale(1.08); opacity: 0.4; }
}

@keyframes pulse-gentle {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--bordo);
  color: var(--white);
  border-color: var(--bordo);
}

.btn--primary:hover {
  background: #961832;
  border-color: #961832;
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--bordo);
  border-color: var(--bordo);
}

.btn--ghost:hover {
  background: var(--bordo);
  color: var(--white);
}

.btn--large {
  font-size: 1.125rem;
  padding: 1.125rem 2.5rem;
}

/* ========================================
   NAV
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  border-bottom-color: var(--gray);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  padding-right: calc(2rem + env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--dark);
  display: flex;
  align-items: baseline;
  gap: 0;
}

.nav__logo .dot {
  width: 8px;
  height: 8px;
  margin-left: 2px;
  margin-bottom: 2px;
}

.nav__logo:hover {
  color: var(--bordo);
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 400;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bordo);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--bordo);
}

.nav__cta {
  background: var(--bordo);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: #961832;
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) var(--space-md);
  padding-top: calc(var(--space-2xl) + 60px);
  overflow: hidden;
  background: var(--white);
}

.hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__pre {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--teal);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

.dot--hero {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: baseline;
  margin-left: 2px;
  position: relative;
  top: -2px;
}

.hero__subtitle {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--text);
  max-width: 540px;
  margin-bottom: var(--space-md);
}

.hero__subtitle p + p {
  margin-top: 0.375rem;
}

.hero__phone {
  margin-bottom: var(--space-md);
}

.hero__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--bordo);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.hero__phone-link svg {
  color: var(--bordo);
  flex-shrink: 0;
}

.hero__phone-link:hover {
  color: var(--teal);
}

.hero__phone-link:hover svg {
  color: var(--teal);
}

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

.hero__tags {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.hero__tags span {
  font-size: 0.8125rem;
  color: var(--text-light);
  background: rgba(143, 216, 199, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-lg);
}

.hero__image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero__image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__image-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.dot--image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 64px;
  height: 64px;
  z-index: -1;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--space-xl) var(--space-md);
}

.section--mint {
  background: rgba(143, 216, 199, 0.12);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark strong {
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.75);
}

.section--dark a {
  color: var(--mint);
}

.section--dark a:hover {
  color: var(--yellow);
}

.section--bordo {
  background: var(--bordo);
  color: var(--white);
}

.section--bordo h2,
.section--bordo h3,
.section--bordo strong {
  color: var(--white);
}

.section--bordo p {
  color: rgba(255,255,255,0.8);
}

.section--bordo a {
  color: var(--white);
}

.section--bordo a:hover {
  color: var(--yellow);
}

.section--bordo .section__label {
  color: rgba(255,255,255,0.6);
}

.section--bordo .section__desc {
  color: rgba(255,255,255,0.7);
}

.section--bordo .btn--primary {
  background: var(--white);
  color: var(--bordo);
  border-color: var(--white);
}

.section--bordo .btn--primary:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.section__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: var(--space-xs);
}

.section--dark .section__label {
  color: var(--mint);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.section__title .dot {
  width: 10px;
  height: 10px;
  margin-left: 3px;
  vertical-align: baseline;
  position: relative;
  top: -2px;
}

.section__desc {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section--dark .section__desc {
  color: rgba(255,255,255,0.65);
}

/* ========================================
   ABOUT
   ======================================== */
.about__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.about__text p {
  margin-bottom: var(--space-sm);
}

.about__lead {
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--dark);
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(143, 216, 199, 0.3);
}

.highlight {
  text-align: center;
}

.highlight__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bordo);
  line-height: 1;
}

.highlight__label {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ========================================
   OFFER
   ======================================== */
.offer__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
}

/* 3 karty w 1. rzędzie, 2 szersze w 2. rzędzie, kafelek LGBT+ na pełną szerokość */
.offer__card {
  grid-column: span 2;
}

.offer__card:nth-child(4),
.offer__card:nth-child(5) {
  grid-column: span 3;
}

.offer__card--wide {
  grid-column: 1 / -1;
  background: rgba(143, 216, 199, 0.12);
}

.offer__card--wide .offer__card-body {
  max-width: 820px;
}

.offer__card {
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray);
  transition: all var(--transition);
}

.offer__card:hover {
  border-color: var(--mint);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.offer__icon {
  margin-bottom: var(--space-sm);
}

.offer__icon .dot {
  width: 12px;
  height: 12px;
}

.offer__card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.offer__card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

.offer__card p + p {
  margin-top: var(--space-xs);
}

.offer__note {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.9375rem;
  color: var(--teal);
  font-weight: 500;
}

.offer__note--lg {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: var(--space-lg);
}

/* ========================================
   METHODS
   ======================================== */
.methods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.method {
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(143, 216, 199, 0.3);
}

.method__dot-cluster {
  display: flex;
  align-items: flex-end;
  margin-bottom: var(--space-sm);
}

.method__dot-cluster .dot {
  border-radius: var(--radius-full);
}

.method h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.method p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

.method__link {
  display: inline-block;
  margin-top: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal);
}

.method__link:hover {
  color: var(--bordo);
}

.methods__format {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.format {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.format__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.format strong {
  display: block;
  font-size: 0.9375rem;
}

.format p {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0;
}

/* ========================================
   FAQ
   ======================================== */
.faq__list {
  max-width: 700px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(143, 216, 199, 0.3);
}

.faq__question {
  padding: var(--space-md) 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--bordo);
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

details[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__answer {
  padding-bottom: var(--space-md);
}

.faq__answer p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

.faq__link {
  font-weight: 600;
  white-space: nowrap;
}

/* ========================================
   CONTACT
   ======================================== */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--space-lg);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  /* wyrównanie z tytułem „Napisz do mnie” w karcie formularza */
  padding-top: var(--space-md);
}

.contact__intro {
  color: var(--text-light);
}

.contact__cta .btn {
  margin-bottom: var(--space-sm);
}

.contact__or {
  font-size: 0.9375rem;
  color: var(--text-light);
}

.contact__or a {
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- Formularz ---------- */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 32px rgba(47,154,168,0.08);
}

.contact-form__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: var(--space-sm);
}

.field label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid #D4D4D0;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.875rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.6;
}

.field input:hover,
.field textarea:hover {
  border-color: #B5B5B0;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47,154,168,0.2);
}

.field [aria-invalid="true"] {
  border-color: var(--bordo);
}

.field [aria-invalid="true"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(183,30,60,0.15);
}

.field__hint {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-light);
}

.field__error {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--bordo);
  font-weight: 500;
}

.field__error:empty {
  display: none;
}

.field--check {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  align-items: start;
}

.field--check input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  accent-color: var(--teal);
  cursor: pointer;
}

.field--check label {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-light);
  cursor: pointer;
}

.field--check label a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.field--check .field__error {
  grid-column: 2;
}

.field--trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile:not(:empty) {
  margin-bottom: var(--space-sm);
}

.contact-form__submit {
  width: 100%;
  margin-top: var(--space-xs);
}

.contact-form__submit[disabled] {
  opacity: 0.7;
  cursor: progress;
  transform: none;
}

.contact-form__status {
  margin-top: var(--space-sm);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.contact-form__status:empty {
  display: none;
}

.contact-form__status--error {
  color: var(--bordo);
}

.contact-form__status a {
  font-weight: 600;
  white-space: nowrap;
}

.contact-form__success {
  text-align: center;
  padding: var(--space-md) 0;
  /* bez migającego kursora tekstowego po przeniesieniu fokusu */
  caret-color: transparent;
}

.contact-form__success h3:focus {
  outline: none;
}

.contact-form__success-dot {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-bottom: var(--space-sm);
}

.contact-form__success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.contact-form__success p,
.contact-form__noscript {
  color: var(--text-light);
}

.contact-form__success a,
.contact-form__noscript a {
  font-weight: 600;
  white-space: nowrap;
}

.contact__details {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.contact__item {
  text-align: center;
}

.contact__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  text-align: left;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--transition);
}

.contact__link svg {
  color: var(--teal);
  flex-shrink: 0;
}

.contact__link:hover {
  color: var(--bordo);
}

.contact__link:hover svg {
  color: var(--bordo);
}

.contact__link--static {
  color: var(--text);
  cursor: default;
  max-width: 270px;
}

.contact__link--static:hover {
  color: var(--text);
}

.contact__link--static:hover svg {
  color: var(--teal);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #111;
  padding: var(--space-lg) var(--space-md);
  color: rgba(255,255,255,0.5);
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer .nav__logo {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.footer__brand p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--mint);
}

.footer__legal {
  text-align: right;
}

.footer__legal p {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.footer__legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal a:hover {
  color: var(--mint);
}

/* ========================================
   RESPONSIVE
   ======================================== */
.show-mobile { display: none; }

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .show-mobile { display: inline; }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    border-bottom: 1px solid var(--gray);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }

  .nav__links--open {
    display: flex;
  }

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

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__phone {
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__tags {
    justify-content: center;
  }

  .hero__image {
    order: -1;
  }

  .hero__image-frame {
    max-width: 300px;
  }

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

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

  .offer__card,
  .offer__card:nth-child(4),
  .offer__card:nth-child(5) {
    grid-column: auto;
  }

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

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

  .contact__details {
    flex-direction: column;
    gap: var(--space-md);
  }

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

  .contact__info {
    padding-top: 0;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__legal {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-lg) var(--space-sm);
  }

  .hero {
    padding: var(--space-lg) var(--space-sm);
    padding-top: calc(var(--space-lg) + 60px);
  }

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

  .contact__form-wrap {
    padding: var(--space-md) var(--space-sm);
  }

  .contact__cta .btn {
    width: 100%;
  }
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.nowrap {
  white-space: nowrap;
}
