:root {
  --canvas: #ffffff;
  --canvas-soft: #f7f7f5;
  --canvas-warm: #f3f0ee;
  --lifted: #fcfbfa;
  --ink: #111111;
  --ink-soft: #252525;
  --charcoal: #3d4242;
  --body: #5f6868;
  --mute: #8b9292;
  --hairline: #e8e8e3;
  --accent: #6a7474;
  --accent-soft: #d9dddd;
  --accent-warm: #c9b8a8;
  --dark: #111111;
  --white: #ffffff;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --shadow-soft: rgba(0, 0, 0, 0.05) 0 8px 30px;
  --shadow-card: rgba(0, 0, 0, 0.06) 0 24px 60px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--canvas);
  color: var(--ink);
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Nav */
.nav-shell {
  position: sticky;
  top: 20px;
  z-index: 50;
  max-width: 1280px;
  margin: 20px auto 0;
  padding: 0 32px;
  transition: box-shadow 0.35s var(--ease-out), opacity 0.35s var(--ease-out), transform 0.4s var(--ease-out);
}

.nav-shell.is-hidden {
  transform: translateY(calc(-100% - 24px));
  opacity: 0;
  pointer-events: none;
}

.nav-shell.is-scrolled .nav {
  box-shadow: rgba(0, 0, 0, 0.08) 0 12px 40px;
}

.nav {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 28px 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: visible;
  transition: box-shadow 0.35s var(--ease-out), padding 0.35s var(--ease-out);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
  padding: 2px 4px 2px 2px;
  margin-right: 4px;
}

.logo-img {
  height: 28px;
  width: auto;
  max-width: none;
  display: block;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.3s ease, transform 0.35s var(--ease-out);
}

.logo:hover .logo-img {
  opacity: 0.9;
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.25s ease;
}

.nav-call svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-call:hover {
  transform: translateY(-2px);
  box-shadow: rgba(17, 17, 17, 0.25) 0 12px 28px;
}

.nav-call:active {
  transform: translateY(0) scale(0.98);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}

.menu-toggle.is-open {
  background: var(--ink);
  border-color: var(--ink);
}

.menu-toggle.is-open span {
  background: var(--white);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Buttons */
.btn {
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 14px 26px;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: rgba(17, 17, 17, 0.25) 0 12px 28px;
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-soft {
  background: var(--canvas-soft);
  color: var(--ink);
}

/* Hero */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 118px 32px 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-warm);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

.hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 650px;
  color: var(--ink);
}

.hero p {
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--body);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--body);
  font-size: 14px;
}

.hero-info span,
.hero-info a {
  background: var(--canvas-soft);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}

.hero-info span:hover,
.hero-info a:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.hero-media {
  position: relative;
  min-height: 580px;
  max-height: 680px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  animation: hero-ken-burns 14s ease-in-out infinite alternate;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.78) 0%,
    rgba(17, 17, 17, 0.2) 42%,
    transparent 68%
  );
  pointer-events: none;
}

.hero-photo-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 62%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.hero-media.is-loaded .hero-photo-shine {
  animation: hero-shine 2.6s var(--ease-out) 0.5s forwards;
}

@keyframes hero-ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes hero-shine {
  to { transform: translateX(120%); }
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  opacity: 0;
}

.hero-media.is-loaded .hero-badge {
  animation: hero-badge-in 0.85s var(--ease-out) 0.9s forwards;
}

@keyframes hero-badge-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.media-text {
  position: absolute;
  left: 40px;
  bottom: 42px;
  z-index: 2;
  color: white;
  max-width: 420px;
}

.media-text strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 10px;
}

.media-text span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

/* Sections */
section {
  padding: 96px 32px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--body);
  line-height: 1.6;
  font-size: 16px;
  max-width: 590px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-spring);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* About */
