:root {
  --bg: #ffffff;
  --bg-dark: #0a0a0a;
  --paper: #ffffff;
  --paper-strong: rgba(255, 255, 255, 0.98);
  --ink: #111111;
  --muted: #666666;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #ff3399; /* Vibrant Pink */
  --accent-soft: #fff0f6;
  --accent-alt: #6610f2;
  --gold: #d4af37;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: min(1280px, calc(100% - 3rem));
  --glass: rgba(255, 255, 255, 0.7);
  --glass-dark: rgba(10, 10, 10, 0.7);
  --blur: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 10px;
  border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.landing-page {
  background: var(--bg-dark);
  color: #ffffff;
}

body.collections-page {
  background:
    linear-gradient(180deg, #0f0f0f 0, #0f0f0f 170px, #f5f1eb 170px, #f5f1eb 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.fixed-bg {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ff49b2;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.about-copy h2,
.showcase-head h2,
.social-box h2,
.contact-copy h2,
.collection-hero h1,
.collection-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.5vw, 5.2rem);
  line-height: 0.92;
}

.section-heading p:last-child,
.about-copy p,
.intro-strip p,
.service-panel p,
.showcase-copy span,
.social-box p,
.contact-copy p,
.form-note,
.collection-card p,
.timeline-card p,
.pricing-card p,
.collection-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.landing-page .section-heading h2,
.landing-page .about-copy h2,
.landing-page .contact-copy h2 {
  color: #ffffff;
  font-weight: 700;
}

.landing-page .about-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(var(--blur));
  background: var(--glass);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s ease;
}

.landing-page .site-header {
  background: var(--glass-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.collections-page .site-header {
  background: rgba(15, 15, 15, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: white;
}

.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.brand-meta {
  display: flex;
  flex-direction: column;
}

.brand-meta strong {
  font-size: 1.08rem;
}

.brand-meta small {
  color: var(--muted);
}

body.collections-page .brand-meta small,
body.collections-page .collection-copy p,
body.collections-page .pricing-card p,
body.collections-page .timeline-card p {
  color: rgba(255, 255, 255, 0.72);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links a {
  font-weight: 600;
}

.floating-booking {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 18px 35px rgba(18, 140, 126, 0.28);
  animation: floatPulse 2.6s ease-in-out infinite;
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}

.whatsapp-icon svg {
  width: 32px;
  height: 32px;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  box-shadow: 0 18px 35px rgba(0, 114, 255, 0.28);
  animation: floatPulse 2.6s ease-in-out infinite;
  animation-delay: 1.3s;
}

@keyframes floatPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 18px 35px rgba(18, 140, 126, 0.24);
  }

  50% {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(18, 140, 126, 0.34);
  }

  100% {
    transform: translateY(0);
    box-shadow: 0 18px 35px rgba(18, 140, 126, 0.24);
  }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero-modern {
  padding: 2rem 0 4.5rem;
  background:
    radial-gradient(circle at top left, rgba(101, 37, 228, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
}

.landing-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  color: white;
}

.landing-page .brand-logo img {
  background: rgba(255, 255, 255, 0.12);
}

.landing-page .brand-meta small {
  color: rgba(255, 255, 255, 0.74);
}

.landing-page .nav-links a {
  color: white;
}

.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-slide-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide {
  flex: 0 0 100%;
  height: 100vh;
  position: relative;
  background-position: center;
  background-size: cover;
}

.hero-slide-inner {
  width: 100%;
  padding-bottom: 7rem;
  color: white;
}

.hero-slide-kicker {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slide h1 {
  max-width: 10ch;
  margin: 1rem 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-slide p {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions-left {
  justify-content: flex-start;
}

.hero-overlay-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-fullscreen {
    display: flex;
  }
  .hero-slide-track {
    width: 50%;
    order: 2;
  }
  .hero-overlay-content {
    position: relative;
    width: 50%;
    order: 1;
    background: var(--bg-dark);
    padding-left: 5%;
    display: flex;
    align-items: center;
  }
}

.hero-overlay-panel {
  max-width: 580px;
  padding: 3rem;
  border-radius: var(--radius-xl);
  background: var(--glass-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--blur));
  color: white;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .hero-overlay-panel {
    background: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
  }
}

.hero-overlay-label {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffbaa6;
}

.hero-overlay-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 0.95;
}

.hero-overlay-panel p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.hero-rating-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-rating-strip span,
.hero-rating-strip strong {
  font-size: 0.92rem;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border: 4px solid #2a0d76;
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.56) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.56) 1px, transparent 1px),
    linear-gradient(180deg, rgba(233, 220, 255, 0.96), rgba(245, 237, 255, 0.92));
  background-size: 144px 144px, 144px 144px, cover;
  min-height: 820px;
  box-shadow: var(--shadow);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 73, 178, 0.16), transparent 16%),
    radial-gradient(circle at 18% 80%, rgba(90, 25, 216, 0.14), transparent 18%);
  pointer-events: none;
}

