/* =========================================================
   AK CREATIVE STUDIO — STYLESHEET
   Edit colors and fonts in the :root block below.
   ========================================================= */

:root {
  /* --- Colors (edit these to re-theme the whole site) --- */
  --cream:        #FAF3EC;
  --cream-deep:   #F1E6DA;
  --pink:         #F3D9DE;
  --pink-deep:    #E8BCC4;
  --rose:         #C4667A;
  --rose-dark:    #A84D61;
  --white:        #FFFFFF;
  --dark:         #2B2320;
  --dark-soft:    #55483F;
  --wa-green:     #25D366;
  --wa-green-dark:#1DAF54;

  /* --- Type --- */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- Layout --- */
  --max-width: 1180px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-card: 0 10px 30px -14px rgba(43, 35, 32, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--dark);
}

p { margin: 0 0 1em; color: var(--dark-soft); }

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

img { max-width: 100%; display: block; }

code {
  font-family: var(--font-body);
  background: var(--pink);
  padding: 0.1em 0.5em;
  border-radius: 6px;
  font-size: 0.9em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--rose-dark);
  outline-offset: 2px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

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

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.6);
}
.btn-whatsapp:hover { background: var(--wa-green-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-small {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.icon-wa { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 35, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.15;
  color: var(--dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-soft);
  position: relative;
  padding: 4px 2px;
}
.nav-link:hover { color: var(--rose-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-whatsapp { display: inline-flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: 72px 0 96px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--rose-dark);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  max-width: 15ch;
  margin-bottom: 0.4em;
}

.hero-sub {
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 1.6em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rose-dark);
}
.stat-label { font-size: 0.82rem; color: var(--dark-soft); }

.hero-collage {
  position: relative;
  height: 420px;
}

.collage-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 168px;
  height: 168px;
  border-radius: var(--radius-lg);
  font-size: 2.4rem;
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
}

.collage-card span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.card-a { top: 0; left: 20%; background: var(--pink); transform: rotate(-6deg); z-index: 2; }
.card-b { top: 40px; right: 0; background: var(--rose); color: var(--white); transform: rotate(5deg); z-index: 3; }
.card-b span { color: var(--white); }
.card-c { bottom: 30px; left: 0; background: var(--white); transform: rotate(4deg); z-index: 1; }
.card-d { bottom: 0; right: 15%; background: var(--cream-deep); transform: rotate(-4deg); z-index: 2; }

/* =========================================================
   SECTIONS (shared)
   ========================================================= */

.section { padding: 96px 0; }
.section-tinted { background: var(--pink); }

.section-head {
  max-width: 56ch;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.section-head p { font-size: 1.05rem; margin-bottom: 0; }

/* =========================================================
   STATS
   ========================================================= */

.stats-section { padding: 56px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.stat-icon { font-size: 2rem; line-height: 1; }

.stat-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--rose-dark);
  line-height: 1;
}

.stat-caption {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-soft);
}

/* =========================================================
   FOUNDER
   ========================================================= */

.founder-section { padding: 24px 0 72px; }

.founder-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--white), var(--cream));
  border: 1px solid var(--pink-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.founder-badge {
  flex: none;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -10px rgba(168, 77, 97, 0.55);
}

.founder-info { min-width: 0; }

.founder-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 6px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--dark);
  margin: 0 0 4px;
  line-height: 1.15;
}

.founder-title {
  font-weight: 600;
  color: var(--dark-soft);
  margin: 0;
}

.founder-org {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose-dark);
  margin: 2px 0 0;
}

@media (max-width: 600px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
}

/* =========================================================
   SERVICES
   ========================================================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.service-icon { font-size: 1.8rem; margin-bottom: 14px; }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.92rem;
  flex-grow: 1;
  margin-bottom: 18px;
}

.card-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--rose-dark);
  align-self: flex-start;
}
.card-link:hover { text-decoration: underline; }

/* =========================================================
   PRICING
   ========================================================= */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.price-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.price-featured { border: 2px solid var(--rose); }

.price-badge {
  position: absolute;
  top: -12px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
}

.price-top { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.price-icon { font-size: 1.6rem; }
.price-top h3 { font-size: 1.05rem; margin: 0; }

.price-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--rose-dark);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-amount span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--dark-soft);
}

/* =========================================================
   GRAPHIC PORTFOLIO — sample mockups
   ========================================================= */

