/* ================================================
   LERA events & marketing — style.css
   Brand: #040F0F · #FFFFFF · #E90769 · #5106C9
   Fonts: DM Serif Display (H1/H2) · DM Sans (UI)
   ================================================ */

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

/* --- Tokens --------------------------------------- */
:root {
  --black:   #040F0F;
  --white:   #FFFFFF;
  --pink:    #E90769;
  --purple:  #5106C9;
  --grad:    linear-gradient(to right, #5106C9, #E90769);

  --text-on-dark:  #FFFFFF;
  --text-on-light: #040F0F;
  --muted-dark:    rgba(255,255,255,0.55);
  --muted-light:   rgba(4,15,15,0.55);

  --border-dark:  rgba(255,255,255,0.12);
  --border-light: rgba(4,15,15,0.12);

  --radius-btn:  2px;
  --radius-card: 4px;

  --max-w: 1100px;
  --pad-h: 24px;
  --sec-v: 96px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.28s;
}

/* --- Base ----------------------------------------- */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  background: var(--black);
  color: var(--text-on-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
address { font-style: normal; }

/* --- Container ------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* --- Section backgrounds -------------------------- */
.section--dark  { background: var(--black); color: var(--text-on-dark); }
.section--white { background: var(--white); color: var(--text-on-light); }
.section--border-top { border-top: 1px solid var(--border-dark); }

/* --- Typography ----------------------------------- */
.section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.section-title {            /* on white bg */
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-on-light);
  margin-bottom: 24px;
}

.section-title--white {     /* on dark bg */
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  margin-bottom: 24px;
}

.section-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted-light);
  max-width: 620px;
  margin-bottom: 20px;
}

.section-body--white {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted-dark);
  max-width: 620px;
  margin-bottom: 20px;
}

/* --- Gradient accent line (2px) ------------------- */
.hero__gradient-line,
.footer__grad-line {
  height: 2px;
  background: var(--grad);
  width: 100%;
}

/* --- Buttons -------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background var(--t) var(--ease),
              color var(--t) var(--ease),
              border-color var(--t) var(--ease);
}

/* White fill, black text (on dark bg) */
.btn--white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--grad);
  border-color: transparent;
  color: var(--white);
}

/* Outlined white (on dark bg) */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--grad);
  border-color: transparent;
}

/* Dark fill, white text (on white bg) */
.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--grad);
  border-color: transparent;
}

/* Gradient fill */
.btn--gradient {
  background: var(--grad);
  color: var(--white);
  border-color: transparent;
}
.btn--gradient:hover { opacity: 0.88; }

.btn--full { width: 100%; justify-content: center; }

/* Text links */
.text-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--pink);
  transition: opacity var(--t) var(--ease);
}
.text-link:hover { opacity: 0.75; }

.inline-link {
  color: var(--pink);
  font-weight: 500;
  transition: opacity var(--t) var(--ease);
}
.inline-link:hover { opacity: 0.75; }

/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* White nav variant */
.nav--light {
  background: var(--white);
  border-bottom: 1px solid rgba(4,15,15,0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  height: 64px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
}
.nav__wordmark--dark { color: var(--black); }

.nav__wordmark-main {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
}

.nav__wordmark-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: 0.65;
  margin-top: 3px;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--t) var(--ease);
}
.nav__links a:hover { color: var(--white); }

/* Dark links for white nav */
.nav__links--dark a { color: rgba(4,15,15,0.6); }
.nav__links--dark a:hover { color: var(--black); }

/* Contact pill button — always gradient fill */
.nav__contact-btn {
  padding: 7px 20px;
  border-radius: 100px;
  background: var(--grad) !important;
  border: none !important;
  color: var(--white) !important;
  transition: opacity var(--t) var(--ease) !important;
}
.nav__contact-btn:hover { opacity: 0.85; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.nav__burger--dark span { background: var(--black); }

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--black);
  z-index: 199;
  padding: 48px var(--pad-h);
  flex-direction: column;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 28px; }
