/* === ABOUT PAGE — Royal Aroma === */

.ra-about-hero{
  background:var(--off-white);
  border-bottom:1px solid var(--border-light);
  padding:78px 0;
}

.ra-about-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(360px,.78fr);
  gap:56px;
  align-items:center;
}

.ra-about-hero h1{
  font-family:var(--font-main);
  font-size:clamp(46px,6vw,82px);
  font-weight:500;
  line-height:.98;
  color:var(--black);
  margin-bottom:22px;
}

.ra-about-hero p{
  max-width:600px;
  font-size:18px;
  color:var(--gray);
}

.ra-about-hero__image{
  min-height:460px;
  background:var(--light-bg);
  border:1px solid var(--border-light);
  overflow:hidden;
  box-shadow:var(--shadow-gold);
}

.ra-about-hero__image img{
  width:100%;
  height:100%;
  min-height:460px;
  object-fit:cover;
}

.ra-image-placeholder{
  min-height:460px;
  display:grid;
  place-items:center;
  font-family:var(--font-main);
  font-size:42px;
  color:var(--primary-gold);
  background:linear-gradient(135deg,var(--light-bg),var(--white));
}

.ra-about-story{
  background:var(--white);
}

.ra-about-story__grid{
  display:grid;
  grid-template-columns:minmax(260px,.8fr) minmax(0,1.2fr);
  gap:64px;
  align-items:start;
}

.ra-about-copy{
  color:var(--gray);
  font-size:17px;
}

.ra-about-copy p:last-child{
  margin-bottom:0;
}

.ra-section-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 42px;
}

.ra-values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.ra-value-card{
  background:var(--white);
  border:1px solid var(--border-light);
  padding:34px 30px;
  min-height:260px;
  transition:var(--transition);
}

.ra-value-card:hover{
  border-color:var(--border);
  box-shadow:var(--shadow-gold);
  transform:translateY(-4px);
}

.ra-value-card span{
  display:block;
  color:var(--primary-gold);
  font-size:12px;
  letter-spacing:.18em;
  margin-bottom:28px;
}

.ra-value-card h3{
  font-family:var(--font-main);
  font-size:32px;
  font-weight:300;
  color:var(--black);
  line-height:1.1;
  margin-bottom:14px;
}

.ra-value-card p{
  color:var(--gray);
}

.ra-about-cta{
  background:var(--white);
}

.ra-about-cta__box{
  background:var(--black);
  color:var(--white);
  text-align:center;
  padding:62px 40px;
  border:1px solid rgba(255,255,255,.08);
}

.ra-about-cta__box h2{
  max-width:760px;
  margin:0 auto 28px;
  font-family:var(--font-main);
  font-size:clamp(36px,5vw,62px);
  font-weight:300;
  line-height:1.05;
  color:var(--white);
}

@media (max-width:1024px){
  .ra-about-hero__grid{grid-template-columns:1fr;gap:38px;}
  .ra-about-hero__image,.ra-about-hero__image img,.ra-image-placeholder{min-height:380px;}
  .ra-about-story__grid{grid-template-columns:1fr;gap:26px;}
  .ra-values-grid{grid-template-columns:1fr 1fr;}
}

@media (max-width:768px){
  .ra-about-hero{padding:62px 0;}
  .ra-values-grid{grid-template-columns:1fr;}
  .ra-value-card{min-height:auto;padding:28px 24px;}
  .ra-about-cta__box{padding:46px 24px;}
}

@media (max-width:480px){
  .ra-about-hero__image,.ra-about-hero__image img,.ra-image-placeholder{min-height:300px;}
}


.ra-about-gallery{
  background:var(--off-white);
  border-top:1px solid var(--border-light);
  border-bottom:1px solid var(--border-light);
}

.ra-about-gallery .ra-section-head p{
  max-width:620px;
  margin:14px auto 0;
  color:var(--gray);
  font-size:16px;
}

.ra-about-gallery__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.ra-about-gallery__item{
  position:relative;
  margin:0;
  min-height:280px;
  aspect-ratio:1 / 1.12;
  background:var(--light-bg);
  border:1px solid var(--border-light);
  overflow:hidden;
  box-shadow:0 16px 40px rgba(0,0,0,.05);
}

.ra-about-gallery__item:nth-child(1),
.ra-about-gallery__item:nth-child(5),
.ra-about-gallery__item:nth-child(9){
  aspect-ratio:1 / 1.32;
}

.ra-about-gallery__item:nth-child(2),
.ra-about-gallery__item:nth-child(6){
  transform:translateY(22px);
}

.ra-about-gallery__item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:var(--transition);
}

.ra-about-gallery__item:hover img{
  transform:scale(1.045);
}

@media (max-width:1024px){
  .ra-about-gallery__grid{grid-template-columns:repeat(2,1fr);}
  .ra-about-gallery__item:nth-child(2),
  .ra-about-gallery__item:nth-child(6){transform:none;}
}

@media (max-width:768px){
  .ra-about-gallery__grid{gap:14px;}
  .ra-about-gallery__item{min-height:220px;}
}

@media (max-width:560px){
  .ra-about-gallery__grid{grid-template-columns:1fr;}
  .ra-about-gallery__item,
  .ra-about-gallery__item:nth-child(1),
  .ra-about-gallery__item:nth-child(5),
  .ra-about-gallery__item:nth-child(9){aspect-ratio:1 / .9;min-height:260px;}
}
