/* ═══════════════════════════════════════════════════════
   VLADA MOKHOVATA — Portfolio Website
   ═══════════════════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #F2EDE4;
  --cream-dk: #E8E0D4;
  --pink:     #F2547D;
  --pink-lt:  #FFD6E7;
  --pink-dk:  #C93D65;
  --burgundy: #7A1F2E;
  --mint:     #7DCFB6;
  --mint-lt:  #C8EFE5;
  --blush:    #F9C8D4;
  --dark:     #221820;
  --text:     #3D2B30;
  --text-lt:  #7A6268;

  --font-script: 'Dancing Script', cursive;
  --font-serif:  'DM Serif Display', serif;
  --font-sans:   'DM Sans', sans-serif;

  --radius-card: 12px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 24px rgba(34,24,32,.10);
  --shadow-polar: 0 8px 32px rgba(34,24,32,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--cream);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  overflow-x: hidden;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Typography helpers ─── */
.script {
  font-family: var(--font-script);
  color: var(--burgundy);
  font-weight: 700;
}
.serif  { font-family: var(--font-serif); }

/* ─── Shared: section label ─── */
.section-label {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.2;
  padding: 0 .1em;
  border-radius: 0;
  margin-bottom: 1.5rem;
  background:
    linear-gradient(
      to bottom,
      transparent 52%,
      rgba(242, 84, 125, 0.38) 52%,
      rgba(242, 84, 125, 0.28) 100%
    );
}

/* ─── Shared: decorative emojis ─── */
.deco-emoji {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}
.deco-emoji--sm { font-size: 1.25rem; }

/* ─── Shared: polaroid ─── */
.polaroid {
  background: #fff;
  padding: 10px 10px 32px;
  box-shadow: var(--shadow-polar);
  display: inline-block;
  position: relative;
}
.polaroid--tilt-left  { transform: rotate(-3deg); }
.polaroid--tilt-right { transform: rotate(2.5deg); }
.polaroid--offset     { margin-top: -48px; margin-left: 60px; z-index: 2; }

.polaroid__img {
  width: 220px;
  height: 260px;
  background: var(--cream-dk);
  background-size: cover;
  background-position: center;
}

/* ─── Shared: buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .85em 2.2em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn--pink {
  background: var(--pink);
  color: #fff;
  border-color: #f77da0;
}
.btn--pink:hover { background: var(--pink-dk); border-color: #d4577f; }

.btn--dark {
  background: var(--dark);
  color: #fff;
}

/* ─── Shared: chips ─── */
.chip {
  display: inline-block;
  font-size: .8rem;
  font-weight: 500;
  padding: .3em .9em;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--pink);
  color: var(--pink-dk);
  background: transparent;
}

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(242,84,125,.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(125,207,182,.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  width: min(1140px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.label-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink-dk);
  background: var(--pink-lt);
  padding: .4em 1em;
  border-radius: var(--radius-pill);
}

.hero__headline {
  display: flex;
  flex-direction: column;
  gap: .15em;
}
.hero__headline .script { font-size: 3.5rem; line-height: 1; }
.hero__headline .serif  { font-size: 5.5rem; line-height: .95; color: var(--dark); }

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-lt);
  max-width: 42ch;
  line-height: 1.6;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero__visual .polaroid {
  position: relative;
  z-index: 2;
}

.hero__visual .polaroid__img {
  width: 280px;
  height: 340px;
}

.polaroid__img--hero {
  background-image: url('images/Wlada-1.png');
}
.polaroid__img--a1 {
  background-image: url('images/Wlada-2.png');
}
.polaroid__img--a2 {
  background-image: url('images/Wlada-3.png');
}

.hero__dot-1 { position: absolute; top: 12%; right: 8%; font-size: 3rem; }
.hero__dot-2 { position: absolute; bottom: 22%; left: 4%; font-size: 2.25rem; }
.hero__dot-3 { position: absolute; top: 55%; right: 3%; font-size: 2.625rem; }

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-lt);
}

/* ══════════════════════════ BRANDS ══════════════════════════ */
.brands {
  padding: 3rem 0 3.5rem;
  border-top: 1px solid var(--cream-dk);
  border-bottom: 1px solid var(--cream-dk);
}