.nav__mobile a {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--white);
}
.nav__mobile a:hover { color: var(--pink); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 64px; /* nav height */
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,15,15,0.82);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  flex: 1;
  padding-top: var(--sec-v);
  padding-bottom: var(--sec-v);
}

.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* hero__text max width for single-column layout */
.hero__text { max-width: 680px; }

/* Bottom gradient line */
.hero__gradient-line {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* ================================================
   EXPERIENCE
   ================================================ */
.experience {
  padding: var(--sec-v) 0;
}

/* Two-column: text left, photo right */
.exp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}

.exp__photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-card);
  overflow: hidden;
  max-height: 540px;
}

.exp__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.exp__stat {
  padding: 28px 24px;
  border-right: 1px solid var(--border-light);
}
.exp__stat:last-child { border-right: none; }

.exp__stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 8px;
}

.exp__stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.4;
}

/* ================================================
   SERVICES
   ================================================ */
.services {
  padding: var(--sec-v) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 40px;
}

.services__cta {
  margin-top: 40px;
}

/* ================================================
   FOR EVENT PROFESSIONALS
   ================================================ */
.professionals {
  padding: var(--sec-v) 0;
}

.prof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* ================================================
   CARDS (shared)
   ================================================ */
.card--dark {
  background: var(--black);
}

.card--dark:hover {
  background: rgba(255,255,255,0.03);
}

.card--light {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.card__img {
  height: 220px;
  overflow: hidden;
}

.card__img img {
  transition: transform 0.5s var(--ease);
}

.card--dark:hover .card__img img,
.card--light:hover .card__img img {
  transform: scale(1.04);
}

.card__body {
  padding: 24px;
}

.card__body--full {
  padding: 28px 24px 32px;
}

.card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}

.card__title--dark { color: var(--text-on-light); }

.card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-dark);
  margin-bottom: 16px;
}

.card__text--dark { color: var(--muted-light); }

.card__price {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 4px;
}

.card__location {
  font-size: 13px;
  color: var(--muted-light);
  margin-bottom: 12px;
}

/* Project stats row */
.card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 14px;
}
.card__stats li {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-on-light);
  list-style: none;
}
.card__stats li + li::before {
  content: '·';
  margin-right: 16px;
  color: var(--muted-light);
}

.card__nda {
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 8px;
}

/* Tag pill */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(233,7,105,0.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ================================================
   REACH
   ================================================ */
.reach {
  padding: var(--sec-v) 0;
}

.reach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.reach__content {
  display: flex;
  flex-direction: column;
}

.reach__region {
  margin-top: 36px;
}

.reach__region-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 14px;
}

.reach__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reach__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.reach__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 5px;
}
.reach__dot--muted { background: rgba(255,255,255,0.3); }

/* Left column: map + Europe list */
.reach__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.reach__map {
  border-radius: var(--radius-card);
  overflow: hidden;
}
.reach__map img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.reach__region--beyond {
  margin-top: auto;
  padding-top: 32px;
}

/* ================================================
   PROJECTS
   ================================================ */
.projects {
  padding: var(--sec-v) 0;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

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

/* ================================================
   ABOUT
   ================================================ */
.about {
  padding: var(--sec-v) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

.about__highlights {
  margin: 36px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-on-light);
  line-height: 1.5;
}

.highlight__icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--grad);
  border-radius: 50%;
  margin-top: 2px;
  position: relative;
}
.highlight__icon::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: var(--white);
  border-radius: 50%;
}

/* About photos */
.about__photos {
  border-radius: var(--radius-card);
  overflow: hidden;
  max-height: 580px;
}

.about__photos--single {
  display: block;
}

.about__photo-main {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 100%;
}

.about__photo-main img {
  height: 100%;
  transition: transform 0.5s var(--ease);
}
.about__photo-main:hover img { transform: scale(1.03); }

/* Community */
.community {
  border-top: 1px solid var(--border-light);
  padding-top: 48px;
}
.community__inner { max-width: 640px; }
.community__text {
  font-size: 16px;
  color: var(--muted-light);
  line-height: 1.75;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery {
  padding: var(--sec-v) 0;
}

.gallery__cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 64px;
  margin-bottom: 20px;
}
.gallery__cat:first-of-type { margin-top: 40px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 2px;
}

