:root {
  --ivc-wine: #6f1d32;
  --ivc-wine-dark: #3f111d;
  --ivc-nude: #d7b9a3;
  --ivc-beige: #f3ebe3;
  --ivc-paper: #fffaf5;
  --ivc-ink: #242020;
  --ivc-muted: #6d6260;
  --ivc-line: rgba(111, 29, 50, 0.16);
  --ivc-shadow: 0 24px 70px rgba(36, 32, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ivc-page {
  margin: 0;
  color: var(--ivc-ink);
  background: var(--ivc-paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.ivc-page a {
  color: inherit;
  text-decoration: none;
}

.ivc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  transition: background 0.28s ease, padding 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.ivc-header.is-scrolled,
.ivc-header.is-open {
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--ivc-ink);
  background: rgba(255, 250, 245, 0.94);
  box-shadow: 0 14px 45px rgba(36, 32, 32, 0.08);
  backdrop-filter: blur(18px);
}

.ivc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.ivc-brand img {
  width: 68px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
}

.ivc-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 0.86rem;
  font-weight: 600;
}

.ivc-nav-logo {
  display: none;
}

.ivc-nav a {
  position: relative;
}

.ivc-nav a:not(.ivc-nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.22s ease;
}

.ivc-nav a:hover::after {
  width: 100%;
}

.ivc-nav-cta,
.ivc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.ivc-nav-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--ivc-wine);
}

.ivc-btn {
  padding: 0 24px;
  border: 1px solid transparent;
}

.ivc-btn:hover,
.ivc-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(111, 29, 50, 0.22);
}

.ivc-btn-primary {
  color: #fff;
  background: var(--ivc-wine);
}

.ivc-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

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

.ivc-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(111, 29, 50, 0.12);
}

.ivc-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.ivc-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 160px clamp(20px, 7vw, 96px) 70px;
  color: #fff;
  overflow: hidden;
  background-image: linear-gradient(105deg, rgba(24, 18, 18, 0.82), rgba(63, 17, 29, 0.58), rgba(24, 18, 18, 0.26)), var(--ivc-hero-image);
  background-size: cover;
  background-position: center;
}

.ivc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.16;
  pointer-events: none;
}

