/* About Us Page */
.jt-about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.jt-about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}
.jt-about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.jt-about-hero .jt-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}
.jt-about-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: .06em;
}

/* Mission */
.jt-about-mission {
  padding: 80px 0;
  background: #fff;
}
.jt-about-mission-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.jt-about-mission h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
}
.jt-about-mission p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.jt-about-mission cite {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--brand-gold);
  display: block;
}

/* Gallery */
.jt-about-gallery {
  padding: 0 0 80px;
  background: #fff;
}
.jt-about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.jt-about-gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.jt-about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.jt-about-gallery-item:hover img { transform: scale(1.03); }

/* Our Story */
.jt-about-story { background: var(--brand-cream, #faf8f5); }
.jt-about-story-img {
  height: 100%;
  min-height: 450px;
}
.jt-about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jt-about-story-text {
  padding: 4rem 3rem;
}
.jt-about-story-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: .04em;
}
.jt-about-story-text p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Progress Bars */
.jt-progress { margin-bottom: 1.2rem; }
.jt-progress-label {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: .4rem;
}
.jt-progress-track {
  height: 6px;
  background: #ddd;
  overflow: hidden;
}
.jt-progress-fill {
  height: 100%;
  width: 0;
  background: var(--brand-gold);
  transition: width 1.5s ease;
}

/* Trust Icons */
.jt-about-trust {
  padding: 80px 0;
  background: #fff;
}
.jt-trust-card {
  text-align: center;
  padding: 2rem 1rem;
}
.jt-trust-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
}
.jt-trust-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: .4rem;
}
.jt-trust-card p {
  font-size: .8rem;
  color: var(--text-muted);
}

/* CTA Banner */
.jt-about-cta {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.jt-about-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}
.jt-about-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.jt-about-cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.jt-about-cta h2 em { color: var(--brand-gold); font-style: italic; }
.jt-about-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--brand-gold);
  color: var(--brand-black);
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s;
}
.jt-about-btn:hover { background: #e0cba8; }

/* Testimonials */
.jt-about-testimonials {
  padding: 80px 0;
  background: var(--brand-cream, #faf8f5);
}
.jt-test-card {
  background: #fff;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border-bottom: 2px solid var(--brand-gold);
  transition: transform .3s, box-shadow .3s;
}
.jt-test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.jt-test-stars { color: var(--brand-gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 1rem; }
.jt-test-card p {
  font-size: .9rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.jt-test-author h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 0 .15rem;
}
.jt-test-author span {
  font-size: .7rem;
  color: var(--text-muted);
}

/* Blog Section */
.jt-about-blog {
  padding: 80px 0;
  background: #fff;
}
.jt-about-blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .3s;
}
.jt-about-blog-card:hover { transform: translateY(-4px); }
.jt-about-blog-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0ece6;
  margin-bottom: .8rem;
}
.jt-about-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.jt-about-blog-card:hover .jt-about-blog-thumb img { transform: scale(1.05); }
.jt-about-blog-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: .3rem;
  transition: color .3s;
}
.jt-about-blog-card:hover h3 { color: var(--brand-gold); }
.jt-about-blog-body time {
  font-size: .7rem;
  color: var(--text-muted);
}

/* Section Heading (shared) */
.jt-about-page .jt-section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.jt-about-page .jt-section-heading h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: .06em;
}

/* Responsive */
@media (max-width: 992px) {
  .jt-about-story-text { padding: 2.5rem 2rem; }
  .jt-about-story-img { min-height: 350px; }
}
@media (max-width: 768px) {
  .jt-about-gallery-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .jt-about-mission, .jt-about-trust, .jt-about-testimonials, .jt-about-blog { padding: 50px 0; }
  .jt-about-story-text { padding: 2rem 1.5rem; }
}
