/* ==========================================================================
   Mirah Designs by Limna Rose — Refined Lookbook Stylesheet (css/style.css)
   Aesthetic: Vibrant Champagne Gold & Deep Crimson Rose, High-Contrast Black,
              Animated Angel-Needle Logo, Miracle Thread Sparkles Cursor Trail
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Pinyon+Script&display=swap');

/* CSS Variables — Vibrant, highly legible color scheme */
:root {
  /* Color Palette */
  --color-white: #FFFFFF;
  --color-ivory: #FAF9F6;
  --color-charcoal: #111111;      /* Rich Black for crisp typography contrast */
  --color-gold: #E6C158;          /* Vibrant Champagne Gold */
  --color-rose: #B54E5F;          /* Vibrant Deep Crimson Rose */
  --color-gold-glow: rgba(230, 193, 88, 0.4);
  --color-rose-light: rgba(181, 78, 95, 0.1);
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Layout */
  --max-width: 1300px;
  --header-height: 95px;          /* Adjusted slightly to support 3-line branding text */
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-minimal: 0 4px 20px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 10px 40px rgba(17, 17, 17, 0.06);
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--color-white);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Selection */
::selection {
  background-color: var(--color-rose-light);
  color: var(--color-charcoal);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-white);
}
::-webkit-scrollbar-thumb {
  background: var(--color-rose);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

p {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #2D2D2D;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Container & Sections */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.text-center { text-align: center; }

/* Luxury Accents */
.gold-text {
  color: var(--color-rose);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-rose) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 600;
}

.sub-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-rose);
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
}

.section-title {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.02rem;
  color: #444;
}

.section-desc.left-align {
  margin-left: 0;
}

/* Custom Thin Divider Line */
.luxury-divider {
  width: 80px;
  height: 1.5px;
  background-color: var(--color-gold);
  margin: 1.5rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1.5px solid var(--color-charcoal);
  border-radius: 0;
  position: relative;
  background: transparent;
}

.btn-primary {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: rgba(17, 17, 17, 0.3);
  color: var(--color-charcoal);
}

.btn-secondary:hover {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
  transform: translateY(-2px);
}

/* Dynamic Magic Sparkles Cursor Trail Elements */
.miracle-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 14px;
  height: 14px;
  background-color: var(--color-gold);
  clip-path: polygon(50% 0%, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0% 50%, 37% 37%);
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease-out;
}

/* Header & Logo styling */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(230, 193, 88, 0.15);
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 85px; /* Keeps enough space for 3 lines of branding text when scrolled */
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-minimal);
  border-bottom-color: rgba(230, 193, 88, 0.25);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* ==========================================================================
   Angel Logo — Detailed Sewing Angel Animations (hdr-* classes)
   ========================================================================== */

/* SVG sizing */
.angel-logo-svg {
  height: 62px;
  width: auto;
  transform-origin: center;
  overflow: visible;
}

/* Rotating embroidery hoop */
.hdr-hoop {
  transform-origin: 55px 55px;
  animation: hdrSpinHoop 40s linear infinite;
}

/* Full angel body — gentle floating bob */
.hdr-angel {
  animation: hdrAngelFloat 3.5s ease-in-out infinite alternate;
  transform-origin: 47px 55px;
}

/* Left wing — sweeping lift */
.hdr-wing-l {
  transform-origin: 36px 42px;
  animation: hdrWingLeft 3s ease-in-out infinite alternate;
}
.hdr-wing-l2 {
  transform-origin: 37px 45px;
  animation: hdrWingLeft 4s ease-in-out infinite alternate;
  animation-delay: 0.3s;
}
/* Right wing — mirror flap */
.hdr-wing-r {
  transform-origin: 55px 42px;
  animation: hdrWingRight 3s ease-in-out infinite alternate;
}