.hero-nav-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(42, 13, 118, 0.14);
  font-weight: 800;
  font-size: 1.02rem;
  color: #2a0d76;
}

.hero-mini-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-center {
  text-align: center;
  padding: 2.4rem 1.25rem 0;
}

.hero-headline {
  max-width: 780px;
  margin: 0 auto;
}

.hero-headline h1 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(3.1rem, 5.8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-headline h1 span {
  display: block;
  color: var(--accent);
}

.hero-summary {
  max-width: 700px;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

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

.button-primary,
.button-dark {
  background: linear-gradient(135deg, #34108d, #5a19d8);
  color: white;
}

.button-light {
  background: rgba(255, 255, 255, 0.92);
  color: #2a0d76;
  border-color: rgba(42, 13, 118, 0.1);
}

.button-outline-dark {
  background: transparent;
  border-color: rgba(15, 23, 32, 0.18);
  color: #0f1720;
}

.hero-stage {
  position: relative;
  padding: 2rem 1.5rem 3.5rem;
  min-height: 430px;
}

.hero-stage-image {
  position: absolute;
  overflow: hidden;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(42, 13, 118, 0.18);
}

.hero-stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-main-shot {
  left: 50%;
  bottom: -20px;
  width: min(34vw, 440px);
  height: min(43vw, 540px);
  transform: translateX(-50%);
  border: 16px solid white;
}

.hero-card-left,
.hero-card-right {
  width: min(18vw, 220px);
  height: min(24vw, 290px);
  border: 14px solid white;
}

.hero-card-left {
  left: 7%;
  bottom: 60px;
}

.hero-card-right {
  right: 7%;
  bottom: 55px;
}

.tilt-left {
  transform: rotate(-7deg);
}

.tilt-right {
  transform: rotate(5deg);
}

.hero-stage-image span {
  display: block;
  padding: 0.7rem 0.85rem 0.95rem;
  text-align: center;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  color: #2a0d76;
}

.floating-note {
  position: absolute;
  padding: 0.85rem 1.1rem;
  border-radius: 18px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.note-one {
  top: 40px;
  right: 14%;
  background: #5a19d8;
  color: white;
}

.note-two {
  top: 210px;
  left: 17%;
  background: #ff49b2;
  color: white;
}

.hero-star,
.hero-star::before {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #ffd93d;
  clip-path: polygon(50% 0%, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0% 50%, 39% 38%);
}

.hero-star-one {
  left: 9%;
  top: 23%;
}

.hero-star-two {
  right: 20%;
  bottom: 15%;
}

.hero-dots {
  position: absolute;
  right: 11%;
  bottom: 14%;
  width: 180px;
  height: 110px;
  opacity: 0.34;
  background-image: radial-gradient(circle, #2a0d76 1.4px, transparent 1.4px);
  background-size: 18px 18px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.image-scroll-section {
  background: var(--bg-dark);
  color: white;
}

.image-scroll-shell {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.image-scroll-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.image-scroll-track::-webkit-scrollbar {
  display: none;
}

.story-card {
  min-width: 100%;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background: #120908;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.7);
}

.story-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
  background: linear-gradient(180deg, transparent, rgba(16, 8, 10, 0.9));
  color: white;
}

.story-card-copy span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffbaa6;
}

.story-card-copy h3 {
  margin: 0;
  max-width: 18ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.story-card-copy p {
  max-width: 46rem;
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.intro-strip article,
.about-card,
.service-panel,
.showcase-large,
.showcase-card,
.social-box,
.contact-form,
.collection-card,
.timeline-card,
.pricing-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.intro-strip article {
  padding: 2.5rem;
  background: var(--glass-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--blur));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: white;
  transition: transform 0.4s ease;
}

.intro-strip article:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.intro-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-size: 1.1rem;
  background: var(--accent);
  color: white;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(255, 51, 153, 0.3);
}

.intro-strip h3 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  color: white !important;
}

.intro-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.95rem;
  line-height: 1.7;
}

.intro-strip h3,
.service-panel h3,
.showcase-card h3,
.pricing-card h3,
.timeline-card h3,
.collection-card h3,
.showcase-copy h3 {
  margin: 0 0 0.6rem;
  font-size: 1.18rem;
  line-height: 1.35;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s ease;
}

.about-image-frame:hover img {
  transform: scale(1.05);
}

.about-stack {
  display: grid;
  gap: 1rem;
}

.about-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--blur));
  background: var(--glass-dark);
  color: white;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.about-card strong {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-family: "Syne", sans-serif;
  color: var(--accent);
}

.about-card span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.about-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.about-social-icons a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transition: transform 0.25s ease, background 0.25s ease;
}

