/* ============================================================
   KLEVER MEDIA — styles.css
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --blue:       #3d71bd;
  --blue-dark:  #2f5a9a;
  --teal:       #3dbdad;
  --teal-dark:  #2fa396;
  --grey-bg:    #e3e3e1;
  --grey-light: #f4f4f2;
  --text:       #555555;
  --text-light: #888888;
  --white:      #ffffff;
  --border:     #dededc;

  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:      72px;
  --radius:     6px;
  --transition: 0.2s ease;
  --shadow:     0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.10);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--blue-dark); }

ul { list-style: none; }

/* --- Container -------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }

p { max-width: 65ch; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav__logo:hover { color: var(--text); }

.logo-chevron { flex-shrink: 0; }

.logo-text {
  color: var(--text);
  line-height: 1.15;
}
.logo-text span { display: block; }

/* Nav menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--blue);
  background: rgba(61, 113, 189, 0.07);
}

.nav__link--cta {
  background: var(--blue);
  color: var(--white) !important;
  margin-left: 8px;
}
.nav__link--cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 96px 0;
}
.section--grey {
  background: var(--grey-light);
}
.section--dark {
  background: var(--text);
  color: var(--white);
}

.section__heading {
  margin-bottom: 16px;
}
.section__subheading {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 55ch;
}
.section__cta {
  margin-top: 48px;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 90px 0 130px;
  background: linear-gradient(135deg, #2a56a0 0%, #3d71bd 45%, #3dbdad 100%);
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

/* Blob decorations */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__blob--1 {
  width: 480px;
  height: 480px;
  top: -140px;
  right: 60px;
  background: rgba(255,255,255,0.07);
}
.hero__blob--2 {
  width: 260px;
  height: 260px;
  top: 80px;
  right: 390px;
  background: rgba(255,255,255,0.05);
}
.hero__blob--3 {
  width: 320px;
  height: 320px;
  bottom: 30px;
  left: -90px;
  background: rgba(255,255,255,0.04);
}

/* Wave divider */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}
.hero__wave svg { display: block; width: 100%; height: 90px; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content { max-width: 600px; }

.hero__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero__heading,
.hero h1,
.hero h2 {
  margin-bottom: 24px;
  color: var(--white) !important;
}

.hero__body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 55ch;
  line-height: 1.75;
}

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

/* White button variants (for use on dark/gradient backgrounds) */
.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn--white:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  color: var(--white);
  transform: translateY(-1px);
}

/* Hero image column — squircle shape */
.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 42% 58% 55% 45% / 45% 42% 58% 55%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

.hero__img-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.1);
  border-radius: 42% 58% 55% 45% / 45% 42% 58% 55%;
  border: 2px dashed rgba(255,255,255,0.3);
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 32px;
}
.hero__img-placeholder code {
  font-size: 0.8rem;
  background: rgba(255,255,255,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(61, 113, 189, 0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.service-card__icon svg { width: 20px; height: 20px; }

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card__link::after {
  content: '→';
  transition: transform var(--transition);
}
.service-card__link:hover::after { transform: translateX(4px); }

/* ============================================================
   SERVICES PAGE — Full Detail
   ============================================================ */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail__inner {
  direction: rtl;
}
.service-detail:nth-child(even) .service-detail__inner > * {
  direction: ltr;
}

.service-detail__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.service-detail h2 { margin-bottom: 16px; }

.service-detail p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail__visual {
  background: var(--grey-light);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-detail__visual svg {
  width: 80px;
  height: 80px;
  color: var(--blue);
  opacity: 0.25;
}

.detail-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-list li {
  font-size: 0.95rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}
.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* Services hero */
.page-hero {
  padding: 80px 0 64px;
  background: var(--grey-light);
  border-bottom: 1px solid var(--border);
}
.page-hero__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 58ch;
  line-height: 1.7;
}

/* ============================================================
   WORK GRID
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.work-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--grey-light);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(61,113,189,0.08) 0%, rgba(61,189,173,0.08) 100%);
}
.work-card__thumb-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.2;
  color: var(--blue);
}

.work-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.work-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}

.work-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.work-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.work-card__link::after {
  content: '→';
  transition: transform var(--transition);
}
.work-card__link:hover::after { transform: translateX(4px); }

/* Empty state */
.work-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: var(--text-light);
}
.work-empty p { margin: 0 auto; }

/* ============================================================
   INDIVIDUAL WORK POST
   ============================================================ */
.post-header {
  padding: 72px 0 56px;
  background: var(--grey-light);
  border-bottom: 1px solid var(--border);
}
.post-header__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.post-header__back:hover { color: var(--blue); }
.post-header__back::before { content: '←'; }

.post-header__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.post-header h1 { margin-bottom: 16px; }
.post-header__meta {
  font-size: 0.88rem;
  color: var(--text-light);
}

.post-hero-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 10px;
  margin: 48px 0;
  display: block;
}

.post-body {
  padding: 64px 0 96px;
}
.post-body__inner {
  max-width: 720px;
}
.post-body h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
}
.post-body h3 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
}
.post-body p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 65ch;
}
.post-body ul, .post-body ol {
  margin: 0 0 20px 20px;
  color: var(--text-light);
  line-height: 1.75;
}
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 8px; }

