/*
Theme Name: Alternatively Chic
Theme URI: https://alternativelychic.com
Author: Alternatively Chic
Author URI: https://alternativelychic.com
Description: A clean, modern, editorial-inspired WordPress theme for Alternatively Chic — Fort Lauderdale Personal Stylist & Fashion Blog. Features full homepage layout, Book a Styling Session CTA, newsletter popup, Instagram feed section, and complete blog support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alternatively-chic
Tags: blog, fashion, portfolio, custom-menu, featured-images, full-width-template, sticky-post, threaded-comments, translation-ready

*/

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #FAF7F2;
  color: #1C1C1C;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === CSS VARIABLES === */
:root {
  --cream: #FAF7F2;
  --warm-white: #FFFCF7;
  --charcoal: #1C1C1C;
  --soft-black: #2A2A2A;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --dusty-rose: #D4A5A5;
  --stone: #8C8580;
  --light-stone: #C8C4BE;
  --border: #E8E4DF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-editorial: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --max-width: 1400px;
  --section-pad: 100px 40px;
  --radius: 0px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}
p { line-height: 1.8; }

/* === LAYOUT HELPERS === */
.site-inner { max-width: var(--max-width); margin: 0 auto; }
.section-pad { padding: var(--section-pad); }
@media (max-width: 768px) {
  :root { --section-pad: 60px 20px; }
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-primary:hover { background: var(--charcoal); color: #fff; }

.btn-dark {
  display: inline-block;
  background: var(--charcoal);
  color: #fff;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s;
}
.btn-dark:hover { background: var(--gold); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #fff;
  padding: 18px 40px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-gold:hover { background: #fff; color: var(--charcoal); }

.btn-ghost {
  display: block;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  padding: 18px 40px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* === SECTION LABELS === */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--stone); }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.announcement-bar a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  margin-left: 12px;
  transition: opacity 0.2s;
}
.announcement-bar a:hover { opacity: 0.7; }

/* === SITE HEADER === */
#site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
}
@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto; padding: 0 20px; }
  .nav-left, .nav-right { display: none; }
  .nav-right.mobile-open { display: flex; }
  .mobile-toggle { display: flex !important; }
}
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--soft-black);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.site-nav a:hover::after,
.site-nav .current-menu-item > a::after { width: 100%; }
.site-nav a:hover { color: var(--charcoal); }

.nav-book-btn {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  font-size: 9px !important;
  white-space: nowrap;
}
.nav-book-btn::after { display: none !important; }
.nav-book-btn:hover { background: var(--charcoal) !important; }

.nav-right { justify-content: flex-end; }

.site-logo { text-align: center; text-decoration: none; }
.site-logo .wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.site-logo .tagline {
  display: block;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 2px;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span { display: block; width: 22px; height: 1px; background: var(--charcoal); transition: all 0.3s; }

/* Mobile nav drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: white;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-nav-drawer a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  color: white;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Submenu */
.site-nav .menu-item-has-children { position: relative; }
.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--border);
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  z-index: 100;
}
.site-nav .menu-item-has-children:hover .sub-menu { display: block; }
.site-nav .sub-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--soft-black);
  border-bottom: 1px solid var(--border);
}
.site-nav .sub-menu li:last-child a { border-bottom: none; }
.site-nav .sub-menu li a:hover { background: var(--cream); color: var(--gold); }
.site-nav .sub-menu li a::after { display: none; }

