/* Owner / Founder Component Styles - Finewoods Luxury Furniture */

/* ─── Variables ───────────────────────────────────────── */
:root {
  --owner-bg:       #F7F5F2;
  --owner-card-bg:  #FFFFFF;
  --owner-text:     #2B2926;
  --owner-muted:    #66625D;
  --gold:           #C9A96E;
  --gold-light:     #D8BC86;
  --owner-border:   rgba(201, 169, 110, 0.22);
}

/* ─── Owner Section Base ──────────────────────────────── */
.owner-section {
  width: 100%;
  background-color: var(--owner-bg);
  color: var(--owner-text);
  padding: 3rem 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.owner-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ─── Left Column (Visual Frame) ──────────────────────── */
.owner-visual {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.owner-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #EFECE6;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.owner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.owner-placeholder-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  text-align: center;
}

.owner-monogram {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.owner-placeholder-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--owner-muted);
}

/* ─── Right Column (Content) ─────────────────────────── */
.owner-content {
  display: flex;
  flex-direction: column;
}

.owner-eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.owner-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1.18;
  color: var(--owner-text);
  margin-bottom: 1.75rem;
}

.owner-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--owner-muted);
  margin-bottom: 1.25rem;
}

.owner-details {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.owner-signature-line {
  width: 40px;
  height: 1px;
  background-color: var(--gold);
}

.owner-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.owner-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--owner-text);
  margin: 0;
}

.owner-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

.owner-exp {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--owner-muted);
}

/* ─── Arabic RTL State ───────────────────────────────── */
.owner-section.is-ar {
  direction: rtl;
  text-align: right;
}

.owner-section.is-ar .owner-heading {
  font-family: 'Cormorant Garamond', 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── Responsive ──────────────────────────────────────── */

/* Large tablets — 2-column preserved, reduced gap */
/* ─── Responsive ──────────────────────────────────────── */

/* Large tablets — 2-column preserved, reduced gap */
@media (max-width: 1024px) {
  .owner-section {
    padding: 3rem 2.5rem;
  }
  .owner-container {
    gap: 3rem;
  }
  .owner-visual {
    max-width: 380px;
  }
  .owner-heading {
    font-size: 2.75rem;
  }
}

/* Tablets & Mobile — side-by-side with prominent 38% image */
@media (max-width: 768px) {
  .owner-section {
    padding: 2.25rem 1.25rem;
    overflow-x: hidden;
  }
  .owner-container {
    grid-template-columns: 38% 1fr;
    gap: 1.5rem;
    align-items: center;
  }
  .owner-visual {
    max-width: 100%;
    width: 100%;
  }
  .owner-img-frame {
    aspect-ratio: 3 / 4;
    border-radius: 4px;
  }
  .owner-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.4rem;
  }
  .owner-heading {
    font-size: 1.65rem;
    line-height: 1.18;
    margin-bottom: 0.5rem;
  }
  .owner-description {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 0.5rem;
  }
  .owner-desc-more,
  .owner-desc-secondary {
    display: inline;
  }
  .owner-details {
    margin-top: 0.5rem;
    gap: 0.75rem;
  }
  .owner-signature-line {
    width: 24px;
  }
  .owner-name {
    font-size: 0.82rem;
  }
  .owner-title {
    font-size: 0.74rem;
  }
  .owner-exp {
    font-size: 0.7rem;
  }
}

/* Mobile phones — 38% prominent image & side-by-side layout */
@media (max-width: 480px) {
  .owner-section {
    padding: 1.85rem 1rem;
  }
  .owner-container {
    grid-template-columns: 38% 1fr;
    gap: 1.15rem;
    align-items: center;
  }
  .owner-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.3rem;
  }
  .owner-heading {
    font-size: 1.35rem;
    line-height: 1.15;
    margin-bottom: 0.4rem;
  }
  .owner-description {
    font-size: 0.8rem;
    line-height: 1.42;
    margin-bottom: 0.45rem;
  }
  .owner-details {
    margin-top: 0.45rem;
    gap: 0.65rem;
  }
  .owner-signature-line {
    width: 20px;
  }
  .owner-name {
    font-size: 0.78rem;
  }
  .owner-title {
    font-size: 0.7rem;
  }
  .owner-exp {
    font-size: 0.66rem;
  }
}

/* Narrow mobile */
@media (max-width: 375px) {
  .owner-section {
    padding: 1.65rem 0.875rem;
  }
  .owner-container {
    grid-template-columns: 38% 1fr;
    gap: 0.85rem;
  }
  .owner-heading {
    font-size: 1.2rem;
    line-height: 1.15;
    margin-bottom: 0.35rem;
  }
  .owner-description {
    font-size: 0.76rem;
    line-height: 1.4;
    margin-bottom: 0.35rem;
  }
  .owner-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
  }
  .owner-name {
    font-size: 0.72rem;
  }
  .owner-title {
    font-size: 0.65rem;
  }
  .owner-exp {
    font-size: 0.62rem;
  }
}

/* Absolute minimum */
@media (max-width: 320px) {
  .owner-section {
    padding: 1.5rem 0.75rem;
  }
  .owner-container {
    grid-template-columns: 38% 1fr;
    gap: 0.65rem;
  }
  .owner-heading {
    font-size: 1.1rem;
  }
  .owner-description {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}
