/* index.css */
body.page-home *,body.page-home *::before,body.page-home *::after{ margin: 0; padding: 0; box-sizing: border-box; }:root{
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --charcoal: #1a1714;
  --dark-brown: #2c2218;
  --mid: #7a6a58;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}html{ scroll-behavior: smooth; }body.page-home{
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}body.page-home nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  background: linear-gradient(to bottom, rgba(26,23,20,0.95), transparent);
  transition: background 0.4s ease;
}body.page-home nav.scrolled{
  background: rgba(26,23,20,0.97);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}body.page-home .logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}body.page-home .logo img{
  display: block;
  width: auto;
  height: 52px;
  max-width: 100px;
}body.page-home .nav-links{
  display: flex;
  gap: 48px;
  list-style: none;
}body.page-home .nav-links a{
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}body.page-home .nav-links a::after{
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}body.page-home .nav-links a:hover{ color: var(--gold); }body.page-home .nav-links a:hover::after{ width: 100%; }body.page-home .hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}body.page-home .hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.05) 0%, transparent 50%),
    linear-gradient(135deg, #0d0b09 0%, #1a1714 40%, #22190f 100%);
}body.page-home .hero-bg::after{
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}body.page-home .deco-line{
  position: absolute;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent);
  width: 1px;
  height: 60%;
  top: 20%;
}body.page-home .deco-line-left{ left: 12%; }body.page-home .deco-line-right{ right: 12%; }body.page-home .hero-content{
  position: relative;
  text-align: center;
  max-width: 760px;
  padding: 0 40px;
  animation: homeHeroReveal 1.6s ease forwards;
  opacity: 0;
  z-index: 2;
}
@keyframes homeHeroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}body.page-home .hero-eyebrow{
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}body.page-home .hero-eyebrow::before,body.page-home .hero-eyebrow::after{
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}body.page-home .hero-eyebrow::after{ background: linear-gradient(to left, transparent, var(--gold)); }body.page-home .hero h1{
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 16px;
}body.page-home .hero h1 em{
  font-style: italic;
  color: var(--gold);
  display: block;
}body.page-home .hero-sub{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(245,240,232,0.55);
  margin-bottom: 60px;
  font-weight: 300;
  letter-spacing: 0.05em;
}body.page-home .hero-cta-group{
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}body.page-home .hero-card-stack{
  position: absolute;
  top: 53%;
  width: min(24vw, 360px);
  height: min(36vw, 540px);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}body.page-home .hero-card-stack-left{ left: 5%; }body.page-home .hero-card-stack-right{ right: 5%; }body.page-home .hero-card{
  position: absolute;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #130f0c;
  border: 1px solid rgba(201,169,110,0.18);
  box-shadow: 0 28px 70px rgba(0,0,0,0.38);
}body.page-home .hero-card::after{
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245,240,232,0.14);
  pointer-events: none;
}body.page-home .hero-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}body.page-home .hero-card-left-top,body.page-home .hero-card-right-top{
  width: 46%;
  top: 4%;
  opacity: 0.86;
}body.page-home .hero-card-left-center,body.page-home .hero-card-right-center{
  width: 58%;
  top: 16%;
  z-index: 3;
}body.page-home .hero-card-left-bottom,body.page-home .hero-card-right-bottom{
  width: 42%;
  bottom: 2%;
  opacity: 0.9;
}body.page-home .hero-card-left-top{
  right: 4%;
  transform: rotate(9deg);
  z-index: 2;
}body.page-home .hero-card-left-center{
  left: 10%;
  transform: rotate(-5deg);
}body.page-home .hero-card-left-bottom{
  left: 0;
  transform: rotate(-11deg);
  z-index: 1;
}body.page-home .hero-card-right-top{
  left: 0;
  transform: rotate(-10deg);
  z-index: 1;
}body.page-home .hero-card-right-center{
  left: 20%;
  transform: rotate(-4deg);
}body.page-home .hero-card-right-bottom{
  right: 0;
  transform: rotate(9deg);
  z-index: 2;
}body.page-home .btn-primary{
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 18px 44px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
  display: inline-block;
}body.page-home .btn-primary::before{
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}body.page-home .btn-primary:hover::before{ transform: scaleX(1); transform-origin: left; }body.page-home .btn-primary span{ position: relative; z-index: 1; }body.page-home .btn-ghost{
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(245,240,232,0.3);
  padding: 18px 44px;
  text-decoration: none;
  transition: border-color 0.4s, color 0.4s;
  display: inline-block;
}body.page-home .btn-ghost:hover{ border-color: var(--gold); color: var(--gold); }body.page-home .scroll-hint{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(245,240,232,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}body.page-home .scroll-line{
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}body.page-home .section-intro{
  padding: 140px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}body.page-home .section-label{
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}body.page-home .section-label::before{
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}body.page-home .intro-text-block h2{
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 32px;
}body.page-home .intro-text-block h2 em{ font-style: italic; color: var(--gold); }body.page-home .intro-text-block p{
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,240,232,0.6);
  margin-bottom: 20px;
}body.page-home .intro-visual{ position: relative; }body.page-home .photo-placeholder{
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #2c2218 0%, #1a1714 100%);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(201,169,110,0.3);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}body.page-home .photo-placeholder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}body.page-home .photo-placeholder::before{
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: 16px; bottom: 16px;
  border: 1px solid rgba(201,169,110,0.1);
  pointer-events: none;
  z-index: 1;
}body.page-home .services-section{
  padding: 120px 60px;
  background: linear-gradient(to bottom, var(--charcoal), #110f0c);
}body.page-home .services-section-inner{
  max-width: 1400px;
  margin: 0 auto;
}body.page-home .section-header{
  text-align: center;
  margin-bottom: 80px;
}body.page-home .section-header h2{
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}body.page-home .section-header h2 em{ font-style: italic; color: var(--gold); }body.page-home .section-header p{
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.12em;
  margin-top: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}body.page-home .services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}body.page-home .service-card{
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #1a1714;
}body.page-home .service-card-bg{
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}body.page-home .service-card:hover .service-card-bg{ transform: scale(1.06); }body.page-home .service-card-bg.bg1{ background: linear-gradient(160deg, #2c1f14 0%, #1a130d 100%); }body.page-home .service-card-bg.bg2{ background: linear-gradient(160deg, #22180f 0%, #140e08 100%); }body.page-home .service-card-bg.bg3{ background: linear-gradient(160deg, #1e1912 0%, #13110d 100%); }body.page-home .service-card-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: background 0.5s;
}body.page-home .service-card:hover .service-card-overlay{
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.1) 100%);
}body.page-home .service-card-content{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 40px;
  transform: translateY(30px);
  transition: transform 0.5s ease;
}body.page-home .service-card:hover .service-card-content{ transform: translateY(0); }body.page-home .service-card-num{
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}body.page-home .service-card h3{
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}body.page-home .service-card p{
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.1s ease, transform 0.4s 0.1s ease;
}body.page-home .service-card:hover p{ opacity: 1; transform: translateY(0); }body.page-home .service-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.15s ease, transform 0.4s 0.15s ease;
}body.page-home .service-card:hover .service-link{ opacity: 1; transform: translateY(0); }body.page-home .service-link::after{
  content: '→';
  transition: transform 0.3s;
}body.page-home .service-link:hover::after{ transform: translateX(6px); }body.page-home .photo-note{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  color: rgba(201,169,110,0.2);
  font-size: 0.8rem;
  text-align: center;
  white-space: nowrap;
}body.page-home .philosophy{
  padding: 100px 60px;
  background: linear-gradient(135deg, #0e0c09 0%, #1a1410 100%);
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}body.page-home .seo-copy-section{
  padding: 150px 60px;
}body.page-home .seo-copy-inner{
  max-width: 1300px;
  margin: 0 auto;
}body.page-home .seo-copy-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}body.page-home .seo-copy-card{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 34px 30px;
}body.page-home .seo-copy-card h3{
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}body.page-home .seo-copy-card p{
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(245,240,232,0.52);
  line-height: 1.9;
}body.page-home .philosophy-inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}body.page-home .philosophy blockquote{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 40px;
  position: relative;
  padding: 0 40px;
}body.page-home .philosophy blockquote::before{
  content: '"';
  position: absolute;
  left: -10px;
  top: -20px;
  font-size: 6rem;
  color: rgba(201,169,110,0.12);
  font-family: var(--serif);
  line-height: 1;
}body.page-home .philosophy cite{
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}body.page-home .home-faq{
  padding: 30px 60px 120px;
}body.page-home .home-faq-inner{
  max-width: 1100px;
  margin: 0 auto;
}body.page-home .faq-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}body.page-home .faq-item{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 30px 28px;
}body.page-home .faq-item h3{
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
}body.page-home .faq-item p{
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.85;
}body.page-home .cta-section{
  padding: 140px 60px;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}body.page-home .cta-section h2{
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  max-width: 700px;
  line-height: 1.2;
  margin-bottom: 24px;
}body.page-home .cta-section h2 em{ font-style: italic; color: var(--gold); }body.page-home .cta-section p{
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,240,232,0.45);
  max-width: 460px;
  line-height: 1.9;
  margin-bottom: 52px;
}body.page-home footer{
  background: #0a0906;
  padding: 60px;
  border-top: 1px solid rgba(201,169,110,0.1);
}body.page-home .footer-inner{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}body.page-home .footer-brand .logo{ display: block; margin-bottom: 20px; }body.page-home .footer-brand .logo img{ height: auto; max-width: 100px; }body.page-home .footer-brand p{
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(245,240,232,0.35);
  line-height: 1.9;
  max-width: 280px;
}body.page-home .footer-col h4{
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}body.page-home .footer-col ul{ list-style: none; }body.page-home .footer-col ul li{ margin-bottom: 12px; }body.page-home .footer-col ul li a{
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}body.page-home .footer-col ul li a:hover{ color: var(--gold); }body.page-home .footer-bottom{
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(201,169,110,0.08);
}body.page-home .footer-bottom p{
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.2);
}body.page-home .footer-bottom .domain{
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.65rem;
}body.page-home .fade-in{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}body.page-home .fade-in.visible{
  opacity: 1;
  transform: translateY(0);
}body.page-home .nav-toggle{ display: none; }

