:root {
  --cream: #F5F0E8;
  --ivory: #FAF7F2;
  --gold: #8B6E1E;
  --gold-light: #9A7A2A;
  --gold-pale: #E8D8B0;
  --burgundy: #6B1E2E;
  --burgundy-deep: #4A1220;
  --charcoal: #2A2420;
  --warm-grey: #2E2926;
  --film-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--film-grain);
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}
body > * {
  max-width: 100%;
  overflow-x: hidden;
}

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(42, 36, 32, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 62, 0.3);
  transition: padding 0.4s ease;
}

nav.scrolled {
  padding: 14px 60px;
  border-bottom: 1px solid rgba(184, 150, 62, 0.4);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: #F5F0E8;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 60px;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E8D8B0;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: #C8A84A; }
.nav-links a:hover::after { width: 100%; }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px 60px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--charcoal);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-name em {
  font-style: italic;
  color: var(--burgundy);
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: #2E2926;
  line-height: 1.7;
  max-width: 480px;
  white-space: normal;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--charcoal);
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--charcoal);
}

.btn-primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-secondary {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  transition: gap 0.3s ease;
}

.btn-secondary::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-secondary:hover { gap: 16px; }

.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0806;
  padding: 40px 40px 40px 20px;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
}

.hero-video-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(184, 150, 62, 0.3);
  z-index: 2;
  pointer-events: none;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 50%, var(--cream) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.hero-image-placeholder .placeholder-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--warm-grey);
  letter-spacing: 0.1em;
}

.hero-image-placeholder .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

/* When you have a real headshot, replace .hero-image-placeholder with: */
/* .hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: top center; } */

.hero-gold-bar {
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* ═══════════════════════════════
   MARQUEE STRIP
═══════════════════════════════ */
.marquee-strip {
  background: var(--charcoal);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #F5F0E8;
  padding: 0 48px;
  white-space: nowrap;
}

.marquee-dot {
  color: var(--burgundy);
  padding: 0;
}

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

/* ═══════════════════════════════
   WELCOME VIDEO SECTION
═══════════════════════════════ */
.video-section {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  background: var(--ivory);
  position: relative;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-pale), transparent);
}

.video-intro {
  padding-right: 20px;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);

  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section-heading em {
  font-style: italic;
  color: var(--burgundy);
}

.section-body {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--warm-grey);
  margin-bottom: 36px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-pale);
  z-index: 2;
  pointer-events: none;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1410 0%, #2d2018 50%, #1a1410 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-thumbnail .placeholder-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(184, 150, 62, 0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  background: rgba(26, 20, 16, 0.6);
  backdrop-filter: blur(4px);
}

.video-frame:hover .play-btn {
  background: var(--gold);
  color: var(--charcoal);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-caption {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--warm-grey);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ═══════════════════════════════
   CREDENTIALS STRIP
═══════════════════════════════ */
.credentials {
  padding: 80px;
  background: var(--cream);
  border-top: 1px solid var(--gold-pale);
  border-bottom: 1px solid var(--gold-pale);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.credential-item {
  padding: 32px 20px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.credential-item:hover {
  border-color: var(--gold-pale);
}

.credential-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;

  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 8px;
}

.credential-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ═══════════════════════════════
   SELECTED WORK
═══════════════════════════════ */
.work-section {
  padding: 120px 80px;
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

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

.work-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}

.work-item-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
  transition: transform 0.6s ease;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.work-item:hover .work-item-bg {
  transform: scale(1.04);
}

.work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 36, 32, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.work-item:hover .work-item-overlay { opacity: 1; }

.work-item-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #FAF7F2;
  margin-bottom: 4px;
}

.work-item-info p {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E8C87A;
}

.work-placeholder-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--warm-grey);
  opacity: 0.6;
}

/* ═══════════════════════════════
   QUOTE / BIO SECTION
═══════════════════════════════ */
.bio-section .bio-body { color: #D4C9BB !important; }
.bio-section {
  padding: 120px 80px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.bio-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(184, 150, 62, 0.06);
  line-height: 1;
  pointer-events: none;
}

.bio-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.bio-inner .section-label { justify-content: center; }
.bio-inner .section-label::before { display: none; }

.bio-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);

  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin: 32px 0;
}

.bio-body {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--warm-grey);
  margin-bottom: 48px;
}

.bio-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto 32px;
}
.bio-section .btn-secondary {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ═══════════════════════════════
   CREDITS SECTION
═══════════════════════════════ */
.credits-section {
  padding: 120px 80px;
  background: var(--ivory);
}

.credits-columns {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}

.credits-column h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-pale);
}