.ivc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.ivc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivc-nude);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.ivc-eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.ivc-hero h1,
.ivc-section h2,
.ivc-final-cta h2 {
  margin: 16px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.ivc-hero h1 {
  max-width: 760px;
  font-size: clamp(70px, 7vw, 96px);
}

.ivc-hero p {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.ivc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ivc-hero-lines {
  position: absolute;
  inset: 18% 7% auto auto;
  z-index: 1;
  width: min(42vw, 540px);
  height: min(42vw, 540px);
  opacity: 0.78;
}

.ivc-hero-lines span {
  position: absolute;
  background: rgba(255, 255, 255, 0.56);
  transform-origin: left;
  animation: ivcDraw 2.4s ease both infinite alternate;
}

.ivc-hero-lines span:nth-child(1) { top: 10%; left: 5%; width: 80%; height: 1px; }
.ivc-hero-lines span:nth-child(2) { top: 10%; left: 5%; width: 1px; height: 64%; animation-delay: 0.2s; }
.ivc-hero-lines span:nth-child(3) { top: 72%; left: 5%; width: 52%; height: 1px; animation-delay: 0.4s; }
.ivc-hero-lines span:nth-child(4) { top: 28%; left: 58%; width: 1px; height: 44%; animation-delay: 0.6s; }

@keyframes ivcDraw {
  from { transform: scaleX(0); opacity: 0.1; }
  to { transform: scaleX(1); opacity: 1; }
}

.ivc-hero-note {
  position: absolute;
  right: clamp(20px, 6vw, 86px);
  bottom: 70px;
  z-index: 2;
  max-width: 320px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.ivc-hero-note span,
.ivc-timeline-item span {
  display: block;
  color: var(--ivc-nude);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
  line-height: 1;
}

.ivc-section {
  position: relative;
  padding: clamp(78px, 10vw, 130px) clamp(20px, 7vw, 96px);
}

.ivc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ivc-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ivc-line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.25;
  pointer-events: none;
}

.ivc-section-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 42px;
}

.ivc-section h2,
.ivc-final-cta h2 {
  color: var(--ivc-wine-dark);
  font-size: clamp(2.5rem, 5.6vw, 5.2rem);
}

.ivc-section-head p,
.ivc-about-copy p,
.ivc-final-cta p {
  color: var(--ivc-muted);
  font-size: 1.02rem;
}

.ivc-service-grid,
.ivc-project-grid,
.ivc-video-grid,
.ivc-testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.ivc-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ivc-service-card,
.ivc-testimonial-card {
  border: 1px solid rgba(111, 29, 50, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 38px rgba(36, 32, 32, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.ivc-service-card {
  position: relative;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
}

.ivc-service-card:hover,
.ivc-project-card:hover,
.ivc-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ivc-shadow);
  border-color: rgba(111, 29, 50, 0.24);
}

.ivc-service-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.ivc-service-card:hover .ivc-service-card-media {
  opacity: 0.14;
  transform: scale(1.05);
}

.ivc-service-card i {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 40px;
  border-radius: 16px;
  color: #fff;
  background: var(--ivc-wine);
  font-size: 1.45rem;
}

.ivc-service-card h3,
.ivc-project-card h3,
.ivc-timeline-item h3 {
  position: relative;
  margin: 0 0 10px;
  color: var(--ivc-wine-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.05;
}

.ivc-service-card p,
.ivc-timeline-item p,
.ivc-testimonial-card p {
  position: relative;
  margin: 0;
  color: var(--ivc-muted);
}

.ivc-projects,
.ivc-process,
.ivc-testimonials {
  background: var(--ivc-beige);
}

.ivc-project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.ivc-project-filters button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(111, 29, 50, 0.18);
  border-radius: 999px;
  color: var(--ivc-wine-dark);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.ivc-project-filters button.is-active {
  color: #fff;
  background: var(--ivc-wine);
}

.ivc-project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ivc-project-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ivc-ink);
  box-shadow: 0 18px 50px rgba(36, 32, 32, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.ivc-project-card.is-hidden {
  display: none;
}

.ivc-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.ivc-project-card:hover img {
  transform: scale(1.06);
  opacity: 0.64;
}

.ivc-project-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: rgba(36, 32, 32, 0.52);
  backdrop-filter: blur(14px);
}

.ivc-project-card span {
  color: var(--ivc-nude);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.ivc-project-card h3 {
  color: #fff;
}

.ivc-project-card button,
.ivc-project-card a {
  display: inline-flex;
  border: 0;
  padding: 0;
  color: var(--ivc-nude);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.ivc-section-action {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.ivc-about {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.ivc-about-media {
  position: relative;
  z-index: 1;
}

.ivc-about-media::before {
  content: "";
  position: absolute;
  inset: 28px -28px -28px 28px;
  border: 1px solid var(--ivc-wine);
  border-radius: 28px;
}

.ivc-about-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--ivc-shadow);
}

.ivc-about-copy {
  position: relative;
  z-index: 1;
}

.ivc-image-showcase {
  background: var(--ivc-paper);
}

.ivc-exhibitions {
  background: var(--ivc-beige);
}

.ivc-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 22px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.ivc-showcase-card {
  position: relative;
  display: block;
  height: clamp(340px, 34vw, 480px);
  overflow: hidden;
  border-radius: 28px;
  background: var(--ivc-ink);
  box-shadow: 0 18px 54px rgba(36, 32, 32, 0.11);
}

.ivc-showcase-card:first-child {
  height: clamp(420px, 42vw, 560px);
}

.ivc-showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.ivc-showcase-card:hover img {
  transform: scale(1.05);
  opacity: 0.68;
}

.ivc-showcase-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #fff;
  background: rgba(36, 32, 32, 0.56);
  backdrop-filter: blur(16px);
}

.ivc-showcase-card span {
  color: var(--ivc-nude);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 800;
}

.ivc-showcase-card h3 {
  margin: 8px 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.ivc-showcase-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.ivc-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.ivc-stats strong {
  padding: 18px;
  border: 1px solid rgba(111, 29, 50, 0.13);
  border-radius: 18px;
  background: #fff;
  color: var(--ivc-muted);
  font-size: 0.84rem;
}

.ivc-stats span {
  display: block;
  color: var(--ivc-wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  line-height: 1;
}

.ivc-timeline {
  --ivc-timeline-progress: 0%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding-top: 56px;
}

.ivc-timeline::before,
.ivc-timeline::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  height: 2px;
  border-radius: 999px;
}

.ivc-timeline::before {
  width: 100%;
  background: rgba(111, 29, 50, 0.16);
}

.ivc-timeline::after {
  width: var(--ivc-timeline-progress);
  background: var(--ivc-wine);
  transition: width 0.12s linear;
}

.ivc-timeline-item {
  position: relative;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 34px rgba(36, 32, 32, 0.06);
}

.ivc-timeline-item::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 24px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--ivc-wine);
  border-radius: 50%;
  background: var(--ivc-paper);
}

.ivc-video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ivc-video-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(63, 17, 29, 0.08), rgba(63, 17, 29, 0.86)),
    linear-gradient(135deg, #7a3444, #201b1b);
}

.ivc-video-card--embed {
  min-height: auto;
  aspect-ratio: 9 / 16;
  padding: 0;
  background: #1f1b1b;
}

.ivc-video-card::before {
  content: "VIDEO";
  position: absolute;
  top: 30px;
  right: -36px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 5.2rem;
  font-weight: 800;
  transform: rotate(90deg);
}

.ivc-video-card--embed::before {
  display: none;
}

.ivc-video-card--embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ivc-video-card--embed span,
.ivc-video-card--embed strong {
  position: relative;
  z-index: 1;
  margin-left: 20px;
  margin-right: 20px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.ivc-video-card--embed span {
  margin-top: auto;
}

.ivc-video-card--embed strong {
  margin-bottom: 22px;
  padding-bottom: 0;
}

.ivc-video-card--embed::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(31, 27, 27, 0.78));
  pointer-events: none;
}

