/* ============================================
   Joyful Painting — Luxury One-Page Site
   ============================================ */

:root {
  /* Bright, vivid, white-forward palette — pops of logo color */
  --gold: #ffc233;        /* vivid sunshine — used sparingly */
  --gold-soft: #ffd566;
  --gold-light: #fff0c2;
  --cream: #f7f9fc;       /* cool near-white */
  --cream-soft: #eef2f7;  /* cool pale */
  --coral: #ff6a57;       /* vivid coral */
  --coral-deep: #ff4a33;  /* punchy tomato */
  --coral-soft: #ff8a78;
  --sky: #3fa9f5;         /* vivid sky blue */
  --sky-soft: #b6e0fb;    /* bright pastel blue */
  --brown: #8a6d3b;       /* warm gold-brown accent */
  --charcoal: #1a1a1a;
  --ink: #111111;         /* near-black for sharp contrast */
  --mute: #6c6c6c;
  --line: rgba(17, 17, 17, 0.08);
  --paper: #ffffff;       /* pure white */
  --paper-2: #f6f9fc;     /* cool near-white */

  /* Type — Inter everywhere, weights carry the hierarchy */
  --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Shape */
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;
  --shadow-sm: 0 4px 18px rgba(104, 89, 65, 0.1);
  --shadow-md: 0 18px 44px rgba(104, 89, 65, 0.14);
  --shadow-lg: 0 32px 80px rgba(104, 89, 65, 0.18);

  /* Layout */
  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 60px);
}

/* ----------- Reset ----------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { opacity: .8; }
ul { margin: 0; padding: 0; list-style: none; }

/* ----------- Typography ----------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.025em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; color: #3a3a3a; }

.accent-script {
  font-family: var(--font-script);
  color: var(--coral);
  font-weight: 700;
  font-size: 1.25em;
  display: inline-block;
  transform: rotate(-3deg);
  padding: 0 .05em;
}

em {
  font-style: italic;
  color: var(--coral);
  font-family: var(--font-serif);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brown);
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(243, 119, 103, .2);
}

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--lg { padding: 18px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff;
  box-shadow: 0 12px 26px rgba(241, 89, 68, .32);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(241, 89, 68, .42);
  opacity: 1;
}

.btn--ghost {
  background: rgba(255, 255, 255, .7);
  color: var(--ink);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: #fff;
  transform: translateY(-2px);
  opacity: 1;
}

/* ----------- Nav ----------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo img {
  height: 48px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: .95rem;
}
.nav__links a { position: relative; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width .25s ease, left .25s ease;
}
.nav__links a:hover::after { width: 100%; left: 0; opacity: 1; }
.nav__cta { padding: 12px 22px; font-size: .9rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav__toggle span {
  width: 26px; height: 2px; background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 20px var(--pad) 28px;
  border-top: 1px solid var(--line);
}
.nav__mobile a { font-size: 1.05rem; font-weight: 500; }

/* ----------- Hero ----------- */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) var(--pad) clamp(70px, 10vw, 130px);
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 90% -5%, rgba(63, 169, 245, .22), transparent 60%),
    radial-gradient(800px 500px at 10% 110%, rgba(255, 106, 87, .18), transparent 60%),
    var(--paper);
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.brush-stroke {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.brush-stroke--yellow {
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 60%; right: 8%;
  opacity: .28;
}
.brush-stroke--coral {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  bottom: -100px; left: 5%;
  opacity: .55;
}
.brush-stroke--blue {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
  top: -80px; right: -120px;
  opacity: .6;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  grid-template-areas: "text slideshow";
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.hero__text { grid-area: text; }

.hero__title {
  margin-top: 14px;
  max-width: 14ch;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}
.hero__lede {
  max-width: 48ch;
  font-size: clamp(.98rem, 1.05vw, 1.08rem);
  color: #2a2a2a;
  margin-top: 18px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* Hero slideshow */
.hero__slideshow {
  grid-area: slideshow;
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--cream), var(--cream-soft));
  isolation: isolate;
}
.hero__slideshow::after {
  content: '';
  position: absolute;
  inset: -14px;
  border: 3px solid var(--coral);
  border-radius: calc(var(--radius-xl) + 14px);
  z-index: -1;
  transform: rotate(-2deg);
  pointer-events: none;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slideshow-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
  z-index: 2;
}

/* ----------- Marquee ----------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 6px solid var(--coral);
  border-bottom: 6px solid var(--sky);
}
.marquee__track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  padding-left: 36px;
}
.marquee__track .dot { color: var(--gold); font-size: .7em; }

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

/* ----------- Section header ----------- */
.section__header {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 70px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.section__title--left { text-align: left; }
.section__sub {
  color: var(--mute);
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0;
}

/* ----------- Services ----------- */
.services {
  padding: clamp(80px, 10vw, 130px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  padding: 34px 28px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--sky));
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream), var(--cream-soft));
  color: var(--coral-deep);
  margin-bottom: 22px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff;
  transform: rotate(-6deg);
}
.service-card__icon svg { width: 30px; height: 30px; }

