/*
Theme Name: Athar Creative
Theme URI: https://atharcreative.se
Author: Athar Creative
Description: Premium Scandinavian luxury print studio theme
Version: 2.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: athar-creative
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --bg: #FAF8F5;
  --bg-card: #FFFFFF;
  --text-primary: #181818;
  --text-secondary: #666666;
  --accent: #A07A48;
  --border: #ECE8E2;
  --shadow-soft: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-medium: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 60px rgba(0,0,0,0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1400px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
}

.ac-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.ac-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 1024px) {
  .ac-container { padding: 0 32px; }
}

@media (max-width: 768px) {
  .ac-container { padding: 0 20px; }
}

/* ============================================
   HEADER
   ============================================ */
.ac-header {
  position: sticky;
  top: 20px;
  width: calc(100% - 96px);
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(236, 232, 226, 0.6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 0 32px;
  transition: var(--transition);
}

.ac-header.scrolled {
  background: rgba(250, 248, 245, 0.97);
  box-shadow: var(--shadow-medium);
}

.ac-header.scrolled .ac-header__inner {
  height: 56px;
}

.ac-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.ac-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ac-header__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
}

.ac-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ac-header__logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.ac-header__logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.ac-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.ac-header__nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  text-transform: uppercase;
}

.ac-header__nav a:hover {
  color: var(--text-primary);
}

.ac-header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
}

.ac-header__lang:hover {
  color: var(--text-primary);
}

.ac-header__lang svg {
  width: 10px;
  height: 10px;
  opacity: 0.6;
}

.ac-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.ac-header__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.ac-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 81px 0 72px;
  background: var(--bg);
}

.ac-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ac-hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ac-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ac-hero__label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.ac-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.ac-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 400px;
}

.ac-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ac-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text-primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: fit-content;
}

.ac-btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160, 122, 72, 0.3);
}

.ac-hero__note {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  opacity: 0.7;
}

/* Hero Visual */
.ac-hero__visual {
  position: relative;
}

.ac-hero__visual-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/4.5;
  background: var(--border);
}

.ac-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.ac-hero__slide.active {
  opacity: 1;
}

.ac-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ac-hero__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.ac-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.ac-hero__dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.ac-section {
  padding: 90px 0;
}

.ac-section__header {
  margin-bottom: 60px;
}

.ac-section__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 12px;
  letter-spacing: -0.01em;
}

/* ============================================
   PRINT SERVICES SECTION
   ============================================ */
.ac-services {
  background: var(--bg);
}

.ac-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ac-service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: default;
}

.ac-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.ac-service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}

.ac-service-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.ac-service-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   PRIVATE STUDIO SECTION
   ============================================ */
.ac-studio {
  background: #F5F2EE;
  padding: 90px 0;
}

.ac-studio__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ac-studio__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ac-studio__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-top: 12px;
}

.ac-studio__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 400px;
}

.ac-btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: fit-content;
}

.ac-btn--outline:hover {
  background: var(--text-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.ac-studio__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--border);
}

.ac-studio__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ac-studio__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EDE9E3 0%, #D9D4CC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ============================================
   STATISTICS STRIP
   ============================================ */
.ac-stats {
  background: var(--text-primary);
  padding: 65px 0;
}

.ac-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.ac-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.ac-stat__number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ac-stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FEATURED WORK
   ============================================ */
.ac-work {
  background: var(--bg);
}

.ac-work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ac-work-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--border);
  position: relative;
  cursor: pointer;
}

.ac-work-card:hover .ac-work-card__overlay {
  opacity: 1;
}

.ac-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ac-work-card:hover img {
  transform: scale(1.04);
}

.ac-work-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--border) 0%, #DDD8D0 100%);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.ac-work-card:hover .ac-work-card__placeholder {
  transform: scale(1.05);
}

.ac-work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,24,24,0.4);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ac-work-card__label {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #FFFFFF;
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.ac-footer {
  background: var(--text-primary);
  padding: 60px 0 40px;
}

.ac-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.ac-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ac-footer__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.ac-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 260px;
}

.ac-footer__col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.ac-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ac-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.ac-footer__links a:hover {
  color: #FFFFFF;
}

.ac-footer__social {
  display: flex;
  gap: 14px;
}