@media (max-width: 900px) {body.page-home nav{ padding: 20px 28px; }body.page-home nav.scrolled{ padding: 16px 28px; }body.page-home .logo img{ height: auto; max-width: 100px; }body.page-home .nav-links{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 28px 24px;
    background: rgba(26,23,20,0.98);
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }body.page-home #nav.nav-open .nav-links{ display: flex; }body.page-home .nav-links a{
    display: block;
    padding: 14px 0;
  }body.page-home .nav-toggle{
      display: block;
      background: none;
      border: none;
      color: var(--cream);
      font-size: 1.2rem;
      line-height: 1;
    }body.page-home .hero{
      padding-top: 110px;
      min-height: auto;
      display: block;
    }body.page-home .hero-content{
      max-width: 100%;
      padding: 0 28px;
    }body.page-home .hero-card-stack-right{
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      width: min(84vw, 360px);
      height: 430px;
      margin: 34px auto 90px;
  }body.page-home .hero-card-stack-left{ display: none; }body.page-home .section-intro{ grid-template-columns: 1fr; gap: 60px; padding: 80px 28px; }body.page-home .services-grid{ grid-template-columns: 1fr; gap: 12px; }body.page-home .service-card{ aspect-ratio: auto; min-height: 460px; }body.page-home .service-card-content{ padding: 34px 28px; transform: translateY(0); }body.page-home .service-card h3{ font-size: 1.55rem; margin-bottom: 12px; }body.page-home .service-card p{ font-size: 0.8rem; line-height: 1.75; opacity: 1; transform: translateY(0); }body.page-home .service-link{ margin-top: 18px; opacity: 1; transform: translateY(0); }body.page-home .photo-note{ display: none; }body.page-home .seo-copy-section{ padding: 80px 28px 20px; }body.page-home .seo-copy-grid{ grid-template-columns: 1fr; gap: 14px; }body.page-home .home-faq{ padding: 20px 28px 80px; }body.page-home .faq-list{ grid-template-columns: 1fr; gap: 14px; }body.page-home .footer-inner{ grid-template-columns: 1fr; gap: 40px; }body.page-home .hero h1{ font-size: 50px; }body.page-home .philosophy{ padding: 80px 28px; }body.page-home .cta-section{ padding: 100px 28px; }body.page-home .services-section{ padding: 80px 28px; }body.page-home .footer-bottom{ flex-direction: column; gap: 12px; text-align: center; }body.page-home footer{ padding: 60px 28px; }
}