.service-card h3 { margin-bottom: 10px; }
.service-card p {
  color: #555;
  font-size: .97rem;
  margin-bottom: 18px;
}
.service-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ----------- Work gallery ----------- */
.work {
  padding: clamp(80px, 10vw, 130px) var(--pad);
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(63, 169, 245, .16), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(255, 106, 87, .14), transparent 60%),
    #ffffff;
  position: relative;
}
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.gallery__item {
  margin: 0;
  grid-column: span 2;
  grid-row: span 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery__item--tall { grid-row: span 2; grid-column: span 2; }
.gallery__item--wide { grid-column: span 4; }
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.gallery__item:hover img {
  transform: scale(1.04);
}
.gallery__placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(63, 169, 245, .14) 0 18px,
      rgba(255, 106, 87, .14) 18px 36px
    ),
    linear-gradient(135deg, #fff, #fff);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
  color: var(--brown);
}
.gallery__placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 18px; right: 18px;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: .6;
}
.gallery__ph-badge {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-family: var(--font-serif);
  box-shadow: 0 6px 16px rgba(241, 89, 68, .35);
}
.gallery__ph-tag {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .75);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink);
}
.gallery__item figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  background: rgba(255, 255, 255, .9);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

/* ----------- About ----------- */
.about {
  padding: clamp(80px, 10vw, 130px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--cream), var(--cream-soft));
}
.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__photo-frame {
  position: absolute;
  inset: -14px;
  border: 3px solid var(--coral);
  border-radius: calc(var(--radius-xl) + 14px);
  z-index: -1;
  transform: rotate(-2deg);
}
.about__sticker {
  position: absolute;
  bottom: -22px; right: -18px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  transform: rotate(-4deg);
}

