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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --dark4: #222222;
  --gray: #555;
  --gray-light: #888;
  --white: #f5f5f5;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.3s ease;
  --radius: 4px;
}

html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: var(--font-sans); font-size: 16px; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════════════════════════════
   HERO SLIDER — Ken Burns
══════════════════════════════════════════════════════════════ */

.hs {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--dark);
}

/* Track holds all slides stacked */
.hs-track { position: absolute; inset: 0; }

/* Individual slide */
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.45, 0, 0.55, 1);
  pointer-events: none;
}
.hs-slide.is-active  { opacity: 1; pointer-events: auto; }
.hs-slide.is-leaving { opacity: 0; }

/* Background layer — image or gradient — animates with Ken Burns */
.hs-bg {
  position: absolute;
  inset: -6%; /* extra room for zoom travel */
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* Ken Burns keyframes — 5 distinct directions */
@keyframes kb1 { 0%{transform:scale(1)    translateX(0)    translateY(0)}    100%{transform:scale(1.12) translateX(-2%)   translateY(-1%)}  }
@keyframes kb2 { 0%{transform:scale(1.1)  translateX(-2%)  translateY(-1%)}  100%{transform:scale(1)    translateX(2%)    translateY(1%)}   }
@keyframes kb3 { 0%{transform:scale(1)    translateX(2%)   translateY(1%)}   100%{transform:scale(1.1)  translateX(-1%)   translateY(-2%)}  }
@keyframes kb4 { 0%{transform:scale(1.08) translateX(1%)   translateY(-2%)}  100%{transform:scale(1)    translateX(-2%)   translateY(2%)}   }
@keyframes kb5 { 0%{transform:scale(1)    translateX(-1%)  translateY(2%)}   100%{transform:scale(1.1)  translateX(1%)    translateY(-1%)}  }

/* Only run animation on the active slide */
.hs-slide.is-active .hs-kb-1 { animation: kb1 8s ease-in-out forwards; }
.hs-slide.is-active .hs-kb-2 { animation: kb2 8s ease-in-out forwards; }
.hs-slide.is-active .hs-kb-3 { animation: kb3 8s ease-in-out forwards; }
.hs-slide.is-active .hs-kb-4 { animation: kb4 8s ease-in-out forwards; }
.hs-slide.is-active .hs-kb-5 { animation: kb5 8s ease-in-out forwards; }

/* Grid pattern overlay for gradient slides */
.hs-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg,   rgba(201,168,76,0.8) 0, rgba(201,168,76,0.8) 1px, transparent 0, transparent 60px),
    repeating-linear-gradient(90deg,  rgba(201,168,76,0.8) 0, rgba(201,168,76,0.8) 1px, transparent 0, transparent 60px);
  pointer-events: none;
}

/* Dark overlay on each slide */
.hs-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(0,0,0,0.75) 0%, rgba(0,0,0,0)    45%),
    linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0)   55%),
    linear-gradient(to bottom,rgba(0,0,0,0.3)  0%, rgba(0,0,0,0)   30%);
}

/* ── CAPTION STRIP ── */
.hs-caption-wrap {
  position: absolute;
  bottom: 18%;
  left: 7%;
  z-index: 10;
  pointer-events: none;
}

.hs-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
  white-space: nowrap;
}
.hs-caption.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.hs-cat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.hs-cat-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hs-caption .hs-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  color: rgba(245,245,245,0.85);
  line-height: 1.25;
  max-width: 480px;
  white-space: normal;
}

/* ── MAIN HERO CONTENT (centre) ── */
.hs-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  z-index: 10;
  pointer-events: none;
  padding-bottom: 8rem;
}
.hs-hero-content .btn { pointer-events: auto; }

@keyframes hsEntrance {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hs-animate {
  animation: hsEntrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hs-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── ARROWS ── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(201,168,76,0.25);
  color: rgba(245,245,245,0.8);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform 0.25s ease;
}
.hs-arrow:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) scale(1.06);
}
.hs-prev { left: 2rem; }
.hs-next { right: 2rem; }

/* ── DOTS ── */
.hs-dots {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.hs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245,245,245,0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width 0.35s ease, border-radius 0.35s ease;
  padding: 0;
}
.hs-dot.is-active {
  background: var(--gold);
  width: 28px;
  border-radius: 3px;
}

/* ── COUNTER ── */
.hs-counter {
  position: absolute;
  bottom: 2.6rem;
  right: 2.5rem;
  display: flex;
  align-items: baseline;
  gap: 4px;
  z-index: 20;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(245,245,245,0.45);
}
.hs-counter-cur { font-size: 1.15rem; color: var(--gold); font-family: var(--font-serif); }