.credit-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(184, 150, 62, 0.15);
}

.credit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.credit-role {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--warm-grey);
  letter-spacing: 0.05em;
}

.credit-venue {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(184, 150, 62, 0.2);
  padding: 60px 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--cream);
  text-decoration: none;
}

.footer-copy {
  display: block;
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;

  color: var(--gold);
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8BEB8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold); }

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

/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
  .hero-right { height: auto; padding: 20px 24px 40px; background: #0a0806; }
  .hero-video-wrapper { aspect-ratio: 16/9; }
  .hero-left { padding: 120px 40px 40px; }
  nav { padding: 24px 40px; }
  nav.scrolled { padding: 16px 40px; }
  .video-section { grid-template-columns: 1fr; padding: 80px 40px; }
  .credentials {
    padding: 20px;
  }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); padding: 0; }
  .work-section { padding: 80px 40px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .credits-columns { grid-template-columns: 1fr; padding: 60px 0; }
  .credits-section {padding: 100px 20px;}
  footer { flex-direction: column; gap: 32px; text-align: center; padding: 48px 40px; }
  .footer-links {
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
}

/* ═══════════════════════════════
   HAMBURGER MENU
═══════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F5F0E8;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 20, 14, 0.98);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}
.close:hover {
  opacity: 1;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: var(--gold-pale);
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #F5F0E8;
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: #C8A84A; }
.mobile-menu-rule {
  width: 40px;
  height: 1px;
  background: #8B6E1E;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  nav { padding: 16px 24px; }
}
@media all and (max-width: 460px) {
  .mob-hide {display: none;}
}

/* Contact Page */
.page-contact .hamburger span {
  background: #4A1220;
}
.page-contact nav {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-pale);
}

.page-contact .nav-logo {
  color: var(--charcoal);
}

.page-contact .nav-links a {
  color: #C8A84A;
}

.page-contact .nav-links a::after {
  background: #C8A84A;
}

.page-contact .nav-links a:hover { color: #C8A84A; }
.page-contact .nav-links a.active { color: var(--burgundy-deep); }
.page-contact .nav-links a.active:after { width: 100% ; background: var(--burgundy-deep);}

/* HERO */
.contact-hero {
  padding: 160px 80px 80px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
}

.contact-hero::before {
  content: 'Contact';
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16rem;

  color: rgba(184, 150, 62, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
}

.contact-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);

  line-height: 1;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

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

/* MAIN CONTACT AREA */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 60vh;
}

/* LEFT PANEL */
.contact-left {
  background: var(--cream);
  padding: 80px 60px;
  border-right: 1px solid var(--gold-pale);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;

  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-detail-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-value:hover { color: var(--burgundy); }

.contact-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 48px 0;
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.contact-social-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.social-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;

  letter-spacing: 0.1em;
  color: var(--warm-grey);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.social-link::before {
  content: '→';
  color: var(--gold);
  font-size: 0.7rem;
}

.social-link:hover {
  color: var(--charcoal);
  gap: 18px;
}

/* RIGHT PANEL, FORM */
.contact-right {
  background: var(--ivory);
  padding: 80px 80px 80px 60px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;

  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-subheading {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;

  color: var(--warm-grey);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-pale);
  padding: 12px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--warm-grey);
  font-style: italic;
  font-size: 0.9rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
}

.form-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='%23B8963E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
  color: var(--warm-grey);
  font-style: italic;
}

.form-select option { color: var(--charcoal); font-style: normal; }

.form-textarea {
  resize: none;
  height: 120px;
  line-height: 1.7;
}

.form-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;

  color: var(--warm-grey);
  margin-bottom: 36px;
  font-style: italic;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-submit {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--charcoal);
  padding: 18px 48px;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.form-privacy {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;

  color: var(--warm-grey);
  font-style: italic;
}

/* SUCCESS STATE */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.form-success.visible { display: block; }

.success-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;

  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.success-body {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;

  color: var(--warm-grey);
  line-height: 1.8;
}

/* REPRESENTATION NOTE */
.representation {
  background: var(--charcoal);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
  border-top: 1px solid rgba(184, 150, 62, 0.2);
}

.rep-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.rep-rule {
  flex: 1;
  height: 1px;
  background: rgba(184, 150, 62, 0.2);
}

.rep-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #C8BEB8;
  max-width: 500px;
}

@media (max-width: 1024px) {
  .contact-hero { padding: 120px 40px 60px; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-left { padding: 60px 40px; border-right: none; border-bottom: 1px solid var(--gold-pale); }
  .contact-right { padding: 60px 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .representation { flex-direction: column; gap: 24px; padding: 48px 40px; }
}