.brands__label {
  text-align: center;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 2rem;
}

.brands__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}

.brand-logo {
  height: 44px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .35;
  transition: opacity .2s ease;
  filter: grayscale(1);
}
.brand-logo:hover { opacity: .65; }

/* placeholder text — hidden once real <img> logos are dropped in */
.brand-logo span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: .06em;
  color: var(--text);
  border: 1.5px solid currentColor;
  padding: .25em .9em;
  border-radius: 4px;
  white-space: nowrap;
}

/* real logo images */
.brand-logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

/* ══════════════════════════ ABOUT ══════════════════════════ */
.about {
  padding: 8rem 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pink-lt), transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about__images {
  position: relative;
  padding: 2rem;
  min-height: 400px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.about__dot {
  position: absolute;
  bottom: 0;
  right: 1rem;
  font-size: 1.75rem;
}

.about__body { display: flex; flex-direction: column; gap: 1rem; }

.about__lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}

/* ══════════════════════ WHY BRANDS ══════════════════════ */
.why-brands {
  padding: 6rem 0 7rem;
  background: var(--cream-dk);
  position: relative;
}

.why-brands__header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-brands__intro {
  font-size: 1.05rem;
  color: var(--text-lt);
  margin-top: -.5rem;
}

.why-brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border-top: 3px solid var(--pink);
  transition: transform .2s ease, box-shadow .2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(34,24,32,.14);
}

.why-card__icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: .25rem;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.3;
}

.why-card p {
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .why-brands__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .why-brands { padding: 4rem 0 5rem; }
  .why-brands__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════ VIDEO REEL ════════════════════════ */
.video-reel {
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.video-reel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pink-lt), transparent);
}

.video-reel__heading { margin-bottom: .75rem; }

.video-reel__sub {
  font-size: 1rem;
  color: var(--text-lt);
  margin-bottom: 4rem;
}

/* ── Three phones ── */
.phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.5rem;
}

/* ── Single phone ── */
.phone {
  flex-shrink: 0;
  transition: transform .3s ease;
}
.phone:hover { transform: translateY(-8px) !important; }

.phone--tilt-left  { transform: rotate(-6deg); }
.phone--center     { transform: translateY(-24px); }
.phone--tilt-right { transform: rotate(6deg); }

.phone__frame {
  position: relative;
  width: 200px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 36px;
  box-shadow:
    0 0 0 2px #3a3a3a,
    0 0 0 4px #111,
    0 32px 64px rgba(0,0,0,.35),
    0 8px 24px rgba(0,0,0,.2);
  padding: 14px;
  box-sizing: border-box;
}

/* Dynamic island */
.phone__island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  z-index: 2;
}

/* Screen */
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  position: relative;
}

/* Video or placeholder fills the screen */
.phone__screen video,
.phone__screen iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

/* Placeholder gradient */
.phone__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--blush) 0%, var(--pink-lt) 40%, var(--mint-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone__placeholder--b {
  background: linear-gradient(160deg, var(--pink-lt) 0%, var(--cream-dk) 50%, var(--blush) 100%);
}
.phone__placeholder--c {
  background: linear-gradient(160deg, var(--mint-lt) 0%, var(--cream-dk) 50%, var(--pink-lt) 100%);
}

.phone__play {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--pink-dk);
  padding-left: 3px; /* optical centre for ▶ */
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  cursor: pointer;
}

/* Side buttons */
.phone__btn {
  position: absolute;
  background: #2a2a2a;
  border-radius: 2px;
}
.phone__btn--right { right: -3px; }
.phone__btn--left  { left: -3px; }