/* boudoir-photography.css */
body.page-boudoir *,body.page-boudoir *::before,body.page-boudoir *::after{ margin: 0; padding: 0; box-sizing: border-box; }:root{
  --cream: #f5f0e8; --warm-white: #faf8f4; --gold: #c9a96e; --gold-light: #e8d5a3;
  --charcoal: #1a1714; --dark-brown: #2c2218; --mid: #7a6a58;
  --serif: 'Cormorant Garamond', Georgia, serif; --sans: 'Jost', sans-serif;
}html{ scroll-behavior: smooth; }body.page-boudoir{ background: var(--charcoal); color: var(--cream); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }body.page-boudoir nav{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 28px 60px; background: linear-gradient(to bottom, rgba(26,23,20,0.95), transparent); transition: background 0.4s, padding 0.3s; }body.page-boudoir nav.scrolled{ background: rgba(26,23,20,0.97); padding: 18px 60px; border-bottom: 1px solid rgba(201,169,110,0.15); }body.page-boudoir .logo{ display: inline-flex; align-items: center; text-decoration: none; }body.page-boudoir .logo img{ display: block; width: auto; height: auto; max-width: 100px; }body.page-boudoir .nav-links{ display: flex; gap: 48px; list-style: none; }body.page-boudoir .nav-links a{ font-family: var(--sans); font-size: 0.7rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); text-decoration: none; position: relative; transition: color 0.3s; }body.page-boudoir .nav-links a::after{ content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.4s ease; }body.page-boudoir .nav-links a:hover,body.page-boudoir .nav-links a.active{ color: var(--gold); }body.page-boudoir .nav-links a:hover::after,body.page-boudoir .nav-links a.active::after{ width: 100%; }body.page-boudoir .nav-toggle{ display: none; }body.page-boudoir .page-hero{
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0b09 0%, #1a1510 40%, #22170a 100%);
}body.page-boudoir .page-hero-bg{
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(201,169,110,0.1) 0%, transparent 65%);
}body.page-boudoir .page-hero-img{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}body.page-boudoir .page-hero-img img{ width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }body.page-boudoir .page-hero-overlay{ position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,23,20,0.95) 0%, rgba(26,23,20,0.4) 50%, rgba(26,23,20,0.2) 100%); }body.page-boudoir .page-hero-content{ position: relative; max-width: 800px; animation: boudoirHeroReveal 1.4s ease forwards; opacity: 0; }
@keyframes boudoirHeroReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }body.page-boudoir .breadcrumb{ font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }body.page-boudoir .breadcrumb a{ color: rgba(245,240,232,0.4); text-decoration: none; }body.page-boudoir .breadcrumb a:hover{ color: var(--gold); }body.page-boudoir .page-hero h1{ font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300; line-height: 1.0; color: var(--cream); }body.page-boudoir .page-hero h1 em{ font-style: italic; color: var(--gold); }body.page-boudoir .page-hero-sub{ font-family: var(--sans); font-size: 0.85rem; font-weight: 300; color: rgba(245,240,232,0.5); margin-top: 20px; letter-spacing: 0.08em; line-height: 1.8; max-width: 500px; }body.page-boudoir .service-intro{
  max-width: 1300px; margin: 0 auto; padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start;
}body.page-boudoir .section-label{ font-family: var(--sans); font-size: 0.6rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 16px; }body.page-boudoir .section-label::before{ content: ''; width: 30px; height: 1px; background: var(--gold); }body.page-boudoir .service-intro-text h2{ font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.25; color: var(--cream); margin-bottom: 30px; }body.page-boudoir .service-intro-text h2 em{ font-style: italic; color: var(--gold); }body.page-boudoir .service-intro-text p{ font-family: var(--sans); font-size: 0.88rem; font-weight: 300; line-height: 1.95; color: rgba(245,240,232,0.58); margin-bottom: 18px; }body.page-boudoir .sticky-sidebar{ position: sticky; top: 120px; }body.page-boudoir .info-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 48px 40px;
  margin-bottom: 24px;
}body.page-boudoir .info-card h3{ font-family: var(--serif); font-size: 1.2rem; color: var(--gold); margin-bottom: 24px; letter-spacing: 0.05em; }body.page-boudoir .info-item{ display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(201,169,110,0.08); }body.page-boudoir .info-item:last-child{ border-bottom: none; }body.page-boudoir .info-label{ font-family: var(--sans); font-size: 0.72rem; font-weight: 300; letter-spacing: 0.1em; color: rgba(245,240,232,0.4); }body.page-boudoir .info-value{ font-family: var(--serif); font-size: 0.95rem; color: var(--cream); }body.page-boudoir .gallery-section{ padding: 0 60px 120px; max-width: 1300px; margin: 0 auto; }body.page-boudoir .gallery-section h2{ font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem); font-weight: 300; color: var(--cream); margin-bottom: 48px; }body.page-boudoir .gallery-section h2 em{ font-style: italic; color: var(--gold); }body.page-boudoir .gallery-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 8px;
}body.page-boudoir .g-item{ background: #2c2218; border: 1px solid rgba(201,169,110,0.1); overflow: hidden; position: relative; }body.page-boudoir .g-item img{ width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity 0.4s, transform 0.6s; }body.page-boudoir .g-item:hover img{ opacity: 1; transform: scale(1.04); }body.page-boudoir .g-item-1{ grid-column: 1/6; grid-row: 1/5; }body.page-boudoir .g-item-2{ grid-column: 6/9; grid-row: 1/3; }body.page-boudoir .g-item-3{ grid-column: 9/13; grid-row: 1/4; }body.page-boudoir .g-item-4{ grid-column: 6/9; grid-row: 3/6; }body.page-boudoir .g-item-5{ grid-column: 9/13; grid-row: 4/7; }body.page-boudoir .g-item-6{ grid-column: 1/5; grid-row: 5/9; }body.page-boudoir .g-item-7{ grid-column: 5/9; grid-row: 6/9; }body.page-boudoir .photo-label{ position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; color: rgba(201,169,110,0.2); font-size: 0.75rem; }body.page-boudoir .packages-section{ background: linear-gradient(to bottom, #110f0c, var(--charcoal)); padding: 120px 60px; }body.page-boudoir .packages-inner{ max-width: 1300px; margin: 0 auto; }body.page-boudoir .section-header{ text-align: center; margin-bottom: 72px; }body.page-boudoir .section-header h2{ font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 300; color: var(--cream); }body.page-boudoir .section-header h2 em{ font-style: italic; color: var(--gold); }body.page-boudoir .section-header p{ font-family: var(--sans); font-size: 0.82rem; color: rgba(245,240,232,0.4); margin-top: 16px; line-height: 1.8; max-width: 460px; margin-left: auto; margin-right: auto; }body.page-boudoir .packages-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }body.page-boudoir .package-card{
  background: #1e1a16;
  border: 1px solid rgba(201,169,110,0.1);
  padding: 56px 44px;
  position: relative;
  transition: border-color 0.4s, transform 0.4s;
}body.page-boudoir .package-card:hover{ border-color: rgba(201,169,110,0.35); transform: translateY(-6px); }body.page-boudoir .package-card.featured{
  background: linear-gradient(160deg, #2c1f10 0%, #1e1509 100%);
  border-color: rgba(201,169,110,0.3);
}body.page-boudoir .featured-badge{
  position: absolute; top: 28px; right: 28px;
  font-family: var(--sans); font-size: 0.55rem; font-weight: 300; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--charcoal); background: var(--gold);
  padding: 6px 14px;
}body.page-boudoir .package-tier{ font-family: var(--sans); font-size: 0.6rem; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }body.page-boudoir .package-name{ font-family: var(--serif); font-size: 1.9rem; font-weight: 300; color: var(--cream); margin-bottom: 8px; }body.page-boudoir .package-tagline{ font-family: var(--serif); font-style: italic; font-size: 0.88rem; color: rgba(245,240,232,0.4); margin-bottom: 40px; }body.page-boudoir .package-divider{ width: 40px; height: 1px; background: rgba(201,169,110,0.3); margin-bottom: 36px; }body.page-boudoir .package-features{ list-style: none; margin-bottom: 48px; }body.page-boudoir .package-features li{ font-family: var(--sans); font-size: 0.78rem; font-weight: 300; color: rgba(245,240,232,0.6); padding: 10px 0; border-bottom: 1px solid rgba(201,169,110,0.06); display: flex; align-items: center; gap: 12px; }body.page-boudoir .package-features li::before{ content: '—'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }body.page-boudoir .btn-primary{ font-family: var(--sans); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); padding: 16px 36px; text-decoration: none; display: inline-block; position: relative; overflow: hidden; transition: color 0.4s; }body.page-boudoir .btn-primary::before{ content: ''; position: absolute; inset: 0; background: var(--cream); transform: scaleX(0); transform-origin: right; transition: transform 0.4s ease; }body.page-boudoir .btn-primary:hover::before{ transform: scaleX(1); transform-origin: left; }body.page-boudoir .btn-primary span{ position: relative; z-index: 1; }body.page-boudoir .btn-ghost{ font-family: var(--sans); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream); background: transparent; border: 1px solid rgba(245,240,232,0.25); padding: 16px 36px; text-decoration: none; display: inline-block; transition: border-color 0.4s, color 0.4s; }body.page-boudoir .btn-ghost:hover{ border-color: var(--gold); color: var(--gold); }body.page-boudoir .cta-strip{ padding: 100px 60px; text-align: center; background: var(--charcoal); }body.page-boudoir .cta-strip h2{ font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 300; color: var(--cream); max-width: 600px; margin: 0 auto 20px; line-height: 1.2; }body.page-boudoir .cta-strip h2 em{ font-style: italic; color: var(--gold); }body.page-boudoir .cta-strip p{ font-family: var(--sans); font-size: 0.82rem; color: rgba(245,240,232,0.4); max-width: 400px; margin: 0 auto 48px; line-height: 1.9; }body.page-boudoir .cta-group{ display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }body.page-boudoir footer{ background: #0a0906; padding: 60px; border-top: 1px solid rgba(201,169,110,0.1); }body.page-boudoir .footer-inner{ max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 50px; }body.page-boudoir .footer-brand .logo{ display: block; margin-bottom: 16px; }body.page-boudoir .footer-brand .logo img{ height: auto; max-width: 100px; }body.page-boudoir .footer-brand p{ font-family: var(--sans); font-size: 0.75rem; color: rgba(245,240,232,0.3); line-height: 1.9; max-width: 260px; }body.page-boudoir .footer-col h4{ font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }body.page-boudoir .footer-col ul{ list-style: none; }body.page-boudoir .footer-col ul li{ margin-bottom: 10px; }body.page-boudoir .footer-col ul li a{ font-family: var(--sans); font-size: 0.78rem; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.3s; }body.page-boudoir .footer-col ul li a:hover{ color: var(--gold); }body.page-boudoir .footer-bottom{ max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(201,169,110,0.08); }body.page-boudoir .footer-bottom p{ font-family: var(--sans); font-size: 0.62rem; color: rgba(245,240,232,0.2); letter-spacing: 0.1em; }body.page-boudoir .footer-bottom .domain{ color: var(--gold); }body.page-boudoir .fade-in{ opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }body.page-boudoir .fade-in.visible{ opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {body.page-boudoir nav{ padding: 20px 24px; }body.page-boudoir .logo img{ height: auto; max-width: 100px; }body.page-boudoir .nav-links{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(26,23,20,0.98);
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }body.page-boudoir #nav.nav-open .nav-links{ display: flex; }body.page-boudoir .nav-links a{ display: block; padding: 14px 0; }body.page-boudoir .nav-toggle{
    display: block;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.2rem;
    line-height: 1;
  }body.page-boudoir .page-hero{ padding: 0 24px 60px; height: 60vh; }body.page-boudoir .service-intro{ grid-template-columns: 1fr; gap: 50px; padding: 80px 24px; }body.page-boudoir .sticky-sidebar{ position: static; }body.page-boudoir .gallery-section{ padding: 0 24px 80px; }body.page-boudoir .gallery-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }body.page-boudoir .g-item-1,body.page-boudoir .g-item-2,body.page-boudoir .g-item-3,body.page-boudoir .g-item-4,body.page-boudoir .g-item-5,body.page-boudoir .g-item-6,body.page-boudoir .g-item-7{ grid-column: auto; grid-row: auto; }body.page-boudoir .packages-grid{ grid-template-columns: 1fr; }body.page-boudoir .packages-section{ padding: 80px 24px; }body.page-boudoir .footer-inner{ grid-template-columns: 1fr; gap: 36px; }body.page-boudoir footer{ padding: 50px 24px; }body.page-boudoir .footer-bottom{ flex-direction: column; gap: 10px; }body.page-boudoir .cta-strip{ padding: 80px 24px; }
}