.ivc-video-card button,
.ivc-video-card > a {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  font-size: 2rem;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

.ivc-video-card button:hover,
.ivc-video-card > a:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--ivc-wine);
}

.ivc-video-card span {
  color: var(--ivc-nude);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.ivc-video-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.ivc-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ivc-testimonial-card {
  padding: 28px;
}

.ivc-testimonial-card p {
  margin-bottom: 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.12;
}

.ivc-testimonial-card strong,
.ivc-testimonial-card span {
  display: block;
}

.ivc-testimonial-card span {
  color: var(--ivc-muted);
  font-size: 0.88rem;
}

.ivc-final-cta {
  margin: clamp(50px, 7vw, 86px) clamp(20px, 7vw, 96px);
  padding: clamp(46px, 8vw, 92px);
  border-radius: 32px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(63, 17, 29, 0.96), rgba(111, 29, 50, 0.86)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  box-shadow: var(--ivc-shadow);
}

.ivc-final-cta h2 {
  max-width: 780px;
  color: #fff;
}

.ivc-final-cta p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
}

.ivc-final-cta .ivc-btn-primary {
  background: #fff;
  color: var(--ivc-wine-dark);
}

.ivc-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(20px, 7vw, 96px);
  color: rgba(255, 255, 255, 0.82);
  background: #1f1b1b;
}

.ivc-footer img {
  width: 96px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.ivc-footer nav,
.ivc-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ivc-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
}

.ivc-social-rail {
  position: fixed;
  left: 22px;
  top: 50%;
  z-index: 40;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.ivc-social-rail a,
.ivc-whatsapp-float {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: rgba(111, 29, 50, 0.88);
  box-shadow: 0 14px 34px rgba(36, 32, 32, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, background 0.22s ease;
}

.ivc-social-rail a:hover,
.ivc-whatsapp-float:hover {
  transform: translateY(-3px);
  background: var(--ivc-wine-dark);
}

.ivc-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  font-size: 1.6rem;
}

.ivc-mobile-cta-bar {
  display: none;
}

.ivc-gallery-page {
  background: var(--ivc-beige);
}

.ivc-gallery-hero {
  min-height: 72svh;
  padding: 150px clamp(20px, 7vw, 96px) 74px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(36, 32, 32, 0.92), rgba(111, 29, 50, 0.74)),
    linear-gradient(var(--ivc-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ivc-line) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.ivc-gallery-hero h1 {
  max-width: 980px;
  margin: 18px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  line-height: 0.96;
}

.ivc-gallery-hero p {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
}

.ivc-gallery-toolbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.ivc-gallery-toolbar h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

.ivc-gallery-grid {
  position: relative;
  z-index: 1;
  column-count: 4;
  column-gap: 18px;
}

.ivc-gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
}

.ivc-gallery-item.is-hidden {
  display: none;
}

.ivc-gallery-item button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 180px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background: var(--ivc-ink);
  box-shadow: 0 14px 38px rgba(36, 32, 32, 0.1);
  cursor: zoom-in;
}