.about {
  background: var(--canvas-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: 32px;
  min-height: 330px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.about-card.dark {
  background: var(--dark);
  color: white;
}

.about-card h3 {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-card p {
  color: var(--body);
  line-height: 1.65;
}

.about-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.about-monica {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 28px;
  align-items: center;
  min-height: auto;
  padding: 28px;
}

.about-monica-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

.about-monica-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.6s var(--ease-out);
}

.about-monica:hover .about-monica-photo img {
  transform: scale(1.04);
}

.about-monica-copy h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}

.about-monica-copy p {
  font-size: 15px;
  line-height: 1.65;
}

.info-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.info-row {
  display: grid;
  grid-template-columns: 44px 92px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  color: white;
  transition: background 0.3s ease, transform 0.3s var(--ease-out), border-color 0.3s ease;
}

a.info-row:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateX(4px);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.info-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.info-value {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  line-height: 1.35;
  justify-self: end;
}

@media (max-width: 480px) {
  .info-row {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
  }

  .info-icon {
    grid-row: span 2;
    width: 40px;
    height: 40px;
  }

  .info-label {
    align-self: end;
  }

  .info-value {
    align-self: start;
    text-align: left;
    justify-self: start;
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service {
  background: var(--lifted);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--accent-soft);
}

.service.featured {
  background: var(--dark);
  color: white;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #d9dddd, transparent 40%),
    var(--canvas-warm);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-spring), background 0.3s ease;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
}

.service.featured .service-icon {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.5), transparent 40%),
    rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.service h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.service p {
  color: var(--body);
  line-height: 1.6;
  font-size: 15px;
}

.service.featured p {
  color: rgba(255, 255, 255, 0.72);
}

/* Orbit */
.orbit {
  background: var(--canvas-warm);
  position: relative;
  overflow: hidden;
  padding-bottom: 48px;
}

.orbit-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 36px;
  padding: 96px 0 72px;
  align-items: start;
}

.watermark {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: clamp(72px, 13vw, 150px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: rgba(61, 66, 66, 0.08);
  line-height: 0.86;
  pointer-events: none;
  transition: transform 0.1s linear;
  z-index: 0;
}

.orbit-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 140px;
  height: 280px;
  border: 1px solid var(--accent-warm);
  border-color: var(--accent-warm) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(-6deg);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: orbit-drift 12s ease-in-out infinite;
}

@keyframes orbit-drift {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-6deg) scale(1.02); }
}

.circle-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  z-index: 1;
}

.circle-card.two {
  margin-top: 56px;
}

.circle-img {
  width: 320px;
  height: 320px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--canvas-soft);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.circle-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.14);
  transition: transform 0.6s var(--ease-out);
}

.circle-card:hover .circle-img {
  transform: scale(1.04);
  box-shadow: rgba(0, 0, 0, 0.1) 0 32px 70px;
}

.circle-card:hover .circle-photo {
  transform: scale(1.2);
}

.satellite {
  position: absolute;
  right: 8px;
  bottom: 22px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: white;
  color: var(--ink);
  font-size: 24px;
  transform: translate(38%, 34%);
  box-shadow: rgba(0, 0, 0, 0.05) 0 10px 25px;
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring), background 0.25s ease, color 0.25s ease;
}

.satellite:hover {
  transform: translate(38%, 34%) scale(1.1);
  background: var(--ink);
  color: var(--white);
}

.circle-copy {
  margin-top: 24px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.circle-copy h3 {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 28ch;
  margin: 0 auto;
  color: var(--ink-soft);
}

/* Lavori / video */
.works {
  background: var(--white);
}

.works-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.works-feature {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 56px;
  align-items: center;
}

.works-feature--reverse {
  grid-template-columns: 1fr minmax(260px, 360px);
  margin-top: 24px;
}

.works-video {
  width: 100%;
  display: flex;
  justify-content: center;
}

.works-feature--reverse .works-video {
  justify-content: flex-end;
}

.works-video-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--canvas-soft);
  box-shadow: var(--shadow-card);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.works-video-wrap.is-active {
  transform: scale(1);
  box-shadow: rgba(0, 0, 0, 0.1) 0 32px 70px;
}

.works-video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  background:
    linear-gradient(to top, rgba(17, 17, 17, 0.55), rgba(17, 17, 17, 0.15)),
    linear-gradient(135deg, #ece7e2, #b7aaa0);
  transition: opacity 0.55s var(--ease-out), visibility 0.55s;
}

