/* ===================================================
   TAMICA LEE — styles.css
   =================================================== */

/* ── Reset & Variables ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A96E;
  --gold-light:  #E5C88C;
  --gold-dark:   #9A7A45;
  --plum:        #1E0F1E;
  --plum-mid:    #2D1A2D;
  --ivory:       #FAF6F0;
  --warm-white:  #F5EFE6;
  --text:        #2A1A2A;
  --text-mid:    #5A4A5A;
  --text-light:  #8A7A8A;

  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'Inter', system-ui, sans-serif;
  --ff-ui:       'Inter', system-ui, sans-serif;

  --nav-h:       80px;
  --radius:      2px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16.5px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.mt-lg { margin-top: 2rem; display: inline-block; }

/* ── Typography ──────────────────────────────────── */
.section__eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section__eyebrow--light { color: var(--gold-light); }

.section__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section__title--light { color: var(--ivory); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-ui);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-105%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::after { transform: translateX(0); }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--plum); color: var(--ivory); border-color: var(--plum); }
.btn--primary:hover { background: var(--plum-mid); }
.btn--outline { background: transparent; color: var(--plum); border-color: var(--plum); }
.btn--outline:hover { background: var(--plum); color: var(--ivory); }
.btn--gold { background: var(--gold); color: var(--plum); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); color: var(--ivory); border-color: var(--gold-dark); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--plum);
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: calc(var(--nav-h) + 80px) 8% 80px;
  grid-column: 1; /* Forces text to the left */
}

.hero__bg-image {
  grid-column: 2; /* Keeps the image on the right so the text can sit on the left */
  grid-row: 1;
  position: relative; /* Fixed: Removed absolute position to let grid lock it */
  width: 100%;  
  height: 100vh; 
  z-index: 1;
  overflow: hidden; /* This hard-stops the image from moving outside its half box */
  border-radius: 0px; 
}

.hero__bg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Fixed the missing % sign from your code */
  object-fit: cover; /* 'cover' usually looks much better than 'scale-down' for hero images */
  object-position: center top; 
  /* Restricts motion smoothly to remain strictly contained inside the image viewport bounds */
  animation: halfZoom 60s ease-in-out infinite alternate !important;
}

@keyframes halfZoom {
  0% { 
    transform: scale(1) translateX(0); 
  }
  100% { 
    transform: scale(1.08) translateX(-2%); 
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,15,30,0) 60%, rgba(30,15,30,1) 100%);
}

.hero__lines { position: absolute; z-index: 5; pointer-events: none; }
.hero__lines--tr { top: 0; right: 0; width: 45%; max-width: 480px; height: 340px; }
.hero__lines--bl { bottom: 0; left: 0; width: 42%; max-width: 420px; height: 280px; }

