/* ===========================================
   aboutus.css
   Styles specific to the About Us page.
   Requires global.css to be loaded first.
=========================================== */

/* ─────────────────────────────────────────
   SHARED UTILITIES (reused across pages)
───────────────────────────────────────── */
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }
.section-title.dark  { color: var(--dark); }

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(11px, 1.5vw, 14px) clamp(20px, 3vw, 30px);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ─────────────────────────────────────────
   REVEAL ANIMATION
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────────
   NAV ACTIVE STATE (inner pages are solid)
───────────────────────────────────────── */
.nav-links a.current {
  color: var(--gold);
}

/* ─────────────────────────────────────────
   PAGE HERO BANNER
───────────────────────────────────────── */
.page-hero {
  position: relative;
  height: clamp(220px, 30vw, 380px);
  margin-top: var(--nav-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark2);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark overlay — matches hero aesthetic on index */
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.70) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(16px, 4vw, 48px);
}

.page-hero-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
}

/* ─────────────────────────────────────────
   INTRO STRIP
───────────────────────────────────────── */
.intro-strip {
  background: var(--white);
  padding: clamp(48px, 7vw, 80px) clamp(16px, 4vw, 48px);
}

.intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.intro-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 16px;
}

.intro-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   OWNER / STORY SECTION
───────────────────────────────────────── */
.owner-section {
  background: var(--dark);
  padding: clamp(60px, 8vw, 110px) clamp(16px, 4vw, 48px);
}

.owner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

/* Image with decorative gold offset border */
.owner-img-wrap {
  position: relative;
}

.owner-img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  /* Subtle desaturation to match the B&W reference */
  filter: grayscale(30%) contrast(1.05);
  position: relative;
  z-index: 1;
}

/* Gold decorative border offset behind image */
.owner-img-accent {
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 65%;
  height: 65%;
  border: 2px solid var(--gold);
  z-index: 0;
}

.owner-content {
  color: var(--white);
}

.owner-body {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.owner-sig {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 1.6vw, 17px);
  font-style: italic;
  color: var(--gold);
  margin-top: 28px;
}

/* ─────────────────────────────────────────
   VALUES SECTION
───────────────────────────────────────── */
.values-section {
  background: var(--dark3);
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 146, 42, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.values-header {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 146, 42, 0.18);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.value-card:hover {
  border-color: var(--gold);
  background: rgba(200, 146, 42, 0.05);
  transform: translateY(-4px);
}

.value-icon {
  font-size: clamp(28px, 3.5vw, 36px);
  margin-bottom: 16px;
  display: block;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.value-body {
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   GALLERY SECTION
───────────────────────────────────────── */
.gallery-section {
  background: var(--off-white);
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px);
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

/* Wide image spans both rows on the left */
.gallery-item--wide {
  grid-row: 1 / 3;
}

.gallery-item {
  overflow: hidden;
  background: #c8b89a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  min-height: 200px;
}

.gallery-item--wide img { min-height: 400px; }

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(200, 146, 42, 0.15);
  border-bottom: 1px solid rgba(200, 146, 42, 0.15);
  padding: clamp(36px, 5vw, 60px) clamp(16px, 4vw, 48px);
}

.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-block {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: clamp(16px, 2.5vw, 24px) clamp(12px, 2vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-size: 0.6em;
  vertical-align: super;
}

.stat-label {
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.stat-divider {
  width: 1px;
  height: clamp(48px, 6vw, 72px);
  background: rgba(200, 146, 42, 0.2);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.about-cta {
  background: var(--dark);
  padding: clamp(60px, 8vw, 110px) clamp(16px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 146, 42, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.about-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-body {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  margin-top: 8px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .owner-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .owner-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--wide {
    grid-row: auto;
  }

  .gallery-item--wide img { min-height: 280px; }

  .stats-bar-inner { gap: 0; }
  .stat-divider { display: none; }
  .stat-block { border-bottom: 1px solid rgba(200, 146, 42, 0.12); }
  .stat-block:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }

  .stats-bar-inner {
    flex-direction: column;
    width: 100%;
  }

  .stat-block { width: 100%; }

  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 380px) {
  .page-hero-title { font-size: 30px; }
  .intro-quote     { font-size: 17px; }
}