.about-social-icons a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

.about-social-icons svg {
  width: 24px;
  height: 24px;
}

.service-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.service-panel {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--glass-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(var(--blur));
  color: white;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}

.service-panel:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.service-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-panel:hover::after {
  transform: scaleX(1);
}

.service-tag {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.service-panel h3 {
  margin: 0;
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}

.service-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.8rem;
}

.service-link::after {
  content: "→";
}

.showcase-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.showcase-large,
.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: var(--shadow-md);
}

.showcase-large {
  grid-column: span 2;
  aspect-ratio: 21/9;
}

.showcase-card {
  aspect-ratio: 4/5;
}

.showcase-large img,
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.showcase-large:hover img,
.showcase-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.showcase-copy,
.showcase-card-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.showcase-large:hover .showcase-copy,
.showcase-card:hover .showcase-card-copy {
  transform: translateY(0);
  opacity: 1;
}

.showcase-copy span {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.showcase-copy h3,
.showcase-card-copy h3 {
  margin: 0;
  font-size: 2.4rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}

.showcase-card-copy h3 {
  font-size: 1.8rem;
}

.showcase-card {
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.showcase-card h3 {
  padding: 1.1rem 1.2rem 1.4rem;
  margin: 0;
}

.showcase-card-copy {
  padding: 1.1rem 1.2rem 1.4rem;
}

.showcase-card-copy h3 {
  margin: 0 0 0.85rem;
  padding: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 51, 153, 0.1);
  border: 1px solid var(--accent);
  color: white;
  font-weight: 800;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  background: var(--accent);
  color: white;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.social-box,
.contact-form,
.collection-card,
.timeline-card,
.pricing-card {
  padding: 2rem;
}

.contact-modern-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-modern-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

@media (min-width: 900px) {
  .contact-action {
    justify-content: flex-end;
  }
}

.package-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.3rem;
  align-items: start;
}

.package-list-card {
  padding: 2rem;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.package-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.package-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.contact-pills span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.05);
  font-weight: 700;
}

.contact-form {
  padding: 3rem;
  background: var(--glass-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--blur));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: white;
}

.modern-form label {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: white;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 51, 153, 0.15);
}

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

.modern-form select option {
  background: var(--bg-dark);
  color: white;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.form-note.success {
  color: #0f6b43;
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 32, 0.08);
}

.footer-logo {
  width: 110px;
  height: auto;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  font-weight: 600;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: flex-start;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.05);
  border: 1px solid rgba(15, 23, 32, 0.08);
  font-weight: 700;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-credit {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 32, 0.08);
  text-align: center;
}

.footer-credit p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.collection-hero {
  padding: 2.5rem 0 4rem;
}