/* Halo — glowing pulse + gentle tilt */
.hdr-halo {
  animation: hdrHaloGlow 2s ease-in-out infinite alternate;
  transform-origin: 47.5px 18px;
}

/* Needle arm — stitching motion */
.hdr-needle-arm {
  transform-origin: 57px 44px;
  animation: hdrNeedleStitch 1.4s ease-in-out infinite alternate;
}

/* Needle shimmer */
.hdr-needle {
  animation: hdrNeedleShimmer 1.4s ease-in-out infinite alternate;
}

/* Thread drawing animation — path draws itself */
.hdr-thread {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: hdrThreadDraw 2.8s ease-in-out infinite;
}
.hdr-thread-2 {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: hdrThreadDraw 2.8s ease-in-out infinite;
  animation-delay: 1.4s;
}
.hdr-thread-tail {
  animation: hdrThreadFade 2.8s ease-in-out infinite alternate;
}

/* Sparkles — each pulsing at different rates */
.hdr-sparkle {
  animation: hdrSparklePop 2s ease-in-out infinite alternate;
}
.hdr-sp1 { animation-duration: 2.2s; animation-delay: 0s; }
.hdr-sp2 { animation-duration: 1.8s; animation-delay: 0.5s; }
.hdr-sp3 { animation-duration: 2.5s; animation-delay: 1s; }
.hdr-sp4 { animation-duration: 1.6s; animation-delay: 1.4s; }

/* ---- Keyframes ---- */

@keyframes hdrSpinHoop {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes hdrAngelFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-4px); }
}

@keyframes hdrWingLeft {
  0% { transform: rotate(-2deg) scaleX(0.96); }
  100% { transform: rotate(6deg) scaleX(1.04); }
}

@keyframes hdrWingRight {
  0% { transform: rotate(2deg) scaleX(0.96); }
  100% { transform: rotate(-6deg) scaleX(1.04); }
}

@keyframes hdrHaloGlow {
  0% {
    opacity: 0.65;
    filter: drop-shadow(0 0 1.5px rgba(230,193,88,0.4));
  }
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(230,193,88,0.9));
  }
}

@keyframes hdrNeedleStitch {
  0% { transform: translate(0, 0) rotate(-3deg); }
  100% { transform: translate(2px, 2.5px) rotate(3deg); }
}

@keyframes hdrNeedleShimmer {
  0% { opacity: 0.7; }
  100% { opacity: 1; filter: drop-shadow(0 0 2px rgba(255,255,255,0.8)); }
}

@keyframes hdrThreadDraw {
  0% { stroke-dashoffset: 80; opacity: 0.2; }
  40% { opacity: 1; }
  80% { stroke-dashoffset: 0; opacity: 0.9; }
  100% { stroke-dashoffset: 0; opacity: 0.2; }
}

@keyframes hdrThreadFade {
  0% { opacity: 0.2; }
  100% { opacity: 0.65; }
}

@keyframes hdrSparklePop {
  0% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  60% { opacity: 1; transform: scale(1.1) rotate(45deg); }
  100% { opacity: 0.1; transform: scale(0.5) rotate(90deg); }
}

/* Legacy logo classes (kept for backward compat with any leftover elements) */
.logo-angel-body { animation: hdrAngelFloat 3.5s ease-in-out infinite alternate; transform-origin: 35px 50px; }
.logo-wing-back { transform-origin: 31px 32px; animation: hdrWingLeft 3.5s ease-in-out infinite alternate; }
.logo-wing-front { transform-origin: 32px 31px; animation: hdrWingRight 2.5s ease-in-out infinite alternate; }
.logo-needle-hand { animation: hdrNeedleStitch 1.8s ease-in-out infinite alternate; }
.logo-thread-path { stroke-dasharray: 240; stroke-dashoffset: 480; animation: hdrThreadDraw 6s linear infinite; }
.logo-hoop { transform-origin: 50px 50px; animation: hdrSpinHoop 45s linear infinite; }
.logo-glow { animation: hdrHaloGlow 2.5s ease-in-out infinite alternate; }
.logo-sparkle { animation: hdrSparklePop 2.2s ease-in-out infinite alternate; }
.logo-sparkle.s1 { transform-origin: 68px 23px; animation-delay: 0s; }
.logo-sparkle.s2 { transform-origin: 56px 48px; animation-delay: 0.4s; }
.logo-sparkle.s3 { transform-origin: 46px 72px; animation-delay: 0.8s; }
.logo-sparkle.s4 { transform-origin: 84px 70px; animation-delay: 1.2s; }


