/* kseniakot.com — shared stylesheet
   Fonts: Circe (300/400/600/800), Trajan (700, display) — see fonts.css */

:root {
  --sans: 'Circe', 'Helvetica Neue', Arial, sans-serif;
  --display: 'Trajan', 'Times New Roman', serif;
  --ink: #333333;
  --muted: #6e6e6e;
  --paper: #ffffff;
  --accent: #ff8562;
  --accent-ink: #ffffff;
  --soft: #f6f2ef;
  --maxw: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: .85; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(30px, 5vw, 52px); }
h2 { font-size: clamp(24px, 3.6vw, 38px); }
h3 { font-size: clamp(20px, 2.6vw, 26px); }
.display { font-family: var(--display); font-weight: 700; letter-spacing: .06em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 780px; }

section { padding: clamp(40px, 7vw, 90px) 0; }
section.soft { background: var(--soft); }
section.dark { background: #1c1a19; color: #f4efec; }
section.dark h1, section.dark h2, section.dark h3 { color: inherit; }

/* hero */
.hero { text-align: center; }
.hero .kicker { text-transform: uppercase; letter-spacing: .18em; font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.hero .sub { font-size: clamp(18px, 2.2vw, 22px); max-width: 720px; margin: 0 auto; }
.hero.cover { position: relative; background-size: cover; background-position: center; color: #fff; }
.hero.cover .overlay { position: absolute; inset: 0; background: rgba(20,16,14,.5); }
.hero.cover .container { position: relative; }

/* layout helpers */
.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.split { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

/* cards */
.card { background: var(--paper); border-radius: 16px; padding: 28px; box-shadow: 0 6px 24px rgba(40,30,25,.07); }
section.dark .card { background: #262322; box-shadow: none; }
.card h3 { margin-top: 0; }
.card img.icon { width: 56px; height: 56px; margin-bottom: 16px; }

/* photo */
.photo { border-radius: 16px; overflow: hidden; }
.photo img { width: 100%; object-fit: cover; }

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  padding: 16px 42px;
  border-radius: 40px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 0;
  cursor: pointer;
  text-align: center;
}
.btn:hover { opacity: .9; }
.btn.ghost { background: transparent; color: inherit; border: 2px solid currentColor; }

/* lists */
ul.checks { list-style: none; padding: 0; margin: 0; }
ul.checks li { position: relative; padding-left: 32px; margin-bottom: 14px; }
ul.checks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--accent); mask: none; }
ul.checks li::after { content: "✓"; position: absolute; left: 4px; top: 1px; color: var(--accent-ink); font-size: 12px; font-weight: 700; }

/* numbered steps */
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li { position: relative; padding-left: 0; margin-bottom: 28px; }
.steps li { border-left: 3px solid var(--accent); padding-left: 20px; }
.steps li strong { display: block; font-size: 19px; margin-bottom: 4px; }

/* FAQ / accordion */
details { border-bottom: 1px solid rgba(0,0,0,.12); padding: 18px 0; }
section.dark details { border-color: rgba(255,255,255,.15); }
details summary { cursor: pointer; font-weight: 600; font-size: 19px; list-style: none; position: relative; padding-right: 36px; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; position: absolute; right: 0; top: -2px; font-size: 26px; font-weight: 300; }
details[open] summary::after { content: "–"; }
details > div { padding-top: 12px; }

/* gallery */
.gallery { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.gallery > * { flex: 0 0 min(78vw, 380px); scroll-snap-align: start; }
.gallery img { border-radius: 14px; width: 100%; object-fit: cover; }

/* price blocks */
.price { font-size: clamp(26px, 4vw, 40px); font-weight: 800; }
.price s { font-weight: 400; color: var(--muted); font-size: .6em; margin-right: .4em; }

/* footer */
footer { padding: 48px 0; font-size: 15px; color: var(--muted); text-align: center; }
footer a { color: inherit; text-decoration: underline; }
footer .social { display: flex; gap: 18px; justify-content: center; margin-bottom: 18px; }

/* utilities */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
section.dark .muted { color: #bdb4ae; }
.lead { font-size: clamp(19px, 2.4vw, 23px); font-weight: 300; }
.spacer { height: clamp(20px, 4vw, 48px); }

/* site logo header */
.site-head { background: #fff; padding: 18px 0; }
.site-head a.site-logo { font-family: var(--sans); font-size: 21px; font-weight: 600; color: #000 !important; letter-spacing: .02em; text-decoration: none; }
.site-logo:hover { opacity: .7; }
