/* ── AJ by Angela Jewellery page ── */

body {
  background: #ffffff;
}

:root {
  --aj-beige: #e7d2ae;
  --aj-beige-dark: #a19379;
  --aj-black: #333333;
}

/* ── Hero banner — reuses .cc-hero layout/typography from cosy-club.css,
   overriding the background with the brand's hand-painted watercolour. ── */
.aj-hero {
  background-color: #f3ebe0;
  /* 15% beige (#E7D2AE) tint over the watercolour */
  background-image:
    linear-gradient(rgba(231, 210, 174, 0.15), rgba(231, 210, 174, 0.15)),
    url('assets/aj-hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Logo & typeface sheet ── */
.aj-identity-sheet {
  margin: 40px auto 0;
  width: 100%;
  max-width: 1131px;
}

.aj-identity-sheet img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Colour palette ── */
.aj-palette {
  margin-top: 40px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.aj-swatch {
  height: 156px;
  border-radius: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
  color: rgba(0, 0, 0, 0.7);
}

.aj-swatch--white {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.aj-swatch--dark {
  color: #fff;
}

.aj-swatch-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

.aj-swatch-hex {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-top: 2px;
}

/* ── Brand in the wild — storefront photos ── */
.aj-storefront {
  margin-top: 64px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.aj-storefront figure {
  margin: 0;
  overflow: hidden;
}

.aj-storefront img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Brand collateral & product photography ── */
.aj-gallery {
  margin-top: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aj-figure {
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.aj-figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* Centered section heading with red accent bar (Wireframe / UI design) */
.aj-section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px; /* + 24px gallery gap = 64px major-section break */
}

.aj-section-bar {
  width: 4px;
  height: 34px;
  border-radius: 2px;
  background: var(--red);
}

.aj-section-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .aj-palette { grid-template-columns: repeat(2, 1fr); }
  .aj-storefront { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .aj-section-title { font-size: 26px; } /* match .cc-heading at this breakpoint */

  /* Tighten major section breaks on mobile: 64px -> 40px */
  .aj-storefront { margin-top: 40px; }
  .aj-section-head { margin-top: 16px; } /* + 24px gallery gap = 40px */
}

@media (max-width: 480px) {
  .aj-palette { grid-template-columns: 1fr; }
}