.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
}

/* Logo font improved to be Bold and visible */
.logo-brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
  line-height: 1;
}

/* Primary Tagline under brand name */
.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-rose);
  font-weight: 600;
  line-height: 1.2;
}

/* By Limna Rose signature line */
.logo-tag {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555555;
  font-weight: 500;
  line-height: 1.1;
}

/* Modern Menu Trigger (Minimal Right) */
.modern-menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--color-charcoal);
  z-index: 1001;
  padding: 0.5rem;
}

.trigger-dots {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trigger-dots span {
  width: 20px;
  height: 2px;
  background-color: var(--color-charcoal);
  transition: var(--transition-smooth);
}

.modern-menu-trigger:hover .trigger-dots span:nth-child(1) { transform: translateX(4px); }
.modern-menu-trigger:hover .trigger-dots span:nth-child(3) { transform: translateX(-4px); }

.modern-menu-trigger.active .trigger-dots span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.modern-menu-trigger.active .trigger-dots span:nth-child(2) { opacity: 0; }
.modern-menu-trigger.active .trigger-dots span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Fullscreen Menu Drawer overlay */
.fullscreen-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullscreen-nav-overlay.active {
  transform: translateY(0);
}

.fullscreen-nav-overlay .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  gap: 6rem;
}

.fullscreen-nav-image {
  height: 520px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(230, 193, 88, 0.2);
}

.fullscreen-nav-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fullscreen-nav-menu-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fullscreen-nav-menu-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fullscreen-nav-menu-col a {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-block;
}

.fullscreen-nav-menu-col a span {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-gold);
  margin-right: 1.2rem;
  letter-spacing: 0.10em;
}

.fullscreen-nav-menu-col a:hover {
  color: var(--color-rose);
  transform: translateX(15px);
}

/* Vertical Page Scroll Indicator lines */
.lookbook-indicator-dock {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 500;
}

.indicator-line {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.indicator-dot {
  width: 7px;
  height: 7px;
  background-color: rgba(28, 28, 28, 0.15);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.indicator-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-smooth);
}

.indicator-line:hover .indicator-label,
.indicator-line.active .indicator-label {
  opacity: 1;
  transform: translateX(0);
}

.indicator-line.active .indicator-dot {
  background-color: var(--color-rose);
  transform: scale(1.4);
}

/* Hero Section */
.hero-sec {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  padding-top: var(--header-height);
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative ring top-right */
.hero-sec::after {
  content: '';
  position: absolute;
  top: 8%;
  right: 6%;
  width: 26vw;
  height: 26vw;
  border: 1px solid rgba(230, 193, 88, 0.12);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-sec .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4.2rem;
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #333333;
  margin-bottom: 2.8rem;
  max-width: 550px;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 640px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* Hero image — seamlessly integrated, no borders */
.hero-img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 12s ease;
  /* Soft vignette fade — edges dissolve into white background */
  -webkit-mask-image: radial-gradient(
    ellipse 85% 88% at 50% 50%,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,0.92) 58%,
    rgba(0,0,0,0.55) 74%,
    rgba(0,0,0,0) 92%
  );
  mask-image: radial-gradient(
    ellipse 85% 88% at 50% 50%,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,0.92) 58%,
    rgba(0,0,0,0.55) 74%,
    rgba(0,0,0,0) 92%
  );
  filter: drop-shadow(0 16px 64px rgba(181, 78, 95, 0.10));
}

