/*
Theme Name: Cipherelle
Theme URI: https://cipherelle.com
Author: Cipherelle
Description: Privacy-first WooCommerce theme for Cipherelle lingerie and after-dark fashion.
Version: 0.1.0
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: cipherelle
*/

:root {
  --cipherelle-black: #0b0b0d;
  --cipherelle-plum: #3a1428;
  --cipherelle-ivory: #f5efea;
  --cipherelle-gold: #b69b6d;
  --cipherelle-white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--cipherelle-black);
  background: var(--cipherelle-ivory);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header,
.site-footer {
  color: var(--cipherelle-ivory);
  background: var(--cipherelle-black);
}

.site-header__inner,
.site-footer__inner,
.site-main {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: .22em;
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-main { padding-block: 48px; }

.cipherelle-hero {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: 72px 24px;
  color: var(--cipherelle-ivory);
  text-align: center;
  background: linear-gradient(145deg, var(--cipherelle-black), var(--cipherelle-plum));
}

.cipherelle-hero__content { max-width: 760px; }

.cipherelle-kicker {
  color: var(--cipherelle-gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cipherelle-hero h1 {
  margin: 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
}

.cipherelle-button {
  display: inline-block;
  margin-top: 16px;
  padding: 13px 22px;
  color: var(--cipherelle-black);
  background: var(--cipherelle-gold);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.cipherelle-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d8cec7;
}

.cipherelle-trust div {
  padding: 22px;
  text-align: center;
  background: var(--cipherelle-white);
}

.site-footer__inner { padding-block: 36px; }

@media (max-width: 760px) {
  .site-header__inner { align-items: flex-start; padding-block: 18px; }
  .site-nav ul { flex-direction: column; gap: 6px; }
  .cipherelle-trust { grid-template-columns: 1fr; }
}