/* === NEWSLETTER POPUP === */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,28,28,0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: var(--warm-white);
  width: min(540px, 92vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.popup-overlay.visible .popup-box { transform: translateY(0); }
@media (max-width: 500px) {
  .popup-box { grid-template-columns: 1fr; }
  .popup-visual { display: none; }
}
.popup-visual {
  background: linear-gradient(160deg, #D4A5A5 0%, #C9A96E 55%, #8C8580 100%);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
}
.popup-visual-text {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 8px;
}
.popup-form-area {
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.popup-close-btn {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 18px;
  color: var(--stone);
  background: none; border: none;
  cursor: pointer; z-index: 1;
  transition: color 0.2s;
}
.popup-close-btn:hover { color: var(--charcoal); }
.popup-eyebrow {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.popup-headline {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
}
.popup-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--stone);
  font-weight: 300;
}
.popup-form-area input[type="text"],
.popup-form-area input[type="email"] {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--charcoal);
  outline: none;
  letter-spacing: 0.5px;
  transition: border-color 0.2s;
}
.popup-form-area input:focus { border-bottom-color: var(--gold); }
.popup-form-area input::placeholder { color: var(--light-stone); }
.popup-submit {
  background: var(--charcoal);
  color: white;
  padding: 14px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.3s;
  border: none;
  width: 100%;
}
.popup-submit:hover { background: var(--gold); }
.popup-skip {
  font-size: 10px;
  color: var(--light-stone);
  text-align: center;
  cursor: pointer;
  letter-spacing: 1px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  transition: color 0.2s;
  width: 100%;
}
.popup-skip:hover { color: var(--stone); }

/* === HERO === */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg-layer {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1C1C1C 0%, #2A2520 40%, #3D3028 70%, #2A2520 100%);
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.13) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(212,165,165,0.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-content-wrap { grid-template-columns: 1fr; }
  .hero-booking-widget { display: none; }
}
@media (max-width: 768px) {
  .hero-content-wrap { padding: 60px 20px; }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.1;
  color: white;
  margin-bottom: 12px;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-subheadline {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin-bottom: 48px;
  font-weight: 200;
  letter-spacing: 0.5px;
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero booking widget */
.hero-booking-widget {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 40px;
  backdrop-filter: blur(12px);
}
.widget-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.widget-title {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 300;
  color: white; line-height: 1.3; margin-bottom: 20px;
}
.widget-divider { width: 40px; height: 1px; background: var(--gold); margin-bottom: 20px; }
.widget-text {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8; margin-bottom: 32px; font-weight: 200;
}
.widget-secondary {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  transition: color 0.2s;
}
.widget-secondary:hover { color: var(--gold); }

/* === SERVICES TICKER === */
.services-ticker-wrap {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 60px;
  animation: ticker 22s linear infinite;
}
.ticker-track span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.ticker-track span::before { content: '✦'; font-size: 8px; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === ABOUT INTRO === */
.about-intro-section {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-image-col {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light), var(--dusty-rose));
}
.about-image-col img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image-col::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 60%; height: 60%;
  border: 2px solid var(--gold);
  pointer-events: none;
}
.about-img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.about-img-placeholder .monogram {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 8px;
}
.about-img-placeholder p {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold-light);
  line-height: 0.5;
  margin-bottom: 24px;
}
.about-pull-quote {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400; font-style: italic;
  line-height: 1.5; color: var(--charcoal); margin-bottom: 24px;
}
.about-body {
  font-size: 13px; line-height: 2;
  color: var(--stone); margin-bottom: 36px;
}

/* === SERVICES GRID === */
.services-section { background: var(--cream); }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
  flex-wrap: wrap; gap: 20px;
}
.book-everywhere-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  font-family: var(--font-sans);
  transition: gap 0.2s;
}
.book-everywhere-link::after { content: '→'; transition: transform 0.2s; }
.book-everywhere-link:hover::after { transform: translateX(4px); }
.services-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
@media (max-width: 900px) { .services-grid-layout { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid-layout { grid-template-columns: 1fr; } }
.service-item {
  background: var(--warm-white);
  padding: 40px 32px;
  transition: background 0.3s;
}
.service-item:hover { background: var(--charcoal); }
.service-item:hover .service-num { color: var(--gold); }
.service-item:hover .service-item-title { color: var(--gold-light); }
.service-item:hover .service-item-desc { color: rgba(255,255,255,0.5); }
.service-item:hover .service-item-arrow { border-color: var(--gold); color: var(--gold); }
.service-num {
  font-size: 10px; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 20px;
}
.service-item-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--charcoal); margin-bottom: 14px; line-height: 1.3;
  transition: color 0.3s;
}
.service-item-desc {
  font-size: 12px; line-height: 1.8;
  color: var(--stone); margin-bottom: 28px;
  transition: color 0.3s;
}
.service-item-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  color: var(--stone);
  font-size: 14px; transition: all 0.3s;
}

/* === CTA BAND === */
.cta-band {
  background: var(--charcoal);
  padding: 80px 40px;
}
.cta-band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
}
.cta-eyebrow {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300; color: white; line-height: 1.2;
}
.cta-headline em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  font-size: 12px; line-height: 1.8;
  color: rgba(255,255,255,0.4); margin-top: 16px;
}
.cta-actions { display: flex; flex-direction: column; gap: 14px; min-width: 220px; }
.cta-rate-note {
  font-size: 10px; color: rgba(255,255,255,0.22);
  text-align: center; letter-spacing: 1px;
}

