/* ═══════════════════════════════════════════════
   CUSTOM BY THU WIN — Luxury Jewelry Website
   style.css
═══════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────── */
:root {
  --gold:       #c9a96e;
  --gold-light: #e8d5aa;
  --gold-dark:  #a07840;
  --black:      #080808;
  --dark:       #111111;
  --dark-2:     #1a1a1a;
  --dark-3:     #222222;
  --white:      #ffffff;
  --off-white:  #f5f0e8;
  --text-muted: #888888;
  --text-body:  #cccccc;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-alt:   'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
  --nav-h:      80px;
  --radius:     2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  background: var(--black);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── Typography ──────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-header { text-align: left; }
.section-header.center,
.section-header .center { text-align: center; }
.section-header { margin-bottom: 3.5rem; }

/* ── Gold Divider ────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem 0;
}
.gold-divider.center { margin: 1.5rem auto; }

/* ── Container ───────────────────────────────── */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before { transform: translateX(0); }
.btn:hover { color: var(--black); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold::before { background: var(--gold-light); }
.btn-gold:hover { color: var(--black); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { color: var(--black); }

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.7rem; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.8rem; }

/* ── Section Spacing ─────────────────────────── */
.section { padding: 8rem 0; }

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.15);
  backdrop-filter: blur(10px);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Logo image (replaces text when img/logo.png exists) */
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  /* Removes white background — keeps only the gold logo visible on dark nav */
  mix-blend-mode: lighten;
  filter: brightness(1.05);
  transition: opacity var(--transition);
}
.nav-logo-img:hover { opacity: 0.85; }

.nav-logo-text {
  flex-direction: column;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.cta-nav {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.2rem;
  transition: var(--transition);
}
.cta-nav:hover {
  background: var(--gold);
  color: var(--black) !important;
}
.cta-nav::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

/* When there's no video, show a dark gradient bg */
.hero:not(:has(video[src])) .hero-video,
.hero-video:not([src]) {
  display: none;
}
.hero {
  background: radial-gradient(ellipse at 30% 40%, #1a1208 0%, #080808 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-alt);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 0.8rem; color: var(--gold); }

/* Corner decorations */
.hero-corner {
  position: absolute;
  width: 50px; height: 50px;
  z-index: 2;
  opacity: 0.4;
}
.hero-corner.tl { top: 100px; left: 40px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero-corner.tr { top: 100px; right: 40px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.hero-corner.bl { bottom: 40px; left: 40px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero-corner.br { bottom: 40px; right: 40px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

/* ══════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 0.85rem 0;
}

.ticker {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
}

.ticker-dot { color: var(--black) !important; opacity: 0.5; }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-section { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.about-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img-frame:hover img { transform: scale(1.04); }

.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dark-2);
  gap: 1rem;
  color: var(--text-muted);
}
.about-img-placeholder i { font-size: 3rem; color: var(--gold); opacity: 0.4; }
.about-img-placeholder p { font-size: 0.8rem; letter-spacing: 0.1em; }

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--black);
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.badge-text {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
}

.about-body {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about-body strong { color: var(--gold); font-weight: 500; }

.about-values {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.value-item i {
  font-size: 1.5rem;
  color: var(--gold);
}

/* ══════════════════════════════════════════════
   TIMELINE
══════════════════════════════════════════════ */
.timeline-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.15) 10%, rgba(201,169,110,0.15) 90%, transparent);
  pointer-events: none;
}

.section-header .section-desc { margin: 0 auto; text-align: center; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
  gap: 0;
  padding: 3rem 0;
}

.timeline-item:nth-child(odd) .timeline-content  { grid-column: 1; grid-row: 1; text-align: right; padding-right: 3rem; }
.timeline-item:nth-child(odd) .timeline-icon      { grid-column: 2; grid-row: 1; }


.timeline-item:nth-child(even) .timeline-icon    { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; padding-left: 3rem; }

/* fix: for even items, icon must come after empty col 1 */
.timeline-item:nth-child(even) {
  grid-template-areas: ". icon content";
}
.timeline-item:nth-child(odd) {
  grid-template-areas: "content icon .";
}

.timeline-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin: 0 auto;
  transition: background var(--transition), transform var(--transition);
}

.timeline-item:hover .timeline-icon {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

.timeline-content {
  padding-top: 0.75rem;
}

.tl-step {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.tl-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 0.75rem;
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════ */
.portfolio-section { background: var(--dark); }

.ig-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 1.5rem 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.ig-banner > i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.ig-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ig-text strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

.ig-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.portfolio-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.1);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.portfolio-card:hover {
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-6px);
}

.portfolio-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-media img,
.portfolio-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-media img,
.portfolio-card:hover .portfolio-media video {
  transform: scale(1.06);
}

.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--dark-3);
  color: var(--text-muted);
  transition: background var(--transition);
}
.portfolio-placeholder i { font-size: 2rem; color: var(--gold); opacity: 0.4; }
.portfolio-placeholder p { font-size: 0.75rem; letter-spacing: 0.1em; }
.portfolio-card:hover .portfolio-placeholder { background: #252525; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--gold);
  font-size: 1.5rem;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-info { padding: 1.5rem; }

.portfolio-type {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.portfolio-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.portfolio-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio-tags span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 0.3rem 0.8rem;
}

/* ══════════════════════════════════════════════
   APPOINTMENT
══════════════════════════════════════════════ */
.appointment-section {
  background: var(--black);
  position: relative;
}

.appt-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.appt-form {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 3.5rem;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.appt-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width { grid-column: 1 / -1; }

label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.req { color: var(--gold); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.9rem 1.2rem;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,169,110,0.04);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select option { background: var(--dark-3); color: var(--white); }

textarea { resize: vertical; min-height: 140px; }

/* Checkboxes */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin-top: 0.25rem;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.check-label:hover { color: var(--white); }

.check-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 1px solid rgba(201,169,110,0.35);
  background: var(--dark-3);
  border-radius: 0;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  padding: 0;
  transition: background var(--transition), border-color var(--transition);
}

.check-label input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.check-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 4px; height: 8px;
  border: 2px solid var(--black);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.form-note i { color: var(--gold); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,169,110,0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-tagline {
  font-family: var(--font-alt);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.footer-links a {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-end;
}

.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  width: 44px; height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ══════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  /* Nav mobile */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    border-top: 1px solid rgba(201,169,110,0.1);
  }
  .nav-links.open { max-height: 400px; }

  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-link { display: block; padding: 1.1rem 1.5rem; }
  .cta-nav { margin: 1rem 1.5rem; display: inline-flex; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: -15px; right: 10px; }

  /* Timeline */
  .timeline-section::before { left: 30px; }
  .timeline-item {
    grid-template-columns: 60px 1fr !important;
    grid-template-areas: "icon content" !important;
  }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    text-align: left;
    padding-left: 1.5rem;
    padding-right: 0;
  }
  .timeline-icon { grid-column: 1; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }
  .ig-banner { flex-direction: column; text-align: center; }

  /* Form */
  .appt-form { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-social { justify-content: center; }

  /* Hero */
  .hero-corner { display: none; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .section { padding: 5rem 0; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
}
