/* ============================================
   PERWIN SIGNATURE — Premium Aesthetics Studio
   CSS Design System
   ============================================ */

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #A07840;
  --dark: #0E0C0A;
  --dark-2: #1A1712;
  --dark-3: #252118;
  --cream: #F5F0E8;
  --cream-2: #EDE5D4;
  --green-dark: #1A3A2E;
  --text: #2C2415;
  --text-light: #6B5C40;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(14, 12, 10, 0.12);
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.25);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
.logo-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--text-light);
  display: block;
  text-transform: uppercase;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}
.section-title.light, .section-title.light em { color: var(--cream); }
.section-label.light { color: var(--gold-light); }
.section-label.light::before { background: var(--gold-light); }

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201, 169, 110, 0.5);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.3);
}
.btn--outline-light:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn--lg { padding: 1.1rem 2.5rem; font-size: 0.85rem; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(14, 12, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.2);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo { display: flex; flex-direction: column; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.6rem 1.4rem;
  font-weight: 500;
  transition: var(--transition) !important;
}
.nav__cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__grain {
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26, 58, 46, 0.3) 0%, transparent 70%);
  bottom: -100px; left: -50px;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  bottom: 100px; right: 200px;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}
.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__title span {
  font-style: normal;
  color: var(--white);
}
.hero__title .thin {
  font-weight: 200;
  font-size: 0.65em;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 232, 0.6);
}
.hero__sub {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 3rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.3);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ============ MARQUEE ============ */
.marquee-wrap {
  background: var(--green-dark);
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.marquee {
  display: flex;
  gap: 2.5rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee span {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.8);
}
.marquee .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ ABOUT ============ */
.about {
  padding: 8rem 0;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__desc {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.25);
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.stat__num em {
  font-size: 1.2rem;
  color: var(--gold);
  font-style: normal;
}
.stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.about__visual {
  position: relative;
  min-height: 420px;
}
.about__card {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  width: 220px;
  transition: transform 0.4s;
}
.about__card:hover { transform: translateY(-4px); }
.about__card--1 { top: 0; left: 0; }
.about__card--2 { top: 50%; right: 0; transform: translateY(-50%); }
.about__card--3 { bottom: 0; left: 30px; }
.about__card-inner { display: flex; flex-direction: column; gap: 0.75rem; }
.card-icon { font-size: 1.5rem; color: var(--gold); }
.about__card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.about__badge {
  position: absolute;
  top: 45%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 10;
  box-shadow: 0 0 0 8px var(--cream), 0 0 0 10px rgba(201,169,110,0.2);
}
.about__badge span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1;
}

/* ============ SERVICES ============ */
.services {
  padding: 8rem 0;
  background: var(--dark-2);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-label {
  justify-content: center;
}
.section-header .section-label::before { display: none; }
.section-header .section-title { color: var(--cream); }
.section-header .section-title em { color: var(--gold); }

/* TABS */
.tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.2);
  margin-bottom: 3.5rem;
  overflow: hidden;
}
.tab {
  padding: 0.8rem 1.4rem;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(201, 169, 110, 0.15);
  color: rgba(245, 240, 232, 0.45);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.tab:last-child { border-right: none; }
.tab:hover { color: var(--gold-light); background: rgba(201, 169, 110, 0.06); }
.tab.active {
  background: var(--gold);
  color: var(--dark);
  font-weight: 500;
}

/* TAB PANELS */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.15);
}
.service-card {
  background: var(--dark-3);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.service-card:hover { background: rgba(37, 33, 24, 0.9); }
.service-card:hover::before { width: 100%; }
.service-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.08);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.service-card__price span {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--text-light);
  margin-left: 0.25rem;
}

/* ============ OUR SPACE / CARE ============ */
.care {
  padding: 8rem 0;
  background: var(--cream-2);
}
.care__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.care__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.care__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-light);
}
.care__list li span { color: var(--gold); font-size: 0.7rem; }
.care__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  height: 460px;
}
.care__img--tall {
  grid-row: 1 / 3;
}
.care__img {
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(201, 169, 110, 0.15);
}
.care__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.care__img:hover img { transform: scale(1.04); }