/* ── PROGRESS BAR ── */
.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(201,168,76,0.12);
  z-index: 20;
}
.hs-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: none;
}
@keyframes hsProgress {
  from { width: 0%; }
  to   { width: 100%; }
}
.hs-progress-bar.is-running {
  animation: hsProgress 5s linear forwards;
}

/* Pause badge shown on hover */
.hs:hover .hs-arrow { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hs-prev { left: 0.8rem; }
  .hs-next { right: 0.8rem; }
  .hs-arrow { width: 40px; height: 40px; font-size: 0.85rem; }
  .hs-caption-wrap { bottom: 20%; left: 5%; }
  .hs-caption .hs-title { font-size: 1.3rem; }
  .hs-counter { display: none; }
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0));
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled { background: rgba(10,10,10,0.97); box-shadow: 0 1px 0 rgba(201,168,76,0.15); }
.nav-brand { font-family: var(--font-serif); font-size: 1.5rem; letter-spacing: 0.05em; color: var(--gold); }
.nav-brand span { color: var(--white); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; color: rgba(245,245,245,0.75); transition: color var(--transition); position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--gold); transition: width var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a0f 50%, #0a0a0a 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero-content { position: relative; text-align: center; padding: 0 2rem; max-width: 800px; animation: fadeUp 1.2s ease; }
.hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-serif); font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: 1.05rem; color: rgba(245,245,245,0.65); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(245,245,245,0.4); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; animation: bounce 2s infinite; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 34px; font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; transition: var(--transition); border-radius: var(--radius); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* ── SECTIONS ── */
.section { padding: 100px 5%; }
.section-sm { padding: 60px 5%; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow { font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
.section-divider { width: 50px; height: 2px; background: var(--gold); margin: 1.5rem auto 0; }

/* ── FEATURED WORK (HOME) ── */
.home-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5%; align-items: center; }
.home-intro-text h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.2rem; }
.home-intro-text p { color: var(--gray-light); margin-bottom: 1.5rem; }
.home-intro-img { position: relative; }
.home-intro-img img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); }
.home-intro-img::before { content:''; position:absolute; inset:-10px; border:1px solid rgba(201,168,76,0.3); border-radius: var(--radius); pointer-events:none; }

/* ── CATEGORY CARDS ── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5px; }
.category-card { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem; }
.category-card h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 0.3rem; }
.category-card span { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }

/* ── PORTFOLIO GALLERY ── */
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 3rem; justify-content: center; }
.filter-btn { padding: 9px 22px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(201,168,76,0.3); background: transparent; color: var(--gray-light); cursor: pointer; border-radius: 2px; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.gallery-grid { columns: 3; gap: 6px; }
.gallery-item { break-inside: avoid; margin-bottom: 6px; position: relative; overflow: hidden; cursor: pointer; border-radius: var(--radius); }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity var(--transition); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 4px; }
.gallery-item-overlay span { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; box-shadow: 0 0 80px rgba(0,0,0,0.8); }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--white); cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity var(--transition); }
.lightbox-close:hover { opacity: 1; color: var(--gold); }
.lightbox-info { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; }
.lightbox-info h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 4px; }
.lightbox-info span { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 8%; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius); }
.about-img-accent { position: absolute; bottom: -20px; right: -20px; width: 60%; height: 60%; border: 2px solid var(--gold); border-radius: var(--radius); pointer-events: none; opacity: 0.4; }
.about-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.2rem; }
.about-content p { color: var(--gray-light); margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2.5rem 0; }
.stat { text-align: center; padding: 1.5rem 1rem; border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius); }
.stat-num { font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold); display: block; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light); margin-top: 4px; }