.phone__btn--vol-up  { top: 90px;  width: 3px; height: 36px; }
.phone__btn--vol-dn  { top: 138px; width: 3px; height: 36px; }
.phone__btn--power   { top: 110px; width: 3px; height: 52px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .phones {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .phone--tilt-left,
  .phone--tilt-right,
  .phone--center {
    transform: none;
  }
  .phone:hover { transform: translateY(-4px) !important; }
}

/* ════════════════════════ SERVICES ════════════════════════ */
.services {
  padding: 6rem 0 8rem;
  position: relative;
}

.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services__intro {
  font-size: 1.05rem;
  color: var(--text-lt);
  margin-top: -.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1.5px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(34,24,32,.14);
  border-color: var(--pink-lt);
}

.service-card--featured {
  background: var(--pink-lt);
  border-color: var(--blush);
  grid-row: span 1;
}
.service-card--featured h3 { color: var(--dark); }
.service-card--featured p  { color: var(--text-lt); }

.service-card__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark);
}

.service-card p {
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.6;
}

.services__deco {
  position: absolute;
  bottom: 2rem;
  right: 4vw;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  pointer-events: none;
}

/* ══════════════════════ TESTIMONIALS ══════════════════════ */
.testimonials {
  padding: 6rem 0 7rem;
  position: relative;
}

.testimonials__heading {
  margin-bottom: 3rem;
}

.testimonials > .container {
  text-align: center;
}

.testimonials__grid {
  text-align: left;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2.5rem 2.25rem 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 1.5px solid transparent;
  position: relative;
}

.testimonial-card--accent {
  background: var(--pink-lt);
  border-color: var(--blush);
  margin-top: 2.5rem;
}

.testimonial-card--accent .testimonial-card__mark {
  color: var(--pink-dk);
}

.testimonial-card--accent p {
  color: var(--text);
}

.testimonial-card--accent strong {
  color: var(--dark);
}

.testimonial-card--accent span {
  color: var(--text-lt);
}

.testimonial-card__mark {
  width: 32px;
  height: auto;
  color: var(--pink);
  margin-bottom: .75rem;
  flex-shrink: 0;
}

.testimonial-card__quote {
  display: flex;
  flex-direction: column;
}

.testimonial-card__quote p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dk);
}

.testimonial-card--accent .testimonial-card__author {
  border-top-color: var(--blush);
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blush), var(--pink-lt));
}

.testimonial-card__avatar--b {
  background: linear-gradient(135deg, var(--mint-lt), var(--mint));
}

.testimonial-card__author strong {
  display: block;
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
}

.testimonial-card__author span {
  display: block;
  font-size: .8rem;
  color: var(--text-lt);
  margin-top: .1rem;
}

/* ════════════════════════ CTA BANNER ════════════════════════ */
.cta-banner {
  background: var(--cream-dk);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(242,84,125,.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-banner__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.cta-banner__script { font-size: 3.5rem; line-height: 1; }

.cta-banner__headline {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--dark);
  margin-top: -.5rem;
}

.cta-banner__sub {
  font-size: 1rem;
  color: var(--text-lt);
  max-width: 44ch;
  margin-bottom: .5rem;
}

/* notebook element */
.cta-banner__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notebook {
  background: #fff;
  border-radius: 4px;
  padding: 2.5rem 2rem 2.5rem 3.5rem;
  box-shadow: var(--shadow-polar);
  position: relative;
  transform: rotate(-1.5deg);
  max-width: 320px;
  border-left: 3px solid var(--pink-lt);
}

.notebook::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--pink-lt) 0px, var(--pink-lt) 1px, transparent 1px, transparent 28px);
}

.notebook__line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--dark);
  line-height: 1.75;
}

.notebook__sig {
  display: block;
  font-size: 1.6rem;
  margin-top: .75rem;
}

.cta-banner__dot {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  font-size: 2.5rem;
  opacity: .6;
}