/* === BLOG SECTION === */
.blog-section { background: var(--warm-white); }
.blog-section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 56px;
  flex-wrap: wrap; gap: 20px;
}
.view-all-link {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--charcoal); border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.view-all-link:hover { color: var(--gold); border-color: var(--gold); }

/* Blog grid */
.blog-posts-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .blog-posts-grid { grid-template-columns: 1fr 1fr; }
  .post-card.is-featured { grid-column: span 2; }
}
@media (max-width: 560px) {
  .blog-posts-grid { grid-template-columns: 1fr; }
  .post-card.is-featured { grid-column: span 1; }
}
.post-card { display: block; text-decoration: none; color: inherit; }
.post-thumb {
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  background: var(--cream);
}
.post-card.is-featured .post-thumb { aspect-ratio: 3/2; }
.post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-category {
  font-size: 8px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.post-card-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  line-height: 1.35; color: var(--charcoal); margin-bottom: 10px;
}
.post-card.is-featured .post-card-title { font-size: 28px; }
.post-excerpt {
  font-size: 12px; line-height: 1.8;
  color: var(--stone);
}
.post-meta {
  margin-top: 14px; font-size: 10px;
  color: var(--light-stone); letter-spacing: 0.5px;
}

/* Pagination */
.pagination {
  margin-top: 60px;
  display: flex; justify-content: center; gap: 8px;
}
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  font-size: 12px; color: var(--stone);
  transition: all 0.2s;
}
.page-numbers.current,
.page-numbers:hover { background: var(--charcoal); color: white; border-color: var(--charcoal); }

/* === INSTAGRAM SECTION === */
.instagram-section { background: var(--cream); padding-bottom: 100px; }
.ig-section-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.ig-handle-link { font-size: 12px; color: var(--stone); }
.ig-handle-link a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 1px; transition: color 0.2s, border-color 0.2s;
}
.ig-handle-link a:hover { color: var(--gold); border-color: var(--gold); }
.ig-feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
@media (max-width: 768px) { .ig-feed-grid { grid-template-columns: repeat(3, 1fr); } }
.ig-cell { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ig-cell:hover img { transform: scale(1.06); }
.ig-cell-overlay {
  position: absolute; inset: 0;
  background: rgba(28,28,28,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.ig-cell:hover .ig-cell-overlay { background: rgba(28,28,28,0.4); }
.ig-cell-overlay svg { opacity: 0; transition: opacity 0.3s; width: 24px; height: 24px; fill: white; }
.ig-cell:hover .ig-cell-overlay svg { opacity: 1; }
/* Placeholder cells */
.ig-ph {
  width: 100%; height: 100%;
}

/* === CONTACT SECTION === */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-photo { position: relative; aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(135deg, var(--gold-light), var(--dusty-rose)); }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-photo-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.contact-photo-ph .monogram { font-family: var(--font-display); font-size: 64px; font-weight: 300; color: rgba(255,255,255,0.4); }
.contact-photo-ph p { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.contact-form-wrap { padding: 20px 0; }
.contact-intro { font-family: var(--font-display); font-size: 20px; font-style: italic; color: var(--stone); margin-bottom: 8px; }
.contact-name { font-family: var(--font-display); font-size: 32px; font-weight: 400; margin-bottom: 24px; }
.contact-body { font-size: 13px; line-height: 2; color: var(--stone); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 8px; margin-bottom: 40px; }
.contact-details a { font-size: 12px; color: var(--stone); transition: color 0.2s; }
.contact-details a:hover { color: var(--gold); }

/* WP Contact Form */
.wpcf7 { margin-top: 8px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.contact-form-native input,
.contact-form-native textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--charcoal);
  outline: none;
  letter-spacing: 0.5px;
  transition: border-color 0.2s;
  display: block;
  margin-bottom: 20px;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.contact-form-native input:focus,
.contact-form-native textarea:focus { border-bottom-color: var(--gold); }
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder,
.contact-form-native input::placeholder,
.contact-form-native textarea::placeholder { color: var(--light-stone); }
.wpcf7 textarea,
.contact-form-native textarea { min-height: 100px; resize: vertical; }
.wpcf7 input[type="submit"],
.contact-form-native input[type="submit"],
.contact-form-native button[type="submit"] {
  background: var(--charcoal);
  color: white;
  border: none;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  width: auto;
  display: inline-block;
  margin-bottom: 0;
}
.wpcf7 input[type="submit"]:hover,
.contact-form-native input[type="submit"]:hover,
.contact-form-native button[type="submit"]:hover { background: var(--gold); }

/* === SINGLE POST === */
.single-post-header { background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 80px 40px 60px; }
.single-post-header .site-inner { max-width: 800px; }
.post-header-cat { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.post-header-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); font-weight: 400; line-height: 1.2; margin-bottom: 20px; }
.post-header-meta { font-size: 11px; color: var(--light-stone); letter-spacing: 1px; }
.post-featured-img { width: 100%; max-height: 560px; object-fit: cover; }
.post-content-area { padding: 80px 40px; }
.post-content-area .site-inner { max-width: 800px; }
.post-body { font-size: 15px; line-height: 2; color: #2A2A2A; }
.post-body h2 { font-family: var(--font-display); font-size: 32px; margin: 48px 0 20px; }
.post-body h3 { font-family: var(--font-display); font-size: 24px; margin: 36px 0 16px; }
.post-body p { margin-bottom: 24px; }
.post-body img { margin: 40px auto; }
.post-body a { color: var(--gold); border-bottom: 1px solid var(--gold-light); }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 32px;
  margin: 40px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--stone);
}

/* === PAGE TEMPLATES === */
.page-hero {
  background: var(--charcoal);
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.1) 0%, transparent 60%);
}
.page-hero .site-inner { position: relative; z-index: 1; }
.page-hero-eyebrow { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 70px); font-weight: 300; color: white; line-height: 1.15; margin-bottom: 20px; }
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 560px; }