/* ── SERVICES/SKILLS ── */
.skills-list { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.skill-item { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.skill-item label { font-size: 0.85rem; color: var(--gray-light); min-width: 180px; }
.skill-bar { flex: 1; height: 2px; background: rgba(201,168,76,0.15); border-radius: 1px; position: relative; }
.skill-fill { position: absolute; left: 0; top: 0; height: 100%; background: var(--gold); border-radius: 1px; }

/* ── BLOGS ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.blog-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.blog-card-img { width: 100%; height: 240px; object-fit: cover; }
.blog-card-img-placeholder { width: 100%; height: 240px; background: linear-gradient(135deg, var(--dark3), var(--dark4)); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 3rem; }
.blog-card-body { padding: 1.8rem; }
.blog-card-date { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.blog-card-title { font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.4; margin-bottom: 0.8rem; color: var(--white); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--gray-light); margin-bottom: 1.5rem; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-link { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; transition: gap var(--transition); }
.blog-card-link:hover { gap: 14px; }

/* ── SINGLE BLOG ── */
.blog-single { max-width: 900px; margin: 0 auto; padding: 120px 5% 80px; }
.blog-single-cover { width: 100%; height: auto; object-fit: cover; border-radius: var(--radius); margin-bottom: 2.5rem; }
.blog-single-meta { display: flex; gap: 2rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1.5rem; }
.blog-single-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 2rem; }
.blog-single-content { color: var(--gray-light); line-height: 1.9; }
.blog-single-content p { margin-bottom: 1.5rem; }
.blog-single-content h2, .blog-single-content h3 { font-family: var(--font-serif); color: var(--white); margin: 2rem 0 1rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6%; align-items: start; }
.contact-info h2 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 1rem; }
.contact-info p { color: var(--gray-light); margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; border-radius: var(--radius); }
.contact-detail h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-detail p { color: var(--gray-light); font-size: 0.9rem; margin: 0; }

/* ── FORM ── */
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 13px 16px; background: var(--dark3); border: 1px solid rgba(255,255,255,0.08); color: var(--white); font-size: 0.95rem; font-family: var(--font-sans); border-radius: var(--radius); transition: border-color var(--transition); }
.form-control:focus { outline: none; border-color: var(--gold); }
.form-control::placeholder { color: var(--gray); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 1.2rem; font-size: 0.9rem; }
.alert-success { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3); color: #6fcf97; }
.alert-error { background: rgba(235,87,87,0.1); border: 1px solid rgba(235,87,87,0.3); color: #eb5757; }

/* ── FOOTER ── */
.footer { background: var(--dark2); border-top: 1px solid rgba(201,168,76,0.12); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold); margin-bottom: 1rem; }
.footer-brand span { color: var(--white); }
.footer-about { color: var(--gray-light); font-size: 0.9rem; line-height: 1.8; }
.footer-heading { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: var(--gray-light); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.social-links { display: flex; gap: 1rem; margin-top: 1.2rem; }
.social-link { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; color: var(--gray-light); font-size: 0.9rem; border-radius: var(--radius); transition: var(--transition); }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--gray); }