/* ═══════════════════════════ FOOTER ════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.80);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer__name {
  font-size: 2rem;
  color: var(--pink-lt);
  display: block;
}

.footer__tagline {
  font-size: .85rem;
  margin-top: .35rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

.footer__label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__links a {
  font-size: .92rem;
  color: rgba(255,255,255,.70);
  transition: color .15s;
}
.footer__links a:hover { color: var(--pink); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__contact > a {
  font-size: .92rem;
  color: rgba(255,255,255,.70);
  transition: color .15s;
  word-break: break-all;
}
.footer__contact > a:hover { color: var(--pink); }

.footer__social {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.60);
  transition: border-color .15s, color .15s;
}
.social-icon:hover { border-color: var(--pink); color: var(--pink); }
.social-icon svg { width: 16px; height: 16px; }

.footer__bottom {
  padding-top: 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.30);
  text-align: center;
}
.footer__bottom a { color: rgba(255,255,255,.45); }
.footer__bottom a:hover { color: var(--pink); }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 4rem 0 3rem; }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero__text { align-items: center; }
  .hero__headline .script { font-size: 2.5rem; }
  .hero__headline .serif  { font-size: 4rem; }
  .hero__visual { min-height: 260px; }
  .hero__visual .polaroid__img { width: 200px; height: 250px; }
  .hero__dot-1 { font-size: 2rem; top: 5%; right: 5%; }
  .hero__dot-2 { font-size: 1.6rem; bottom: 10%; left: 2%; }
  .hero__dot-3 { font-size: 1.8rem; top: 50%; right: 1%; }

  /* About */
  .about { padding: 5rem 0; }
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__images {
    justify-content: center;
    min-height: 220px;
    padding: 1rem;
  }
  /* Shrink polaroids so two fit side-by-side on a phone */
  .about__images .polaroid__img {
    width: 140px;
    height: 168px;
  }
  .about__images .polaroid--offset {
    margin-top: -28px;
    margin-left: 28px;
  }

  /* Services */
  .services { padding: 4rem 0 5rem; }
  .services__grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials { padding: 4rem 0 5rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card--accent { margin-top: 0; }

  /* CTA banner */
  .cta-banner { padding: 4rem 0; }
  .cta-banner__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-banner__script { font-size: 2.5rem; }
  .cta-banner__headline { font-size: 2rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero__headline .serif { font-size: 3rem; }
  .hero__headline .script { font-size: 2rem; }
  .section-label { font-size: 1.9rem; }

  /* About: tighten further on very small phones */
  .about__images .polaroid__img {
    width: 120px;
    height: 144px;
  }
  .about__images .polaroid--offset {
    margin-top: -22px;
    margin-left: 22px;
  }

  /* Reduce section padding */
  .about { padding: 3.5rem 0; }
  .services { padding: 3rem 0 4rem; }
  .testimonials { padding: 3rem 0 4rem; }
  .cta-banner { padding: 3rem 0; }
  .video-reel { padding: 3.5rem 0 4.5rem; }
}

/* ─── Cookie notice ─── */
.cookie-bar {
  display: none; /* shown by JS only when not previously dismissed */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--dark);
  color: rgba(255,255,255,.85);
  font-family: var(--font-sans);
  font-size: .85rem;
  line-height: 1.5;
  padding: .9rem 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  animation: bannerSlideUp .3s ease;
}
.cookie-bar a {
  color: var(--pink-lt);
  text-decoration: underline;
  white-space: nowrap;
}
.cookie-bar a:hover { color: #fff; }
.cookie-bar__dismiss {
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .35rem 1rem;
  font-size: .82rem;
  font-family: var(--font-sans);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.cookie-bar__dismiss:hover { background: var(--pink-dk); }

@media (max-width: 540px) {
  .cookie-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1.25rem 1.25rem;
    gap: .75rem;
  }
  .cookie-bar p { font-size: .8rem; }
  .cookie-bar__dismiss { width: 100%; padding: .55rem 1rem; }
}

@keyframes bannerSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* ─── Form status banner ─── */
.form-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .9rem 1.5rem;
  font-size: .95rem;
  font-family: var(--sans);
  text-align: center;
  animation: bannerSlideDown .3s ease;
}
.form-banner--success {
  background: #d4edda;
  color: #1a5c2a;
  border-bottom: 1px solid #b8dfc4;
}
.form-banner--error {
  background: #fdecea;
  color: #7b1c1c;
  border-bottom: 1px solid #f5c2c2;
}
.form-banner a { color: inherit; font-weight: 500; }
.form-banner__close {
  background: none;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: .6;
  padding: 0 .25rem;
  flex-shrink: 0;
}
.form-banner__close:hover { opacity: 1; }
@keyframes bannerSlideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
