/* ============================================================
   vasilikigoulapsy.gr — Design System
   Organic & Earthy · Warm · Premium · Editorial
   ============================================================ */

:root {
  /* Color tokens */
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --surface-alt: #F2EFEB;
  --primary: #4A5D4E;
  --primary-hover: #5C7361;
  --secondary: #D4A373;
  --secondary-hover: #E0B68C;
  --text: #2B362D;
  --text-soft: #5C6B5E;
  --border: #E6E2D8;
  --sage: #A8BCA1;
  --error: #B06A6A;
  --viber: #7360F2;

  /* Typography */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow-sm: 0 2px 10px rgba(43, 54, 45, 0.05);
  --shadow: 0 18px 50px -20px rgba(43, 54, 45, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--sage); color: var(--text); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; color: var(--text); line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.15; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-soft); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--text-soft); line-height: 1.7; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--secondary); display: inline-block; }
.eyebrow.center { justify-content: center; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.bg-alt { background: var(--surface-alt); }
.bg-primary { background: var(--primary); color: #fff; }
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4 { color: #fff; }
.bg-primary p { color: rgba(255,255,255,0.82); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.narrow { max-width: 720px; }
.measure { max-width: 600px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.9rem; border-radius: 999px; font-weight: 500; font-size: 0.98rem;
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s;
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--surface-alt); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); transform: translateY(-3px); }
.btn-ghost { background: transparent; color: var(--primary); padding: 0.6rem 0; }
.btn-ghost:hover { color: var(--primary-hover); gap: 0.85rem; }
.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-viber { background: var(--viber); color: #fff; }
.btn-viber:hover { background: #5e4dd6; transform: translateY(-3px); box-shadow: 0 18px 40px -18px rgba(115,96,242,0.6); }
.btn-block { width: 100%; }

.arrow-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 500; transition: gap 0.3s var(--ease), color 0.3s; }
.arrow-link:hover { gap: 0.85rem; color: var(--primary-hover); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 60;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: rgba(250, 248, 245, 0.78);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled { border-color: var(--border); box-shadow: 0 4px 24px -16px rgba(43,54,45,0.3); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; color: var(--text); }
.brand .mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand small { display: block; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft); font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text-soft); font-weight: 500; font-size: 0.92rem; transition: color 0.25s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after { content:""; position:absolute; left:0; bottom:-6px; width:100%; height:2px; background:var(--secondary); border-radius:2px; }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.5rem; min-width: 220px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: all 0.25s var(--ease); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 0.7rem 0.9rem; border-radius: 10px; font-size: 0.9rem; }
.dropdown a:hover { background: var(--surface-alt); color: var(--primary); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.menu-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity: 0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu { position: fixed; inset: 0; z-index: 55; background: var(--bg); padding: 100px 1.5rem 2rem; transform: translateX(100%); transition: transform 0.4s var(--ease); overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; font-family: var(--font-head); font-size: 1.6rem; padding: 0.7rem 0; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu .sub a { font-family: var(--font-body); font-size: 1.05rem; padding-left: 1rem; color: var(--text-soft); border: none; }
.mobile-menu .btn { margin-top: 1.5rem; }

/* ---------- Hero ---------- */
.hero { padding-top: 130px; padding-bottom: clamp(3rem,7vw,5rem); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.hero h1 { margin-bottom: 1.4rem; }
.hero .lead { margin-bottom: 2.2rem; max-width: 520px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-rating { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 2.2rem; font-size: 0.9rem; color: var(--text-soft); }
.hero-portrait { position: relative; }
.hero-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 260px 260px 28px 28px; box-shadow: var(--shadow); }
.hero-portrait .leaf-deco { position: absolute; bottom: -18px; left: -18px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 0.9rem 1.2rem; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 0.7rem; }
.hero-portrait .leaf-deco strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--primary); }

/* ---------- Trust strip ---------- */
.trust { background: var(--surface-alt); }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.5rem; padding: 1.6rem 0; }
.trust-row span { font-size: 0.9rem; color: var(--text-soft); font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-row .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--secondary); }
.trust-row .star { color: var(--secondary); }

/* ---------- Stars ---------- */
.stars { display: inline-flex; gap: 2px; color: var(--secondary); }
.stars svg { width: 18px; height: 18px; fill: var(--secondary); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.cards-flex > * { flex: 1 1 300px; max-width: 370px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.2rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); height: 100%; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .icon { width: 56px; height: 56px; border-radius: 16px; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; color: var(--primary); }
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.7rem; }
.card p { margin-bottom: 1.4rem; flex-grow: 1; }

/* feature pill list */
.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill-list li { background: var(--surface-alt); border: 1px solid var(--border); border-radius: 999px; padding: 0.45rem 1rem; font-size: 0.85rem; color: var(--text-soft); }

.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.9rem; color: var(--text-soft); }
.check-list svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ---------- Office gallery (editorial) ---------- */
.gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 1.2rem; }
.gallery figure { overflow: hidden; border-radius: var(--radius); margin: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery .big { grid-row: 1 / span 2; min-height: 460px; }

/* Masonry gallery (multiple photos) */
.masonry { column-count: 3; column-gap: 1.2rem; }
.masonry figure { margin: 0 0 1.2rem; overflow: hidden; border-radius: var(--radius); break-inside: avoid; }
.masonry img { width: 100%; height: auto; display: block; transition: transform 0.7s var(--ease); }
.masonry figure:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.1rem; display: flex; flex-direction: column; height: 100%; }
.testimonial .quote { font-family: var(--font-head); font-size: 1.18rem; line-height: 1.5; color: var(--text); margin: 1rem 0 1.4rem; flex-grow: 1; }
.testimonial .who { display: flex; align-items: center; gap: 0.75rem; }
.testimonial .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--sage); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-family: var(--font-head); font-size: 1.1rem; }
.testimonial .who b { display: block; font-size: 0.95rem; color: var(--text); font-weight: 600; }
.testimonial .who span { font-size: 0.78rem; color: var(--text-soft); display: inline-flex; align-items: center; gap: 0.3rem; }