/* ── PAGE HERO ── */
.page-hero { padding: 160px 5% 80px; text-align: center; background: linear-gradient(to bottom, var(--dark2), var(--dark)); }
.page-hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.page-hero-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem); }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--gray-light); }
.empty-state-icon { font-size: 3rem; color: rgba(201,168,76,0.25); margin-bottom: 1rem; }
.empty-state p { font-size: 0.9rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

.fade-in { animation: fadeUp 0.7s ease both; }
.fade-in-delay { animation: fadeUp 0.7s ease 0.15s both; }
.fade-in-delay2 { animation: fadeUp 0.7s ease 0.3s both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .gallery-grid { columns: 2; }
  .home-intro, .about-grid { grid-template-columns: 1fr; }
  .home-intro-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; top: 72px; background: rgba(10,10,10,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .gallery-grid { columns: 1; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
  .section { padding: 70px 4%; }
  .about-stats { grid-template-columns: 1fr; }
}

.about-img-wrap{
    position:relative;
    width:100%;
}

.about-img-accent{
    position:absolute;
    right:-25px;
    bottom:-25px;
    width:55%;
    height:55%;
    border:2px solid rgba(201,168,76,.25);
    border-radius:4px;
    z-index:-1;
}

.about-btn{
    margin-top:40px;
    margin-bottom:40px;
}


@media(max-width:768px){

.about-stats{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.about-stats .stat:last-child{
    grid-column:span 2;
}
}

@media(max-width:768px){

.skill-item{
    display:block;
    margin-bottom:22px;
}

.skill-item label{
    display:block;
    margin-bottom:8px;
    min-width:unset;
    font-size:15px;
}

.skill-bar{
    width:100%;
}
}

@media(max-width:768px){

.about-btn{
    display:flex;
    justify-content:center;
    margin:45px 0;
}

.about-btn .btn{
    width:100%;
    max-width:320px;
    justify-content:center;
    padding:18px;
    font-size:15px;
}
}

@media(max-width:768px){

.section-header{
    margin-bottom:40px;
}

.section-title{
    font-size:2.2rem;
}

.section{
    padding:70px 20px;
}

.section > div[style*="grid-template-columns"]{
    gap:20px !important;
}

.section > div[style*="padding:2rem"]{
    padding:28px !important;
}
}

@media(max-width:768px){

.about-img-wrap img{
    height:auto;
    max-height:520px;
    object-fit:contain;
}

.about-img-accent{
    right:-12px;
    bottom:-12px;
}
}

@media (max-width:768px){

.page-hero{
    padding:120px 20px 60px;
}

.about-grid{
    display:flex;
    flex-direction:column;
    gap:40px;
}
}

@media (max-width:768px){

.page-hero{
    padding:110px 20px 45px;
}

.page-hero-eyebrow{
    font-size:.70rem;
    letter-spacing:.35rem;
    margin-bottom:10px;
}

.page-hero-title{
    font-size:2.6rem;
    line-height:1.1;
}
}

@media (max-width:768px){

.portfolio-filters{

display:flex;
overflow-x:auto;

gap:10px;

padding-bottom:10px;

justify-content:flex-start;

flex-wrap:nowrap;

scrollbar-width:none;

}

.portfolio-filters::-webkit-scrollbar{
display:none;
}

.filter-btn{

white-space:nowrap;

padding:12px 22px;

border-radius:50px;

font-size:.72rem;

letter-spacing:.12rem;

background:#111;

border:1px solid rgba(201,168,76,.25);

color:#999;

flex-shrink:0;

transition:.35s;

}

.filter-btn.active{

background:var(--gold);

color:#111;

border-color:var(--gold);

box-shadow:
0 8px 22px rgba(201,168,76,.25);

}

.filter-btn:hover{

background:#181818;

color:white;

}
}

.gallery-count{

text-align:center;

margin-top:25px;

margin-bottom:40px;

font-size:.85rem;

color:#777;

letter-spacing:.15rem;

text-transform:uppercase;

}

.gallery-item{

opacity:0;

transform:translateY(35px);

animation:galleryFade .7s forwards;

}

.gallery-item:nth-child(2){
animation-delay:.1s;
}

.gallery-item:nth-child(3){
animation-delay:.2s;
}

.gallery-item:nth-child(4){
animation-delay:.3s;
}

@keyframes galleryFade{

to{

opacity:1;

transform:none;

}

}

@media(max-width:768px){

.section{

padding:55px 20px;

}

.page-hero{

margin-bottom:10px;

}

}

.empty-state{

padding:100px 30px;

}

.empty-state-icon{

font-size:4rem;

margin-bottom:25px;

color:rgba(201,168,76,.4);

}


.hs-overlay{

background:

linear-gradient(to top,
rgba(0,0,0,.82),
rgba(0,0,0,.25) 45%,
rgba(0,0,0,.45));

}

@media(max-width:768px){

.hero-scroll{

opacity:.45;

bottom:18px;

transform:scale(.8);

}

}

.hero-title{

animation:

fadeUp .8s ease both;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.ck-editor__editable{
min-height:600px;
font-size:16px;
line-height:1.8;
}

.ck-content h1{
font-size:36px;
font-weight:700;
}

.ck-content h2{
font-size:30px;
font-weight:700;
}

.ck-content h3{
font-size:24px;
font-weight:600;
}

.ck-content p{
margin-bottom:16px;
}

.ck-content img{
max-width:100%;
height:auto;
border-radius:10px;
}

.ck-editor{
border-radius:12px;
overflow:hidden;
}

@media (max-width:768px){

.blog-single{
    max-width:100%;
    padding:90px 15px 50px;
}

.blog-single-cover{
    width:100%;
    height:auto;
    max-width:100%;
    display:block;
    object-fit:contain;
    object-position:center;
    border-radius:8px;
}

}

.nav-brand{
    display:flex;
    align-items:center;
    text-decoration:none;
    flex-shrink:0;
}

.nav-logo{
    height:58px;
    width:auto;
    display:block;
    transition:transform .35s ease;
}

.nav-brand:hover .nav-logo{
    transform:scale(1.04);
}

@media (max-width:1024px){
    .nav-logo{
        height:52px;
    }
}

@media (max-width:768px){
    .nav-logo{
        height:44px;
    }
}

@media (max-width:480px){
    .nav-logo{
        height:38px;
    }
}


/* Navbar */
.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Logo */
.site-logo{
    height:75px;
    width:auto;
    display:block;
    transition:.3s ease;
}

.site-logo:hover{
    transform:scale(1.03);
}

/* Scrolled navbar */
.nav.scrolled .site-logo{
    height:70px;
}

/* Mobile */
@media (max-width:768px){
    .site-logo{
        height:40px;
    }
}

/* Logo */
.site-bottom-logo{
    height:150px;
    width:auto;
    display:block;
    transition:.3s ease;
}

/* Mobile */
@media (max-width:768px){
    .site-bottom-logo{
        height:105px;
    }
}