:root{
  --bg:#f5f1e8;
  --paper:#fffdf7;
  --ink:#1d2521;
  --muted:#737b74;
  --line:#d9d5ca;
  --accent:#684b78;
  --accent2:#d97b58;
  --shadow:0 18px 50px rgba(30,40,35,.08)
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.7
}

a{color:inherit;text-decoration:none}

.site-header{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 5vw;
  border-bottom:1px solid var(--line);
  background:rgba(245,241,232,.9);
  backdrop-filter:blur(12px);
  position:sticky;
  top:0;
  z-index:10
}

.brand{
  font-size:14px;
  font-weight:900;
  letter-spacing:.12em;
  line-height:1
}

.brand span{
  display:block;
  color:var(--accent);
  font-size:8px;
  letter-spacing:.35em;
  margin-top:7px
}

nav{
  display:flex;
  gap:30px;
  font-size:13px
}

nav a{color:var(--muted)}
nav a:hover,nav a.active{color:var(--ink)}

.menu-btn{
  display:none;
  border:0;
  background:none;
  font-size:22px
}

.hero{
  min-height:calc(100vh - 78px);
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:7vw;
  padding:8vw 10vw
}

.eyebrow{
  font-size:11px;
  letter-spacing:.18em;
  font-weight:800;
  color:var(--accent);
  margin:0 0 14px
}

.hero h1,.page-title h1{
  font-size:clamp(50px,7vw,100px);
  line-height:.98;
  letter-spacing:-.055em;
  margin:0 0 30px
}

.hero h1 em{
  font-family:Georgia,serif;
  font-weight:400;
  color:var(--accent2)
}

.lead{
  font-size:18px;
  color:#59625c;
  max-width:590px
}

.actions{
  display:flex;
  gap:12px;
  margin-top:30px;
  flex-wrap:wrap
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--ink);
  padding:11px 19px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  background:transparent
}

.btn:hover{
  background:var(--ink);
  color:white
}

.btn.primary{
  background:var(--accent);
  color:white;
  border-color:var(--accent)
}

.hero-art{
  display:flex;
  justify-content:center
}

.pond-card{
  width:min(360px,75vw);
  height:450px;
  background:var(--accent);
  color:white;
  padding:25px;
  position:relative;
  box-shadow:var(--shadow);
  transform:rotate(2deg)
}

.pond-card>span{
  font-size:10px;
  letter-spacing:.2em
}

.pond-card p{
  position:absolute;
  bottom:25px;
  font-size:35px;
  font-family:Georgia,serif;
  margin:0
}

.pond-card small{
  position:absolute;
  bottom:19px;
  right:25px;
  font-size:10px
}

.pond-shape{
  width:230px;
  height:180px;
  background:#80669a;
  border-radius:48% 52% 60% 40%;
  position:absolute;
  top:105px;
  left:50%;
  transform:translateX(-50%) rotate(-8deg);
  box-shadow:
    80px 50px 0 #59416b,
    -60px 35px 0 #9a82ae
}

.section{
  padding:100px 10vw
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  border-bottom:1px solid var(--line);
  padding-bottom:18px;
  margin-bottom:45px
}

.section-head h2{
  margin:0;
  font-size:48px;
  letter-spacing:-.04em
}

.section-head>a{
  font-size:13px
}

.feature-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:55px;
  align-items:center
}

.fake-shot{
  min-height:330px;
  background:#40304d;
  position:relative;
  overflow:hidden
}

.fake-shot:after{
  content:"";
  position:absolute;
  width:55%;
  height:55%;
  border-radius:50%;
  background:#806b92;
  left:20%;
  top:22%;
  box-shadow:120px 80px 0 #30253a
}

.fake-shot span{
  position:absolute;
  top:20px;
  left:20px;
  color:white;
  font-size:10px;
  letter-spacing:.2em;
  z-index:1
}

.shot-two{
  background:#c27b59
}

.shot-two:after{
  background:#f2c18f;
  box-shadow:-120px 90px 0 #8d4e3b
}

.shot-three{
  background:#303c59
}

.shot-three:after{
  background:#91a7d1;
  box-shadow:100px 70px 0 #586f99
}

.feature-copy{
  font-size:17px
}

.muted{
  color:var(--muted);
  font-size:13px
}

.text-link{
  display:inline-block;
  margin-top:18px;
  font-weight:800;
  font-size:13px
}

.game-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px
}

.game-card{
  background:var(--paper);
  padding-bottom:20px;
  transition:transform .2s
}

.game-card:hover,.game-row:hover{
  transform:translateY(-4px)
}

.game-card h3,.game-card p{
  margin:8px 22px 0
}

.game-card p{
  font-size:12px;
  color:var(--muted)
}

.cover{
  height:350px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden
}

.cover span{
  font-family:Georgia,serif;
  font-size:48px;
  line-height:.85;
  text-align:center;
  letter-spacing:-.08em;
  z-index:1
}

.cover-pond{
  background:#684b78;
  color:#f8ead7
}

.cover-pond:before{
  content:"";
  position:absolute;
  width:260px;
  height:210px;
  border-radius:50%;
  background:#80669a;
  transform:rotate(-10deg);
  box-shadow:
    100px 50px 0 #4f3a5d,
    -100px 45px 0 #9a82ae
}

.cover-gym{
  background:#d88463;
  color:#fff4e7
}

.cover-gym:before{
  content:"";
  position:absolute;
  width:210px;
  height:280px;
  border-radius:50% 50% 45% 45%;
  background:#e9a17f;
  bottom:-70px;
  box-shadow:
    90px -35px 0 #bf624d,
    -90px -20px 0 #f0b093
}

.page{
  padding:90px 10vw;
  min-height:calc(100vh - 78px)
}

.page-title{
  margin-bottom:80px
}

.game-list{
  display:flex;
  flex-direction:column;
  gap:22px
}

.game-row{
  display:grid;
  grid-template-columns:260px 1fr 30px;
  gap:40px;
  align-items:center;
  background:var(--paper);
  padding:20px;
  transition:transform .2s
}

.game-row .cover{
  height:260px
}

.row-info h2{
  font-size:44px;
  margin:0 0 10px;
  letter-spacing:-.04em
}

.row-info p:not(.eyebrow){
  max-width:600px;
  color:var(--muted)
}

.tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap
}

.tags span{
  border:1px solid var(--line)
}