.hero-img-frame:hover img {
  transform: scale(1.04);
}

/* Soft gold glow aura behind the hero image */
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 15% 8%;
  background: radial-gradient(ellipse at 50% 45%, rgba(230,193,88,0.10) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
}

/* Remove old offset border box */
.hero-offset-border { display: none; }

/* ==========================================================================
   About / Profile Section — Redesigned Floating Portrait Layout
   ========================================================================== */

/* Full-width about section with warm ivory tint */
#about {
  background: linear-gradient(160deg, #FFFFFF 0%, #FAF8F5 50%, #FDF9F2 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

/* Portrait column — floating with no borders */
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
}

/* Spinning embroidery hoop decoration behind portrait */
.about-visual::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  border: 1px dashed rgba(230, 193, 88, 0.3);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: hdrSpinHoop 55s linear infinite;
}

/* Second, slower decorative ring */
.about-visual::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  border: 0.5px solid rgba(181, 78, 95, 0.12);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: hdrSpinHoop 80s linear infinite reverse;
}

/* Portrait frame — NO borders, seamless blend */
.about-img-frame {
  position: relative;
  z-index: 2;
  width: 370px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
  /* Radial mask centered at face level, tightly fading all edges */
  -webkit-mask-image:
    radial-gradient(ellipse 68% 72% at 50% 46%,
      rgba(0,0,0,1) 28%,
      rgba(0,0,0,0.88) 46%,
      rgba(0,0,0,0.45) 66%,
      rgba(0,0,0,0) 88%);
  mask-image:
    radial-gradient(ellipse 68% 72% at 50% 46%,
      rgba(0,0,0,1) 28%,
      rgba(0,0,0,0.88) 46%,
      rgba(0,0,0,0.45) 66%,
      rgba(0,0,0,0) 88%);
}



/* ---- Bio / Content column ---- */
.about-content {
  padding-top: 0.5rem;
}

.about-content h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

/* Designer name highlight */
.about-name-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  background: linear-gradient(90deg, rgba(230,193,88,0.1), rgba(230,193,88,0.05));
  border-left: 2px solid var(--color-gold);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.2rem;
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.about-story p {
  font-size: 0.97rem;
  line-height: 1.82;
  color: #3A3A3A;
  margin-bottom: 0;
  font-weight: 300;
}

/* Elegant drop cap */
.about-story p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  float: left;
  line-height: 0.85;
  margin-right: 0.75rem;
  margin-top: 0.15rem;
  color: var(--color-rose);
  font-weight: 500;
}

/* Signature block */
.about-signature-block {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(230, 193, 88, 0.2);
  padding-top: 1rem;
  display: inline-block;
}

.signature-pre {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: #888;
  display: block;
  margin-bottom: 0.05rem;
  letter-spacing: 0.02em;
}

.about-signature {
  font-family: 'Pinyon Script', cursive;
  font-size: 3.2rem;
  color: var(--color-rose);
  font-weight: 400;
  line-height: 1.1;
  margin-top: 0.1rem;
}

/* Services section spacing */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--color-white);
  padding: 2.5rem 2rem;
  border: 1.5px solid rgba(230, 193, 88, 0.15);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: var(--color-ivory);
  border-color: var(--color-rose);
  box-shadow: var(--shadow-minimal);
}

.service-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  color: var(--color-gold);
  transform: scale(1.08);
}

.service-title {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.service-desc {
  font-size: 0.92rem;
  color: #333333;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.service-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-rose);
}

.service-card:hover .service-link {
  color: var(--color-charcoal);
}

/* Portfolio Gallery layout */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  color: #666666;
  position: relative;
  transition: var(--transition-smooth);
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background-color: var(--color-rose);
  transition: var(--transition-smooth);
}

.filter-btn:hover { color: var(--color-charcoal); }