/* ============ LOCATION ============ */
.location {
  padding: 8rem 0;
  background: var(--cream);
}
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.location__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.location__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.loc-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.location__item a {
  color: var(--gold-dark);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.location__item a:hover { color: var(--gold); }
.location__item div { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.location__item strong { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.location__map {
  border: 1px solid rgba(201, 169, 110, 0.25);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location__map iframe { display: block; filter: grayscale(20%) sepia(10%); }

/* ============ CONTACT ============ */
.contact {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}
.contact__bg {
  position: absolute;
  inset: 0;
}
.contact__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.contact__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.contact__sub {
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.92rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.contact__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.contact__tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(201, 169, 110, 0.5);
  letter-spacing: 0.1em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer__brand p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 0.75rem;
  line-height: 1.8;
}
.footer__links h4, .footer__contact h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold-light); }
.footer__contact p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.footer__contact a {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
  display: block;
  transition: color 0.3s;
  margin-bottom: 0.25rem;
}
.footer__contact a:hover { color: var(--gold-light); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.2);
  letter-spacing: 0.05em;
}

/* ============ ANIMATIONS ============ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============ MOBILE MENU ============ */
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2.5rem;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(201, 169, 110, 0.15);
  }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 0.9rem; color: var(--cream); }
  .nav__links li:last-child { margin-top: 1rem; }
  .nav__cta { display: inline-block; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about__grid, .care__inner, .location__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about__visual { min-height: 320px; display: none; }
  .care__img-grid { height: 360px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .about { padding: 5rem 0; }
  .about__stats { gap: 1.5rem; flex-wrap: wrap; }
  .services { padding: 5rem 0; }
  .tabs { gap: 0; }
  .tab { padding: 0.7rem 0.9rem; font-size: 0.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .care { padding: 5rem 0; }
  .care__img-grid { display: none; }
  .location { padding: 5rem 0; }
  .location__inner { grid-template-columns: 1fr; }
  .location__map iframe { height: 280px; }
  .contact { padding: 5rem 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .contact__actions { flex-direction: column; align-items: center; }
  .contact__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .tabs::-webkit-scrollbar { display: none; }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ============ SELECTION ============ */
::selection { background: rgba(201, 169, 110, 0.3); color: var(--text); }

/* ============ HERO TRUST STRIP ============ */
.hero__trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.hero__trust span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.7);
}

/* ============ MICROBLADING SECTION ============ */
.microblading {
  padding: 8rem 0;
  background: var(--cream);
}
.microblading__header {
  text-align: center;
  margin-bottom: 4rem;
}
.microblading__header .section-label {
  justify-content: center;
}
.microblading__header .section-label::before { display: none; }
.microblading__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.mb-card {
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mb-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.mb-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mb-card:hover::after { width: 100%; }
.mb-card__icon { font-size: 1.4rem; color: var(--gold); }
.mb-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
}
.mb-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}
.mb-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 0.5rem;
  transition: gap 0.3s, color 0.3s;
}
.mb-card__cta:hover { gap: 0.7rem; color: var(--gold); }

/* WHY US STRIP */
.why-us {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--green-dark);
  padding: 2.5rem 3rem;
}
.why-us__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}
.why-us__icon { font-size: 1.5rem; }
.why-us__item strong {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-transform: uppercase;
}
.why-us__item span {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.45);
}
.why-us__sep {
  color: rgba(201, 169, 110, 0.3);
  font-size: 0.5rem;
}
@media (max-width: 600px) {
  .why-us { gap: 1.5rem; padding: 2rem 1.5rem; }
  .why-us__sep { display: none; }
}