/* nude-photography.css */
body.page-nude *,body.page-nude *::before,body.page-nude *::after{ margin: 0; padding: 0; box-sizing: border-box; }:root{ --cream: #f5f0e8; --gold: #c9a96e; --charcoal: #1a1714; --mid: #7a6a58; --serif: 'Cormorant Garamond', Georgia, serif; --sans: 'Jost', sans-serif; }html{ scroll-behavior: smooth; }body.page-nude{ background: var(--charcoal); color: var(--cream); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }body.page-nude nav{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 28px 60px; background: linear-gradient(to bottom, rgba(26,23,20,0.95), transparent); transition: all 0.4s; }body.page-nude nav.scrolled{ background: rgba(26,23,20,0.97); padding: 18px 60px; border-bottom: 1px solid rgba(201,169,110,0.15); }body.page-nude .logo{ display: inline-flex; align-items: center; text-decoration: none; }body.page-nude .logo img{ display: block; width: auto; height: auto; max-width: 100px; }body.page-nude .nav-links{ display: flex; gap: 48px; list-style: none; }body.page-nude .nav-links a{ font-family: var(--sans); font-size: 0.7rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); text-decoration: none; position: relative; transition: color 0.3s; }body.page-nude .nav-links a::after{ content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.4s; }body.page-nude .nav-links a:hover,body.page-nude .nav-links a.active{ color: var(--gold); }body.page-nude .nav-links a:hover::after,body.page-nude .nav-links a.active::after{ width: 100%; }body.page-nude .nav-toggle{ display: none; }body.page-nude .split-hero{
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 90px;
}body.page-nude .split-left{
  background: linear-gradient(160deg, #0d0b09 0%, #181310 100%);
  display: flex;
  align-items: center;
  padding: 80px 60px 80px 60px;
  position: relative;
  overflow: hidden;
}body.page-nude .split-left::after{
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent);
}body.page-nude .split-left-content{ max-width: 500px; animation: nudeFadeUp 1.4s ease forwards; opacity: 0; }
@keyframes nudeFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }body.page-nude .breadcrumb{ font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; }body.page-nude .breadcrumb a{ color: rgba(245,240,232,0.35); text-decoration: none; }body.page-nude .split-left h1{ font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.5rem); font-weight: 300; line-height: 1.0; color: var(--cream); margin-bottom: 12px; }body.page-nude .split-left h1 em{ font-style: italic; color: var(--gold); display: block; }body.page-nude .split-tagline{ font-family: var(--sans); font-size: 0.82rem; color: rgba(245,240,232,0.45); margin-top: 24px; line-height: 1.9; margin-bottom: 48px; }body.page-nude .btn-primary{ font-family: var(--sans); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); padding: 16px 36px; text-decoration: none; display: inline-block; position: relative; overflow: hidden; transition: color 0.4s; }body.page-nude .btn-primary::before{ content: ''; position: absolute; inset: 0; background: var(--cream); transform: scaleX(0); transform-origin: right; transition: transform 0.4s; }body.page-nude .btn-primary:hover::before{ transform: scaleX(1); transform-origin: left; }body.page-nude .btn-primary span{ position: relative; z-index: 1; }body.page-nude .split-right{
  position: relative;
  background: #13100d;
  overflow: hidden;
}body.page-nude .split-right img{ width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: transform 8s ease; }body.page-nude .split-right:hover img{ transform: scale(1.03); }body.page-nude .split-right-placeholder{ position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; color: rgba(201,169,110,0.18); font-size: 0.9rem; }body.page-nude .philosophy{ padding: 120px 60px; background: #0f0d0a; }body.page-nude .philosophy-inner{ max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }body.page-nude .phil-text h2{ font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 28px; }body.page-nude .phil-text h2 em{ font-style: italic; color: var(--gold); }body.page-nude .phil-text p{ font-family: var(--sans); font-size: 0.86rem; color: rgba(245,240,232,0.55); line-height: 1.95; margin-bottom: 16px; }body.page-nude .section-label{ font-family: var(--sans); font-size: 0.6rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }body.page-nude .section-label::before{ content: ''; width: 30px; height: 1px; background: var(--gold); }body.page-nude .phil-visual{ position: relative; }body.page-nude .phil-photo{ width: 100%; aspect-ratio: 3/4; background: #2c2218; border: 1px solid rgba(201,169,110,0.15); overflow: hidden; position: relative; }body.page-nude .phil-photo img{ width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }body.page-nude .phil-photo-placeholder{ position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; color: rgba(201,169,110,0.2); font-size: 0.8rem; }body.page-nude .phil-photo::after{ content: ''; position: absolute; top: 16px; left: 16px; right: 16px; bottom: 16px; border: 1px solid rgba(201,169,110,0.08); pointer-events: none; }body.page-nude .process-section{ padding: 120px 60px; background: var(--charcoal); }body.page-nude .process-inner{ max-width: 1200px; margin: 0 auto; }body.page-nude .section-header{ text-align: center; margin-bottom: 80px; }body.page-nude .section-header h2{ font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 300; color: var(--cream); }body.page-nude .section-header h2 em{ font-style: italic; color: var(--gold); }body.page-nude .section-header p{ font-family: var(--sans); font-size: 0.82rem; color: rgba(245,240,232,0.4); max-width: 440px; margin: 16px auto 0; line-height: 1.8; }body.page-nude .process-steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }body.page-nude .step{ background: rgba(255,255,255,0.02); border: 1px solid rgba(201,169,110,0.1); padding: 48px 36px; position: relative; transition: background 0.4s, border-color 0.4s; }body.page-nude .step:hover{ background: rgba(201,169,110,0.04); border-color: rgba(201,169,110,0.25); }body.page-nude .step-num{ font-family: var(--serif); font-size: 4rem; font-weight: 300; color: rgba(201,169,110,0.12); line-height: 1; margin-bottom: 24px; display: block; }body.page-nude .step h3{ font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--cream); margin-bottom: 16px; }body.page-nude .step p{ font-family: var(--sans); font-size: 0.78rem; color: rgba(245,240,232,0.45); line-height: 1.85; }body.page-nude .expect-section{ padding: 120px 60px; background: #110e0b; }body.page-nude .expect-inner{ max-width: 1200px; margin: 0 auto; }body.page-nude .expect-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }body.page-nude .expect-item{ padding: 44px 40px; border: 1px solid rgba(201,169,110,0.1); background: rgba(255,255,255,0.015); }body.page-nude .expect-item h3{ font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--gold); margin-bottom: 16px; letter-spacing: 0.04em; }body.page-nude .expect-item p{ font-family: var(--sans); font-size: 0.8rem; color: rgba(245,240,232,0.5); line-height: 1.9; }body.page-nude .expect-title{ font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 300; color: var(--cream); margin-bottom: 16px; }body.page-nude .expect-title em{ font-style: italic; color: var(--gold); }body.page-nude .expect-intro{ font-family: var(--sans); font-size: 0.86rem; color: rgba(245,240,232,0.45); line-height: 1.9; max-width: 600px; }body.page-nude .cta-strip{ padding: 100px 60px; text-align: center; background: linear-gradient(135deg, #0d0b08 0%, #1a1510 100%); border-top: 1px solid rgba(201,169,110,0.1); }body.page-nude .cta-strip h2{ font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 300; color: var(--cream); max-width: 600px; margin: 0 auto 20px; line-height: 1.2; }body.page-nude .cta-strip h2 em{ font-style: italic; color: var(--gold); }body.page-nude .cta-strip p{ font-family: var(--sans); font-size: 0.82rem; color: rgba(245,240,232,0.4); max-width: 400px; margin: 0 auto 48px; line-height: 1.9; }body.page-nude .cta-group{ display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }body.page-nude .btn-ghost{ font-family: var(--sans); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream); background: transparent; border: 1px solid rgba(245,240,232,0.25); padding: 16px 36px; text-decoration: none; display: inline-block; transition: border-color 0.4s, color 0.4s; }body.page-nude .btn-ghost:hover{ border-color: var(--gold); color: var(--gold); }body.page-nude footer{ background: #0a0906; padding: 60px; border-top: 1px solid rgba(201,169,110,0.1); }body.page-nude .footer-inner{ max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 50px; }body.page-nude .footer-brand .logo{ display: block; margin-bottom: 16px; }body.page-nude .footer-brand .logo img{ height: auto; max-width: 100px; }body.page-nude .footer-brand p{ font-family: var(--sans); font-size: 0.75rem; color: rgba(245,240,232,0.3); line-height: 1.9; max-width: 260px; }body.page-nude .footer-col h4{ font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }body.page-nude .footer-col ul{ list-style: none; }body.page-nude .footer-col ul li{ margin-bottom: 10px; }body.page-nude .footer-col ul li a{ font-family: var(--sans); font-size: 0.78rem; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.3s; }body.page-nude .footer-col ul li a:hover{ color: var(--gold); }body.page-nude .footer-bottom{ max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(201,169,110,0.08); }body.page-nude .footer-bottom p{ font-family: var(--sans); font-size: 0.62rem; color: rgba(245,240,232,0.2); }body.page-nude .footer-bottom .domain{ color: var(--gold); }body.page-nude .fade-in{ opacity: 0; transform: translateY(36px); transition: opacity 0.9s ease, transform 0.9s ease; }body.page-nude .fade-in.visible{ opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {body.page-nude nav{ padding: 20px 24px; }body.page-nude nav.scrolled{ padding: 16px 24px; }body.page-nude .logo img{ height: auto; max-width: 100px; }body.page-nude .nav-links{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(26,23,20,0.98);
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }body.page-nude #nav.nav-open .nav-links{ display: flex; }body.page-nude .nav-links a{ display: block; padding: 14px 0; }body.page-nude .nav-toggle{
    display: block;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.2rem;
    line-height: 1;
  }body.page-nude .split-hero{ grid-template-columns: 1fr; min-height: auto; }body.page-nude .split-left{ padding: 100px 24px 60px; }body.page-nude .split-right{ height: 60vw; }body.page-nude .philosophy{ padding: 80px 24px; }body.page-nude .philosophy-inner{ grid-template-columns: 1fr; gap: 50px; }body.page-nude .process-section{ padding: 80px 24px; }body.page-nude .process-steps{ grid-template-columns: 1fr 1fr; }body.page-nude .expect-section{ padding: 80px 24px; }body.page-nude .expect-grid{ grid-template-columns: 1fr; }body.page-nude .cta-strip{ padding: 80px 24px; }body.page-nude .footer-inner{ grid-template-columns: 1fr; gap: 36px; }body.page-nude footer{ padding: 50px 24px; }body.page-nude .footer-bottom{ flex-direction: column; gap: 10px; }
}