.ac-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: var(--transition);
}

.ac-footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

.ac-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ac-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}

.ac-footer__made {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .ac-header {
    width: calc(100% - 64px);
  }

  .ac-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .ac-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ac-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ac-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
  }

  .ac-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .ac-header {
    width: calc(100% - 32px);
    top: 12px;
    padding: 0 20px;
  }

  .ac-header__nav {
    display: none;
  }

  .ac-header__lang {
    display: none;
  }

  .ac-header__hamburger {
    display: flex;
  }

  .ac-hero {
    padding: 100px 0 60px;
  }

  .ac-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ac-hero__visual {
    order: -1;
  }

  .ac-hero__visual-wrap {
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
  }

  .ac-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ac-studio__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ac-studio__visual {
    aspect-ratio: 16/9;
    order: -1;
    border-radius: var(--radius-lg);
  }

  .ac-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .ac-stat__number {
    font-size: 40px;
  }

  .ac-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ac-footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ac-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ac-hero__title {
    font-size: 44px;
  }

  .ac-section {
    padding: 72px 0;
  }

  .ac-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .ac-work__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ============================================
   MOBILE NAV OPEN STATE
   ============================================ */
.ac-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.ac-mobile-nav.open {
  display: flex;
}

.ac-mobile-nav a {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--text-primary);
}

.ac-mobile-nav__close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-primary);
}



/* ============================================
   HERO ENHANCEMENTS - Floating Animation & Gradients
   ============================================ */

