/**
 * Orchid Atelier — Home Page Styles
 *
 * @package Orchid_Atelier
 */

/* ============ HERO ============ */
.oa-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: linear-gradient(150deg, var(--ivory) 30%, var(--orchid-pale) 100%);
  border-bottom: 1px solid var(--hairline);
}
.oa-hero__copy {
  padding: 88px 0 88px 56px;
  position: relative;
  z-index: 2;
}
.oa-hero__copy h1 {
  font-size: 64px;
  line-height: 1.06;
  color: var(--plum);
  font-weight: 500;
  margin: 18px 0 8px;
}
.oa-hero__copy h1 em {
  font-style: italic;
  color: var(--gold);
}
.oa-hero__script {
  font-size: 32px;
  color: var(--magenta);
  margin-bottom: 22px;
}
.oa-hero__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 34px;
}
.oa-hero__cta {
  display: flex;
  gap: 16px;
  align-items: center;
}
.oa-hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.oa-hero__ring {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.oa-hero__ring::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid var(--orchid-lt);
}
.oa-hero__bloom {
  width: 320px;
  height: 320px;
  object-fit: contain;
  border-radius: 50%;
}

/* ============ PILLAR STRIP ============ */
.oa-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--hairline);
}
.oa-pillar {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid var(--hairline);
}
.oa-pillar:last-child { border-right: none; }
.oa-pillar__icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.oa-pillar h4 {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 500;
  margin-bottom: 6px;
}
.oa-pillar p {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
}

/* ============ CATEGORIES ============ */
.oa-categories {
  padding-top: 72px;
  padding-bottom: 72px;
}
.oa-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.oa-section-head h2 {
  font-size: 42px;
  color: var(--plum);
  font-weight: 500;
  margin: 10px 0 6px;
}
.oa-section-head .oa-script {
  font-size: 24px;
  color: var(--magenta);
}
.oa-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.oa-cat-card {
  background: var(--ivory);
  border: 1px solid var(--hairline);
  padding: 36px 26px;
  text-align: center;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.oa-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(110, 42, 98, .1);
}
.oa-cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
}
.oa-cat-card__icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}
.oa-cat-card h3 {
  font-size: 23px;
  color: var(--plum);
  font-weight: 500;
  margin-bottom: 8px;
}
.oa-cat-card p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 16px;
}
.oa-cat-card__link {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ============ BRAND STORY ============ */
.oa-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.oa-story__media {
  aspect-ratio: 16/10;
  background: linear-gradient(140deg, var(--plum) 0%, var(--magenta) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.oa-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.oa-story__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(4px);
}
.oa-story__cap {
  position: absolute;
  bottom: 18px;
  left: 22px;
  color: #F3DFF1;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.oa-story__copy h2 {
  font-size: 38px;
  color: var(--plum);
  font-weight: 500;
  margin: 10px 0 16px;
  line-height: 1.15;
}
.oa-story__copy p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 14px;
}
.oa-story__vals {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}
.oa-story__vals span {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--plum);
  border: 1px solid var(--orchid);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orchid-pale);
}

/* ============ CTA BAND ============ */
.oa-cta-band {
  background: linear-gradient(120deg, var(--plum) 0%, var(--magenta) 90%);
  text-align: center;
  padding: 72px 56px;
  color: #fff;
}
.oa-cta-band h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 8px;
}
.oa-cta-band .oa-script {
  font-size: 26px;
  color: var(--orchid-lt);
  margin-bottom: 28px;
}
.oa-cta-band .oa-btn {
  border-color: var(--gold-lt);
  color: #fff;
  background: rgba(255, 255, 255, .06);
}
.oa-cta-band .oa-btn:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .oa-hero { grid-template-columns: 1fr; }
  .oa-hero__art { display: none; }
  .oa-hero__copy { padding: 56px 32px; }
  .oa-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .oa-story { grid-template-columns: 1fr; }
  .oa-story__media { max-height: 300px; }
}
@media (max-width: 768px) {
  .oa-hero__copy h1 { font-size: 42px; }
  .oa-hero__script { font-size: 24px; }
  .oa-pillars { grid-template-columns: repeat(2, 1fr); }
  .oa-pillar:nth-child(2) { border-right: none; }
  .oa-section-head h2 { font-size: 32px; }
  .oa-story__copy h2 { font-size: 28px; }
  .oa-cta-band { padding: 48px 24px; }
  .oa-cta-band h2 { font-size: 30px; }
}
@media (max-width: 480px) {
  .oa-hero__copy { padding: 40px 16px; }
  .oa-hero__copy h1 { font-size: 34px; }
  .oa-hero__cta { flex-direction: column; align-items: flex-start; }
  .oa-pillars { grid-template-columns: 1fr 1fr; }
  .oa-cat-grid { grid-template-columns: 1fr; }
  .oa-story__vals { flex-wrap: wrap; }
}
