/* ICONIC — Home page styles (migrated verbatim from index.html) */
/* ── HERO ── */
#home {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
/* Ken Burns background layer */
.hero-bg {
  position: absolute; inset: -6%; z-index: 0;
  background: #1c1b1b center/cover no-repeat;  /* image set from CMS */
  animation: kenBurns 22s ease-in-out infinite alternate;
}
#home { margin-bottom: 0; }
@keyframes kenBurns {
  from { transform: scale(1)    translate(0,    0);   }
  to   { transform: scale(1.09) translate(-2%, 1.5%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.52);
}
.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  width: 100%;
  padding: 160px 1rem 0;
  flex: 1;
}
.hero-logo-img {
  max-width: 260px; width: 45%;
  filter: brightness(0) invert(1);
  animation: heroLogoIn 1.4s cubic-bezier(.22,.68,0,1.2) forwards;
}
.hero-studio-label {
  font-size: 0.75rem; letter-spacing: 6px;
  text-transform: uppercase; color: #ccc;
  margin-top: 0.5rem;
  opacity: 0; animation: fadeInUp 1s ease 1s forwards;
}
.hero-title-row {
  margin-top: 2.5rem; display: flex;
  gap: 16px; flex-wrap: wrap; justify-content: center;
}
.hero-word {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 900; letter-spacing: 4px;
  text-transform: uppercase; color: #fff;
  display: inline-block; opacity: 0;
  animation: heroWordUp 0.8s ease forwards;
}
.hero-word:nth-child(1) { animation-delay: 0.6s; }
.hero-word:nth-child(2) { animation-delay: 0.85s; }
.hero-word:nth-child(3) { animation-delay: 1.1s; color: #b07242; }
.hero-subtitle {
  margin-top: 1.25rem; font-size: 0.85rem;
  letter-spacing: 3px; color: #aaa;
  text-transform: uppercase; opacity: 0;
  animation: fadeInUp 1s ease 1.6s forwards;
}
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; z-index: 2;
  opacity: 0; animation: fadeInUp 1s ease 2s forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-dot {
  position: absolute; top: 0; left: 0;
  width: 1px; height: 20px; background: #b07242;
  animation: scrollDrop 1.6s ease infinite;
}
.scroll-text { font-size: 0.6rem; letter-spacing: 3px; color: #888; text-transform: uppercase; }

/* ── Hero Icon Watermark ── */
.hero-icon-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: iconReveal 2s ease 0.3s forwards;
}
.hero-icon-bg img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(1.1);
  animation: iconSpin 28s linear infinite;
}
/* Glowing rings around the icon */
.hero-ring {
  position: absolute; z-index: 2;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(176,114,66,0.22);
  transform: translate(-50%, -50%) scale(0.8);
  pointer-events: none;
  animation: ringExpand 3s ease-out forwards;
}
.hero-ring-1 { width: 500px; height: 500px; animation-delay: 0.4s; }
.hero-ring-2 { width: 640px; height: 640px; animation-delay: 0.8s; border-color: rgba(176,114,66,0.13); }
.hero-ring-3 { width: 800px; height: 800px; animation-delay: 1.2s; border-color: rgba(176,114,66,0.07); }