.hero__eyebrow { font-family: var(--ff-ui); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.hero__title { font-family: var(--ff-display); font-size: clamp(4rem, 8vw, 7.5rem); font-weight: 900; line-height: 0.95; color: var(--ivory); margin-bottom: 1.5rem; display: flex; flex-direction: column; letter-spacing: -0.02em; }
.hero__title-line { font-style: italic; font-weight: 700; }
.hero__title-line--italic { font-style: italic; font-weight: 500; color: var(--gold-light); letter-spacing: -0.01em; }
.hero__tagline { font-family: var(--ff-body); font-size: 1rem; color: rgba(250,246,240,0.65); letter-spacing: 0.04em; margin-bottom: 2.5rem; max-width: 380px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll-hint {
  position: absolute;
  bottom: calc(var(--nav-h) + 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.4);
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,169,110,0.7), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: absolute;
  bottom: 0;
  left: 0; 
  right: 0;
  margin: 0 auto;
  z-index: 900;
  height: var(--nav-h);
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #18181b; 
  transition: all 0.4s var(--ease);
}

.nav.is-fixed { position: fixed; top: 0; bottom: auto; max-width: 100%; padding: 0 6%; }
.nav.scrolled { background: rgba(24, 24, 27, 0.98); backdrop-filter: blur(12px); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav__logo { display: flex; align-items: center; }
.nav__tlee-svg { width: 100px; height: 50px; transition: transform 0.3s; }
.nav__tlee-svg:hover { transform: scale(1.05); }

.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__link { font-family: var(--ff-ui); font-size: 0.82rem; font-weight: 700; color: rgba(255, 255, 255, 0.9); transition: color 0.25s; position: relative; }
.nav__link:hover { color: var(--gold); }
.nav__link--cta { background: #2a2a35; padding: 0.6rem 1.4rem; color: #ffffff; font-size: 0.85rem; border-radius: 2px; transition: background 0.3s; }
.nav__link--cta:hover { background: var(--gold); color: var(--plum); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.nav__toggle span { display: block; width: 24px; height: 1.5px; background: var(--ivory); transition: transform 0.3s, opacity 0.3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Reveal Animations ───────────────────────────── */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal { transform: translateY(32px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; transition-delay: var(--delay, 0s); }

/* ── About ───────────────────────────────────────── */
.about { background: var(--ivory); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__media { position: relative; }
.about__media-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative; }
.about__media-wrap img { transition: transform 0.7s var(--ease); }
.about__media-wrap:hover img { transform: scale(1.04); }
.about__accent-block { position: absolute; width: 180px; height: 180px; bottom: -24px; right: -24px; border: 1.5px solid var(--gold); z-index: -1; opacity: 0.4; }
.about__body { font-size: 1.05rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1rem; }
.about__body em { font-style: italic; color: var(--text); }
.about__body strong { font-weight: 600; color: var(--text); }

/* ── Feature Block ───────────────────────────────── */
.feature-block { background: var(--warm-white); padding: 100px 0; }
.feature-block__inner { text-align: center; }
.video-card { margin-top: 3rem; max-width: 900px; margin-left: auto; margin-right: auto; background: var(--plum); overflow: hidden; box-shadow: 0 24px 64px rgba(30,15,30,0.25); }
.video-card__thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-card__thumb img { transition: transform 0.6s var(--ease); }
.video-card:hover .video-card__thumb img { transform: scale(1.04); }
.video-card__thumb::after { content: ''; position: absolute; inset: 0; background: rgba(30,15,30,0.35); transition: background 0.3s; }
.video-card:hover .video-card__thumb::after { background: rgba(30,15,30,0.2); }
.video-card__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; width: 72px; height: 72px; border-radius: 50%; background: rgba(201,169,110,0.92); border: none; cursor: pointer; color: var(--plum); display: flex; align-items: center; justify-content: center; transition: transform 0.3s var(--ease), background 0.3s; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.video-card__play svg { width: 22px; margin-left: 3px; }
.video-card:hover .video-card__play { transform: translate(-50%,-50%) scale(1.1); background: var(--gold-light); }
.video-card__caption { padding: 1.8rem 2.5rem; text-align: left; }
.video-card__caption h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 800; color: var(--ivory); margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.video-card__caption p { font-family: var(--ff-body); font-size: 0.95rem; color: rgba(250,246,240,0.6); }

/* ── Ventures ── */
.ventures { background: var(--ivory); }
.ventures-intro { max-width: 820px; margin-bottom: 54px; }
.ventures-intro p:not(.section__eyebrow) { color: var(--text-mid); font-size: 1.05rem; line-height: 1.8; }
.ventures-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
}
.venture-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-content: start;
  column-gap: 28px;
  min-height: 255px;
  padding: 40px 44px;
  border: 1px solid rgba(201,169,110,0.28);
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 60px rgba(30,15,30,0.05);
}
.venture-card--featured {
  min-height: 255px;
  background: rgba(255,255,255,0.72);
}
.venture-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 48px;
  border: 1px solid rgba(201,169,110,0.28);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-dark);
}
.venture-card h2 {
  font-family: var(--ff-display);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--plum);
  margin-bottom: 18px;
}
.venture-card p { color: var(--text-mid); margin-bottom: 1rem; }
.venture-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 232px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1.5px solid var(--plum);
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
}

/* ── Stats Strip ─────────────────────────────────── */
.stats-strip { background: var(--plum); padding: 60px 0; position: relative; overflow: hidden; }
.stats-strip::before, .stats-strip::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.stats-strip::before { top: 0; } .stats-strip::after { bottom: 0; }
.stats-strip__inner { display: flex; align-items: center; justify-content: space-around; gap: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; }
.stat__number { font-family: var(--ff-display); font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; color: var(--gold-light); line-height: 1; letter-spacing: -0.03em; }
.stat__label { font-family: var(--ff-ui); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,246,240,0.5); }
.stat__divider { width: 1px; height: 60px; background: rgba(201,169,110,0.2); }