@keyframes ac-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes ac-float-delayed {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Hero background light gradients */
.ac-hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(160,122,72,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ac-hero::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(160,122,72,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ac-hero {
  position: relative;
  overflow: hidden;
}

.ac-hero__inner {
  position: relative;
  z-index: 1;
}

/* Floating animation on hero visual cards */
.ac-hero__visual-wrap {
  animation: ac-float 6s ease-in-out infinite;
}

.ac-hero__slide:nth-child(even) .ac-hero__slide-card {
  animation: ac-float-delayed 7s ease-in-out infinite;
}

/* Featured work card warm premium visuals */
.ac-work-card__placeholder {
  background: linear-gradient(135deg, #F0E8DC 0%, #E8D8C4 40%, #D4C0A0 100%);
  position: relative;
  overflow: hidden;
}

.ac-work-card__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(160,122,72,0.15) 0%, transparent 60%);
}

.ac-work-card:nth-child(2) .ac-work-card__placeholder {
  background: linear-gradient(135deg, #EBE4D8 0%, #D8CDBA 50%, #C8B898 100%);
}

.ac-work-card:nth-child(3) .ac-work-card__placeholder {
  background: linear-gradient(135deg, #F2EDE4 0%, #E0D4C0 40%, #CABB9E 100%);
}

.ac-work-card:nth-child(4) .ac-work-card__placeholder {
  background: linear-gradient(135deg, #EDE6DB 0%, #D9CEB8 50%, #C6B494 100%);
}

/* ============================================
   WORDPRESS DEFAULT RESET
   ============================================ */
.wp-block-group,
.entry-content,
.entry-header,
.wp-site-blocks {
  all: unset;
}

/* sticky header: no body padding-top required */

#wpadminbar {
  position: fixed !important;
}

.ac-page #wpadminbar ~ .ac-header {
  top: 72px;
}

@media screen and (max-width: 782px) {
  .ac-page #wpadminbar ~ .ac-header {
    top: 58px;
  }
}


/* ============================================
   MICRO INTERACTIONS & SCROLL ANIMATIONS
   ============================================ */

/* Fade-in on scroll */
.ac-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ac-fade-in.ac-visible {
  opacity: 1;
  transform: translateY(0);
}

.ac-fade-in-delay-1 { transition-delay: 0.1s; }
.ac-fade-in-delay-2 { transition-delay: 0.2s; }
.ac-fade-in-delay-3 { transition-delay: 0.3s; }
.ac-fade-in-delay-4 { transition-delay: 0.4s; }

/* Image hover lift effect */
.ac-work-card {
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s ease;
}

.ac-work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Hero visual hover subtle parallax */
.ac-hero__visual-wrap {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ac-hero__visual-wrap:hover {
  transform: scale(1.012) translateY(-4px);
}

/* Studio image hover */
.ac-studio__img-wrap {
  overflow: hidden;
  border-radius: 32px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.ac-studio__img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.ac-studio__img-wrap img {
  transition: transform 0.6s ease;
}

.ac-studio__img-wrap:hover img {
  transform: scale(1.04);
}

/* Slide image fill */
.ac-slide-img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.8s ease;
}

/* Service cards hover */
.ac-service-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.ac-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* Stat items hover */
.ac-stat {
  transition: transform 0.35s ease;
}

.ac-stat:hover {
  transform: translateY(-3px);
}

/* Button transitions - softer */
.ac-btn--primary,
.ac-btn--outline {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ============================================================
   STUDIO SECTION — COLLAGE LAYOUT
   ============================================================ */

.ac-studio__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ac-studio__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ac-studio__collage {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.ac-studio__collage-main {
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
}

.ac-studio__collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ac-studio__collage-main:hover img {
  transform: scale(1.03);
}

.ac-studio__collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  height: 180px;
}

.ac-studio__collage-item {
  border-radius: 8px;
  overflow: hidden;
}

.ac-studio__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ac-studio__collage-item:hover img {
  transform: scale(1.05);
}
/* Two-image layout */
.ac-studio__collage--two {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  height: 520px;
}

.ac-studio__collage--two .ac-studio__collage-item {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.ac-studio__collage--two .ac-studio__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ac-studio__collage--two .ac-studio__collage-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .ac-studio__inner {
    grid-template-columns: 1fr;
  }
  .ac-studio__collage-main {
    height: 240px;
  }
  .ac-studio__collage-grid {
    height: 120px;
  }
}

/* Studio collage grid layout (3-item) */
.ac-studio__collage--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 254px 254px;
  gap: 12px;
  height: 520px;
  min-height: 520px;
  max-height: 520px;
}

.ac-studio__collage-item--tall {
  grid-row: span 2;
  grid-column: 1;
}

.ac-studio__collage--grid .ac-studio__collage-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.ac-studio__collage--grid .ac-studio__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ac-studio__collage--grid .ac-studio__collage-item:hover img {
  transform: scale(1.04);
}

.ac-studio__collage-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(24, 24, 24, 0.55);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Studio service tags */
.ac-studio__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ac-studio__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 14px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .ac-studio__collage--grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
    height: 332px;
    min-height: 332px;
    max-height: 332px;
  }
}

@media (max-width: 600px) {
  .ac-studio__collage--grid {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 160px 160px;
    height: auto;
    min-height: auto;
    max-height: none;
  }
  .ac-studio__collage-item--tall {
    grid-row: span 1;
  }
}
/* Studio service tags */
.ac-studio__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ac-studio__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 14px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .ac-studio__collage--grid {
    grid-template-columns: 1fr 1fr;
    height: 320px;
  }
}

@media (max-width: 600px) {
  .ac-studio__collage--grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .ac-studio__collage-item--tall {
    grid-row: span 1;
    height: 220px;
  }
}

/* ============================================================
   CLIENT TRUST STRIP
   ============================================================ */