.works-video-player {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--dark);
  pointer-events: auto;
}

.works-video-wrap.is-active .works-video-placeholder {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.works-video-wrap.is-loading .works-play {
  animation: works-pulse 1.2s ease-in-out infinite;
}

@keyframes works-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

.works-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.15) 0 12px 32px;
}

.works-play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.works-video-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.works-copy h3 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 520px;
}

.works-copy p {
  color: var(--body);
  line-height: 1.7;
  font-size: 16px;
  max-width: 540px;
  margin-bottom: 18px;
}

.works-copy p:last-of-type {
  margin-bottom: 28px;
}

.works-instagram {
  margin-bottom: 16px;
}

.works-profile {
  display: inline-block;
  font-size: 14px;
  color: var(--body);
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.works-profile:hover {
  color: var(--ink);
}

/* Contact */
.contact {
  background: var(--canvas-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  background: var(--dark);
  color: white;
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-card h2 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 20px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-actions .btn-secondary {
  border-color: white;
  background: white;
  color: var(--ink);
}

.map-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 480px;
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.map-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.map-embed {
  position: relative;
  flex: 1 1 auto;
  min-height: 280px;
  background: var(--canvas-soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.map-info {
  padding: 24px 26px 26px;
  background: var(--white);
  border-top: 1px solid var(--hairline);
}

.map-logo {
  display: block;
  height: 32px;
  width: auto;
  margin-bottom: 18px;
  border-radius: 0;
  object-fit: contain;
}

.map-details {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.map-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: var(--canvas-soft);
  border: 1px solid transparent;
  color: inherit;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.map-row:hover {
  background: var(--lifted);
  border-color: var(--hairline);
  transform: translateX(3px);
}

.map-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.map-row-icon svg {
  width: 18px;
  height: 18px;
}

.map-row-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 3px;
}

.map-row-text strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

.map-cta {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 78px 32px 42px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 40px;
}

.footer-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
  margin-bottom: 16px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) brightness(5);
  opacity: 0.95;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 14px;
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

.footer a:hover {
  color: white;
  transform: translateX(3px);
}

.footer h4 {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: white;
  font-weight: 500;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-photo {
    animation: none;
  }

  .hero-photo-shine,
  .hero-badge {
    opacity: 1;
    transform: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* Tablet */
@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .nav-call {
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 0;
  }

  .nav-call-number {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 110px 28px calc(32px + env(safe-area-inset-bottom, 0px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.45s var(--ease-out), visibility 0.45s, transform 0.45s var(--ease-out);
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
  }

  .mobile-menu-links a {
    font-size: clamp(26px, 7vw, 32px);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    padding: 14px 20px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), color 0.25s ease;
  }

  .mobile-menu-links a:hover,
  .mobile-menu-links a.is-active {
    color: var(--ink);
  }

  .mobile-menu.is-open .mobile-menu-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu.is-open .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu.is-open .mobile-menu-links a:nth-child(2) { transition-delay: 0.16s; }
  .mobile-menu.is-open .mobile-menu-links a:nth-child(3) { transition-delay: 0.22s; }
  .mobile-menu.is-open .mobile-menu-links a:nth-child(4) { transition-delay: 0.28s; }

  .mobile-menu-footer {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding-top: 8px;
  }

  .mobile-menu-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    background: var(--ink);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    overflow: hidden;
    box-shadow: rgba(17, 17, 17, 0.18) 0 16px 40px;
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.45s var(--ease-spring), box-shadow 0.35s var(--ease-out), opacity 0.45s var(--ease-out);
  }

  .mobile-menu.is-open .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.34s;
    animation: menu-cta-glow 2.8s ease-in-out 0.7s infinite;
  }

  .mobile-menu-cta-label {
    position: relative;
    z-index: 1;
  }

  .mobile-menu-cta-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: transform 0.4s var(--ease-spring), background 0.3s ease;
  }

  .mobile-menu-cta-icon svg {
    width: 14px;
    height: 14px;
    transition: transform 0.4s var(--ease-out);
  }

  .mobile-menu-cta-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      transparent 35%,
      rgba(255, 255, 255, 0.22) 50%,
      transparent 65%
    );
    transform: translateX(-120%);
    pointer-events: none;
  }

  .mobile-menu.is-open .mobile-menu-cta-shine {
    animation: menu-cta-shine 3.2s ease-in-out 1s infinite;
  }

  .mobile-menu-cta:active {
    transform: scale(0.98);
    box-shadow: rgba(17, 17, 17, 0.12) 0 8px 24px;
  }

  .mobile-menu-cta:active .mobile-menu-cta-icon {
    transform: scale(0.92);
  }

  .mobile-menu-cta:active .mobile-menu-cta-icon svg {
    transform: translateX(2px);
  }

  @keyframes menu-cta-shine {
    0%, 72%, 100% { transform: translateX(-120%); }
    88% { transform: translateX(120%); }
  }

  @keyframes menu-cta-glow {
    0%, 100% { box-shadow: rgba(17, 17, 17, 0.18) 0 16px 40px; }
    50% { box-shadow: rgba(17, 17, 17, 0.28) 0 20px 48px, rgba(201, 184, 168, 0.25) 0 0 0 1px; }
  }

  .logo {
    padding: 4px 6px 4px 4px;
    margin-right: 0;
  }

  .logo-img {
    height: 34px;
  }

  .nav-shell {
    position: sticky;
    top: calc(14px + env(safe-area-inset-top, 0px));
    width: 100%;
    margin: 14px auto 0;
    padding: 0 16px;
    max-width: none;
    box-sizing: border-box;
    transition: box-shadow 0.35s var(--ease-out);
  }

  .nav-shell.is-hidden {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-shell.is-scrolled .nav {
    box-shadow: rgba(0, 0, 0, 0.1) 0 8px 28px;
  }

  .nav {
    padding: 12px 14px 12px 18px;
    gap: 12px;
    overflow: hidden;
  }

  .hero-grid,
  .section-head,
  .about-grid,
  .services-grid,
  .contact-grid,
  .footer-grid,
  .container,
  .orbit-inner {
    min-width: 0;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(24px);
  }

  .reveal-left.is-visible,
  .reveal-right.is-visible {
    transform: translateY(0);
  }

  .info-row {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
  }

  .info-icon {
    grid-row: span 2;
    width: 40px;
    height: 40px;
  }

  .info-label {
    align-self: end;
    white-space: normal;
  }

  .info-value {
    align-self: start;
    text-align: left;
    justify-self: start;
    overflow-wrap: anywhere;
  }

  a.info-row:hover {
    transform: none;
  }

  .hero {
    padding: 92px 20px 64px;
  }

  .hero-grid,
  .section-head,
  .about-grid,
  .services-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 72px 20px;
  }

  .hero-media {
    min-height: 420px;
    max-height: 520px;
  }

  .hero-badge {
    top: 16px;
    right: 16px;
    font-size: 10px;
    padding: 8px 12px;
  }

  .media-text {
    left: 24px;
    bottom: 28px;
    right: 24px;
    max-width: none;
  }

  .orbit-inner {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 72px 0 48px;
  }

  .watermark,
  .orbit-line {
    display: none;
  }

  .circle-card.two {
    margin-top: 0;
  }

  .circle-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    text-align: center;
  }

  .circle-img {
    width: min(320px, calc(100vw - 48px));
    height: min(320px, calc(100vw - 48px));
  }

  .circle-copy h3 {
    max-width: 32ch;
    font-size: 20px;
  }

  .works-list {
    gap: 80px;
  }

  .works-feature,
  .works-feature--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 0;
  }

  .works-feature--reverse {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--hairline);
  }

  .works-video,
  .works-feature--reverse .works-video {
    justify-content: center;
  }

  .works-video-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .works-copy {
    text-align: center;
  }

  .works-copy h3,
  .works-copy p {
    max-width: none;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .footer {
    padding: 56px 20px 32px;
  }
}

/* Mobile small */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-info span,
  .hero-info a {
    width: 100%;
    text-align: center;
  }

  .about-card,
  .service {
    padding: 24px;
    min-height: auto;
  }

  .about-monica {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .about-monica-photo {
    max-width: 220px;
    margin: 0 auto;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }
}