.filter-btn.active {
  color: var(--color-charcoal);
  font-weight: 700;
}

.filter-btn.active::after {
  width: 30px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-minimal);
  opacity: 1;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid rgba(230, 193, 88, 0.15);
}

.portfolio-item.hidden {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.97);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1.5px solid var(--color-rose);
}

.portfolio-item:hover .portfolio-img { transform: scale(1.04); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-cat {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--color-rose);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.portfolio-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--color-charcoal);
  margin-bottom: 1.8rem;
  font-weight: 500;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.portfolio-view-link {
  color: var(--color-rose);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.1s;
}

.portfolio-item:hover .portfolio-cat,
.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-view-link {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-view-link:hover { color: var(--color-charcoal); }

.portfolio-disclaimer-box {
  margin-top: 3.5rem;
  text-align: center;
  font-style: italic;
  font-family: var(--font-serif);
  color: #333333;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 1.8rem;
  background-color: var(--color-ivory);
  border: 1.5px solid rgba(230, 193, 88, 0.25);
}

/* Why Choose Section layout */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 500px;
}

.why-img-frame {
  width: 90%;
  height: 90%;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1.5px solid rgba(230, 193, 88, 0.2);
}

.why-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-offset-border {
  position: absolute;
  width: 90%;
  height: 90%;
  border: 1.5px solid var(--color-gold);
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0.25;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
}

.why-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-rose);
  line-height: 1;
  font-weight: 500;
}

.why-item-title {
  font-size: 1.32rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.why-item-desc {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.65;
}

/* Contact layout direct links */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-block h2 {
  font-size: 3.2rem;
  font-weight: 600;
}

.contact-desc {
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  color: #333333;
  max-width: 450px;
}

/* Direct Action Cards */
.direct-channels-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.channel-card {
  background-color: var(--color-white);
  border: 1.5px solid rgba(230, 193, 88, 0.25);
  padding: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-minimal);
}

.channel-card:hover {
  transform: translateX(8px);
  border-color: var(--color-rose);
  box-shadow: var(--shadow-hover);
}

.channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose);
  flex-shrink: 0;
  transition: var(--transition-smooth);
  border: 1px solid rgba(181, 78, 95, 0.15);
}

.channel-card:hover .channel-icon {
  background-color: var(--color-rose-light);
  color: var(--color-rose);
  transform: scale(1.08);
}

.channel-details h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.2;
  font-weight: 500;
}

.channel-details p {
  font-size: 0.9rem;
  color: #444444;
  margin-bottom: 0.4rem;
}

.channel-action-btn {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-rose);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.channel-card:hover .channel-action-btn {
  color: var(--color-charcoal);
}

/* Modal Popup styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--color-white);
  width: 90%;
  max-width: 500px;
  padding: 4rem 3rem;
  position: relative;
  box-shadow: var(--shadow-hover);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid var(--color-rose);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--color-rose);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal-desc {
  font-size: 0.95rem;
  color: #555555;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Modal form inputs */
.form-group {
  position: relative;
  margin-bottom: 2.2rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 0;
  background: none;
  border: none;
  border-bottom: 1.5px solid rgba(17, 17, 17, 0.15);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  outline: none;
  transition: var(--transition-smooth);
}

.form-label {
  position: absolute;
  top: 0.8rem;
  left: 0;
  font-size: 0.9rem;
  color: #666666;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -15px;
  font-size: 0.75rem;
  color: var(--color-rose);
  font-weight: 600;
}

.form-input:focus {
  border-bottom-color: var(--color-rose);
}

.form-feedback {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  display: none;
  border-left: 3px solid transparent;
}

.form-feedback.success {
  display: block;
  background-color: rgba(46, 125, 50, 0.04);
  border-color: #2e7d32;
  color: #1b5e20;
}

.form-feedback.error {
  display: block;
  background-color: rgba(198, 40, 40, 0.04);
  border-color: #c62828;
  color: #b71c1c;
}

