/* ============================================
   G-LUXURY — About & Contact Page Styles
   ============================================ */

.inner-page {
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- Shared reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Nav ---- */
.pg-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.pg-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.pg-nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.22em;
  color: var(--black);
  text-decoration: none;
  font-weight: 400;
  flex-shrink: 0;
}
.pg-nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.pg-nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.pg-nav-links a:hover,
.pg-nav-links a.active { color: var(--black); }
.pg-nav-back {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
}
.pg-nav-back:hover { color: var(--black); }

/* ---- Page hero ---- */
.pg-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
}
.about-hero {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&h=1080&fit=crop&q=80');
  background-size: cover;
  background-position: center 25%;
}
.contact-hero {
  background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1920&h=1080&fit=crop&q=80');
  background-size: cover;
  background-position: center 40%;
}
.pg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.45) 60%,
    rgba(10,10,10,0.15) 100%
  );
}
.pg-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
}
.pg-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.pg-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.pg-hero-title em { color: var(--gold); font-style: italic; }
.pg-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
}

/* ---- Sections ---- */
.pg-section {
  padding: 96px 0;
}
.pg-section-dark {
  background: var(--black);
}
.pg-section-warm {
  background: #f7f3ee;
}
.pg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.pg-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.pg-eyebrow-sm {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.pg-section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.pg-section-title em { color: var(--gold); font-style: italic; }
.pg-section-dark .pg-section-title { color: var(--white); }

/* ---- Two-col layout ---- */
.pg-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pg-col-text .pg-eyebrow-sm { margin-bottom: 16px; }
.pg-col-text .pg-section-title { margin-bottom: 28px; text-align: left; }
.pg-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--grey-2);
  margin-bottom: 20px;
  font-weight: 300;
}
.pg-col-img { position: relative; }
.pg-col-img img {
  width: 100%;
  border-radius: 2px;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.pg-img-caption {
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 600;
}

/* ---- Pillars ---- */
.pg-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.pg-pillar {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}
.pg-pillar:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.pg-pillar-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.pg-pillar h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pg-pillar p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

/* ---- Timeline ---- */
.pg-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.pg-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(0,0,0,0.08);
}
.pg-timeline-item {
  display: grid;
  grid-template-columns: 80px 1px auto;
  gap: 0 32px;
  margin-bottom: 48px;
  align-items: start;
}
.pg-tl-year {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--gold-2);
  letter-spacing: 0.05em;
  padding-top: 2px;
  text-align: right;
  padding-right: 16px;
}
.pg-tl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  margin-top: 4px;
  position: relative;
  left: -5px;
  flex-shrink: 0;
}
.pg-tl-content { padding-bottom: 48px; }
.pg-tl-content h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}
.pg-tl-content p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--grey-2);
  font-weight: 300;
}

/* ---- Team ---- */
.pg-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pg-team-img {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/5;
}
.pg-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.pg-team-member:hover .pg-team-img img { transform: scale(1.04); }
.pg-team-member h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
}
.pg-team-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.pg-team-bio {
  font-size: 13px;
  line-height: 1.75;
  color: var(--grey-2);
  font-weight: 300;
}

/* ---- CTA section ---- */
.pg-cta-section {
  background: var(--black);
  padding: 80px 0;
}
.pg-cta-inner {
  text-align: center;
}
.pg-cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.pg-cta-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  font-weight: 300;
}

/* ---- Contact layout ---- */
.pg-contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.pg-contact-form-col .pg-eyebrow-sm { margin-bottom: 14px; }
.pg-contact-form-col .pg-section-title {
  text-align: left;
  margin-bottom: 32px;
}

/* Subject tabs */
.pg-subject-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.pg-stab {
  padding: 8px 18px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pg-stab:hover { border-color: rgba(0,0,0,0.28); color: var(--black); }
.pg-stab.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Form fields */
.pg-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pg-form-field {
  margin-bottom: 20px;
}
.pg-form-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.pg-form-field .req { color: var(--gold-2); }
.pg-form-field input,
.pg-form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  -webkit-appearance: none;
}
.pg-form-field input::placeholder,
.pg-form-field textarea::placeholder { color: rgba(0,0,0,0.3); }
.pg-form-field input:focus,
.pg-form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.pg-form-error {
  font-size: 11px;
  color: #c44;
  margin-top: 5px;
  min-height: 14px;
  font-weight: 500;
}

/* Submit button */
.pg-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  margin-top: 8px;
}
.pg-submit-btn:hover:not(:disabled) { background: var(--gold-2); color: var(--black); }
.pg-submit-btn:active:not(:disabled) { transform: scale(0.99); }
.pg-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success state */
.pg-contact-success {
  text-align: center;
  padding: 60px 0;
}
.pg-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
  margin: 0 auto 24px;
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.pg-contact-success h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}
.pg-contact-success p {
  font-size: 14px;
  color: var(--grey-2);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
  font-weight: 300;
}

/* Info cards */
.pg-contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 16px;
}
.pg-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 2px;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pg-info-card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.pg-info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
  flex-shrink: 0;
}
.pg-info-card h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}
.pg-info-card p {
  font-size: 13px;
  color: var(--grey-2);
  line-height: 1.6;
  margin-bottom: 4px;
}
.pg-info-card a { color: var(--gold-2); text-decoration: none; }
.pg-info-card a:hover { text-decoration: underline; }
.pg-info-hours {
  font-size: 11px !important;
  color: var(--grey) !important;
  letter-spacing: 0.04em;
}

/* Social row */
.pg-info-social {
  padding: 24px 0 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.pg-social-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pg-social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--black);
  text-decoration: none;
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.pg-social-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.pg-social-btn svg { color: var(--gold-2); flex-shrink: 0; }

/* ---- Footer ---- */
.pg-footer {
  background: var(--black);
  padding: 28px 0;
  margin-top: auto;
}
.pg-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}
.pg-footer-links { display: flex; gap: 24px; }
.pg-footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.pg-footer-links a:hover { color: var(--gold); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .pg-nav-inner { padding: 0 24px; }
  .pg-nav-links { display: none; }
  .pg-hero-content { padding: 0 24px; }
  .pg-container { padding: 0 24px; }
  .pg-two-col { grid-template-columns: 1fr; gap: 48px; }
  .pg-two-col .pg-col-img { order: -1; }
  .pg-pillars { grid-template-columns: repeat(2, 1fr); }
  .pg-team { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pg-contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .pg-footer-inner { flex-direction: column; gap: 16px; text-align: center; padding: 0 24px; }
}
@media (max-width: 600px) {
  .pg-section { padding: 64px 0; }
  .pg-hero { height: 50vh; padding-bottom: 48px; }
  .pg-pillars { grid-template-columns: 1fr; }
  .pg-team { grid-template-columns: 1fr; }
  .pg-form-row { grid-template-columns: 1fr; }
  .pg-footer-links { flex-direction: column; align-items: center; gap: 12px; }
  .pg-timeline::before { display: none; }
  .pg-timeline-item { grid-template-columns: auto 1fr; gap: 0 16px; }
  .pg-tl-dot { display: none; }
}
