/* ============================================================
   services.css — Services page ONLY
   style.css must be loaded before this file.
   Contains: Hero, service blocks, banners, feature cards.
   Navigation, CTA Card, Footer → style.css only.
   ============================================================ */

/* ── HERO BANNER ────────────────────────────────────────── */
.sv-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('assets/services-bg.png') center/cover no-repeat;
}

.sv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

.sv-hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
}

/* ── SERVICE BLOCK ──────────────────────────────────────── */
.sv-block        { background: #ffffff; }
.sv-block--alt   { background: #faf7f0; }

.sv-block-tagline {
  font-size: 20px;
  color: #666666;
  font-weight: 400;
  text-align: center;
  margin-top: -.5rem;
  margin-bottom: 2rem;
  line-height: 1.55;
}

/* Section title override — left-aligned for service names */
.sv-block .section-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: .5rem;
  letter-spacing: .04em;
}

/* ── BANNER IMAGE ───────────────────────────────────────── */
.sv-banner {
  position: relative;
  width: 100%;
  max-width: 1054px;
  aspect-ratio: 1054 / 440;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 2.5rem;
  background-size: cover;
  background-position: center;
}

.sv-banner-overlay {
  display: none;
}

/* Coloured label with large G watermark */
.sv-banner-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 2rem 2.5rem;
  gap: 0;
}

.sv-banner-g {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 220px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.18);
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
}

.sv-banner-text {
  position: relative;
  z-index: 2;
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: .03em;
  padding-left: 1.5rem;
}

/* Per-service banner background colours / images */
.sv-banner--casting  { background-image: url('assets/service-casting.webp'); }
.sv-banner--filing   { background-image: url('assets/service-filing.webp'); }
.sv-banner--diamonds { background-image: url('assets/service-diamond-settings.webp'); }
.sv-banner--polish   { background-image: url('assets/service-hand-polish.webp'); }
.sv-banner--custom   { background-image: url('assets/service-custom.webp'); }
.sv-banner--rhodium  { background-image: url('assets/service-rhodium-plated.webp'); }

/* ── FEATURE CARDS ──────────────────────────────────────── */
.sv-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.sv-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.sv-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: none;
  color: #9B7C2E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Icon colour variants */
.sv-feature-icon--outline { background: none; }
.sv-feature-icon--orange  { background: none; }
.sv-feature-icon--brown   { background: none; }
.sv-feature-icon--teal    { background: none; }

.sv-feature h3 {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 24px;
}

.sv-feature p {
  font-size: 20px;
  color: #666666;
  line-height: 1.55;
  font-weight: 400;
}

/* ── ENQUIRE CTA ────────────────────────────────────────── */
.sv-block-cta {
  text-align: center;
  margin-top: .5rem;
}

/* ── RESPONSIVE — TABLET ────────────────────────────────── */
@media (max-width: 900px) {
  .sv-features { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
  .sv-banner   { height: 260px; }
  .sv-banner-g { font-size: 160px; }
  .sv-banner-text { font-size: 26px; }
}

/* ── RESPONSIVE — MOBILE ────────────────────────────────── */
@media (max-width: 640px) {
  .sv-hero         { height: 200px; }
  .sv-hero-title   { font-size: 28px; }
  .sv-features     { grid-template-columns: 1fr; gap: 1.5rem; }
  .sv-banner       { height: 200px; }
  .sv-banner-g     { font-size: 110px; }
  .sv-banner-text  { font-size: 20px; padding-left: 1rem; }
}