/* Footer Section */
footer {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 5rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-col-brand .logo-link {
  margin-bottom: 1.5rem;
}

.footer-col-brand .logo-brand-name {
  color: var(--color-white);
}

.footer-col-brand .angel-logo-svg circle,
.footer-col-brand .angel-logo-svg path {
  stroke: var(--color-gold);
}

.footer-col-brand p {
  color: #CCCCCC;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col-links h4,
.footer-col-contact h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
  font-weight: 500;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list a {
  color: #CCCCCC;
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: var(--color-rose);
  padding-left: 5px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #CCCCCC;
}

.footer-contact-item svg {
  color: var(--color-rose);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #888888;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  color: #CCCCCC;
}

.footer-socials a:hover {
  color: var(--color-gold);
}

/* Scroll Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.25s; }
.reveal-delay-3 { transition-delay: 0.38s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  .hero-sec .container { gap: 3rem; }
  .hero-title { font-size: 3.5rem; }
  .services-grid, .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .about-grid, .why-grid, .contact-grid { gap: 3rem; }
  .fullscreen-nav-overlay .container { gap: 3rem; }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  header { height: 75px; }
  .lookbook-indicator-dock { display: none; }
  
  /* Header branding compact styling for mobile */
  .angel-logo-svg {
    height: 44px;
  }
  .logo-brand-name {
    font-size: 1.15rem;
  }
  .logo-tagline {
    font-size: 0.54rem;
    letter-spacing: 0.1em;
  }
  .logo-tag {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }
  .modern-menu-trigger {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero-sec {
    padding-top: 100px;
    padding-bottom: 3.5rem;
  }
  
  .hero-sec .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .hero-title { 
    font-size: 2.4rem; 
    margin-bottom: 1.2rem;
  }
  .hero-subtitle { 
    margin: 0 auto 2.2rem auto; 
    font-size: 1.05rem;
  }
  .hero-cta-group { 
    justify-content: center; 
    gap: 1rem;
  }
  
  .hero-visual {
    height: 360px;
    justify-content: center;
  }
  
  .hero-img-frame {
    width: 100%;
    height: 100%;
  }
  
  .section { padding: 4rem 0; }
  .section-title { font-size: 2.2rem; }
  
  .about-grid, .why-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* About portrait responsive */
  .about-visual { height: auto; padding-top: 0; }
  .about-img-frame { width: 280px; height: 320px; }
  .about-portrait-stats { gap: 0.8rem; }
  .portrait-stat { padding: 0.6rem 0.8rem; min-width: 75px; }
  .portrait-stat-num { font-size: 1.4rem; }

  .why-visual { height: 380px; order: 2; }
  .why-list { order: 1; }

  /* Responsive spinning hoop sizing to prevent horizontal overflow */
  .about-visual::before {
    width: 260px;
    height: 260px;
    top: 60px;
  }
  .about-visual::after {
    width: 295px;
    height: 295px;
    top: 42px;
  }
  
  .services-grid, .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .portfolio-item { height: 350px; }
  .fullscreen-nav-image { display: none; }
  
  .fullscreen-nav-overlay .container {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
  
  .fullscreen-nav-menu-col a { font-size: 2.2rem; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
  
  .modal-content {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }
  
  .hero-title { 
    font-size: 2.0rem; 
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .hero-visual, .about-visual, .why-visual {
    height: 300px;
  }
  
  .about-visual::before {
    width: 250px;
    height: 250px;
    top: calc(50% - 125px);
    left: calc(50% - 125px);
  }
  
  .channel-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
  }

  .about-img-frame { width: 240px; height: 280px; }
  .about-portrait-stats { gap: 0.6rem; }
  .portrait-stat { padding: 0.5rem 0.65rem; min-width: 65px; }
  .portrait-stat-num { font-size: 1.2rem; }
}
