:root {
  --bg: #f5f3ef;
  --bg-muted: #faf7f2;
  --fg: #1f1c18;
  --accent: #927b5c;
  --accent-soft: rgba(146, 123, 92, 0.12);
  --border-soft: rgba(0, 0, 0, 0.06);
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(15, 10, 5, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "San Francisco",
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

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

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 239, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-family: "Times New Roman", "Georgia", serif;
  letter-spacing: 0.3em;
  font-size: 14px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  padding: 4px 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Parallax πάνω — ίδια μέθοδος με landmap */
.hero-parallax-bg {
  width: 100%;
  min-height: 500px;
  background-image: url('images/1.jpeg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
}

.hero {
  padding: 64px 0 36px;
}

.hero-inner {
  display: flex;
  gap: 36px;
}

.hero-text {
  max-width: 640px;
}

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

.hero-media-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(145deg, #fffdf9, #f1e7d7);
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  max-width: 280px;
  object-fit: cover;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(32px, 4vw, 44px);
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 18px;
}

.hero-subtitle {
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.9;
}

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

.hero-note {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease, transform 0.1s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fdfbf7;
  box-shadow: 0 16px 30px rgba(23, 16, 8, 0.18);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(23, 16, 8, 0.22);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.18);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.7);
}

.btn.outline {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.18);
}

.btn.outline:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.btn.full-width {
  width: 100%;
}

.section {
  padding: 40px 0;
}

.section-muted {
  background: var(--bg-muted);
}

.section-heading {
  margin-bottom: 24px;
  max-width: 640px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading p {
  margin: 0;
  opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
  box-shadow: 0 12px 30px rgba(20, 14, 8, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.card h3 {
  margin-bottom: 6px;
  font-size: 15px;
}

.card p {
  margin: 0;
  font-size: 14px;
}

.sample {
  padding: 16px 18px 18px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.75);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: center;
}

.sample-text p {
  margin-bottom: 0;
}

.sample-simple {
  display: block;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.sample-simple .sample-text {
  margin-bottom: 0;
}

.sample-simple .sample-text p {
  margin-top: 8px;
  font-size: 15px;
  opacity: 0.88;
}

.sample-btn {
  display: inline-block;
  margin-top: 28px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fdfbf7;
}

.sample-btn:hover {
  background: #7d6a4f;
  border-color: #7d6a4f;
  color: #fdfbf7;
}

/* Parallax μέση σελίδας — ίδια μέθοδος με landmap */
.mid-parallax-bg {
  width: 100%;
  min-height: 500px;
  background-image: url('images/1.jpeg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
}

@media (max-width: 768px) {
  .mid-parallax-bg {
    background-attachment: scroll;
    min-height: 400px;
    margin: 0;
  }
}

/* Διακοσμητική ενότητα στη μέση */
.page-deco {
  padding: 32px 0;
}

.deco-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}

.deco-images.deco-single {
  grid-template-columns: 1fr;
  max-width: 300px;
  width: 100%;
}

.page-deco .deco-img-wrap {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.deco-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 28px rgba(18, 12, 6, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.page-deco .deco-img-wrap img {
  width: 100%;
  height: 100%;
  max-width: 300px;
  object-fit: cover;
  display: block;
}

.deco-img-wrap img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.sample-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sample-page {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(18, 12, 6, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: #fdfbf7;
}

.sample-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.step h3 {
  margin-bottom: 4px;
  font-size: 15px;
}

.step p {
  margin: 0;
  font-size: 14px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.plan-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(16, 10, 5, 0.06);
}

.plan-price {
  font-weight: 500;
  margin: 6px 0 4px;
}

.plan-note {
  margin: 0 0 12px;
  font-size: 13px;
  opacity: 0.85;
}

.payment-note {
  margin-top: 18px;
  font-size: 13px;
  opacity: 0.8;
}

.payment-note .email-link {
  white-space: nowrap;
}

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

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
}

.reasons {
  padding-left: 18px;
  margin: 0 0 18px;
}

.reasons li {
  margin-bottom: 8px;
}

.quote {
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 14px;
  box-shadow: 0 14px 30px rgba(18, 12, 6, 0.06);
  font-size: 14px;
}

.testimonial p {
  margin: 0;
}

.testimonial .author {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.7;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.8);
}

.faq-item h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.faq-item p {
  margin: 0;
  font-size: 14px;
}

.site-footer {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(245, 243, 239, 0.95);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  font-size: 13px;
}

.footer-subtitle {
  margin: 4px 0 0;
  opacity: 0.8;
}

.footer-meta {
  text-align: right;
}

.footer-credit {
  margin: 4px 0 0;
  opacity: 0.7;
  font-size: 12px;
}

@media (min-width: 880px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-media-frame {
    max-width: 280px;
  }

  .sample-gallery {
    max-width: 520px;
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .hero-parallax-bg {
    background-attachment: scroll;
    min-height: 400px;
    margin: 0;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-inner {
    flex-direction: column;
  }

  .sample {
    grid-template-columns: 1fr;
  }

  .sample-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