.ac-trust {
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.ac-trust__label {
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 2rem;
  font-weight: 500;
}

.ac-trust__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.ac-trust__logo {
  opacity: 0.2;
  transition: opacity 0.3s ease;
  color: var(--text-primary, #181818);
}

.ac-trust__logo:hover {
  opacity: 0.45;
}

@media (max-width: 768px) {
  .ac-trust__logos {
    gap: 1.5rem;
  }
}

/* ============================================================
   FEATURED WORK — PREMIUM 2-ROW GRID
   ============================================================ */

.ac-featured__grid--premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.ac-featured__card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.ac-featured__card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ac-featured__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ac-featured__card:hover .ac-featured__card-img img {
  transform: scale(1.06);
}

.ac-featured__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ac-featured__card:hover .ac-featured__card-overlay {
  opacity: 1;
}

.ac-featured__card-label {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .ac-featured__grid--premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
}

@media (max-width: 480px) {
  .ac-featured__grid--premium {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */

.ac-final-cta {
  padding: 7rem 0;
  text-align: center;
  background: var(--bg, #FAF8F5);
}

.ac-final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.ac-final-cta__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.ac-final-cta__desc {
  font-size: 1.0625rem;
  opacity: 0.6;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

/* ============================================================
   STUDIO SECTION — OVERRIDE OLD STYLES
   ============================================================ */

.ac-studio__images {
  display: none;
}



/* ============================================
   PRINT PAGE - COMPLETE STYLES
   Classes: pr-*, grp-*, prod-*, ord-*, qt-*
   ============================================ */

.pr {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
}

.pr-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pr-hc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pr-ey {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pr-ey::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pr-ey span { color: var(--text-secondary); }

.pr-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-primary);
  margin: 0;
}

.pr-hero h1 em,
.pr-hero h1 span { font-style: italic; color: var(--accent); }

.pr-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

.pr-cats { display: flex; gap: 8px; flex-wrap: wrap; }

.pr-cat {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.pr-cat:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(160,122,72,.06);
}

.pr-intro {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 70px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--border);
}

.pr-intro-txt h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--text-primary);
  margin: 0 0 20px;
}

.pr-intro-txt p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 16px;
}

.pr-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pr-stat {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pr-stat:last-child { border-bottom: none; padding-bottom: 0; }

.pr-stat strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pr-stat span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Group sections */
.grp-bg-light { background: #F5F2EE; }
.grp-bg-white { background: var(--bg-card); }
.grp-bg-dark { background: var(--text-primary); }
.grp-dark { color: #fff; }

.grp-sec {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 48px;
}

.grp-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.grp-num {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: var(--border);
  flex-shrink: 0;
}

.grp-dark .grp-num { color: rgba(255,255,255,.1); }

.grp-title { padding-top: 8px; }

.lb {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.grp-dark .lb { color: #C9A96E; }

.grp-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 14px;
}

.grp-dark .grp-title h2 { color: #fff; }

.grp-title p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0;
}

.grp-dark .grp-title p { color: rgba(255,255,255,.5); }

/* Product grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.prod-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.prod-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: transparent;
}

.prod-dark .prod-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}

.prod-dark .prod-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-3px);
}

.prod-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(160,122,72,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.prod-dark .prod-ico { background: rgba(201,169,110,.15); }

.prod-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.prod-dark .prod-card h3 { color: #fff; }

.f3 {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0 0 16px;
  line-height: 1.5;
  display: block;
}

.prod-dark .f3 { color: rgba(255,255,255,.4); }

.prod-meta {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}

.prod-dark .prod-meta { border-color: rgba(255,255,255,.08); }

.full {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.prod-dark .full { color: #fff; }

.sub3 {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: .04em;
  display: block;
}

.prod-dark .sub3 { color: rgba(255,255,255,.35); }

/* Group details */
.grp-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  background: rgba(160,122,72,.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(160,122,72,.12);
}

.grp-dark .grp-details {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}

.gd-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
}

.gd-item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.gd-item span { font-size: 12px; color: var(--text-secondary); }

.grp-dark .gd-item strong { color: #fff; }
.grp-dark .gd-item span { color: rgba(255,255,255,.4); }

/* Order section */
.ord-bg {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ord-sec {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 48px;
}

.pr-sh {
  text-align: center;
  margin-bottom: 60px;
}

.pr-sh .lb { display: block; margin-bottom: 12px; }

.pr-sh h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--text-primary);
  margin: 0;
}

.ord-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ord-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.ord-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.ord-step h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0;
}

.ord-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Quote / CTA section */
.qt-bg {
  background: var(--text-primary);
  padding: 90px 0;
}

.qt-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.qt-inner .pr-sh h2 { color: #fff; }

.qt-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.1;
}

.qt-inner h2 em { font-style: italic; color: #C9A96E; }

.qt-inner p {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  margin: 0 0 40px;
  line-height: 1.7;
}

.qt-contact {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.qt-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  transition: var(--transition);
}

.qt-contact a:first-child {
  background: var(--accent);
  color: #fff;
}

.qt-contact a:first-child:hover { background: #8d6a3a; }

.qt-contact a:last-child {
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
}

.qt-contact a:last-child:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.05);
}

/* Print responsive */
@media (max-width: 1024px) {
  .pr-hero, .pr-intro, .grp-sec, .ord-sec { padding: 70px 32px; }
  .pr-hero, .pr-intro { grid-template-columns: 1fr; gap: 48px; }
  .grp-details { grid-template-columns: 1fr 1fr; }
  .ord-steps { grid-template-columns: 1fr 1fr; }
  .qt-inner { padding: 0 32px; }
  .qt-bg { padding: 70px 0; }
}

@media (max-width: 768px) {
  .pr-hero, .pr-intro, .grp-sec, .ord-sec { padding: 50px 24px; }
  .grp-head { grid-template-columns: 1fr; gap: 16px; }
  .grp-num { font-size: 48px; }
  .prod-grid { grid-template-columns: 1fr; }
  .grp-details { grid-template-columns: 1fr; }
  .ord-steps { grid-template-columns: 1fr 1fr; }
  .qt-inner { padding: 0 24px; }
  .qt-bg { padding: 50px 0; }
}

@media (max-width: 480px) {
  .ord-steps { grid-template-columns: 1fr; }
}


/* ============================================
   STUDIO ACCESS PAGE STYLES
   ============================================ */

.studio-content {
  background: #181818;
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  min-height: calc(100vh - 120px);
}

.studio-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,169,110,.07) 0%, transparent 55%);
  pointer-events: none;
}

