/* ============================================
   ARINA DIGITAL ADZ — Premium Agency Website
   Style: Silent Luxury / Monochrome Editorial
   ============================================ */

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

:root {
  --black: #111111;
  --white: #ffffff;
  --grey-100: #f7f7f7;
  --grey-200: #e5e5e5;
  --grey-300: #cccccc;
  --grey-400: #999999;
  --grey-500: #666666;
  --grey-600: #444444;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --nav-height: 80px;
}

html {
  scroll-behavior: auto; /* GSAP handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) {
  body { cursor: auto; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: none; }
@media (pointer: coarse) { button { cursor: pointer; } }

/* --- Page Load Overlay --- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-loader .loader-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* --- Custom Cursor --- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s, opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cursor-ring .cursor-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}
body.cursor-hover .cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--white);
}
body.cursor-hover .cursor-ring {
  width: 80px;
  height: 80px;
  border-color: var(--white);
}
body.cursor-view .cursor-ring {
  width: 90px;
  height: 90px;
  background: var(--black);
  border-color: var(--black);
}
body.cursor-view .cursor-ring .cursor-label {
  opacity: 1;
}
body.cursor-view .cursor-dot {
  opacity: 0;
}
body.cursor-hidden .cursor-dot,
body.cursor-hidden .cursor-ring {
  opacity: 0;
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 60px);
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-200);
}
.nav-logo {
  height: 36px;
  width: auto;
}
.nav-logo svg { height: 100%; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--black);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  font-weight: 700;
}
.mobile-menu a.active {
  opacity: 0.4;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
  padding: 12px 28px;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.nav-cta:hover {
  background: transparent;
  color: var(--black);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1002;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) clamp(24px, 4vw, 60px) 60px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 11rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  overflow: hidden;
}
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}
.hero-subtitle {
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.hero-cta-row {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* --- Fan Out Cards --- */
.fan-container {
  position: relative;
  width: 100%;
  height: 520px;
  margin: 80px 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fan-card {
  position: absolute;
  width: 240px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: box-shadow 0.4s;
  will-change: transform;
}
.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fan-card:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
  .fan-container { height: 360px; }
  .fan-card { width: 160px; height: 220px; }
}

/* --- Stats Strip --- */
.stats-strip {
  display: flex;
  gap: 60px;
  padding: 48px 0;
  border-top: 1px solid var(--grey-200);
  margin-top: 60px;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 8px;
}
@media (max-width: 768px) {
  .stats-strip { flex-wrap: wrap; gap: 32px; }
}

/* --- Section Common --- */
.section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 60px);
}
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 900px;
}
.section-body {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  color: var(--grey-600);
  max-width: 680px;
  margin-top: 24px;
}

/* --- Services List --- */
.services-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid var(--grey-200);
  transition: padding-left 0.5s var(--ease-out);
}
.service-row:first-child { border-top: 1px solid var(--grey-200); }
.service-row:hover { padding-left: 20px; }
.service-number {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--grey-300);
  min-width: 50px;
}
.service-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex: 1;
}
.service-arrow {
  font-size: 24px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.service-row:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- Work Grid --- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.work-card:hover img {
  transform: scale(1.05);
}
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.5s;
}
.work-card:hover .work-card-overlay { opacity: 1; }
.work-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.work-card-cat {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* --- Bento Grid --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
  margin-top: 60px;
}
.bento-grid .bento-item { 
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.bento-grid .bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s;
}
.bento-grid .bento-item.revealed img {
  transform: scale(1);
  opacity: 1;
}
.bento-grid .bento-item:nth-child(1) { grid-row: span 2; }
.bento-grid .bento-item:nth-child(4) { grid-column: span 2; }
.bento-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}
.bento-item:hover .bento-item-overlay { opacity: 1; }
.bento-item-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bento-item-cat {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .bento-grid .bento-item:nth-child(1) { grid-row: span 1; }
  .bento-grid .bento-item:nth-child(4) { grid-column: span 1; }
}

/* --- Case Studies --- */
.case-studies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.case-card {
  padding: 40px 32px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.case-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
}
.case-card-location {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.case-card-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-top: 8px;
}
.case-card-desc {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--grey-500);
  line-height: 1.6;
  margin-top: 16px;
}
.case-card-result {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  background: var(--grey-100);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .case-studies { grid-template-columns: 1fr; }
}