/* ── Instagram Grid ──────────────────────────────── */
.instagram { background: var(--ivory); }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 3rem; }
.insta-card { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.insta-grid img { transition: transform 0.5s var(--ease); }
.insta-card__hover { position: absolute; inset: 0; background: rgba(30,15,30,0.65); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s var(--ease); }
.insta-card:hover img { transform: scale(1.08); }
.insta-card:hover .insta-card__hover { opacity: 1; }

/* ── Booking ─────────────────────────────────────── */
.booking { background: var(--plum-mid); padding: 100px 0; }
.booking__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.booking__desc { font-size: 1.05rem; line-height: 1.8; color: rgba(250,246,240,0.65); }
.booking__image { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.booking__image::after { content: ''; position: absolute; inset: 0; border: 1.5px solid rgba(201,169,110,0.2); pointer-events: none; }
.booking__image img { transition: transform 0.7s var(--ease); }
.booking__image:hover img { transform: scale(1.04); }

/* ── Contact Form ── */
.contact-form { display: flex; flex-direction: column; gap: 15px; max-width: 400px; }
.form-group input, .form-group textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 12px 16px; color: var(--ivory); font-family: var(--ff-ui); font-size: 0.9rem; outline: none; transition: border-color 0.3s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(250,246,240,0.4); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.contact-form .btn { align-self: flex-start; margin-top: 5px; }

/* ── Footer ─────────────────────────────────────── */
.footer { background: #2B2B38; position: relative; overflow: hidden; }
.footer__lines { position: absolute; pointer-events: none; }
.footer__lines--tl { top: 0; left: 0; width: 380px; height: 160px; }
.footer__main { display: flex; align-items: flex-start; justify-content: space-between; gap: 3rem; padding: 56px 0 40px; flex-wrap: wrap; }
.footer__left { display: flex; flex-direction: column; gap: 1.8rem; }
.footer__script-logo { display: inline-block; line-height: 1; }
.footer__tlee-svg { width: 160px; height: 80px; display: block; }
.footer__nav { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer__nav a { font-family: var(--ff-ui); font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.55); transition: color 0.25s; }
.footer__nav a:hover { color: rgba(255,255,255,0.9); }
.footer__newsletter-box { background: #1E1E28; padding: 28px 32px 32px; min-width: 340px; max-width: 440px; flex-shrink: 0; }
.footer__newsletter-title { font-family: var(--ff-ui); font-size: 0.95rem; font-weight: 600; color: #fff; line-height: 1.4; margin-bottom: 16px; letter-spacing: 0.01em; }
.footer__newsletter-form { display: flex; gap: 0; }
.footer__email-input { flex: 1; background: #fff; border: none; color: #333; font-family: var(--ff-ui); font-size: 0.85rem; padding: 0.7rem 1rem; outline: none; min-width: 0; }
.footer__email-input::placeholder { color: #aaa; }
.footer__submit-btn { background: #1E1E28; border: 2px solid rgba(255,255,255,0.15); color: #fff; font-family: var(--ff-ui); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; padding: 0.7rem 1.5rem; cursor: pointer; transition: background 0.25s, border-color 0.25s; white-space: nowrap; }
.footer__submit-btn:hover { background: #333345; border-color: rgba(255,255,255,0.3); }
.footer__newsletter-success { font-family: var(--ff-ui); font-size: 0.8rem; color: var(--gold-light); margin-top: 0.8rem; opacity: 0; transition: opacity 0.4s; }
.footer__newsletter-success.show { opacity: 1; }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0 24px; flex-wrap: wrap; gap: 1rem; }
.footer__social-row { display: flex; align-items: center; gap: 1rem; }
.footer__follow-label { font-family: var(--ff-ui); font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-right: 0.3rem; }
.footer__social-row a { color: rgba(255,255,255,0.45); display: flex; align-items: center; transition: color 0.25s, transform 0.25s; }
.footer__social-row a:hover { color: rgba(255,255,255,0.9); transform: translateY(-2px); }
.footer__copyright { font-family: var(--ff-ui); font-size: 0.75rem; color: rgba(255,255,255,0.35); letter-spacing: 0.03em; }
.footer__copyright strong { font-weight: 600; color: rgba(255,255,255,0.55); }

/* ── Modal ───────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 2rem; pointer-events: none; opacity: 0; transition: opacity 0.35s var(--ease); }
.modal.open { pointer-events: all; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10,5,10,0.88); backdrop-filter: blur(8px); }
.modal__content { position: relative; z-index: 2; width: 100%; max-width: 860px; background: var(--plum); transform: scale(0.9) translateY(20px); transition: transform 0.4s var(--ease-out); }
.modal.open .modal__content { transform: none; }
.modal__close { position: absolute; top: -44px; right: 0; background: none; border: none; color: var(--ivory); cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.modal__close:hover { opacity: 1; }
.modal__video-wrap { aspect-ratio: 16/9; background: #000; }
.modal__video-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--plum-mid); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__content { padding: calc(var(--nav-h) + 60px) 8% 60px; max-width: 600px; grid-column: 1; }
  .hero__bg-image { width: 100%; height: 100%; }
  .hero__overlay { background: linear-gradient(to bottom, rgba(30,15,30,0.3), rgba(30,15,30,0.95)); }
  .about__inner { grid-template-columns: 1fr; gap: 50px; }
  .booking__inner { grid-template-columns: 1fr; gap: 50px; }
  .stat__divider { display: none; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .footer__main { flex-direction: column; }
  .footer__newsletter-box { min-width: unset; max-width: 100%; width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .ventures-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Dynamic containment injection strictly executed inside mobile device viewports */
  .section,
  .container,
  main,
  .hero,
  .footer {
    overflow: hidden !important;
  }

  :root { --nav-h: 70px; }
  .nav__links { position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px; height: 100vh; background: var(--plum); flex-direction: column; align-items: flex-start; padding: calc(var(--nav-h) + 2rem) 2rem 2rem; gap: 1.8rem; transition: right 0.4s var(--ease-out); box-shadow: -8px 0 32px rgba(0,0,0,0.4); }
  .nav__links.open { right: 0; }
  .nav__toggle { display: flex; }
  .section { padding: 70px 0; }
  .about__accent-block { display: none; }
  .stats-strip__inner { gap: 2.5rem; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { border-right: 1.5px solid rgba(201,169,110,0.3); border-bottom: none; }

  /* Pulls the absolute floating social icons flush to match device bounds tightly on mobile screens */
  .floating-socials {
    right: 0px !important;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 3rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .venture-card { grid-template-columns: 1fr; padding: 30px 24px; }
  .venture-card h2 { font-size: 1.85rem; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__lines--tr { width: 70%; }
  .hero__lines--bl { width: 65%; }
  .footer__newsletter-form { flex-direction: column; }
  .footer__tlee-svg { width: 130px; height: 65px; }
}
/* ── Floating Social Bar ─────────────────────────── */
.floating-socials {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.4);
}

.floating-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background-color: var(--bg-alt); /* Matches your dark grey theme */
  color: var(--gold); /* Your custom gold */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* The separator line */
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.floating-socials a:last-child {
  border-bottom: none;
}

.floating-socials a svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.floating-socials a:hover {
  background-color: var(--gold);
  color: var(--bg-main); /* Inverts icon to dark when hovered */
  width: 65px; /* Slight pop-out effect to the left */
}

.floating-socials a:hover svg {
  transform: scale(1.1);
}

/* ── Signature: Diamond Section Divider ──────────── */
.diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin: 0;
  height: 32px;
  position: relative;
  overflow: hidden;
}
.diamond-divider::before,
.diamond-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.35));
}
.diamond-divider::after {
  background: linear-gradient(270deg, transparent, rgba(201,169,110,0.35));
}
.diamond-divider__gem {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin: 0 16px;
  opacity: 0.8;
}

/* ── About section: italic quote treatment ───────── */
.about__body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

/* ── Footer copyright ────────────────────────────── */
.footer__copyright {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
  padding: 16px 0 24px;
  text-align: center;
}
.footer__copyright strong {
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

/* ── Nav link underline on hover ─────────────────── */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after {
  width: 100%;
}