@keyframes iconReveal {
  from { opacity: 0; }
  to   { opacity: 0.12; }
}
@keyframes iconSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes ringExpand {
  from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  to   { transform: translate(-50%, -50%) scale(1);   opacity: 1; }
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heroWordUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDrop {
  0%   { top: -20px; opacity: 1; }
  100% { top: 50px;  opacity: 0; }
}

/* ── WHY ICONIC — full-width overlay ── */
#why-iconic {
  position: relative;
  overflow: hidden;
  height: 640px;
}
.why-bg {
  position: absolute;
  top: -120px; left: 0;
  width: 100%; height: calc(100% + 240px);
  object-fit: cover; display: block;
  will-change: transform;
}
@media (max-width: 767.98px) { #why-iconic { height: 720px; } }
.why-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,10,10,0.80) 0%, rgba(10,10,10,0.50) 60%, rgba(10,10,10,0.72) 100%);
}
.why-content { z-index: 2; }
.why-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
}
.why-inner { max-width: 640px; }
.stat-row {
  display: flex; flex-wrap: wrap;
  gap: 0; margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.stat-item {
  flex: 1 1 120px; text-align: center;
  padding: 0 1rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: #b07242; line-height: 1;
}
.stat-label {
  font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase; color: #777; margin-top: 0.4rem;
}

/* ── SERVICES ── */
#services { background: #111; padding: 7rem 0; }
.service-card {
  background: #b07242; border-radius: 12px;
  padding: 3rem 2rem; height: 100%;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
  overflow: hidden; position: relative;
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.07);
  border-radius: 0 12px 0 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.service-card .svc-icon { font-size: 2.2rem; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.service-card h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.service-card p  { color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.8; flex: 1; }
.service-card .svc-link {
  margin-top: 1.5rem; font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.service-card:hover .svc-link i { transform: translateX(6px); }
.service-card .svc-link i { transition: transform .3s ease; }

/* ── PORTFOLIO ── */
#portfolio {
  position: relative; padding: 7rem 0;
  background: #1c1b1b center/cover fixed no-repeat;  /* image set from CMS */
}
#portfolio::before { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,0.88); }
#portfolio > .container { position: relative; z-index: 1; }
.swiper-portfolio { width: 100%; padding: 2rem 0 4rem; }
.portfolio-slide { border-radius: 10px; overflow: hidden; cursor: pointer; display: block; text-decoration: none; }
.portfolio-slide-inner { position: relative; aspect-ratio: 3/2; }
.portfolio-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.portfolio-slide:hover img { transform: scale(1.04); }
.portfolio-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 2rem 1.5rem 1.2rem;
}
.portfolio-slide-caption h5 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin: 0 0 .2rem; }
.portfolio-slide-caption span { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: #b07242; }
.portfolio-more-btn {
  display: inline-block; margin-top: 2.5rem;
  font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: #b07242;
  border: 1px solid #b07242; border-radius: 50px;
  padding: 12px 32px; text-decoration: none;
  transition: background .3s ease, color .3s ease;
}
.portfolio-more-btn:hover { background: #b07242; color: #fff; }

/* ── TEAM ── */
#team { background: #161616; padding: 7rem 0; }
.team-card { text-align: center; }
.team-img-wrap { width: 100%; aspect-ratio: 3/4; border-radius: 10px; overflow: hidden; margin-bottom: 1.5rem; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(40%); transition: transform .45s ease, filter .45s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); filter: grayscale(0%); }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: .2rem; }
.team-role { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: #b07242; }
.team-divider { width: 32px; height: 1px; background: #b07242; margin: 1rem auto; }
.team-bio { font-size: 0.82rem; color: #666; line-height: 1.7; }

/* ── GOLD DIVIDER REVEAL ── */
.gold-divider {
  width: 0 !important; height: 2px;
  background: #b07242; margin: 1.5rem 0;
  transition: width 0.9s cubic-bezier(.4,0,.2,1) 0.15s;
}
.gold-divider.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.gold-divider.animate { width: 48px !important; }

/* ── PARALLAX WHY BG ── */
.why-bg { will-change: transform; transition: transform 0.05s linear; }

/* ── PARTNERS ── */
#partners { background: #111; padding: 7rem 0; }
.partner-box {
  border: 1px solid #2a2a2a; border-radius: 8px;
  padding: 2.5rem 1.5rem; text-align: center;
  transition: border-color .3s ease, transform .3s ease;
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.partner-box:hover { border-color: #b07242; transform: translateY(-4px); }
.partner-box .partner-icon { font-size: 2.2rem; color: #b07242; margin-bottom: 1rem; }
.partner-box h6 { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: #aaa; margin: 0; }
