@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Serif:wght@600;700&display=swap');

:root {
  --bg: #F4EBDD;
  --surface: #FFF9F0;
  --surface-2: #EAD8C4;
  --brown-light: #C99F78;
  --brown-deep: #8B5E3C;
  --text: #3F2D24;
  --muted: #766158;
  --border: #DFC8AE;
  --shadow: 0 16px 40px rgba(92, 57, 35, .09);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  /* Πάνω μέρος σε ανοιχτό καφέ που σβήνει σταδιακά στο μπεζ γύρω στη μέση της οθόνης */
  background:
    linear-gradient(180deg,
      var(--brown-light) 0%,
      #D6BB98 22%,
      #E6D6C1 40%,
      var(--bg) 56%) top center / 100% 1050px no-repeat,
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.7;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 12px; z-index: 100; background: var(--surface); padding: 10px 14px; border-radius: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(241, 229, 214, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: var(--surface); color: var(--brown-deep); font-family: 'Noto Serif', Georgia, serif; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { text-decoration: none; font-size: .94rem; font-weight: 600; }
.nav-links a:hover { color: var(--brown-deep); }
.language-switch { padding: 8px 12px; border: 1px solid var(--brown-light); border-radius: 999px; background: var(--surface); }

.hero { padding: 96px 0 74px; border-bottom: 1px solid var(--border); background: radial-gradient(circle at 80% 20%, rgba(201,159,120,.28), transparent 34%); }
.eyebrow { margin: 0 0 14px; color: var(--brown-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; }
h1, h2, h3 { font-family: 'Noto Serif', Georgia, serif; line-height: 1.15; letter-spacing: -.025em; }
.hero h1 { max-width: 850px; margin: 0; font-size: clamp(3rem, 8vw, 6.5rem); }
.hero p { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.28rem); }
.hero-rule { display: flex; gap: 8px; margin-top: 36px; }
.hero-rule span { height: 7px; border-radius: 99px; background: var(--brown-light); }
.hero-rule span:nth-child(1) { width: 90px; background: var(--brown-deep); }
.hero-rule span:nth-child(2) { width: 34px; }
.hero-rule span:nth-child(3) { width: 14px; }

.story-section { padding: 44px 0 0; }
.story-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background: var(--text);
  color: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story-feature::after { content: ''; position: absolute; inset: auto -80px -110px auto; width: 280px; height: 280px; border: 1px solid rgba(255,249,240,.15); border-radius: 50%; }
.story-feature .eyebrow { color: var(--brown-light); }
.story-feature h2 { max-width: 780px; margin: 6px 0 14px; font-size: clamp(2rem, 5vw, 3.5rem); }
.story-feature p:not(.eyebrow):not(.did-you-know) { max-width: 720px; color: #DFC8AE; }
.did-you-know { margin: 0; color: var(--surface); font-family: 'Noto Serif', Georgia, serif; font-size: 1.08rem; font-style: italic; }
.story-link { display: inline-flex; min-height: 44px; align-items: center; margin-top: 12px; color: var(--surface); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--brown-light); }
.story-link:hover { color: var(--brown-light); }
.story-seal { position: relative; z-index: 1; display: grid; place-items: center; width: 120px; aspect-ratio: 1; border: 1px solid rgba(255,249,240,.3); border-radius: 50%; font-family: 'Noto Serif', Georgia, serif; font-size: 4.4rem; color: var(--brown-light); }

.section { padding: 78px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 5vw, 3.3rem); }
.section-heading p { margin: 0; max-width: 520px; color: var(--muted); }
.category-grid, .article-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.category-card, .article-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.category-card { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; }
.category-number { color: var(--brown-light); font-family: 'Noto Serif', Georgia, serif; font-size: 2.2rem; font-weight: 700; }
.category-card h3, .article-card h3 { margin: 16px 0 8px; font-size: 1.5rem; }
.category-card p, .article-card p { color: var(--muted); margin: 0; }
.article-card { display: flex; flex-direction: column; min-height: 280px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: .78rem; font-weight: 700; color: var(--brown-deep); text-transform: uppercase; letter-spacing: .06em; }
.article-card a.stretched { margin-top: auto; padding-top: 24px; color: var(--brown-deep); font-weight: 700; text-decoration: none; }
.article-card a.stretched:hover { text-decoration: underline; }
.pending { opacity: .72; box-shadow: none; }
.badge { display: inline-flex; align-items: center; width: fit-content; padding: 5px 10px; border-radius: 999px; background: var(--surface-2); color: var(--brown-deep); font-size: .73rem; font-weight: 700; }

.article-hero { padding: 72px 0 42px; }
.article-hero .article-meta { margin-bottom: 18px; }
.article-hero h1 { max-width: 940px; margin: 0; font-size: clamp(2.6rem, 7vw, 5.2rem); }
.article-shell { display: grid; grid-template-columns: minmax(0, 760px) 250px; gap: 70px; align-items: start; padding-bottom: 90px; }
.article-body { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(26px, 5vw, 60px); box-shadow: var(--shadow); font-family: 'Noto Serif', Georgia, serif; font-size: 1.08rem; }
.article-body h2 { margin-top: 2.2em; font-size: 1.8rem; }
.article-body h3 { margin-top: 1.8em; font-size: 1.35rem; }
.article-body p { margin: 1.15em 0; }
.article-body li { margin: .55em 0; }
.article-body > *:first-child { margin-top: 0; }
.story-hero { padding-bottom: 34px; }
.story-hero h1 { max-width: 1000px; }
.story-week { color: var(--muted); font-size: .88rem; font-weight: 700; letter-spacing: .08em; }
.story-body > p:first-of-type { margin-top: 0; color: var(--brown-deep); font-size: 1.35rem; font-style: italic; font-weight: 700; }
.story-archive { margin-top: 3em; padding-top: 2em; border-top: 1px solid var(--border); }
.story-archive ul { padding: 0; list-style: none; }
.story-archive li { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.story-archive li a { color: var(--brown-deep); font-weight: 700; }
.story-archive li span { color: var(--muted); font-size: .85rem; white-space: nowrap; }
.article-aside { position: sticky; top: 105px; }
.article-aside .note { background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 18px; color: var(--muted); font-size: .9rem; }
.article-aside a { display: block; margin-top: 14px; color: var(--brown-deep); font-weight: 700; text-decoration: none; }

.shop-preview { padding: 44px 0 0; }
.shop-preview-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 48px;
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  background: linear-gradient(135deg, #E5D1BB, var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.shop-preview h2 { max-width: 680px; margin: 0; font-size: clamp(2rem, 5vw, 3.6rem); }
.shop-preview p:not(.eyebrow) { max-width: 700px; color: var(--muted); }
.shop-button, .shop-notice a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 18px;
  background: var(--text);
  color: var(--surface);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.shop-button:hover, .shop-notice a:hover { background: var(--brown-deep); }
.shop-preview-art { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 10px; }
.shop-preview-art span { display: grid; place-items: center; aspect-ratio: 1; border: 1px solid var(--brown-light); border-radius: 50%; background: rgba(255,249,240,.74); color: var(--brown-deep); font-family: 'Noto Serif', Georgia, serif; font-size: clamp(1.5rem, 4vw, 3.1rem); }
.shop-preview-art span:nth-child(2) { transform: translateY(-22px); }

.shop-hero { padding: 86px 0 54px; background: radial-gradient(circle at 85% 15%, rgba(201,159,120,.3), transparent 34%); }
.shop-hero h1 { max-width: 900px; margin: 0; font-size: clamp(3rem, 8vw, 6rem); }
.shop-hero p:not(.eyebrow) { max-width: 760px; margin: 24px 0 0; color: var(--muted); font-size: 1.18rem; }
.shop-notice { display: flex; justify-content: space-between; align-items: center; gap: 34px; margin-bottom: 44px; padding: 24px 28px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); }
.shop-notice strong { font-family: 'Noto Serif', Georgia, serif; font-size: 1.35rem; }
.shop-notice p { max-width: 800px; margin: 6px 0 0; color: var(--muted); }
.shop-notice a { flex: 0 0 auto; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; padding-bottom: 92px; }
.product-card { overflow: hidden; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.product-art { position: relative; display: grid; place-items: center; min-height: 230px; background: radial-gradient(circle, rgba(255,249,240,.82) 0 29%, transparent 30%), linear-gradient(145deg, var(--surface-2), var(--brown-light)); }
.product-art::before, .product-art::after { content: ''; position: absolute; width: 56%; aspect-ratio: 1; border: 1px solid rgba(63,45,36,.15); border-radius: 50%; }
.product-art::after { width: 72%; }
.product-art span { position: relative; z-index: 1; color: var(--text); font-family: 'Noto Serif', Georgia, serif; font-size: 5rem; text-shadow: 0 2px 0 rgba(255,255,255,.35); }
.product-copy { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.product-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--brown-deep); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.product-copy h2 { margin: 14px 0 8px; font-size: 1.55rem; }
.product-copy > p { margin: 0; color: var(--muted); }
.product-format { margin-top: 18px !important; font-size: .84rem; }
.product-status { display: inline-flex; width: fit-content; margin-top: auto; padding-top: 24px; color: var(--brown-deep); font-weight: 700; }
.product-card[data-kind="mug"] .product-art { background: radial-gradient(circle, rgba(255,249,240,.86) 0 29%, transparent 30%), linear-gradient(145deg, #DCC6AE, #A97652); }
.product-card[data-kind="poster"] .product-art, .product-card[data-kind="wallpaper"] .product-art { background: radial-gradient(circle, rgba(255,249,240,.78) 0 29%, transparent 30%), linear-gradient(145deg, #C99F78, #6E4B3A); }
.product-card[data-kind="game"] .product-art, .product-card[data-kind="bundle"] .product-art { background: radial-gradient(circle, rgba(255,249,240,.8) 0 29%, transparent 30%), linear-gradient(145deg, #E5D1BB, #8B5E3C); }

/* --- Shop: κουμπιά Payhip --- */
.shop-secure { margin: 18px 0 0; color: var(--brown-deep); font-weight: 600; font-size: .92rem; }
.shop-hero .shop-button { margin-top: 22px; }
.product-buy-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 22px; }
.product-price { font-family: 'Noto Serif', Georgia, serif; font-size: 1.3rem; font-weight: 700; color: var(--brown-deep); }
.product-buy { display: inline-flex; align-items: center; min-height: 44px; padding: 10px 20px; border-radius: 999px; background: var(--brown-deep); color: var(--surface); font-weight: 700; text-decoration: none; border: none; cursor: pointer; }
.product-buy:hover { background: var(--text); }
.product-buy.is-soon { align-self: flex-start; margin-top: auto; background: var(--surface-2); color: var(--brown-deep); cursor: default; }
.product-buy-row .product-buy { min-width: 0; }

/* --- Φόρμα επικοινωνίας --- */
.info-page .lead { font-size: 1.15rem; color: var(--brown-deep); margin-top: 0; }
.contact-form { display: grid; gap: 18px; margin: 30px 0 10px; }
.contact-form .hp { display: none !important; }
.form-row { display: grid; gap: 7px; }
.form-row label { font-weight: 600; font-size: .92rem; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea { width: 100%; padding: 13px 15px; font: inherit; color: var(--text); background: var(--bg); border: 1px solid var(--border); border-radius: 12px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brown-deep); box-shadow: 0 0 0 3px rgba(139,94,60,.16); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--muted); }
.form-check input { margin-top: 4px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--brown-deep); }
.form-check a, .form-alt a { color: var(--brown-deep); font-weight: 600; }
.contact-form button { justify-self: start; min-height: 48px; padding: 12px 28px; font: inherit; font-weight: 700; color: var(--surface); background: var(--text); border: none; border-radius: 999px; cursor: pointer; }
.contact-form button:hover { background: var(--brown-deep); }
.form-alt { color: var(--muted); font-size: .92rem; }
.form-sent { margin-top: 14px; padding: 14px 18px; background: #E4EFE0; border: 1px solid #C4DCBE; border-radius: 12px; color: #2F5D2A; font-weight: 600; }

.info-page { max-width: 820px; margin: 70px auto 100px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(28px, 6vw, 68px); box-shadow: var(--shadow); }
.info-page h1 { font-size: clamp(2.5rem, 7vw, 4.4rem); margin-top: 0; }
.info-page h2 { margin-top: 2em; }

.site-footer { background: #E5D1BB; border-top: 1px solid var(--border); padding: 50px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; align-content: start; justify-content: end; }
.footer-links a { font-size: .9rem; }
.footer-note { color: var(--muted); max-width: 620px; font-size: .9rem; }

@media (max-width: 820px) {
  .nav-links a:not(.language-switch):not(.shop-nav) { display: none; }
  .nav-links { gap: 9px; }
  .hero { padding-top: 70px; }
  .category-grid, .article-grid, .product-grid { grid-template-columns: 1fr; }
  .story-feature { grid-template-columns: 1fr; }
  .story-seal { display: none; }
  .shop-preview-inner { grid-template-columns: 1fr; }
  .shop-preview-art { max-width: 320px; margin: 12px auto 0; }
  .shop-notice { align-items: flex-start; flex-direction: column; }
  .product-art { min-height: 200px; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 12px; }
  .article-shell { grid-template-columns: 1fr; gap: 24px; }
  .article-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
}

/* --- Article & hero imagery --- */
.article-card .article-body-copy { display: flex; flex: 1; flex-direction: column; }
.article-card.has-media { padding: 0; overflow: hidden; }
.article-card.has-media .article-body-copy { padding: 26px 28px 30px; }
.card-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.article-card.has-media:hover .card-media img { transform: scale(1.045); }

.article-media-wrap { margin-top: 4px; }
.article-hero-media { margin: 0 0 4px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--surface-2); }
.article-hero-media img { display: block; width: 100%; height: clamp(230px, 42vw, 460px); object-fit: cover; }

.home-hero-media { margin: 40px 0 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--surface-2); }
.home-hero-media img { display: block; width: 100%; height: clamp(240px, 44vw, 500px); object-fit: cover; }

.card-media, .article-hero-media, .home-hero-media { position: relative; }
.ai-badge { position: absolute; top: 10px; right: 10px; z-index: 2; padding: 3px 9px; border-radius: 999px; background: rgba(63,45,36,.72); color: #FFF9F0; font-family: Inter, Arial, sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.card-media .ai-badge { top: 8px; right: 8px; font-size: .56rem; padding: 2px 7px; }
.ai-note { margin: 8px 2px 0; color: var(--muted); font-size: .72rem; font-style: italic; }

@media (max-width: 820px) {
  .article-hero-media img { height: clamp(190px, 52vw, 320px); }
  .home-hero-media { margin-top: 30px; }
  .home-hero-media img { height: clamp(200px, 56vw, 340px); }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } }
