/*--------------------------------------------------------------
# Golden Acquisition Promotions — Main Stylesheet
# Managed by Global Solutions Group
--------------------------------------------------------------*/

:root {
  --gold: #c9a227;
  --gold-light: #e8c766;
  --gold-soft: rgba(201, 162, 39, 0.12);
  --ink: #121212;
  --charcoal: #1c1a16;
  --charcoal-2: #24211b;
  --cream: #faf7f0;
  --white: #ffffff;
  --stone: #6b675e;
  --line: rgba(201, 162, 39, 0.35);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --shadow-soft: 0 20px 50px rgba(18, 18, 18, 0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: inherit;
}

p { margin: 0 0 1.1em; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

::selection { background: var(--gold); color: var(--ink); }

/*--------------------------------------------------------------
# Shared elements — eyebrow, section titles, buttons, gold frame
--------------------------------------------------------------*/
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.section { padding: 110px 0; }
.section.tight { padding: 80px 0; }

.section-title h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  letter-spacing: 0.01em;
}
.section-title .lead {
  max-width: 680px;
  color: var(--stone);
  font-size: 1.05rem;
}
.section-title.center { text-align: center; }
.section-title.center .eyebrow { justify-content: center; }
.section-title.center .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.section-title.center .lead { margin-inline: auto; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 38px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

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

/* Signature: offset gold hairline frame around imagery */
.gold-frame { position: relative; }
.gold-frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.gold-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  transform: translate(16px, 16px);
  z-index: 0;
  transition: transform 0.6s var(--ease);
}
.gold-frame:hover::after { transform: translate(10px, 10px); }

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding 0.4s var(--ease);
}
#header.scrolled {
  padding: 12px 0;
  border-bottom-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img { height: 72px; width: auto; }

#navbar ul {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#navbar a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
}
#navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
#navbar a:hover, #navbar a.active { color: var(--gold-light); }
#navbar a:hover::after, #navbar a.active::after { width: 100%; }

.btn-apply {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 12px 26px;
  border: 1px solid var(--gold);
  white-space: nowrap;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn-apply:hover { background: var(--gold-light); color: var(--ink); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 991px) {
  .nav-toggle { display: block; }
  #navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--charcoal);
    padding: 110px 40px 40px;
    transition: right 0.45s var(--ease);
    border-left: 1px solid var(--line);
  }
  body.nav-open #navbar { right: 0; }
  #navbar ul { flex-direction: column; align-items: flex-start; gap: 26px; }
  .btn-apply { display: none; }
}

#navbar .mobile-apply { display: none; }
@media (max-width: 991px) {
  #navbar .mobile-apply {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: 12px 26px;
  }
}

/*--------------------------------------------------------------
# Hero (index)
--------------------------------------------------------------*/
#hero {
  position: relative;
  height: 68vh;
  min-height: 480px;
  max-height: 680px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
@media (max-width: 767px) {
  #hero { height: 62vh; min-height: 420px; }
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide.active .hero-bg-zoom { animation: kenburns 9s ease forwards; }
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,18,18,0.55) 0%, rgba(18,18,18,0.35) 45%, rgba(18,18,18,0.82) 100%);
}

.hero-bg-zoom {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy { max-width: 760px; }
.hero-copy .eyebrow { color: var(--gold-light); }
.hero-copy h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-copy h1 span { color: var(--gold-light); font-style: italic; }
.hero-copy p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-slide .hero-copy > * {
  opacity: 0;
  transform: translateY(26px);
}
.hero-slide.active .hero-copy > * {
  animation: heroRise 0.9s var(--ease) forwards;
}
.hero-slide.active .hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
.hero-slide.active .hero-copy > *:nth-child(3) { animation-delay: 0.3s; }
.hero-slide.active .hero-copy > *:nth-child(4) { animation-delay: 0.45s; }

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
}
.hero-dots button {
  width: 34px;
  height: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s var(--ease);
  padding: 0;
}
.hero-dots button.active { background: var(--gold); }

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.hero-arrow:hover { border-color: var(--gold); color: var(--gold-light); }
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }
@media (max-width: 767px) { .hero-arrow { display: none; } }

/*--------------------------------------------------------------
# Page header (inner pages)
--------------------------------------------------------------*/
.page-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}
.page-header::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 10px;
}
.page-header .crumb {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.page-header .crumb a { color: var(--gold-light); }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 70px;
  align-items: center;
}
.about-grid .gold-frame { max-width: 460px; }
.about-copy p strong:first-child { color: var(--gold); }
.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 600;
  color: var(--gold);
  float: left;
  line-height: 0.85;
  padding-right: 10px;
  padding-top: 4px;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-grid .gold-frame { max-width: 100%; }
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 70px;
}
.value-cell {
  background: var(--cream);
  padding: 44px 36px;
  transition: background 0.4s var(--ease);
}
.value-cell:hover { background: var(--white); }
.value-cell h3 { font-size: 1.5rem; }
.value-cell p { color: var(--stone); font-size: 0.98rem; margin: 0; }
@media (max-width: 820px) { .values-row { grid-template-columns: 1fr; } }

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(18, 18, 18, 0.06);
  padding: 48px 38px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .glyph {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.55rem; }
.service-card p { color: var(--stone); font-size: 0.98rem; margin: 0; }
@media (max-width: 991px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.dark-band {
  background: var(--charcoal);
  color: var(--white);
}
.dark-band .section-title .lead { color: rgba(255, 255, 255, 0.65); }
.dark-band .service-card {
  background: var(--charcoal-2);
  border-color: rgba(255, 255, 255, 0.06);
}
.dark-band .service-card p { color: rgba(255, 255, 255, 0.6); }

/*--------------------------------------------------------------
# Approach / steps (services page)
--------------------------------------------------------------*/
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  counter-reset: step;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
}
.step h3 { font-size: 1.35rem; margin-top: 8px; }
.step p { color: var(--stone); font-size: 0.95rem; margin: 0; }
@media (max-width: 991px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 54px;
}
.gallery-filters li {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  padding: 8px 2px;
  position: relative;
  transition: color 0.3s var(--ease);
}
.gallery-filters li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.gallery-filters li:hover { color: var(--ink); }
.gallery-filters li.filter-active { color: var(--gold); }
.gallery-filters li.filter-active::after { width: 100%; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 991px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(18, 18, 18, 0.85));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 12, 12, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  border: 1px solid var(--line);
}
.lightbox .lb-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
}
.lightbox button {
  position: absolute;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.lightbox button:hover { border-color: var(--gold); color: var(--gold-light); }
.lightbox .lb-close { top: 26px; right: 26px; }
.lightbox .lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 991px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

.member {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--charcoal);
}
.member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.member:hover img { transform: scale(1.05); }
.member .member-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 60px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(18, 18, 18, 0.9));
  color: var(--white);
}
.member .member-info h4 {
  font-size: 1.35rem;
  margin-bottom: 2px;
}
.member .member-info span {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/*--------------------------------------------------------------
# CTA band
--------------------------------------------------------------*/
.cta-band {
  background: var(--charcoal);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "G";
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30rem;
  line-height: 1;
  color: rgba(201, 162, 39, 0.06);
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-band .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin: 0;
  max-width: 620px;
}
.cta-band h2 em { color: var(--gold-light); }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.info-item {
  background: var(--cream);
  padding: 30px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.info-item .mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.4;
}
.info-item h4 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.info-item p { margin: 0; color: var(--stone); font-size: 0.97rem; }
.info-item a { color: var(--stone); }
.info-item a:hover { color: var(--gold); }

.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.social-row a:hover { background: var(--gold); color: var(--ink); }

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.form-panel {
  background: var(--white);
  border: 1px solid rgba(18, 18, 18, 0.07);
  border-top: 2px solid var(--gold);
  padding: 52px 48px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 640px) { .form-panel { padding: 38px 26px; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--gold); }
.form-group label .opt {
  text-transform: none;
  letter-spacing: 0.03em;
  font-weight: 300;
  color: var(--stone);
}

.form-control {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(18, 18, 18, 0.12);
  padding: 14px 16px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; cursor: pointer; }

.form-legend {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin: 40px 0 26px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.form-legend:first-of-type { margin-top: 0; }
.form-legend .n {
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
}

/* File upload */
.file-drop {
  border: 1px dashed var(--line);
  background: var(--gold-soft);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.file-drop:hover, .file-drop.dragover { border-color: var(--gold); background: rgba(201, 162, 39, 0.18); }
.file-drop input { display: none; }
.file-drop .fd-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.file-drop .fd-hint { font-size: 0.85rem; color: var(--stone); display: block; margin-top: 4px; }
.file-drop .fd-file { color: var(--gold); font-weight: 400; margin-top: 10px; display: none; }
.file-drop.has-file .fd-file { display: block; }

.form-note { font-size: 0.85rem; color: var(--stone); margin-top: 18px; }
.form-error {
  display: none;
  color: #a33;
  font-size: 0.85rem;
  margin-top: 6px;
}
.form-error.show { display: block; }

.form-status {
  display: none;
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  background: var(--gold-soft);
  color: var(--ink);
}
.form-status.show { display: block; }

/*--------------------------------------------------------------
# CEO Biography (about page)
--------------------------------------------------------------*/
.bio-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 900px) {
  .bio-grid { grid-template-columns: 1fr; gap: 50px; }
}

.bio-side .gold-frame { margin-bottom: 40px; }
.bio-side .bio-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.bio-side .bio-role {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 34px;
}

.milestones { border-top: 1px solid var(--line); }
.milestone {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.milestone .year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
}
.milestone .event {
  font-size: 0.93rem;
  color: var(--stone);
  line-height: 1.55;
}

.bio-quote {
  border-left: 2px solid var(--gold);
  background: var(--gold-soft);
  padding: 30px 34px;
  margin: 34px 0;
}
.bio-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 0 0 10px;
}
.bio-quote .author {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.bio-signoff {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.bio-signature { max-width: 200px; margin-top: 18px; }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 0 40px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

.footer-grid h4 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.6); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 90px; width: auto; }
.footer-brand p { max-width: 380px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--gold-light); }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { color: var(--ink); background: var(--gold-light); }

/*--------------------------------------------------------------
# Scroll reveal animation (subtle)
--------------------------------------------------------------*/
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-group > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-group.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-group.in-view > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-group.in-view > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-group.in-view > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-group.in-view > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-group.in-view > *:nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-group > * { opacity: 1; transform: none; transition: none; }
  .hero-slide.active .hero-bg-zoom { animation: none; }
  .hero-slide .hero-copy > * { opacity: 1; transform: none; animation: none; }
}
