/* ═══════════════════════════════════════
   nü Beauty — Global Stylesheet
   css/style.css
   ═══════════════════════════════════════ */

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

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

:root {
  --bg:      #0C0809;
  --bg2:     #12090C;
  --bg3:     #1C1015;
  --fg:      #F5EDF0;
  --fg2:     #A8949A;
  --accent:  #B8596E;
  --accent2: #D4849A;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --border:  rgba(184, 89, 110, 0.06);
  --border2: rgba(184, 89, 110, 0.12);
  --border3: rgba(184, 89, 110, 0.15);
  --glow:    rgba(184, 89, 110, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--sans);
  cursor: pointer;
}


/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */

.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12, 8, 9, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-wrap.scrolled {
  background: rgba(12, 8, 9, 0.97);
}

.nav-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 8px;
  position: relative;
}

.nav-logo-row a {
  display: flex;
  align-items: center;
}

.nav-logo-row img {
  height: 38px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--fg);
}

.nav-links-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 4px 20px 14px;
}

.nav-links-row li a {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fg2);
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
  display: inline-block;
}

.nav-links-row li a:hover,
.nav-links-row li a.active {
  color: var(--fg);
}

.nav-links-row li a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
}

/* Mobile hamburger */
.mobile-hamburger {
  display: none;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--fg);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 8, 9, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-overlay.open {
  display: flex;
}

.mobile-overlay li a {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--fg2);
  transition: color 0.3s;
  letter-spacing: 2px;
}

.mobile-overlay li a:hover {
  color: var(--fg);
}

.mobile-overlay-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 26px;
  cursor: pointer;
}

.mobile-overlay-logo {
  margin-bottom: 32px;
}

.mobile-overlay-logo img {
  height: 48px;
  width: auto;
}

@media (max-width: 768px) {
  .nav-links-row {
    display: none;
  }
  .mobile-hamburger {
    display: block;
  }
  .nav-logo-row {
    padding: 16px 20px 12px;
  }
}


/* ═══════════════════════════════════════
   CREDENTIALS MARQUEE BAR
   ═══════════════════════════════════════ */

.cred-bar {
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  white-space: nowrap;
}

.cred-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}

.cred-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 48px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg2);
}

.cred-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════
   HERO IMAGE CAROUSEL (Home Page)
   ═══════════════════════════════════════ */

.carousel-wrap {
  margin-top: 90px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  display: block;
}

/* Fallback when image not loaded */
.carousel-placeholder {
  width: 100%;
  height: 55vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 3px;
}

/* Desktop progress bars */
.carousel-nav {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 20px 0 24px;
  background: var(--bg);
}

.carousel-bar {
  height: 3px;
  flex: 1;
  max-width: 80px;
  background: rgba(184, 89, 110, 0.15);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.carousel-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.carousel-bar.active .carousel-bar-fill {
  width: 100%;
  transition: width 4s linear;
}

.carousel-bar.done .carousel-bar-fill {
  width: 100%;
  transition: width 0.3s ease;
}

/* Mobile: show desktop images, hide mobile source tag handles this in HTML */
.carousel-slide .desktop-img { display: block; }
.carousel-slide .mobile-img  { display: none; }

@media (max-width: 768px) {
  .carousel-wrap {
    margin-top: 68px;
  }
  .carousel-slide .desktop-img { display: none; }
  .carousel-slide .mobile-img  { display: block; }
  .carousel-slide img {
    max-height: 85vh;
  }
  .carousel-placeholder {
    height: 150vw;
    max-height: 85vh;
  }
  .carousel-nav {
    display: none;
  }
}


/* ═══════════════════════════════════════
   PRODUCT CARD CAROUSEL SECTION
   ═══════════════════════════════════════ */

.prod-section {
  padding: 72px 48px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.prod-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.prod-section-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.prod-section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
}

.prod-scroll-arrows {
  display: flex;
  gap: 8px;
}

.prod-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border3);
  background: transparent;
  color: var(--fg2);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.prod-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.prod-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.prod-scroll::-webkit-scrollbar {
  display: none;
}