.about__copy .eyebrow { margin-bottom: 14px; }
.about__copy .section__title { margin-bottom: 20px; }
.about__copy p { font-size: 1.05rem; color: #333; }

.about__values {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.about__values li {
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about__values span { color: var(--coral); font-size: .7rem; }

/* ----------- CTA band ----------- */
.cta-band {
  padding: clamp(60px, 8vw, 100px) var(--pad);
  background:
    radial-gradient(600px 300px at 20% 30%, rgba(63, 169, 245, .38), transparent 60%),
    radial-gradient(500px 300px at 90% 80%, rgba(255, 106, 87, .38), transparent 60%),
    linear-gradient(135deg, var(--ink), #262626);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ----------- Contact ----------- */
.contact {
  padding: clamp(80px, 10vw, 130px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}
.contact__info .section__title { margin-top: 10px; margin-bottom: 20px; }
.contact__info p { color: var(--mute); max-width: 40ch; margin-bottom: 34px; }

.contact__list {
  display: grid;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.contact__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contact__list li:last-child { border-bottom: none; }
.contact__label {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 700;
}
.contact__list a, .contact__list span:last-child {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
}
.contact__list a:hover { color: var(--coral); opacity: 1; }

.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.contact__socials a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--ink);
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}
.contact__socials svg { width: 20px; height: 20px; }
.contact__socials a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  transform: translateY(-3px);
  opacity: 1;
}

/* Form */
.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 18px;
  position: relative;
}
.contact__form::before {
  content: '';
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--sky));
  border-radius: 0 0 4px 4px;
}
.contact__form h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 600;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(243, 119, 103, .15);
}
.contact__form textarea { resize: vertical; min-height: 100px; }
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact__note {
  text-align: center;
  font-size: .8rem;
  color: var(--mute);
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
}
.contact__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact__status {
  text-align: center;
  font-size: .9rem;
  margin: 0;
  min-height: 1.2em;
}
.contact__status.is-success { color: #1a7d3a; }
.contact__status.is-error { color: var(--coral-deep); }

/* ----------- Footer ----------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px var(--pad) 40px;
  text-align: center;
}
.footer__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__logo {
  height: 64px;
  filter: brightness(1.05);
  background: var(--paper);
  padding: 10px 22px;
  border-radius: 14px;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  margin: 0;
}
.footer__meta {
  display: flex;
  gap: 14px;
  font-size: .85rem;
  color: rgba(254, 241, 217, .6);
  flex-wrap: wrap;
  justify-content: center;
}

/* ----------- Decorative splatters ----------- */
.paint-splatter {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
  opacity: .4;
}
.paint-splatter--1 {
  width: 400px; height: 400px;
  background: var(--sky);
  top: 40%; right: -150px;
  opacity: .22;
}
.paint-splatter--2 {
  width: 300px; height: 300px;
  background: var(--coral);
  top: 80%; left: -100px;
  opacity: .22;
}
.paint-splatter--3 {
  width: 260px; height: 260px;
  background: var(--sky);
  top: 130%; right: 10%;
  opacity: .25;
}

/* ----------- Reveal anim ----------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ----------- Responsive ----------- */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav[data-open="true"] .nav__mobile { display: flex; }

  .hero__content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "slideshow";
  }
  .hero__slideshow {
    aspect-ratio: 3 / 2;
    max-width: 640px;
    margin: 10px auto 0;
    width: 100%;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .about__media {
    max-width: 340px;
    margin: 0 auto;
  }
  .about__sticker { right: 0; }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery__item,
  .gallery__item--tall,
  .gallery__item--wide { grid-column: span 1; grid-row: span 1; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 560px) {
  .contact__row { grid-template-columns: 1fr; }
  .contact__list li { grid-template-columns: 1fr; gap: 4px; }
  .about__values { grid-template-columns: 1fr; }
  .about__sticker { bottom: -16px; right: auto; left: 50%; transform: translateX(-50%) rotate(-4deg); }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .gallery__item, .gallery__item--tall, .gallery__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}

/* ----------- Lightbox ----------- */
.gallery__item img { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, .94);
  display: none;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 60px);
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox__frame {
  margin: 0;
  max-width: min(1400px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(92vh - 56px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  user-select: none;
}
.lightbox__caption {
  color: #fff;
  font-family: var(--font-serif);
  font-size: .95rem;
  letter-spacing: .06em;
  text-align: center;
  background: rgba(255, 255, 255, .08);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease;
  border: none;
  font-family: var(--font-sans);
}
.lightbox__close { top: 20px; right: 20px; font-size: 24px; }
.lightbox__prev { left: clamp(12px, 2vw, 28px); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(12px, 2vw, 28px); top: 50%; transform: translateY(-50%); }
.lightbox__close:hover { background: rgba(255, 255, 255, .26); transform: scale(1.06); }
.lightbox__prev:hover { background: rgba(255, 255, 255, .26); transform: translateY(-50%) scale(1.08); }
.lightbox__next:hover { background: rgba(255, 255, 255, .26); transform: translateY(-50%) scale(1.08); }

@media (max-width: 560px) {
  .lightbox__prev, .lightbox__next { width: 42px; height: 42px; font-size: 24px; }
  .lightbox__close { width: 42px; height: 42px; font-size: 20px; top: 14px; right: 14px; }
}