.collection-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.3rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.collection-kicker {
  display: inline-flex;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 73, 178, 0.12);
  color: #ff49b2;
  font-weight: 800;
  margin-bottom: 1rem;
}

.collection-hero h1 .accent-line {
  display: block;
  color: #111111;
  font-style: italic;
}

.collection-floating-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.collection-floating-tags span {
  padding: 0.75rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #34108d, #5a19d8);
  color: white;
  font-weight: 700;
}

.collection-visual {
  position: relative;
  min-height: 460px;
}

.collection-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.collection-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-photo.one {
  width: 58%;
  height: 64%;
  left: 0;
  top: 8%;
  background: #ff5833;
  transform: rotate(-8deg);
}

.collection-photo.two {
  width: 42%;
  height: 50%;
  left: 32%;
  bottom: 0;
  background: #ffd11a;
  transform: rotate(-4deg);
}

.collection-photo.three {
  width: 42%;
  height: 64%;
  right: 0;
  top: 2%;
  background: #ff6f3d;
  transform: rotate(6deg);
}

.outline-word {
  position: absolute;
  right: -6px;
  bottom: -12px;
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.35);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 3rem;
}

.timeline-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.collection-card {
  position: relative;
  background: var(--glass-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(var(--blur));
  color: white;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.collection-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1s ease;
  margin-bottom: 0;
  border-radius: 0;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.collection-card .meta {
  display: inline-block;
  margin: 1.5rem 1.5rem 0.5rem;
  padding: 0;
  background: transparent;
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.collection-card h3 {
  margin: 0 1.5rem 0.8rem;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.2;
}

.collection-card p {
  margin: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6;
}

.timeline-card {
  min-height: 100%;
}

.pricing-card.highlight {
  background: #111111;
  color: white;
}

.pricing-card.highlight p,
.pricing-card.highlight .price,
.pricing-card.highlight li {
  color: rgba(255, 255, 255, 0.82);
}

.price {
  display: block;
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 800;
}

.pricing-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.pricing-list li {
  color: var(--muted);
}

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

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

@media (max-width: 1100px) {
  .intro-strip {
    grid-template-columns: 1fr 1fr;
  }

  .service-mosaic,
  .collection-grid,
  .timeline-grid,
  .pricing-grid,
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .collection-shell,
  .about-grid,
  .contact-modern-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .service-mosaic,
  .socials-grid,
  .footer-grid,
  .collection-grid,
  .timeline-grid,
  .pricing-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .showcase-large {
    grid-column: auto;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(250, 247, 242, 0.98);
    color: #111111;
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .landing-page .nav-links {
    background: rgba(15, 12, 14, 0.96);
    color: white;
    border-color: rgba(255, 255, 255, 0.08);
  }

  body.collections-page .nav-links {
    background: rgba(30, 30, 30, 0.98);
    color: white;
    border-color: rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-frame {
    min-height: auto;
    padding-bottom: 1.5rem;
  }

  .hero-nav-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: auto;
    padding: 1.5rem 1rem 1rem;
  }

  .hero-stage-image,
  .hero-main-shot,
  .hero-card-left,
  .hero-card-right {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: auto;
  }

  .hero-main-shot img,
  .hero-card-left img,
  .hero-card-right img {
    aspect-ratio: 4 / 5;
  }

  .hero-stage-image span {
    font-size: 1rem;
  }

  .floating-note {
    position: static;
    display: inline-flex;
    margin-right: 0.6rem;
    margin-top: 0.5rem;
  }

  .collection-visual {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .collection-photo,
  .collection-photo.one,
  .collection-photo.two,
  .collection-photo.three {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .collection-photo img {
    aspect-ratio: 4 / 5;
  }

  .outline-word {
    position: static;
    margin-top: 1rem;
    display: block;
  }

  .hero-fullscreen,
  .hero-overlay-content {
    min-height: 88vh;
  }

  .hero-slide-inner {
    padding-bottom: 9rem;
  }

  .story-card {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero-modern {
    padding-top: 1rem;
  }

  .hero-overlay-content {
    align-items: flex-end;
    padding-bottom: 1.2rem;
  }

  .hero-overlay-panel {
    padding: 1.1rem;
    border-radius: 20px;
  }

  .hero-slide-inner {
    padding-bottom: 11.5rem;
  }

  .hero-slide h1 {
    font-size: clamp(2.5rem, 13vw, 4.3rem);
  }

  .story-card {
    min-height: 360px;
  }

  .story-card-copy {
    padding: 1.2rem;
  }

  .hero-frame {
    border-width: 4px;
  }

  .hero-headline h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero-summary {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .button {
    width: 100%;
  }

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

  .brand-logo img {
    height: 60px;
  }

  .brand-meta strong {
    font-size: 0.98rem;
  }

  .brand-meta small {
    font-size: 0.8rem;
  }

  .floating-booking {
    right: 16px;
    bottom: 86px;
    width: 58px;
    height: 58px;
  }

  .floating-call {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}

.inner-hero {
  padding-top: 3rem;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.inner-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.95;
}

.inner-summary {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.8;
  margin: 1.2rem 0 0;
}

.inner-highlight-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 231, 245, 0.9));
  border: 1px solid rgba(25, 4, 62, 0.08);
  box-shadow: var(--shadow);
}

.inner-highlight-card span {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 73, 178, 0.12);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inner-highlight-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.6;
}

.footer-minimal {
  padding: 4rem 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
}

.footer-minimal-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand .footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 0;
  object-fit: contain;
}

.footer-brand-meta {
  display: flex;
  flex-direction: column;
}

.footer-brand-meta strong {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.footer-brand-meta small,
.footer-center-links a,
.footer-signoff span {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  font-weight: 700;
  color: #9a96ae;
}

.footer-center-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.footer-signoff {
  text-align: right;
}

.footer-signoff strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
}

@media (max-width: 1100px) {
  .inner-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .footer-minimal-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-signoff {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-center-links {
    gap: 1rem;
    flex-direction: column;
  }

  .footer-brand-meta strong {
    font-size: 1.45rem;
  }
}

.service-style-page,
.project-style-page {
  min-height: 100vh;
}

.service-style-page {
  background: #dfdfdf;
  color: #111111;
}

.project-style-page {
  background:
    radial-gradient(circle at bottom center, rgba(112, 45, 255, 0.36), transparent 18%),
    linear-gradient(180deg, #651fd7 0%, #4f17b8 100%);
  color: #16023d;
}

.poster-page {
  min-height: 100vh;
  padding: 2.5rem 1.25rem;
}

.poster-shell {
  width: min(1380px, 100%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.18);
}

.poster-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 3;
}

.poster-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
}

.poster-nav a {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-shell {
  background:
    linear-gradient(90deg, #ffffff 0 62%, #ff8d86 62% 100%);
  border-radius: 42px;
  padding: 2.2rem 2.4rem 2.4rem;
}

.service-topbar {
  margin-bottom: 2rem;
}

.service-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.poster-brand-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background:
    radial-gradient(circle at center, transparent 0 14px, #ffffff 15px 18px, transparent 19px),
    linear-gradient(#111111, #111111);
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}

.poster-brand-icon::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  bottom: 14px;
  border: 10px solid #111111;
  border-radius: 14px;
}

.poster-brand-copy strong {
  display: block;
  font-family: "Abril Fatface", serif;
  font-size: 2rem;
  line-height: 0.95;
}

.poster-brand-copy small {
  display: block;
  font-family: "Abril Fatface", serif;
  font-size: 1.8rem;
  line-height: 0.95;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.service-copy {
  padding: 2rem 1rem 1rem 0.4rem;
}

.service-kicker {
  margin: 0 0 1rem;
  font-family: "Abril Fatface", serif;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.service-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.service-summary {
  max-width: 580px;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-poster-form {
  display: grid;
  gap: 1rem;
  max-width: 420px;
  margin-top: 2rem;
}

.service-poster-form label {
  display: grid;
  gap: 0.45rem;
}

.service-poster-form span {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-poster-form input {
  width: 100%;
  height: 68px;
  padding: 0 1.2rem;
  border: 3px solid #111111;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.poster-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 1.6rem;
  border-radius: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-cta {
  width: fit-content;
  min-width: 260px;
  background: linear-gradient(90deg, #ff9dba, #ffdba6, #ff91b8);
}

.service-mini-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.service-mini-note span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-visual {
  min-height: 760px;
  position: relative;
}

.service-gradient-panel {
  position: absolute;
  inset: 0 0 0 16%;
  border-radius: 0 34px 34px 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(233, 174, 245, 0.7), transparent 18%),
    linear-gradient(180deg, #ff8884, #ff8a88 55%, #ffd98d 100%);
}

.service-image-frame {
  position: absolute;
  right: 4%;
  top: 18%;
  width: min(62%, 700px);
  height: 62%;
  overflow: hidden;
  background: #2a2f1d;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-outline-shape {
  position: absolute;
  right: -6%;
  top: 8%;
  width: 48%;
  height: 30%;
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-left: 0;
  border-radius: 120px;
}

.service-accent-bar {
  position: absolute;
  background: linear-gradient(180deg, #ff8e8d, #f1b4d6, #ffd89a);
}

.service-accent-top {
  left: 36%;
  top: 18%;
  width: 48px;
  height: 180px;
}

.service-accent-bottom {
  right: 2%;
  bottom: 14%;
  width: 220px;
  height: 48px;
  background: linear-gradient(90deg, #f7a4c8, #ffd9a0, #ff9c8c);
}

.service-starburst {
  position: absolute;
  left: 22%;
  top: 44%;
  width: 180px;
  aspect-ratio: 1;
  background:
    repeating-conic-gradient(from 0deg, rgba(255, 134, 146, 0.9) 0 2deg, transparent 2deg 20deg);
  clip-path: circle(50%);
  opacity: 0.85;
}

.service-dot-grid {
  position: absolute;
  left: 30%;
  bottom: 9%;
  width: 44%;
  height: 26%;
  background-image: radial-gradient(circle, #111111 2.1px, transparent 2.1px);
  background-size: 38px 38px;
  opacity: 0.8;
}

.service-list-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.service-list-band article {
  padding: 1.35rem 1.3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.service-list-band span {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-list-band h3 {
  margin: 0 0 0.6rem;
  font-size: 1.18rem;
}

.service-list-band p {
  margin: 0;
  line-height: 1.7;
  color: #444444;
}

.project-shell {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0 7%, rgba(231, 214, 251, 0.9) 7% 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0;
  min-height: calc(100vh - 5rem);
}

.project-topbar {
  padding: 0;
  align-items: stretch;
}

.project-menu-button {
  width: 158px;
  min-height: 156px;
  border: 0;
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  place-content: center;
  gap: 14px;
  cursor: pointer;
}

.project-menu-button span {
  display: block;
  width: 58px;
  height: 7px;
  border-radius: 999px;
  background: #180047;
}

.project-nav {
  flex: 1;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 1.5rem 3rem;
}

.project-nav a {
  font-size: 0.98rem;
  color: #20045c;
}

.project-wordmark {
  width: 280px;
  padding: 1.7rem 1.5rem;
  text-align: center;
}

.project-wordmark strong {
  display: block;
  font-family: "Pacifico", cursive;
  font-size: 3rem;
  line-height: 1;
}

.project-wordmark span {
  display: block;
  font-family: "Chewy", cursive;
  font-size: 2rem;
  color: #0b65ff;
  line-height: 1;
}

.project-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.68) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.68) 1px, transparent 1px);
  background-size: min(18vw, 220px) min(18vw, 220px);
  pointer-events: none;
}

.project-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: 2rem 2rem 2.8rem;
  position: relative;
  z-index: 1;
}

.project-copy {
  padding: 7rem 0 2rem 3rem;
  position: relative;
}

.project-copy h1 {
  margin: 0;
  font-family: "Chewy", cursive;
  font-size: clamp(3.4rem, 6.8vw, 6.6rem);
  line-height: 0.96;
  color: #25005d;
}

.project-copy h2 {
  margin: 0.8rem 0 1.2rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  color: #ff1bb3;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.project-copy p {
  max-width: 520px;
  margin: 0;
  color: #281343;
  font-size: 1.08rem;
  line-height: 1.8;
}

.project-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.88);
  color: #3211a2;
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  font-weight: 700;
  position: relative;
}

.project-cta::before,
.project-cta::after {
  content: "";
  position: absolute;
  height: 4px;
  background: #16023d;
  width: 130px;
}

.project-cta::before {
  left: -90px;
  top: 0;
}

.project-cta::after {
  right: -90px;
  bottom: 0;
}

.project-visual {
  min-height: 950px;
  position: relative;
}

.project-photo-card {
  position: absolute;
  overflow: hidden;
  border: 18px solid #ffffff;
  box-shadow: 0 20px 48px rgba(72, 20, 156, 0.22);
  background: white;
}

.project-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-photo-one {
  width: 36%;
  height: 43%;
  right: 20%;
  top: 17%;
  transform: rotate(-20deg);
}

.project-photo-two {
  width: 34%;
  height: 48%;
  right: 1%;
  bottom: 7%;
  transform: rotate(13deg);
}

.project-camera-body {
  position: absolute;
  right: 4%;
  top: 31%;
  width: 57%;
  height: 33%;
  border-radius: 80px 80px 36px 36px;
  background: linear-gradient(135deg, #6416da, #2f036f);
  transform: rotate(29deg);
  box-shadow: 0 18px 40px rgba(35, 0, 92, 0.4);
}

.project-camera-body::before {
  content: "";
  position: absolute;
  left: -24%;
  bottom: -19%;
  width: 58%;
  height: 24%;
  border-radius: 40px;
  background: #37106d;
}

.project-camera-body::after {
  content: "";
  position: absolute;
  left: 2.5%;
  top: 34%;
  width: 10%;
  height: 40%;
  border-radius: 18px;
  background: rgba(8, 2, 24, 0.72);
}

.camera-lens {
  position: absolute;
  top: 11%;
  bottom: 11%;
  border-radius: 999px;
  background: #090015;
  box-shadow: inset 0 0 0 7px #34107a;
}

.lens-one {
  right: 4%;
  width: 34%;
}

.lens-two {
  right: 27%;
  width: 24%;
}

.camera-glass {
  position: absolute;
  right: 8%;
  top: 20%;
  width: 20%;
  height: 36%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f7fcff 0 10%, #84baff 11% 70%, #1f4da8 71% 100%);
  border: 12px solid #ffffff;
}

.project-ribbon {
  position: absolute;
  border-radius: 999px;
  opacity: 0.98;
}

.project-ribbon-one {
  width: 22%;
  height: 46%;
  right: 20%;
  top: 18%;
  background: #f218af;
  transform: rotate(28deg);
}

.project-ribbon-two {
  width: 14%;
  height: 40%;
  right: 28%;
  top: 26%;
  background: #19c6bf;
  transform: rotate(28deg);
}

.project-loop {
  position: absolute;
  left: 2%;
  bottom: 13%;
  width: 56%;
  height: 26%;
  border: 26px solid #6515d6;
  border-radius: 50%;
  transform: rotate(8deg);
  box-shadow: inset 0 0 0 10px rgba(42, 2, 101, 0.26);
}

.project-dash {
  position: absolute;
  height: 5px;
  border-top: 5px dashed rgba(22, 2, 61, 0.84);
}

.project-dash-top {
  right: 6%;
  top: 23%;
  width: 28%;
}

.project-dash-bottom {
  left: 4%;
  bottom: 8%;
  width: 42%;
}

.project-stars {
  display: block;
  width: 66px;
  height: 66px;
  position: relative;
}

.project-stars::before,
.project-stars::after {
  content: "";
  position: absolute;
  background: #ffd93b;
  clip-path: polygon(50% 0%, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0% 50%, 39% 38%);
}

.project-stars::before {
  width: 42px;
  height: 42px;
  right: 0;
  top: 0;
}

.project-stars::after {
  width: 18px;
  height: 18px;
  left: 0;
  bottom: 8px;
  background: #ff8d00;
}

.project-stars-top {
  margin-bottom: 1.8rem;
}

.project-stars-bottom {
  margin-top: 5rem;
}

@media (max-width: 1200px) {
  .service-hero-grid,
  .project-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 620px;
  }

  .project-visual {
    min-height: 760px;
  }
}

@media (max-width: 900px) {
  .poster-page {
    padding: 1rem;
  }

  .service-shell {
    padding: 1.25rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0 52%, #ff8d86 52% 100%);
  }

  .poster-topbar,
  .project-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .poster-nav,
  .project-nav {
    justify-content: flex-start;
  }

  .service-list-band {
    grid-template-columns: 1fr;
  }

  .project-shell {
    min-height: auto;
  }

  .project-topbar {
    padding: 0;
  }

  .project-menu-button,
  .project-wordmark {
    width: 100%;
  }

  .project-copy {
    padding: 2rem 0 1rem;
  }

  .project-visual {
    min-height: 620px;
  }

  .project-photo-one {
    width: 40%;
    height: 36%;
    right: 28%;
  }

  .project-photo-two {
    width: 38%;
    height: 38%;
  }

  .project-camera-body {
    width: 62%;
    height: 30%;
  }

  .project-loop {
    width: 54%;
    height: 18%;
    border-width: 18px;
  }
}

@media (max-width: 640px) {
  .poster-shell {
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.16);
  }

  .poster-nav,
  .project-nav {
    gap: 0.9rem 1rem;
  }

  .poster-nav a,
  .project-nav a {
    font-size: 0.82rem;
  }

  .service-kicker {
    font-size: 2.6rem;
  }

  .service-copy h1 {
    font-size: 2rem;
  }

  .service-visual {
    min-height: 460px;
  }

  .service-image-frame {
    width: 70%;
    height: 54%;
    right: 3%;
    top: 22%;
  }

  .service-starburst {
    width: 110px;
  }

  .project-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0 10%, rgba(231, 214, 251, 0.92) 10% 100%);
  }

  .project-hero-grid {
    padding: 1rem;
  }

  .project-copy h1 {
    font-size: 2.6rem;
  }

  .project-copy h2 {
    font-size: 1.8rem;
  }

  .project-visual {
    min-height: 480px;
  }

  .project-photo-card {
    border-width: 10px;
  }

  .project-photo-one {
    right: 22%;
    top: 18%;
  }

  .project-camera-body {
    width: 70%;
    height: 28%;
    right: 1%;
    top: 36%;
    border-radius: 40px;
  }

  .camera-glass {
    border-width: 7px;
  }

  .project-loop {
    width: 46%;
    height: 14%;
    left: 2%;
    bottom: 18%;
  }
}

.owner-name {
  display: inline-block;
  color: #3b82f6;
  margin-bottom: 0.8rem;
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  border: 2px solid #3b82f6;
  border-radius: var(--radius-sm);
  position: relative;
  animation: borderPulse 2s infinite;
  text-align: center;
}

.owner-title {
  margin-top: -0.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #3b82f6;
  opacity: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

@keyframes borderPulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* About Infographic Styles */
.about-infographic {
  padding: 6rem 0;
  background: var(--bg);
  color: var(--ink);
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header .eyebrow {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-family: "Cormorant Garamond", serif;
  margin: 0.5rem 0;
  color: var(--ink) !important;
}

.about-header .sub-header {
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}

.infographic-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.info-points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}

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

.info-text h3 {
  font-size: 1.4rem;
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.info-text p {
  font-size: 0.95rem;
  color: var(--muted) !important;
  line-height: 1.6;
  margin: 0;
}

.info-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.info-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-footer-box {
  margin-top: 4rem;
  padding: 2.5rem;
  background: #fdfaf4;
  border: 1px solid #eee5d8;
  border-radius: 12px;
  display: flex;
  gap: 2rem;
  align-items: center;
  text-align: left;
}

.footer-box-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  color: #333;
}

.footer-box-text h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  margin: 0 0 0.3rem;
}

.footer-box-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted) !important;
}

@media (max-width: 991px) {
  .infographic-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .info-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-footer-box {
    flex-direction: column;
    text-align: center;
  }
}