.portfolio-group { margin-bottom: 48px; }
.portfolio-group:last-child { margin-bottom: 0; }

.portfolio-group-title {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--rose-dark);
}

.mock-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.mock-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}

/* Poster mock */
.mock-poster {
  width: 240px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-poster img {
  width: 100%;
  height: auto;
  display: block;
}

/* Banner mock */
.mock-banner {
  width: 100%;
  max-width: 640px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Logo mock */
.mock-row-logos { gap: 16px; }
.mock-logo {
  width: 220px;
  height: 170px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.mock-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================================================
   AI VIDEO PORTFOLIO
   ========================================================= */

.video-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-soft);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.filter-btn:hover { color: var(--rose-dark); }
.filter-btn.is-active {
  border-color: var(--rose);
  color: var(--rose-dark);
  background: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.video-thumb {
  position: relative;
  aspect-ratio: 9 / 14;
  background: linear-gradient(150deg, var(--rose), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb img,
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--rose-dark);
}

.video-info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rose-dark);
}
.video-title { font-weight: 600; font-size: 0.95rem; }

.video-empty-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--dark-soft);
  font-style: italic;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.contact-copy p { font-size: 1.05rem; max-width: 46ch; }

.contact-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li { display: flex; gap: 10px; align-items: baseline; }
.contact-label {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--rose-dark);
  min-width: 90px;
}
.contact-list a:hover { text-decoration: underline; }

.contact-panel {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.contact-panel-eyebrow {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 14px;
}
.contact-steps {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--dark-soft);
  font-size: 0.92rem;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
}
.footer-brand .brand-mark { background: var(--rose); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--cream-deep);
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  width: 100%;
  font-size: 0.78rem;
  color: rgba(250, 243, 236, 0.55);
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(250, 243, 236, 0.12);
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.6);
  z-index: 200;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-collage { height: 300px; margin-top: 20px; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 16px;
    border-bottom: 1px solid rgba(43,35,32,0.08);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .header-whatsapp span { display: none; }
  .header-whatsapp { padding: 12px; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; max-width: 360px; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 0 64px; }
  .section { padding: 64px 0; }
  .collage-card { width: 130px; height: 130px; font-size: 1.8rem; }
  .card-a { left: 5%; }
  .card-d { right: 5%; }
}

/* =========================================================
   GRAPHIC PORTFOLIO — View + Order actions (added)
   ========================================================= */

.portfolio-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfolio-item-wide { width: 100%; max-width: 640px; }

.portfolio-item-logo { align-items: center; }

.portfolio-actions {
  display: flex;
  gap: 10px;
}

.portfolio-item-logo .portfolio-actions { width: 100%; justify-content: center; }

.btn-view,
.btn-order {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-view {
  background: var(--white);
  border-color: var(--rose);
  color: var(--rose-dark);
}
.btn-view:hover { background: var(--rose); color: var(--white); transform: translateY(-1px); }

.btn-order {
  background: var(--wa-green);
  color: var(--white);
}
.btn-order:hover { background: var(--wa-green-dark); transform: translateY(-1px); }

/* =========================================================
   PORTFOLIO PREVIEW MODAL (added)
   ========================================================= */

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.portfolio-modal[hidden] { display: none; }

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 35, 32, 0.55);
  backdrop-filter: blur(2px);
}

.portfolio-modal-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 30px 60px -20px rgba(43, 35, 32, 0.45);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.portfolio-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--dark);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-modal-close:hover { background: var(--pink); }

.portfolio-modal-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.portfolio-modal-preview .mock {
  transform: scale(1.15);
  cursor: default;
}

.portfolio-modal-preview .mock-banner {
  transform: none;
  width: 100%;
  max-width: 100%;
}

.portfolio-modal-info { text-align: center; }

.portfolio-modal-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 6px;
}

.portfolio-modal-info h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.portfolio-modal-info .btn { width: 100%; justify-content: center; }

/* =========================================================
   CLIENT REVIEWS (added)
   ========================================================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  color: var(--rose);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--dark);
  margin: 0;
  flex-grow: 1;
}

.review-author { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-weight: 700; font-size: 0.92rem; color: var(--dark); }
.review-role { font-size: 0.8rem; color: var(--dark-soft); }

/* =========================================================
   RESPONSIVE (added)
   ========================================================= */

@media (max-width: 480px) {
  .portfolio-modal-panel { padding: 22px; }
  .portfolio-modal-preview .mock { transform: scale(1); }
}