/* 4-column grid for behind-the-scenes */
.gallery__grid--4 {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
}

.gallery__item {
  overflow: hidden;
  position: relative;
  margin: 0;
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--wide-4 { grid-column: span 2; }

.gallery__item img {
  transition: transform 0.5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }

/* ================================================
   CONTACT
   ================================================ */
.contact__hero {
  background: var(--black);
  padding: var(--sec-v) 0 64px;
  border-bottom: 2px solid;
  border-image: var(--grad) 1;
}

.contact__body {
  padding: var(--sec-v) 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--black);
  outline: none;
  resize: vertical;
  transition: border-color var(--t) var(--ease);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(4,15,15,0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }

.form__availability {
  font-size: 13px;
  color: var(--muted-light);
  margin-top: 4px;
}

/* Contact details */
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  max-height: 340px;
}

.contact__info {}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.contact__list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.contact__list a,
.contact__list address {
  font-size: 15px;
  color: var(--text-on-light);
  transition: color var(--t) var(--ease);
}
.contact__list a:hover { color: var(--pink); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: 72px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__icon { width: 40px; height: 40px; object-fit: contain; }
.footer__logo span {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--white);
}
.footer__logo em {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted-dark);
}

.footer__brand p {
  font-size: 14px;
  color: var(--muted-dark);
  max-width: 280px;
  line-height: 1.65;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  font-size: 14px;
  color: var(--muted-dark);
  transition: color var(--t) var(--ease);
}
.footer__nav a:hover { color: var(--white); }

.footer__contact-quick {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact-quick a,
.footer__contact-quick address {
  font-size: 14px;
  color: var(--muted-dark);
  transition: color var(--t) var(--ease);
}
.footer__contact-quick a:hover { color: var(--pink); }

.footer__bottom {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__bottom p {
  font-size: 13px;
  color: var(--muted-dark);
  padding-bottom: 8px;
}

.footer__legal {
  display: flex;
  gap: 24px;
  padding-bottom: 16px;
}
.footer__legal a {
  font-size: 13px;
  color: var(--muted-dark);
  transition: color var(--t) var(--ease);
}
.footer__legal a:hover { color: var(--pink); }

/* ================================================
   RESPONSIVE — Tablet (≤ 960px)
   ================================================ */
@media (max-width: 960px) {
  :root { --sec-v: 80px; }

  .exp__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .exp__photo { max-height: 380px; aspect-ratio: 4/3; }

  .exp__stats { grid-template-columns: repeat(2, 1fr); }
  .exp__stat { border-bottom: 1px solid var(--border-light); }
  .exp__stat:nth-child(2n) { border-right: none; }

  .services__grid { grid-template-columns: 1fr; }
  .prof__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .projects__grid--2col { grid-template-columns: 1fr 1fr; }

  .reach__inner { grid-template-columns: 1fr; gap: 48px; }

  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__photos { max-height: 360px; }

  .contact__inner { grid-template-columns: 1fr; gap: 56px; }
  .contact__portrait { max-height: 240px; aspect-ratio: 16/9; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer__brand { grid-column: span 2; }
}

/* ================================================
   RESPONSIVE — Mobile (≤ 640px)
   ================================================ */
@media (max-width: 640px) {
  :root { --sec-v: 64px; --pad-h: 20px; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .exp__inner { grid-template-columns: 1fr; }
  .exp__photo { max-height: 300px; aspect-ratio: 16/9; }

  .hero__title { font-size: 36px; }
  .hero__sub { font-size: 16px; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; }

  .section-title,
  .section-title--white { font-size: 28px; }

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

  .services__grid { grid-template-columns: 1fr; }
  .card__img { height: 180px; }

  .projects__grid { grid-template-columns: 1fr; }
  .projects__grid--2col { grid-template-columns: 1fr; }

  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__grid--4 { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide-4 { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }

  .about__photos { max-height: 300px; }
}

/* ================================================
   FOCUS / ACCESSIBILITY
   ================================================ */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 2px;
}