.studio-inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.studio-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 60px;
  transition: color .3s;
}

.studio-back:hover { color: rgba(255,255,255,.7); }

.studio-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 20px;
  display: block;
}

.studio-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}

.studio-headline span { color: #C9A96E; }

.studio-sub {
  font-size: 15px;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  margin: 0 0 48px;
}

.studio-form-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
}

.studio-form-box .form-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 32px;
  display: block;
}

.studio-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.studio-type {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all .2s;
}

.studio-type:hover,
.studio-type.active {
  border-color: #C9A96E;
  background: rgba(201,169,110,.08);
}

.studio-type strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.studio-type span {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.studio-form-group { margin-bottom: 20px; }

.studio-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 10px;
}

.studio-form-group input,
.studio-form-group textarea,
.studio-form-group select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color .2s;
  outline: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.studio-form-group input:focus,
.studio-form-group textarea:focus,
.studio-form-group select:focus {
  border-color: rgba(201,169,110,.5);
}

.studio-form-group select option { background: #1a1a1a; color: #fff; }

.studio-form-group input::placeholder,
.studio-form-group textarea::placeholder {
  color: rgba(255,255,255,.25);
}

.studio-form-group textarea { height: 120px; resize: vertical; }

.studio-submit-btn {
  width: 100%;
  background: #C9A96E;
  color: #0d0d0c;
  border: none;
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  box-sizing: border-box;
}

.studio-submit-btn:hover {
  background: #b8924d;
  transform: translateY(-1px);
}

.studio-privacy {
  font-size: 11px;
  color: rgba(255,255,255,.2);
  text-align: center;
  line-height: 1.6;
  margin: 24px 0 0;
}

@media (max-width: 768px) {
  .studio-inner { padding: 0 24px; }
  .studio-content { padding: 60px 0 70px; }
  .studio-types { grid-template-columns: 1fr; }
  .studio-form-box { padding: 28px 24px; }
}

/* ============================================
   GLOBAL CONSISTENCY
   ============================================ */

/* Prevent Gutenberg block styles from interfering */
.wp-block-group,
.entry-content,
.entry-header,
.wp-site-blocks {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

.ac-page .wp-block-group {
  padding: 0 !important;
  max-width: none !important;
}

/* Contact page */
.contact-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 48px;
}

@media (max-width: 1024px) {
  .contact-wrap { padding: 70px 32px; }
}

@media (max-width: 768px) {
  .contact-wrap { padding: 50px 24px; }
}

/* Sticky header scroll transition */
.ac-header {
  will-change: box-shadow, background;
}


/* ============================================
   STUDIO ACCESS PAGE - Override dark theme CSS
   ============================================ */
.studio-content,
.studio-content.studio-unlocked {
  background: #FAF8F5 !important;
  color: #181818 !important;
  position: static !important;
}
.studio-content::before {
  display: none !important;
}

/* STUDIO ACCESS - New Light Design */
.sa-back-bar { background: #FAF8F5; border-bottom: 1px solid #ECE8E2; padding: 16px 48px; }
.sa-back-bar a { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #666; text-decoration: none; }
.sa-back-bar a:hover { color: #A07A48; }
.sa-hero { padding: 80px 48px 64px; max-width: 1100px; margin: 0 auto; }
.sa-hero-eyebrow { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #A07A48; margin-bottom: 20px; }
.sa-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; line-height: 1.1; color: #181818; margin: 0 0 20px; }
.sa-hero h1 em { font-style: italic; color: #A07A48; }
.sa-hero p { font-size: 1.1rem; color: #666; max-width: 540px; line-height: 1.7; margin: 0 0 32px; }
.sa-logout-btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #A07A48; text-decoration: none; border: 1px solid #A07A48; padding: 10px 20px; border-radius: 3px; transition: all .2s; }
.sa-logout-btn:hover { background: #A07A48; color: #fff; }
.sa-divider-line { width: 60px; height: 1px; background: #A07A48; margin: 48px 0 0; }
.sa-section { padding: 64px 48px; max-width: 1100px; margin: 0 auto; }
.sa-section-label { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #A07A48; margin-bottom: 12px; }
.sa-section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: #181818; margin: 0 0 40px; line-height: 1.2; }
.sa-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sa-portfolio-item { aspect-ratio: 4/3; background: #ECE8E2; border-radius: 4px; overflow: hidden; }
.sa-packages-wrap { background: #fff; padding: 64px 0; }
.sa-packages-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.sa-packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sa-pkg { background: #FAF8F5; border: 1px solid #ECE8E2; border-radius: 6px; padding: 36px 32px; }
.sa-pkg-badge { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #A07A48; margin-bottom: 16px; }
.sa-pkg h3 { font-size: 1.4rem; font-weight: 400; color: #181818; margin: 0 0 8px; }
.sa-pkg-price { font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 600; color: #181818; margin: 0 0 20px; }
.sa-pkg-price span { font-size: 0.9rem; font-weight: 400; color: #666; }
.sa-pkg-divider { width: 32px; height: 1px; background: #A07A48; margin: 0 0 20px; }
.sa-pkg ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.sa-pkg li { font-size: 0.95rem; color: #444; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.sa-pkg li::before { content: "\2014"; color: #A07A48; flex-shrink: 0; }
.sa-pkg-featured { border-color: #A07A48 !important; background: #FFFDF9 !important; }
.sa-booking { background: #181818; padding: 80px 48px; text-align: center; }
.sa-booking-inner { max-width: 600px; margin: 0 auto; }
.sa-booking .sa-section-label { color: #A07A48; }
.sa-booking h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; color: #fff; margin: 16px 0 20px; }
.sa-booking p { color: #999; font-size: 1rem; line-height: 1.7; margin: 0 0 36px; }
.sa-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: #A07A48; color: #fff; text-decoration: none; padding: 16px 36px; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 4px; }
.sa-cta-btn:hover { background: #8a6838; }
.sa-cta-secondary { display: block; margin-top: 20px; color: #666; font-family: 'Inter', sans-serif; font-size: 0.85rem; text-decoration: none; }
.sa-cta-secondary:hover { color: #A07A48; }
.sa-contact-section { background: #FAF8F5; border-top: 1px solid #ECE8E2; padding: 64px 48px; }
.sa-contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.sa-contact-info h3 { font-size: 1.6rem; font-weight: 400; margin: 0 0 16px; }
.sa-contact-info p { color: #666; line-height: 1.7; margin: 0 0 24px; }
.sa-contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #444; }
.sa-contact-detail a { color: #A07A48; text-decoration: none; }

/* ============================================
   PRINT & PRODUCTS PAGE
   ============================================ */
.pp-page { background: #FAF8F5; }
.pp-hero { padding: 80px 48px 64px; max-width: 1100px; margin: 0 auto; }
.pp-eyebrow { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #A07A48; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.pp-eyebrow::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #A07A48; }
.pp-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; line-height: 1.05; color: #181818; margin: 0 0 20px; }
.pp-hero h1 em { font-style: italic; color: #A07A48; }
.pp-hero p { font-size: 1.1rem; color: #666; max-width: 500px; line-height: 1.7; margin: 0 0 36px; }
.pp-cats { display: flex; gap: 12px; flex-wrap: wrap; }
.pp-cat { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #181818; text-decoration: none; border: 1px solid #D8D3CB; padding: 9px 18px; border-radius: 30px; transition: all .2s; }
.pp-cat:hover { background: #A07A48; border-color: #A07A48; color: #fff; }
.pp-category { padding: 64px 0; border-top: 1px solid #ECE8E2; }
.pp-category-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.pp-cat-header { display: flex; align-items: flex-start; margin-bottom: 40px; gap: 32px; }
.pp-cat-num { font-family: 'Inter', sans-serif; font-size: 5rem; font-weight: 700; color: #ECE8E2; line-height: 1; flex-shrink: 0; }
.pp-cat-info { flex: 1; }
.pp-cat-label { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #A07A48; margin-bottom: 10px; }
.pp-cat-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; color: #181818; margin: 0 0 10px; line-height: 1.2; }
.pp-cat-info p { font-size: 0.95rem; color: #666; line-height: 1.6; margin: 0; }
.pp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pp-card { background: #fff; border: 1px solid #ECE8E2; border-radius: 6px; padding: 28px 24px; transition: border-color .2s; }
.pp-card:hover { border-color: #A07A48; }
.pp-card-icon { width: 40px; height: 40px; background: #FAF8F5; border-radius: 6px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.pp-card h3 { font-size: 1.15rem; font-weight: 400; color: #181818; margin: 0 0 8px; }
.pp-card p { font-size: 0.88rem; color: #888; line-height: 1.5; margin: 0; }
.pp-cta { background: #181818; padding: 80px 48px; text-align: center; }
.pp-cta-inner { max-width: 600px; margin: 0 auto; }
.pp-cta-label { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #A07A48; margin-bottom: 16px; }
.pp-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; color: #fff; margin: 0 0 16px; }
.pp-cta p { color: #999; font-size: 0.95rem; line-height: 1.7; margin: 0 0 36px; }
.pp-btn-primary { display: inline-flex; align-items: center; gap: 10px; background: #A07A48; color: #fff; text-decoration: none; padding: 14px 32px; font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 4px; }
.pp-btn-primary:hover { background: #8a6838; }
.pp-btn-secondary { display: inline-flex; align-items: center; gap: 8px; margin-left: 16px; color: #A07A48; text-decoration: none; font-family: 'Inter', sans-serif; font-size: 0.82rem; border: 1px solid #A07A48; padding: 14px 24px; border-radius: 4px; transition: all .2s; }
.pp-btn-secondary:hover { background: #A07A48; color: #fff; }
.pp-btn-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px; }
@media (max-width: 768px) {
  .sa-portfolio-grid, .sa-packages-grid { grid-template-columns: 1fr; }
  .sa-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .sa-hero, .sa-section, .sa-contact-section, .sa-booking { padding-left: 24px; padding-right: 24px; }
  .sa-back-bar, .sa-packages-inner { padding-left: 24px; padding-right: 24px; }
  .pp-hero, .pp-category-inner, .pp-cta { padding-left: 24px; padding-right: 24px; }
  .pp-cat-header { flex-direction: column; gap: 16px; }
  .pp-cards { grid-template-columns: 1fr; }
  .pp-btn-secondary { margin-left: 0; }
}

/* ============================================
   STUDIO ACCESS - WordPress Password Form
   ============================================ */
.post-password-form {
  max-width: 480px;
  margin: 120px auto;
  padding: 60px 48px;
  text-align: center;
  background: #FAF8F5;
}
.post-password-form p:first-child {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A07A48;
  margin-bottom: 24px;
}
.post-password-form p:first-child::before {
  content: "ATHAR CREATIVE STUDIO";
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #181818;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.post-password-form label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #666;
  display: block;
  margin-bottom: 12px;
}
.post-password-form input[type="password"] {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ECE8E2;
  background: #fff;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #181818;
  outline: none;
  border-radius: 4px;
  margin-bottom: 16px;
  box-sizing: border-box;
  transition: border-color .2s;
}
.post-password-form input[type="password"]:focus {
  border-color: #A07A48;
}
.post-password-form input[type="submit"] {
  background: #A07A48;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  transition: background .2s;
}
.post-password-form input[type="submit"]:hover {
  background: #8a6838;
}