/* Styling Session Page */
.styling-intro { background: var(--warm-white); }
.styling-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 768px) { .styling-intro-grid { grid-template-columns: 1fr; } }
.styling-body { font-size: 14px; line-height: 2; color: var(--stone); }
.styling-body p { margin-bottom: 20px; }
.process-steps { counter-reset: steps; display: flex; flex-direction: column; gap: 32px; }
.process-step { display: flex; gap: 24px; align-items: flex-start; }
.step-number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; color: var(--gold);
}
.step-content h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; }
.step-content p { font-size: 13px; color: var(--stone); line-height: 1.7; }

/* Services offered cards */
.services-offered-grid { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-offered-item {
  background: var(--warm-white);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  transition: background 0.3s;
}
.service-offered-item:hover { background: var(--cream); }
@media (max-width: 768px) { .service-offered-item { grid-template-columns: 1fr; gap: 20px; } }
.service-offered-title { font-family: var(--font-display); font-size: 26px; font-weight: 400; }
.service-offered-body { font-size: 13px; line-height: 1.9; color: var(--stone); }
.service-offered-body ul { list-style: none; margin-top: 12px; }
.service-offered-body ul li { padding: 4px 0; padding-left: 16px; position: relative; }
.service-offered-body ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 8px; top: 8px; }

/* === FOOTER === */
#site-footer {
  background: #111;
  color: rgba(255,255,255,0.55);
  padding: 80px 40px 40px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300;
  letter-spacing: 6px; text-transform: uppercase;
  color: white; margin-bottom: 20px;
}
.footer-brand-desc { font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0.3); max-width: 280px; }
.footer-col-title {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 12px; color: rgba(255,255,255,0.35);
  transition: color 0.2s; letter-spacing: 0.5px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.5px; }
.footer-social-links { display: flex; gap: 20px; }
.footer-social-links a {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); transition: color 0.2s;
}
.footer-social-links a:hover { color: var(--gold); }

/* === SCROLL ANIMATIONS === */
.ac-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ac-reveal.revealed { opacity: 1; transform: translateY(0); }

/* === WORDPRESS SPECIFIC === */
.wp-block-image { margin: 40px 0; }
.alignwide { margin-left: -40px; margin-right: -40px; }
.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
.screen-reader-text { position: absolute; left: -9999em; }
.skip-link { position: absolute; top: -100px; left: 0; z-index: 9999; padding: 10px 20px; background: var(--gold); color: white; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* Comments */
.comments-area { max-width: 800px; margin: 0 auto; padding: 60px 40px; }
.comment-list { list-style: none; }
.comment { border-bottom: 1px solid var(--border); padding: 32px 0; }
.comment-author { font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; }
.comment-meta { font-size: 11px; color: var(--light-stone); margin-bottom: 16px; }
.comment-content p { font-size: 14px; line-height: 1.8; color: var(--stone); }