.prod-card {
  min-width: calc(25% - 15px);
  scroll-snap-align: start;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.prod-card-img {
  display: block;
  cursor: pointer;
}

.prod-card-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.prod-card-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.prod-card-body {
  padding: 20px;
}

.prod-card-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
}

.prod-card-name a {
  transition: color 0.3s;
}

.prod-card-name a:hover {
  color: var(--accent);
}

.prod-card-price {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 400;
}

.prod-card-shade {
  font-size: 12px;
  color: var(--fg2);
  margin-bottom: 16px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  border: none;
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.3s;
  border-radius: 6px;
}

.btn-buy:hover {
  background: var(--accent2);
}

@media (max-width: 768px) {
  .prod-section {
    padding: 48px 16px 40px;
  }
  .prod-card {
    min-width: 85%;
  }
  .prod-scroll-arrows {
    display: none;
  }
}


/* ═══════════════════════════════════════
   SHARED SECTION UTILITIES
   ═══════════════════════════════════════ */

.section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--fg2);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}

.divider {
  height: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }
}


/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */

.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s;
  font-family: var(--sans);
}

.btn-order:hover {
  background: var(--accent);
  color: var(--bg);
}

.btn-order.filled {
  background: var(--accent);
  color: var(--bg);
}

.btn-order.filled:hover {
  background: var(--accent2);
}


/* ═══════════════════════════════════════
   FORMULATION SECTION (Home Page)
   ═══════════════════════════════════════ */

.formulation {
  display: flex;
  gap: 80px;
  align-items: center;
}

.form-visual {
  flex: 1;
}

.form-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  background: linear-gradient(135deg, #1C0E14 0%, #2E1520 40%, #B8596E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.15);
}

.form-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.form-text {
  flex: 1;
}

.form-feature {
  padding: 24px 0;
  border-bottom: 1px solid rgba(184, 89, 110, 0.08);
}

.form-feature:last-child {
  border: none;
}

.form-feature h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.form-feature p {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .formulation {
    flex-direction: column;
    gap: 40px;
  }
}


/* ═══════════════════════════════════════
   ROADMAP (Home Page)
   ═══════════════════════════════════════ */

.roadmap {
  text-align: center;
  padding: 100px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.roadmap-timeline {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.roadmap-item {
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.roadmap-item.active {
  opacity: 1;
}

.roadmap-item:hover {
  opacity: 0.8;
}

.roadmap-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent);
}

.roadmap-item.active .roadmap-circle {
  background: var(--accent);
  color: var(--bg);
}

.roadmap-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg2);
}


/* ═══════════════════════════════════════
   PRODUCT DETAIL PAGE (products.html)
   ═══════════════════════════════════════ */

.pdp {
  display: flex;
  gap: 60px;
  padding-top: 100px;
}

.pdp-gallery {
  flex: 1;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.pdp-main-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s;
  overflow: hidden;
}

.pdp-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.pdp-main-img .model-text {
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 20px;
}

.pdp-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pdp-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  flex-shrink: 0;
}

.pdp-thumb.active {
  border-color: var(--accent);
}

.pdp-info {
  flex: 1;
  padding-top: 20px;
}

.pdp-name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  margin-bottom: 8px;
}

.pdp-price {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 24px;
}

.pdp-shade-label {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 16px;
}

.shade-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.shade-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.shade-dot:hover {
  transform: scale(1.15);
}

.shade-dot.active {
  border-color: var(--fg);
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--fg);
}

.pdp-desc {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.8;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .pdp {
    flex-direction: column;
    gap: 32px;
    padding-top: 80px;
  }
  .pdp-gallery {
    position: static;
  }
}


/* ═══════════════════════════════════════
   ACCORDION
   ═══════════════════════════════════════ */

.accordion-item {
  border-bottom: 1px solid rgba(184, 89, 110, 0.08);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg2);
  transition: color 0.3s;
}

.accordion-header:hover {
  color: var(--fg);
}

.accordion-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.accordion-icon.open {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s;
  opacity: 0;
}

.accordion-body.open {
  max-height: 400px;
  opacity: 1;
}