/* --- Marquee --- */
.marquee-section {
  padding: 40px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: '·';
  color: var(--grey-300);
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.testimonial-card {
  padding: 40px 32px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s;
}
.testimonial-card:hover { border-color: var(--black); }
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: var(--grey-600);
  flex: 1;
}
.testimonial-author {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-200);
}
.testimonial-name {
  font-weight: 600;
  font-size: 15px;
}
.testimonial-role {
  font-size: 13px;
  color: var(--grey-400);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* --- CTA Band --- */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 60px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-ghost {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 16rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  white-space: nowrap;
  pointer-events: none;
  text-transform: uppercase;
  line-height: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cta-sub {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}
.cta-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 48px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--white);
  transition: background 0.4s var(--ease-out), color 0.4s;
}
.cta-btn:hover {
  background: transparent;
  color: var(--white);
}

/* --- Footer --- */
.footer {
  padding: 80px clamp(24px, 4vw, 60px) 40px;
  border-top: 1px solid var(--grey-200);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-logo {
  height: 32px;
  margin-bottom: 16px;
}
.footer-brand-logo svg { height: 100%; width: auto; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 8px;
}
.footer-desc {
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 320px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--grey-500);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--black); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
  font-size: 13px;
  color: var(--grey-400);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Magnetic Button --- */
.magnetic-btn {
  display: inline-block;
  padding: 16px 44px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--black);
  transition: background 0.4s var(--ease-out), color 0.4s;
  will-change: transform;
}
.magnetic-btn:hover {
  background: transparent;
  color: var(--black);
}
.magnetic-btn.btn-outline {
  background: transparent;
  color: var(--black);
}
.magnetic-btn.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: calc(var(--nav-height) + 80px) clamp(24px, 4vw, 60px) 80px;
  position: relative;
}
.page-hero .hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  text-transform: uppercase;
  line-height: 1;
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  padding: 40px 28px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.value-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
}
.value-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.value-card-desc {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--grey-500);
  line-height: 1.6;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.process-step {
  position: relative;
  padding: 32px 0;
}
.process-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--grey-200);
  line-height: 1;
}
.process-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-top: 16px;
}
.process-desc {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.6;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Pricing Section --- */
.pricing-category {
  margin-top: 60px;
}
.pricing-cat-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 24px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.price-card {
  padding: 32px 28px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
  position: relative;
}
.price-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
}
.price-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--black);
  color: var(--white);
}
.price-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.price-card-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-top: 12px;
}
.price-card-desc {
  font-size: 13px;
  color: var(--grey-500);
  line-height: 1.6;
  margin-top: 8px;
}

/* --- FAQ Accordion --- */
.faq-list {
  margin-top: 60px;
  max-width: 800px;
}
.faq-item {
  border-bottom: 1px solid var(--grey-200);
}
.faq-item:first-child { border-top: 1px solid var(--grey-200); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: var(--black);
  cursor: pointer;
}
.faq-icon {
  font-size: 20px;
  transition: transform 0.4s var(--ease-out);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding-bottom: 24px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--grey-500);
  line-height: 1.7;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1.5px solid var(--grey-200);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--black);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-success {
  display: none;
  padding: 20px;
  background: var(--grey-100);
  text-align: center;
  font-size: 15px;
  margin-top: 20px;
}
.form-success.show { display: block; }

.contact-info-block { margin-bottom: 40px; }
.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 8px;
}
.contact-info-value {
  font-size: 16px;
  line-height: 1.6;
}
.contact-info-value a {
  border-bottom: 1px solid var(--grey-300);
  transition: border-color 0.3s;
}
.contact-info-value a:hover { border-color: var(--black); }

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--grey-200);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 12px;
}
.availability-dot {
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.pricing-notes {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 32px;
  background: var(--grey-100);
  border-radius: 8px;
}
.pricing-note-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 6px;
}
.pricing-note-value {
  font-size: 14px;
  color: var(--grey-600);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* --- GSAP Reveal Helpers --- */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
}
.reveal-fade {
  opacity: 0;
}

/* --- Clip Path Transition --- */
.clip-section {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s var(--ease-out);
}
.clip-section.revealed {
  clip-path: inset(0);
}

/* --- Page Transition --- */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9990;
  transform: scaleY(0);
  transform-origin: bottom;
}

/* --- Noise Grain --- */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}