/* couple-photography.css */
body.page-couple *,body.page-couple *::before,body.page-couple *::after{ margin: 0; padding: 0; box-sizing: border-box; }:root{ --cream: #f5f0e8; --gold: #c9a96e; --charcoal: #1a1714; --mid: #7a6a58; --serif: 'Cormorant Garamond', Georgia, serif; --sans: 'Jost', sans-serif; }html{ scroll-behavior: smooth; }body.page-couple{ background: var(--charcoal); color: var(--cream); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }body.page-couple nav{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 28px 60px; background: linear-gradient(to bottom, rgba(26,23,20,0.95), transparent); transition: all 0.4s; }body.page-couple nav.scrolled{ background: rgba(26,23,20,0.97); padding: 18px 60px; border-bottom: 1px solid rgba(201,169,110,0.15); }body.page-couple .logo{ display: inline-flex; align-items: center; text-decoration: none; }body.page-couple .logo img{ display: block; width: auto; height: auto; max-width: 100px; }body.page-couple .nav-links{ display: flex; gap: 48px; list-style: none; }body.page-couple .nav-links a{ font-family: var(--sans); font-size: 0.7rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); text-decoration: none; position: relative; transition: color 0.3s; }body.page-couple .nav-links a::after{ content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.4s; }body.page-couple .nav-links a:hover,body.page-couple .nav-links a.active{ color: var(--gold); }body.page-couple .nav-links a:hover::after,body.page-couple .nav-links a.active::after{ width: 100%; }body.page-couple .nav-toggle{ display: none; }body.page-couple .hero{ min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }body.page-couple .hero-bg{ position: absolute; inset: 0; background: linear-gradient(160deg, #0e0b08 0%, #1a1410 50%, #231809 100%); }body.page-couple .hero-bg::before{ content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 55%; background: #13100c; }body.page-couple .hero-img-panel{ position: absolute; right: 0; top: 0; bottom: 0; width: 55%; overflow: hidden; }body.page-couple .hero-img-panel img{ width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }body.page-couple .hero-img-overlay{ position: absolute; inset: 0; background: linear-gradient(to right, var(--charcoal) 0%, rgba(26,23,20,0.5) 50%, transparent 100%); }body.page-couple .hero-img-placeholder{ position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; color: rgba(201,169,110,0.15); font-size: 0.85rem; }body.page-couple .hero-content{ position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; padding: 0 60px; width: 100%; padding-top: 80px; }body.page-couple .hero-text{ max-width: 560px; animation: coupleFadeUp 1.4s ease forwards; opacity: 0; }
@keyframes coupleFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }body.page-couple .breadcrumb{ font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }body.page-couple .breadcrumb a{ color: rgba(245,240,232,0.35); text-decoration: none; }body.page-couple .hero-text h1{ font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 300; line-height: 1.0; color: var(--cream); }body.page-couple .hero-text h1 em{ font-style: italic; color: var(--gold); display: block; }body.page-couple .hero-text p{ font-family: var(--sans); font-size: 0.86rem; color: rgba(245,240,232,0.5); margin-top: 20px; line-height: 1.9; max-width: 420px; margin-bottom: 44px; }body.page-couple .btn-row{ display: flex; gap: 18px; flex-wrap: wrap; }body.page-couple .btn-primary{ font-family: var(--sans); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); padding: 16px 36px; text-decoration: none; display: inline-block; position: relative; overflow: hidden; transition: color 0.4s; }body.page-couple .btn-primary::before{ content: ''; position: absolute; inset: 0; background: var(--cream); transform: scaleX(0); transform-origin: right; transition: transform 0.4s; }body.page-couple .btn-primary:hover::before{ transform: scaleX(1); transform-origin: left; }body.page-couple .btn-primary span{ position: relative; z-index: 1; }body.page-couple .btn-ghost{ font-family: var(--sans); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream); background: transparent; border: 1px solid rgba(245,240,232,0.25); padding: 16px 36px; text-decoration: none; display: inline-block; transition: border-color 0.4s, color 0.4s; }body.page-couple .btn-ghost:hover{ border-color: var(--gold); color: var(--gold); }body.page-couple .story{ padding: 120px 60px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }body.page-couple .section-label{ font-family: var(--sans); font-size: 0.6rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }body.page-couple .section-label::before{ content: ''; width: 30px; height: 1px; background: var(--gold); }body.page-couple .story-text h2{ font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--cream); margin-bottom: 26px; }body.page-couple .story-text h2 em{ font-style: italic; color: var(--gold); }body.page-couple .story-text p{ font-family: var(--sans); font-size: 0.86rem; color: rgba(245,240,232,0.52); line-height: 1.95; margin-bottom: 16px; }body.page-couple .story-photos{ display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }body.page-couple .s-photo{ aspect-ratio: 2/3; background: #2c2218; border: 1px solid rgba(201,169,110,0.12); position: relative; overflow: hidden; }body.page-couple .s-photo img{ width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: opacity 0.4s; }body.page-couple .s-photo:hover img{ opacity: 0.7; }body.page-couple .s-photo-label{ position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; color: rgba(201,169,110,0.2); font-size: 0.7rem; }body.page-couple .s-photo.tall{ grid-row: span 2; aspect-ratio: auto; }body.page-couple .why-section{ background: #0f0d0a; padding: 120px 60px; }body.page-couple .why-inner{ max-width: 1200px; margin: 0 auto; }body.page-couple .why-header{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }body.page-couple .why-header h2{ font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 300; color: var(--cream); }body.page-couple .why-header h2 em{ font-style: italic; color: var(--gold); }body.page-couple .why-header p{ font-family: var(--sans); font-size: 0.85rem; color: rgba(245,240,232,0.45); line-height: 1.9; }body.page-couple .reasons{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }body.page-couple .reason{ padding: 44px 38px; border: 1px solid rgba(201,169,110,0.1); background: rgba(255,255,255,0.02); transition: background 0.4s; }body.page-couple .reason:hover{ background: rgba(201,169,110,0.04); }body.page-couple .reason-icon{ font-family: var(--serif); font-size: 2rem; color: var(--gold); margin-bottom: 20px; }body.page-couple .reason h3{ font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--cream); margin-bottom: 14px; }body.page-couple .reason p{ font-family: var(--sans); font-size: 0.78rem; color: rgba(245,240,232,0.45); line-height: 1.85; }body.page-couple .occasions{ padding: 120px 60px; background: var(--charcoal); }body.page-couple .occasions-inner{ max-width: 1200px; margin: 0 auto; }body.page-couple .occasion-list{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 60px; }body.page-couple .occasion-item{ padding: 44px 40px; border: 1px solid rgba(201,169,110,0.1); display: flex; gap: 28px; align-items: flex-start; background: rgba(255,255,255,0.015); transition: border-color 0.4s; }body.page-couple .occasion-item:hover{ border-color: rgba(201,169,110,0.25); }body.page-couple .occasion-num{ font-family: var(--serif); font-size: 2.5rem; color: rgba(201,169,110,0.2); line-height: 1; flex-shrink: 0; }body.page-couple .occasion-text h3{ font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--cream); margin-bottom: 10px; }body.page-couple .occasion-text p{ font-family: var(--sans); font-size: 0.78rem; color: rgba(245,240,232,0.45); line-height: 1.85; }body.page-couple .occasions h2{ font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 300; color: var(--cream); }body.page-couple .occasions h2 em{ font-style: italic; color: var(--gold); }body.page-couple .occasions-sub{ font-family: var(--sans); font-size: 0.84rem; color: rgba(245,240,232,0.4); line-height: 1.9; max-width: 480px; margin-top: 16px; }body.page-couple .cta-strip{ padding: 100px 60px; text-align: center; background: linear-gradient(135deg, #0d0b08, #1a1510); border-top: 1px solid rgba(201,169,110,0.1); }body.page-couple .cta-strip h2{ font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 300; color: var(--cream); max-width: 600px; margin: 0 auto 20px; line-height: 1.2; }body.page-couple .cta-strip h2 em{ font-style: italic; color: var(--gold); }body.page-couple .cta-strip p{ font-family: var(--sans); font-size: 0.82rem; color: rgba(245,240,232,0.4); max-width: 400px; margin: 0 auto 48px; line-height: 1.9; }body.page-couple .cta-group{ display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }body.page-couple footer{ background: #0a0906; padding: 60px; border-top: 1px solid rgba(201,169,110,0.1); }body.page-couple .footer-inner{ max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 50px; }body.page-couple .footer-brand .logo{ display: block; margin-bottom: 16px; }body.page-couple .footer-brand .logo img{ height: auto; max-width: 100px; }body.page-couple .footer-brand p{ font-family: var(--sans); font-size: 0.75rem; color: rgba(245,240,232,0.3); line-height: 1.9; max-width: 260px; }body.page-couple .footer-col h4{ font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }body.page-couple .footer-col ul{ list-style: none; }body.page-couple .footer-col ul li{ margin-bottom: 10px; }body.page-couple .footer-col ul li a{ font-family: var(--sans); font-size: 0.78rem; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.3s; }body.page-couple .footer-col ul li a:hover{ color: var(--gold); }body.page-couple .footer-bottom{ max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(201,169,110,0.08); }body.page-couple .footer-bottom p{ font-family: var(--sans); font-size: 0.62rem; color: rgba(245,240,232,0.2); }body.page-couple .footer-bottom .domain{ color: var(--gold); }body.page-couple .fade-in{ opacity: 0; transform: translateY(36px); transition: opacity 0.9s ease, transform 0.9s ease; }body.page-couple .fade-in.visible{ opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {body.page-couple nav{ padding: 20px 24px; }body.page-couple nav.scrolled{ padding: 16px 24px; }body.page-couple .logo img{ height: auto; max-width: 100px; }body.page-couple .nav-links{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(26,23,20,0.98);
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }body.page-couple #nav.nav-open .nav-links{ display: flex; }body.page-couple .nav-links a{ display: block; padding: 14px 0; }body.page-couple .nav-toggle{
    display: block;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.2rem;
    line-height: 1;
  }body.page-couple .hero-img-panel{ width: 100%; position: relative; height: 40vw; }body.page-couple .hero-bg::before{ display: none; }body.page-couple .hero-content{ padding: 0 24px; padding-top: 60px; }body.page-couple .hero-img-overlay{ background: linear-gradient(to right, rgba(26,23,20,0.9), rgba(26,23,20,0.6)); }body.page-couple .story{ grid-template-columns: 1fr; gap: 50px; padding: 80px 24px; }body.page-couple .story-photos{ grid-template-columns: 1fr 1fr; }body.page-couple .why-section{ padding: 80px 24px; }body.page-couple .why-header{ grid-template-columns: 1fr; gap: 20px; }body.page-couple .reasons{ grid-template-columns: 1fr; }body.page-couple .occasions{ padding: 80px 24px; }body.page-couple .occasion-list{ grid-template-columns: 1fr; }body.page-couple .cta-strip{ padding: 80px 24px; }body.page-couple .footer-inner{ grid-template-columns: 1fr; gap: 36px; }body.page-couple footer{ padding: 50px 24px; }body.page-couple .footer-bottom{ flex-direction: column; gap: 10px; }
}