/* ============ INSTAGRAM SECTION ============ */
.instagram {
  padding: 8rem 0;
  background: var(--dark-2);
}
.instagram__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.instagram__header .section-label {
  justify-content: center;
  color: var(--gold);
}
.instagram__header .section-label::before { display: none; }
.instagram__header .section-title { color: var(--cream); }
.instagram__header .section-title em { color: var(--gold); }
.instagram__header .section-desc { color: rgba(245, 240, 232, 0.45); }

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: var(--transition);
}
.ig-handle:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Instagram Posts Grid */
.ig-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 6px;
  margin-bottom: 3rem;
}
.ig-post {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.ig-post--wide {
  grid-column: span 2;
}
.ig-post__inner {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
}
.ig-post--wide .ig-post__inner {
  aspect-ratio: 2 / 1;
}
/* Gradient placeholders styled to look like brow/beauty content */
.ig-post__inner--1 { background: linear-gradient(135deg, #2C1F1A 0%, #4A2D22 40%, #6B3D2E 100%); }
.ig-post__inner--2 { background: linear-gradient(135deg, #1A1F2C 0%, #2D3A4A 50%, #3D4E6B 100%); }
.ig-post__inner--3 { background: linear-gradient(135deg, #2C1A20 0%, #4A2232 50%, #6B3047 100%); }
.ig-post__inner--4 { background: linear-gradient(135deg, #1F2C1A 0%, #2D4A22 50%, #3D6B2E 100%); }
.ig-post__inner--5 { background: linear-gradient(135deg, #2C2A1A 0%, #4A4522 50%, #6B623A 100%); }
.ig-post__inner--6 { background: linear-gradient(135deg, #1A1A2C 0%, #2A2240 60%, #C9A96E22 100%); }

/* Decorative inner content for placeholders */
.ig-post__inner::before {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(201, 169, 110, 0.15);
  pointer-events: none;
}

.ig-post__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 12, 10, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}
.ig-post:hover .ig-post__overlay { opacity: 1; }
.ig-post__overlay svg { color: var(--gold); }
.ig-post__overlay span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}
.ig-post__label {
  background: var(--dark-3);
  padding: 0.55rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  transition: color 0.3s, background 0.3s;
  text-align: center;
}
.ig-post:hover .ig-post__label {
  color: var(--gold-light);
  background: rgba(37, 33, 24, 0.9);
}

.instagram__cta { text-align: center; }

/* Replace placeholder cells with real images when uploaded */
/* To use actual Instagram images, place them as:
   images/ig-1.jpg through images/ig-6.jpg
   and uncomment these rules: */
/*
.ig-post__inner--1 { background-image: url('../images/ig-1.jpg'); background-size: cover; background-position: center; }
.ig-post__inner--2 { background-image: url('../images/ig-2.jpg'); background-size: cover; background-position: center; }
.ig-post__inner--3 { background-image: url('../images/ig-3.jpg'); background-size: cover; background-position: center; }
.ig-post__inner--4 { background-image: url('../images/ig-4.jpg'); background-size: cover; background-position: center; }
.ig-post__inner--5 { background-image: url('../images/ig-5.jpg'); background-size: cover; background-position: center; }
.ig-post__inner--6 { background-image: url('../images/ig-6.jpg'); background-size: cover; background-position: center; }
*/

/* FOOTER INSTAGRAM LINK */
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(201, 169, 110, 0.6);
  margin-top: 1rem;
  transition: color 0.3s;
}
.footer__ig:hover { color: var(--gold); }

/* ============ RESPONSIVE UPDATES ============ */
@media (max-width: 768px) {
  .microblading { padding: 5rem 0; }
  .instagram { padding: 5rem 0; }
  .ig-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ig-post--wide { grid-column: span 2; }
  .hero__trust { gap: 1rem; }
  .hero__trust span { font-size: 0.62rem; }
}
@media (max-width: 480px) {
  .ig-posts-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .microblading__grid { grid-template-columns: 1fr; }
}

/* ============ INSTAGRAM STRIP ============ */
.ig-strip {
  background: var(--dark-3);
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  padding: 2rem 24px;
}
.ig-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ig-strip__text {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.04em;
}
.ig-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.ig-strip__btn:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .ig-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .ig-strip__btn { align-self: flex-start; }
}