.post-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin: 48px 0;
  padding: 40px;
  background: var(--grey-light);
  border-radius: 10px;
}
.post-result__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.post-result__label {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: linear-gradient(135deg, #2a56a0 0%, #3d71bd 45%, #3dbdad 100%);
  position: relative;
  overflow: hidden;
}

/* Blobs */
.contact__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact__blob--1 {
  width: 400px; height: 400px;
  top: -120px; left: -80px;
  background: rgba(255,255,255,0.06);
}
.contact__blob--2 {
  width: 280px; height: 280px;
  bottom: -80px; right: 80px;
  background: rgba(255,255,255,0.05);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left copy */
.contact__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.contact h2,
.contact__inner h2 {
  color: var(--white) !important;
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.contact__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 42ch;
}

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.contact__email:hover { color: var(--white); }
.contact__email svg { opacity: 0.7; }

/* Form */
.contact__form {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 36px;
  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: 7px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.18);
}

.contact__form .btn--white {
  align-self: flex-start;
  margin-top: 4px;
}

/* Simple CTA variant — used on sub-pages (no form, centred) */
.contact--cta .contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.contact--cta h2,
.contact--cta .section__heading {
  color: var(--white);
}
.contact--cta .contact__body {
  max-width: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #252525;
  padding: 48px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.footer__logo .logo-text { color: rgba(255,255,255,0.8); }

.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  max-width: none;
  white-space: nowrap;
}

/* ============================================================
   About strip
   ============================================================ */
.about-strip {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Soft background blob */
.about-strip::before {
  content: '';
  position: absolute;
  width: 640px;
  height: 560px;
  right: -120px;
  top: -80px;
  background: rgba(61,189,173,0.07);
  border-radius: 58% 42% 48% 52% / 52% 60% 40% 48%;
  pointer-events: none;
  z-index: 0;
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-strip h2 { margin-bottom: 20px; }
.about-strip p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-strip .btn { margin-top: 8px; }

/* About image */
.about-strip__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 55% 45% 42% 58% / 48% 55% 45% 52%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 56px rgba(61,113,189,0.15);
}

.about-img-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(61,113,189,0.06) 0%, rgba(61,189,173,0.08) 100%);
  border-radius: 55% 45% 42% 58% / 48% 55% 45% 52%;
  border: 2px dashed var(--border);
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 32px;
}
.about-img-placeholder code {
  font-size: 0.8rem;
  background: rgba(0,0,0,0.05);
  padding: 2px 6px;
  border-radius: 4px;
}

.faq { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text);
}
.faq__a {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 55ch;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav__menu.open { display: flex; }
  .nav__menu li { width: 100%; }
  .nav__link {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }
  .nav__link--cta { text-align: center; margin-left: 0; margin-top: 8px; }

  .hero { padding: 56px 0 100px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .hero__blob--1 { width: 280px; height: 280px; top: -80px; right: -40px; }
  .hero__blob--2 { display: none; }
  .hero__blob--3 { width: 200px; height: 200px; }
  .section { padding: 64px 0; }

  .service-detail__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr !important;
  }
  .service-detail:nth-child(even) .service-detail__inner > * { direction: ltr; }
  .service-detail__visual { display: none; }

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

  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 20px; }
  .footer__copy { white-space: normal; }

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

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

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .post-results { grid-template-columns: 1fr; }
}