.ivc-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.ivc-gallery-item button:hover img {
  transform: scale(1.04);
  opacity: 0.66;
}

.ivc-gallery-item span,
.ivc-gallery-item strong {
  position: absolute;
  left: 16px;
  right: 16px;
  z-index: 1;
  text-align: left;
}

.ivc-gallery-item span {
  bottom: 50px;
  color: var(--ivc-nude);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 800;
}

.ivc-gallery-item strong {
  bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.ivc-gallery-empty {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
}

.ivc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 16, 16, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.ivc-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ivc-lightbox figure {
  width: min(1120px, 94vw);
  max-height: 90vh;
  margin: 0;
}

.ivc-lightbox img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.ivc-lightbox figcaption {
  margin-top: 12px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.ivc-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--ivc-wine-dark);
  background: #fff;
  cursor: pointer;
}

.ivc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1180px) {
  .ivc-nav {
    gap: 14px;
    font-size: 0.8rem;
  }

  .ivc-service-grid,
  .ivc-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ivc-showcase-grid {
    grid-template-columns: 1fr;
  }

  .ivc-showcase-card,
  .ivc-showcase-card:first-child {
    height: clamp(340px, 62vw, 520px);
  }

  .ivc-timeline {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .ivc-timeline::before,
  .ivc-timeline::after,
  .ivc-timeline-item::before {
    display: none;
  }
}

@media (max-width: 900px) {
  body.ivc-page {
    padding-bottom: 86px;
  }

  .ivc-menu-toggle {
    display: block;
    color: inherit;
  }

  .ivc-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(111, 29, 50, 0.12);
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.98);
    color: var(--ivc-ink);
    box-shadow: var(--ivc-shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .ivc-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .ivc-nav-logo {
    display: block;
    position: absolute;
    left: 22px;
    top: 50%;
    width: 108px;
    height: auto;
    transform: translateY(-50%);
    opacity: 0.9;
  }

  .ivc-nav a {
    padding: 13px 12px;
  }

  .ivc-nav-cta {
    margin-top: 8px;
  }

  .ivc-hero {
    min-height: 92svh;
    padding-top: 130px;
  }

  .ivc-hero-note,
  .ivc-social-rail {
    display: none;
  }

  .ivc-whatsapp-float {
    display: none;
  }

  .ivc-mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(111, 29, 50, 0.12);
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.96);
    box-shadow: 0 18px 48px rgba(36, 32, 32, 0.18);
    backdrop-filter: blur(18px);
  }

  .ivc-mobile-cta-bar a {
    display: grid;
    place-items: center;
    gap: 3px;
    min-height: 54px;
    border-radius: 16px;
    color: var(--ivc-wine-dark);
    font-size: 1.16rem;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .ivc-mobile-cta-bar a:hover,
  .ivc-mobile-cta-bar a:focus-visible {
    color: #fff;
    background: var(--ivc-wine);
    transform: translateY(-2px);
  }

  .ivc-mobile-cta-bar span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.64rem;
    line-height: 1;
  }

  .ivc-about,
  .ivc-video-grid,
  .ivc-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .ivc-stats {
    grid-template-columns: 1fr;
  }

  .ivc-footer {
    grid-template-columns: 1fr;
  }

  .ivc-gallery-toolbar {
    grid-template-columns: 1fr;
  }

  .ivc-gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 620px) {
  .ivc-brand span {
    display: none;
  }

  .ivc-hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  .ivc-hero-actions,
  .ivc-final-cta .ivc-btn {
    width: 100%;
  }

  .ivc-btn {
    width: 100%;
  }

  .ivc-service-grid,
  .ivc-project-grid {
    grid-template-columns: 1fr;
  }

  .ivc-project-card {
    min-height: 390px;
  }

  .ivc-video-card {
    min-height: 440px;
  }

  .ivc-gallery-grid {
    column-count: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
