/*
Theme Name: VALEN Landing
Theme URI: https://valen.ie
Author: OpenAI
Description: Custom one-page landing theme for VALEN.
Version: 1.0
Text Domain: valen-landing
*/

:root{
  --bg:#0b0b0d;
  --bg-soft:#121216;
  --text:#f4f1ea;
  --muted:#b8b2a6;
  --line:#26262d;
  --accent:#d9d2c3;
  --light:#f7f4ee;
  --darktext:#111214;
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max),92vw);margin:0 auto}
.site-header{
  position:sticky;top:0;z-index:20;
  backdrop-filter:blur(10px);
  background:rgba(11,11,13,.82);
  border-bottom:1px solid rgba(255,255,255,.06)
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;min-height:74px
}
.brand{
  font-family:Georgia,"Times New Roman",serif;
  font-size:34px;letter-spacing:.18em
}
.nav{display:flex;gap:28px;font-size:14px;color:var(--muted)}
.nav a:hover{color:#fff}
.hero{
  padding:96px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(180deg,#111216 0%, #09090b 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center
}
.kicker{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:12px;
  margin-bottom:16px
}
h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(52px,9vw,118px);
  line-height:.95;
  letter-spacing:.10em;
  font-weight:400
}
.tagline{margin-top:18px;font-size:26px;color:var(--accent)}
.descriptor{margin-top:10px;color:var(--muted);font-size:18px}
.hero-copy p{max-width:580px;margin:28px 0 0;color:#d4cec2}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.btn{
  display:inline-block;
  padding:14px 22px;
  border:1px solid #e6dfd0;
  color:#111;
  background:#e6dfd0;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  border-radius:2px
}
.btn.secondary{
  background:transparent;
  color:#f2ede2;
  border-color:rgba(255,255,255,.25)
}
.hero-card{
  background:linear-gradient(180deg,#17181d 0%, #0f1013 100%);
  border:1px solid rgba(255,255,255,.07);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 70px rgba(0,0,0,.35)
}
.mock-ring{
  aspect-ratio:4/5;
  display:grid;place-items:center;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,.18), transparent 18%),
    radial-gradient(circle at 70% 35%, rgba(255,255,255,.10), transparent 20%),
    linear-gradient(160deg,#15161a,#09090c)
}
.ring-art{
  width:min(72%,420px);
  aspect-ratio:1/1;
  border-radius:50%;
  border:26px solid #8f9399;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.25),
    inset -10px -12px 20px rgba(0,0,0,.35),
    inset 12px 12px 18px rgba(255,255,255,.08),
    0 20px 50px rgba(0,0,0,.5);
  position:relative
}
.ring-art:after{
  content:"";
  position:absolute;inset:12%;
  border-radius:50%;
  border:3px solid rgba(255,255,255,.15)
}
.section{padding:82px 0}
.section.light{background:var(--light);color:var(--darktext)}
.section-title{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,5vw,52px);
  line-height:1.05;
  margin:0 0 14px;
  letter-spacing:.04em
}
.section-intro{max-width:760px;opacity:.78}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:36px
}
.card{
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px;
  background:rgba(255,255,255,.02)
}
.light .card{background:#fff;border-color:#e7dfd1}
.card h3{
  margin:0 0 10px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:34px
}
.product{
  background:#141419;
  border:1px solid rgba(255,255,255,.07);
  border-radius:20px;
  overflow:hidden
}
.product .thumb{
  aspect-ratio:1/1;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,.14), transparent 14%),
    linear-gradient(160deg,#181a1f,#0c0d10);
  position:relative
}
.product .thumb:before{
  content:"";
  position:absolute;
  width:48%;height:48%;
  left:26%;top:26%;
  border-radius:50%;
  border:12px solid #a7adb5;
  box-shadow:
    inset -7px -7px 10px rgba(0,0,0,.25),
    inset 7px 7px 10px rgba(255,255,255,.06)
}
.product:nth-child(3) .thumb:before,
.product:nth-child(4) .thumb:before{
  width:18%;height:56%;
  left:41%;top:22%;
  border-radius:18px;
  border:10px solid #a7adb5
}
.product .meta{padding:18px}
.product h4{margin:0 0 6px;font-size:18px}
.product p{margin:0;color:#bfb9af;font-size:14px}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:start
}
.email-box{
  border:1px solid #ddd5c7;
  border-radius:22px;
  padding:28px;
  background:#fff;
  box-shadow:0 14px 40px rgba(0,0,0,.06)
}
form.valen-form{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:22px
}
.valen-form input{
  width:100%;
  padding:15px 16px;
  border-radius:12px;
  border:1px solid #d8cfbf;
  font-size:16px
}
.valen-form button{
  border:0;
  border-radius:12px;
  padding:15px 18px;
  background:#111214;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  font-weight:700;
  cursor:pointer
}
.site-footer{
  padding:30px 0 50px;
  border-top:1px solid rgba(255,255,255,.08)
}
.footer-brand{
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  letter-spacing:.16em
}
.footer-copy{color:var(--muted);font-size:14px;margin-top:10px}
@media (max-width:980px){
  .hero-grid,.split{grid-template-columns:1fr}
  .grid-3,.product-grid{grid-template-columns:1fr 1fr}
  .nav{display:none}
}
@media (max-width:640px){
  .section{padding:64px 0}
  .grid-3,.product-grid{grid-template-columns:1fr}
  .hero{padding-top:70px}
  .tagline{font-size:22px}
}
div.wpforms-container-full .wpforms-form button[type=submit],
div.wpforms-container-full .wpforms-form input[type=submit] {
  background: #111214 !important;
  color: #ffffff !important;
  border: 1px solid #111214 !important;
  border-radius: 10px !important;
  padding: 14px 20px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  font-size: 16px !important;
}

div.wpforms-container-full .wpforms-form button[type=submit]:hover,
div.wpforms-container-full .wpforms-form input[type=submit]:hover {
  background: #000000 !important;
  border-color: #000000 !important;
}

div.wpforms-container-full .wpforms-form input[type=email] {
  border-radius: 10px !important;
  padding: 14px !important;
  border: 1px solid #d8cfbf !important;
}