/* ═══════════════════════════════════════════════
   LOGO — Nav, Brand Section, Footer
   ═══════════════════════════════════════════════ */


/* ─── Nav Logo with image ─── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  /* White bg logo on dark nav — clip to circle and add subtle glow */
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  padding: 2px;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.35);
  transition: box-shadow 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.nav-logo:hover .nav-logo-img {
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  line-height: 1;
}

.nav-logo-text em {
  display: block;
  font-style: normal;
  color: var(--white);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 4px;
  margin-top: 3px;
  font-family: 'Montserrat', sans-serif;
}


/* ═══════════════════════════════════════════════
   BRAND SECTION — Full logo showcase
   ═══════════════════════════════════════════════ */

.brand-section {
  background: var(--dark);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.brand-section::before {
  content: 'NONDOW';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-size: 220px;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.025);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.brand-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}


/* ─── Logo image block ─── */
.brand-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Decorative glow ring */
.brand-logo-ring {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer decorative ring */
.brand-logo-ring::before {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  animation: logoRingPulse 4s ease-in-out infinite;
}

/* Inner glow ring */
.brand-logo-ring::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
}

@keyframes logoRingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.15); border-color: rgba(201, 168, 76, 0.35); }
  50%       { box-shadow: 0 0 40px 8px rgba(201, 168, 76, 0.12); border-color: rgba(201, 168, 76, 0.65); }
}

.brand-logo-img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  object-position: center bottom;
  background: #fff;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow:
    0 0 0 8px rgba(201, 168, 76, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(201, 168, 76, 0.05);
  transition: transform 0.6s ease, box-shadow 0.4s;
  padding: 8px;
}

.brand-logo-img:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow:
    0 0 0 12px rgba(201, 168, 76, 0.15),
    0 24px 80px rgba(0, 0, 0, 0.6);
}

/* Corner decoration dots */
.brand-logo-wrap::before,
.brand-logo-wrap::after {
  content: '◆';
  position: absolute;
  color: var(--gold);
  font-size: 10px;
  opacity: 0.5;
}

.brand-logo-wrap::before { top: 40px;  left: 20px;  }
.brand-logo-wrap::after  { bottom: 40px; right: 20px; }


/* ─── Text content ─── */
.brand-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.brand-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 4px;
  margin-bottom: 0;
}

.brand-title-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 8px;
  display: block;
  margin-top: 10px;
}

.brand-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
  margin: 28px 0;
}

.brand-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 40px;
  max-width: 580px;
}

/* Value badges */
.brand-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 44px;
}

.brand-value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold);
  transition: background 0.3s;
}

.brand-value-item:hover { background: rgba(201, 168, 76, 0.1); }

.brand-value-icon { font-size: 18px; flex-shrink: 0; }

.brand-value-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* CTAs */
.brand-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ─── Footer logo ─── */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 3px;
  flex-shrink: 0;
}

/* Remove the old footer-brand bottom margin when logo is present */
.footer-logo-wrap .footer-brand { margin-bottom: 2px; }
.footer-logo-wrap .footer-tagline { margin-bottom: 0; }


/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .brand-inner {
    grid-template-columns: 360px 1fr;
    gap: 60px;
    padding: 80px 40px;
  }

  .brand-logo-ring { width: 320px; height: 320px; }
  .brand-logo-img  { width: 268px; height: 268px; }
}

@media (max-width: 900px) {
  .brand-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 70px 40px;
  }

  .brand-logo-wrap {
    justify-content: center;
  }

  .brand-logo-wrap::before,
  .brand-logo-wrap::after { display: none; }

  .brand-eyebrow    { text-align: center; }
  .brand-divider    { margin-left: auto; margin-right: auto; }
  .brand-desc       { margin-left: auto; margin-right: auto; text-align: left; }
  .brand-ctas       { justify-content: center; }
  .brand-values     { max-width: 480px; margin-left: auto; margin-right: auto; text-align: left; }
}

@media (max-width: 700px) {
  .brand-inner { padding: 56px 20px; gap: 48px; }
  .brand-logo-ring { width: 260px; height: 260px; }
  .brand-logo-img  { width: 220px; height: 220px; }
  .brand-values    { grid-template-columns: 1fr; }
  .nav-logo-text   { font-size: 16px; letter-spacing: 3px; }
  .nav-logo-img    { width: 40px; height: 40px; }
}