.accordion-body-inner {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.8;
}


/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */

.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 80px;
  position: relative;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(184, 89, 110, 0.06) 0%, transparent 60%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.about-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  margin-bottom: 24px;
}

.about-hero-sub {
  font-size: 16px;
  color: var(--fg2);
  line-height: 1.8;
}

.brand-story {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 48px;
}

.brand-story p {
  font-size: 16px;
  line-height: 2;
  color: var(--fg2);
  margin-bottom: 28px;
}

.brand-story p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 64px;
  float: left;
  line-height: 1;
  margin-right: 12px;
  color: var(--accent);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.standard-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  transition: border-color 0.3s;
}

.standard-card:hover {
  border-color: rgba(184, 89, 110, 0.2);
}

.standard-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--accent);
}

.standard-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 400;
}

.standard-card p {
  font-size: 13px;
  color: var(--fg2);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .brand-story {
    padding: 40px 20px;
  }
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 40px 20px;
  }
}


/* ═══════════════════════════════════════
   BLOG
   ═══════════════════════════════════════ */

.blog-hero {
  padding: 140px 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.blog-filter {
  padding: 8px 20px;
  border: 1px solid var(--border3);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--fg2);
  transition: all 0.3s;
  font-family: var(--sans);
}

.blog-filter.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.blog-card {
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: transform 0.4s, box-shadow 0.4s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blog-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--fg2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  font-size: 11px;
  color: var(--fg2);
  opacity: 0.6;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blog-hero { padding: 90px 20px 40px; }
  .blog-grid { grid-template-columns: 1fr; padding: 0 20px 60px; }
}


/* ═══════════════════════════════════════
   BLOG ARTICLE
   ═══════════════════════════════════════ */

.article-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 140px 20px 80px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg2);
  margin-bottom: 40px;
  transition: color 0.3s;
  background: none;
  border: none;
  font-family: var(--sans);
  cursor: pointer;
}

.article-back:hover {
  color: var(--fg);
}

.article-cat {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.article-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
}

.article-meta {
  font-size: 13px;
  color: var(--fg2);
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(184, 89, 110, 0.08);
}

.article-body p {
  font-size: 16px;
  line-height: 2;
  color: var(--fg2);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .article-wrap { padding: 90px 20px 60px; }
}


/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */

.contact-wrap {
  display: flex;
  gap: 80px;
  padding-top: 140px;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 80px;
}

.contact-form {
  flex: 1;
}

.contact-sidebar {
  flex: 1;
  padding-top: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg2);
  margin-bottom: 10px;
}

.form-input {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border3);
  color: var(--fg);
  font-size: 15px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.3s;
}

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

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

.contact-sidebar h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.contact-sidebar p {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.8;
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  color: var(--fg2);
  background: transparent;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 768px) {
  .contact-wrap {
    flex-direction: column;
    gap: 48px;
    padding: 90px 20px 60px;
  }
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 8px;
}

.footer-logo-text {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg2);
}

.footer-email-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg2);
  margin-bottom: 12px;
}

.footer-email-form {
  display: flex;
  gap: 0;
}

.footer-email-input {
  padding: 12px 16px;
  background: rgba(184, 89, 110, 0.04);
  border: 1px solid var(--border2);
  border-right: none;
  color: var(--fg);
  font-size: 13px;
  font-family: var(--sans);
  outline: none;
  min-width: 240px;
}

.footer-email-btn {
  padding: 12px 24px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.3s;
}

.footer-email-btn:hover {
  background: var(--accent2);
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg2);
  margin-bottom: 16px;
}

.footer-col li {
  font-size: 13px;
  color: var(--fg2);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-col li:hover {
  color: var(--fg);
}

.footer-col li a {
  color: inherit;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom span {
  font-size: 12px;
  color: var(--fg2);
  opacity: 0.5;
}

.footer-creds {
  display: flex;
  gap: 24px;
}

.footer-creds span {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--fg2);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer {
    padding: 48px 20px 32px;
  }
}


/* ═══════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 1px;
  z-index: 200;
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