/* contact.css */
body.page-contact *,body.page-contact *::before,body.page-contact *::after{ margin: 0; padding: 0; box-sizing: border-box; }:root{ --cream: #f5f0e8; --gold: #c9a96e; --charcoal: #1a1714; --mid: #7a6a58; --serif: 'Cormorant Garamond', Georgia, serif; --sans: 'Jost', sans-serif; }html{ scroll-behavior: smooth; }body.page-contact{ background: var(--charcoal); color: var(--cream); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }body.page-contact nav{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 28px 60px; background: rgba(26,23,20,0.97); border-bottom: 1px solid rgba(201,169,110,0.12); }body.page-contact .logo{ display: inline-flex; align-items: center; text-decoration: none; }body.page-contact .logo img{ display: block; width: auto; height: auto; max-width: 100px; }body.page-contact .nav-links{ display: flex; gap: 48px; list-style: none; }body.page-contact .nav-links a{ font-family: var(--sans); font-size: 0.7rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); text-decoration: none; position: relative; transition: color 0.3s; }body.page-contact .nav-links a::after{ content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.4s; }body.page-contact .nav-links a:hover,body.page-contact .nav-links a.active{ color: var(--gold); }body.page-contact .nav-links a:hover::after,body.page-contact .nav-links a.active::after{ width: 100%; }body.page-contact .nav-toggle{ display: none; }body.page-contact .page-top{ padding-top: 110px; padding-bottom: 0; background: linear-gradient(to bottom, #0e0c09, var(--charcoal)); }body.page-contact .page-top-inner{ max-width: 900px; margin: 0 auto; padding: 80px 60px 60px; text-align: center; animation: contactFadeUp 1.2s ease forwards; opacity: 0; }
@keyframes contactFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }body.page-contact .breadcrumb{ font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }body.page-contact .breadcrumb a{ color: rgba(245,240,232,0.35); text-decoration: none; }body.page-contact .page-top h1{ font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 300; line-height: 1.0; color: var(--cream); }body.page-contact .page-top h1 em{ font-style: italic; color: var(--gold); }body.page-contact .page-top p{ font-family: var(--sans); font-size: 0.86rem; color: rgba(245,240,232,0.45); margin-top: 20px; line-height: 1.9; max-width: 500px; margin-left: auto; margin-right: auto; }body.page-contact .contact-section{ padding: 80px 60px 140px; max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; }body.page-contact .section-label{ font-family: var(--sans); font-size: 0.6rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }body.page-contact .section-label::before{ content: ''; width: 30px; height: 1px; background: var(--gold); }body.page-contact .form-panel h2{ font-family: var(--serif); font-size: clamp(1.8rem, 2.5vw, 2.8rem); font-weight: 300; color: var(--cream); margin-bottom: 8px; line-height: 1.2; }body.page-contact .form-panel h2 em{ font-style: italic; color: var(--gold); }body.page-contact .form-panel > p{ font-family: var(--sans); font-size: 0.82rem; color: rgba(245,240,232,0.45); margin-bottom: 48px; line-height: 1.8; margin-top: 12px; }body.page-contact .form-group{ margin-bottom: 28px; }body.page-contact .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }body.page-contact label{ display: block; font-family: var(--sans); font-size: 0.6rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }body.page-contact input,body.page-contact select,body.page-contact textarea{
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 300;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
  -webkit-appearance: none;
}body.page-contact input::placeholder,body.page-contact textarea::placeholder{ color: rgba(245,240,232,0.2); }body.page-contact input:focus,body.page-contact select:focus,body.page-contact textarea:focus{ border-color: rgba(201,169,110,0.5); background: rgba(255,255,255,0.05); }body.page-contact select{ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 20px center; }body.page-contact select option{ background: #1a1714; color: var(--cream); }body.page-contact textarea{ resize: vertical; min-height: 140px; }body.page-contact .privacy-note{ font-family: var(--sans); font-size: 0.68rem; color: rgba(245,240,232,0.3); line-height: 1.7; margin-top: 20px; }body.page-contact .btn-submit{
  font-family: var(--sans); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--charcoal); background: var(--gold); padding: 18px 52px; border: none;
  position: relative; overflow: hidden; transition: color 0.4s; margin-top: 32px; display: inline-block;
}body.page-contact .btn-submit::before{ content: ''; position: absolute; inset: 0; background: var(--cream); transform: scaleX(0); transform-origin: right; transition: transform 0.4s; }body.page-contact .btn-submit:hover::before{ transform: scaleX(1); transform-origin: left; }body.page-contact .btn-submit span{ position: relative; z-index: 1; }body.page-contact .form-success{ display: none; text-align: center; padding: 60px 40px; border: 1px solid rgba(201,169,110,0.25); background: rgba(201,169,110,0.04); }body.page-contact .form-success .success-icon{ font-family: var(--serif); font-size: 3rem; color: var(--gold); margin-bottom: 20px; }body.page-contact .form-success h3{ font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--cream); margin-bottom: 14px; }body.page-contact .form-success h3 em{ font-style: italic; color: var(--gold); }body.page-contact .form-success p{ font-family: var(--sans); font-size: 0.82rem; color: rgba(245,240,232,0.5); line-height: 1.9; }body.page-contact .sidebar-card{ background: rgba(255,255,255,0.025); border: 1px solid rgba(201,169,110,0.15); padding: 44px 38px; margin-bottom: 20px; }body.page-contact .sidebar-card h3{ font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--gold); margin-bottom: 24px; letter-spacing: 0.04em; }body.page-contact .contact-item{ display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }body.page-contact .contact-item:last-child{ margin-bottom: 0; }body.page-contact .contact-icon{ font-size: 1rem; flex-shrink: 0; margin-top: 2px; }body.page-contact .contact-item-label{ font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }body.page-contact .contact-item-value{ font-family: var(--sans); font-size: 0.84rem; color: rgba(245,240,232,0.65); line-height: 1.6; }body.page-contact .contact-item-value a{ color: rgba(245,240,232,0.65); text-decoration: none; transition: color 0.3s; }body.page-contact .contact-item-value a:hover{ color: var(--gold); }body.page-contact .privacy-card{ background: linear-gradient(135deg, rgba(201,169,110,0.06), rgba(201,169,110,0.02)); border: 1px solid rgba(201,169,110,0.2); padding: 36px 38px; }body.page-contact .privacy-card h3{ font-family: var(--serif); font-size: 1.1rem; color: var(--cream); margin-bottom: 14px; }body.page-contact .privacy-card p{ font-family: var(--sans); font-size: 0.76rem; color: rgba(245,240,232,0.45); line-height: 1.85; }body.page-contact .services-card{ border: 1px solid rgba(201,169,110,0.15); padding: 36px 38px; background: rgba(255,255,255,0.015); }body.page-contact .services-card h3{ font-family: var(--serif); font-size: 1.1rem; color: var(--gold); margin-bottom: 20px; }body.page-contact .service-link-item{ display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(201,169,110,0.07); }body.page-contact .service-link-item:last-child{ border-bottom: none; }body.page-contact .service-link-item a{ font-family: var(--sans); font-size: 0.78rem; color: rgba(245,240,232,0.55); text-decoration: none; transition: color 0.3s; }body.page-contact .service-link-item a:hover{ color: var(--gold); }body.page-contact .service-link-item span{ color: rgba(201,169,110,0.4); font-size: 0.7rem; }body.page-contact footer{ background: #0a0906; padding: 60px; border-top: 1px solid rgba(201,169,110,0.1); }body.page-contact .footer-inner{ max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 50px; }body.page-contact .footer-brand .logo{ display: block; margin-bottom: 16px; }body.page-contact .footer-brand .logo img{ height: auto; max-width: 100px; }body.page-contact .footer-brand p{ font-family: var(--sans); font-size: 0.75rem; color: rgba(245,240,232,0.3); line-height: 1.9; max-width: 260px; }body.page-contact .footer-col h4{ font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }body.page-contact .footer-col ul{ list-style: none; }body.page-contact .footer-col ul li{ margin-bottom: 10px; }body.page-contact .footer-col ul li a{ font-family: var(--sans); font-size: 0.78rem; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.3s; }body.page-contact .footer-col ul li a:hover{ color: var(--gold); }body.page-contact .footer-bottom{ max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(201,169,110,0.08); }body.page-contact .footer-bottom p{ font-family: var(--sans); font-size: 0.62rem; color: rgba(245,240,232,0.2); }body.page-contact .footer-bottom .domain{ color: var(--gold); }body.page-contact .fade-in{ opacity: 0; transform: translateY(36px); transition: opacity 0.9s ease, transform 0.9s ease; }body.page-contact .fade-in.visible{ opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {body.page-contact nav{ padding: 20px 24px; }body.page-contact .logo img{ height: auto; max-width: 100px; }body.page-contact .nav-links{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(26,23,20,0.98);
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }body.page-contact #nav.nav-open .nav-links{ display: flex; }body.page-contact .nav-links a{ display: block; padding: 14px 0; }body.page-contact .nav-toggle{
    display: block;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.2rem;
    line-height: 1;
  }body.page-contact .page-top-inner{ padding: 80px 24px 50px; }body.page-contact .contact-section{ grid-template-columns: 1fr; padding: 60px 24px 100px; gap: 50px; }body.page-contact .form-row{ grid-template-columns: 1fr; }body.page-contact .footer-inner{ grid-template-columns: 1fr; gap: 36px; }body.page-contact footer{ padding: 50px 24px; }body.page-contact .footer-bottom{ flex-direction: column; gap: 10px; }
}