/* ---------- Hours table ---------- */
.hours { width: 100%; border-collapse: collapse; }
.hours tr { border-bottom: 1px solid var(--border); }
.hours td { padding: 0.85rem 0; font-size: 0.95rem; }
.hours td:first-child { font-weight: 500; color: var(--text); }
.hours td:last-child { text-align: right; color: var(--text-soft); }
.hours tr.closed td:last-child { color: var(--error); }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 0.9rem 1.1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); font-family: var(--font-body); font-size: 0.98rem; color: var(--text); transition: border-color 0.25s, box-shadow 0.25s; }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(74,93,78,0.12); }
textarea.form-control { resize: vertical; min-height: 130px; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.85rem; color: var(--text-soft); }
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--primary); flex-shrink: 0; }
.consent a { color: var(--primary); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-size: 0.92rem; display: none; }
.form-status.show { display: block; }
.form-status.success { background: #E8EFE7; color: var(--primary); border: 1px solid var(--sage); }
.form-status.error { background: #F6E9E9; color: var(--error); border: 1px solid var(--error); }

/* ---------- Contact info blocks ---------- */
.info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.info-item .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h4 { font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-soft); margin-bottom: 0.25rem; font-weight: 600; }
.info-item p, .info-item a { color: var(--text); font-size: 1.02rem; }
.info-item a:hover { color: var(--primary); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 100%; min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Viber notice ---------- */
.viber-note { display: flex; gap: 0.8rem; align-items: center; background: rgba(115,96,242,0.08); border: 1px solid rgba(115,96,242,0.25); border-radius: var(--radius-sm); padding: 1rem 1.2rem; color: var(--text); font-size: 0.92rem; }
.viber-note svg { color: var(--viber); width: 24px; height: 24px; flex-shrink: 0; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; bottom: 1.1rem; left: 50%; transform: translateX(-50%) translateY(120%); z-index: 50; display: flex; gap: 0.6rem; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 999px; padding: 0.4rem; box-shadow: var(--shadow); transition: transform 0.4s var(--ease); }
.sticky-cta.show { transform: translateX(-50%) translateY(0); }
.sticky-cta .btn { padding: 0.7rem 1.3rem; font-size: 0.9rem; }

/* ---------- Footer ---------- */
.footer { background: var(--primary); color: rgba(255,255,255,0.8); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer .brand { color: #fff; }
.footer .brand small { color: rgba(255,255,255,0.6); }
.footer-tagline { margin-top: 1.2rem; max-width: 380px; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.1rem; font-weight: 600; }
.footer-cols a, .footer-cols li { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 2.1; transition: color 0.25s; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.55); flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; max-width: 460px; z-index: 70; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow); transform: translateY(150%); transition: transform 0.5s var(--ease); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.88rem; margin-bottom: 1rem; }
.cookie-banner .actions { display: flex; gap: 0.7rem; }
.cookie-banner .btn { padding: 0.65rem 1.3rem; font-size: 0.88rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 140px 0 clamp(2.5rem,5vw,4rem); }
.page-hero .breadcrumb { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 1rem; }
.page-hero .breadcrumb a:hover { color: var(--primary); }

/* ---------- FAQ / accordion ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 0; text-align: left; font-family: var(--font-head); font-size: 1.2rem; color: var(--text); }
.faq-q svg { width: 22px; height: 22px; color: var(--primary); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding-bottom: 1.4rem; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; }
.step { display: flex; gap: 1.3rem; padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.step .num { counter-increment: step; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.2rem; color: var(--primary); flex-shrink: 0; }
.step .num::before { content: counter(step); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.flex { display: flex; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .items-center { align-items: center; } .wrap { flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 420px; margin: 0 auto; order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4, .split { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery .big { grid-row: auto; min-height: 300px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