/* legal.css */
body.page-legal *,body.page-legal *::before,body.page-legal *::after{ margin: 0; padding: 0; box-sizing: border-box; }:root{ --cream: #f5f0e8; --gold: #c9a96e; --charcoal: #1a1714; --mid: #7a6a58; --serif: 'Cormorant Garamond', Georgia, serif; --sans: 'Jost', sans-serif; }html{ scroll-behavior: smooth; }body.page-legal{ background: var(--charcoal); color: var(--cream); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }body.page-legal nav{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 28px 60px; background: rgba(26,23,20,0.97); border-bottom: 1px solid rgba(201,169,110,0.12); }body.page-legal .logo{ display: inline-flex; align-items: center; text-decoration: none; }body.page-legal .logo img{ display: block; width: auto; height: auto; max-width: 100px; }body.page-legal .nav-links{ display: flex; gap: 48px; list-style: none; }body.page-legal .nav-links a{ font-family: var(--sans); font-size: 0.7rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); text-decoration: none; position: relative; transition: color 0.3s; }body.page-legal .nav-links a::after{ content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.4s; }body.page-legal .nav-links a:hover,body.page-legal .nav-links a.active{ color: var(--gold); }body.page-legal .nav-links a:hover::after,body.page-legal .nav-links a.active::after{ width: 100%; }body.page-legal .nav-toggle{ display: none; }body.page-legal .page-top{ padding-top: 110px; padding-bottom: 0; background: linear-gradient(to bottom, #0e0c09, var(--charcoal)); }body.page-legal .page-top-inner{ max-width: 900px; margin: 0 auto; padding: 80px 60px 50px; text-align: center; animation: legalFadeUp 1.2s ease forwards; opacity: 0; }
@keyframes legalFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }body.page-legal .breadcrumb{ font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }body.page-legal .breadcrumb a{ color: rgba(245,240,232,0.35); text-decoration: none; }body.page-legal .page-top h1{ font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 300; line-height: 1.0; color: var(--cream); }body.page-legal .page-top h1 em{ font-style: italic; color: var(--gold); }body.page-legal .page-top p{ font-family: var(--sans); font-size: 0.86rem; color: rgba(245,240,232,0.45); margin-top: 20px; line-height: 1.9; max-width: 560px; margin-left: auto; margin-right: auto; }body.page-legal .legal-content{ max-width: 980px; margin: 0 auto; padding: 50px 60px 120px; }body.page-legal .legal-card{ background: rgba(255,255,255,0.02); border: 1px solid rgba(201,169,110,0.12); padding: 48px 42px; }body.page-legal .legal-card + .legal-card{ margin-top: 18px; }body.page-legal .legal-card h2{ font-family: var(--serif); font-size: 1.9rem; font-weight: 300; color: var(--gold); margin-bottom: 18px; }body.page-legal .legal-card p,body.page-legal .legal-card li{ font-family: var(--sans); font-size: 0.84rem; color: rgba(245,240,232,0.58); line-height: 1.9; }body.page-legal .legal-card ul{ list-style: none; }body.page-legal .legal-card li + li{ margin-top: 10px; }body.page-legal .legal-note{ font-size: 0.72rem; color: rgba(245,240,232,0.35); margin-top: 24px; }body.page-legal footer{ background: #0a0906; padding: 60px; border-top: 1px solid rgba(201,169,110,0.1); }body.page-legal .footer-inner{ max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 50px; }body.page-legal .footer-brand .logo{ display: block; margin-bottom: 16px; }body.page-legal .footer-brand .logo img{ height: auto; max-width: 100px; }body.page-legal .footer-brand p{ font-family: var(--sans); font-size: 0.75rem; color: rgba(245,240,232,0.3); line-height: 1.9; max-width: 260px; }body.page-legal .footer-col h4{ font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }body.page-legal .footer-col ul{ list-style: none; }body.page-legal .footer-col ul li{ margin-bottom: 10px; }body.page-legal .footer-col ul li a{ font-family: var(--sans); font-size: 0.78rem; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.3s; }body.page-legal .footer-col ul li a:hover{ color: var(--gold); }body.page-legal .footer-bottom{ max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(201,169,110,0.08); }body.page-legal .footer-bottom p{ font-family: var(--sans); font-size: 0.62rem; color: rgba(245,240,232,0.2); }body.page-legal .footer-bottom .domain{ color: var(--gold); }

@media (max-width: 900px) {body.page-legal nav{ padding: 20px 24px; }body.page-legal .logo img{ height: auto; max-width: 100px; }body.page-legal .nav-links{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(26,23,20,0.98);
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }body.page-legal #nav.nav-open .nav-links{ display: flex; }body.page-legal .nav-links a{ display: block; padding: 14px 0; }body.page-legal .nav-toggle{
    display: block;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.2rem;
    line-height: 1;
  }body.page-legal .page-top-inner{ padding: 80px 24px 44px; }body.page-legal .legal-content{ padding: 40px 24px 90px; }body.page-legal .legal-card{ padding: 34px 24px; }body.page-legal .footer-inner{ grid-template-columns: 1fr; gap: 36px; }body.page-legal footer{ padding: 50px 24px; }body.page-legal .footer-bottom{ flex-direction: column; gap: 10px; }
}

body.page-home .logo img,
body.page-boudoir .logo img,
body.page-nude .logo img,
body.page-couple .logo img,
body.page-contact .logo img,
body.page-legal .logo img{
  height: 50px !important;
  width: auto !important;
  max-width: none !important;
}
