/* =====================================================================
   Salon theme — main.css
   Mobile-first. Παλέτα: ζεστό σκούρο + χρυσό + ιβουάρ, με ανοιχτές «χάρτινες» ενότητες.
   Κανόνες για Elementor: τα element resets είναι σε :where() (specificity 0), όλα τα
   components έχουν δικές τους κλάσεις — τα widgets του Elementor δεν επηρεάζονται.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-bg: #141210;
  --c-surface: #1e1b18;
  --c-surface-2: #27231f;
  --c-ink: #f4efe6;
  --c-muted: #b8ae9f;
  --c-gold: #c8a45d;
  --c-gold-hover: #dcbb74;
  --c-gold-dark: #7a5f26; /* ≥ 4.9:1 σε paper/paper-2 (WCAG AA για μικρό κείμενο) */
  --c-paper: #f7f3ec;
  --c-paper-2: #efe8dc;
  --c-ink-dark: #1e1b18;
  --c-muted-dark: #625a4f;
  --c-line: rgba(244, 239, 230, .14);
  --c-line-dark: rgba(30, 27, 24, .14);
  --c-ok: #8fd18f;
  --c-ok-dark: #2e7d32;
  --c-error: #e78b78;
  --c-error-dark: #b3261e;

  --font-serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-body: 1rem;
  --fs-small: .875rem;
  --fs-eyebrow: .78rem;
  --fs-h1: clamp(2.5rem, 5vw + 1.2rem, 4.4rem);
  --fs-h2: clamp(1.9rem, 2.6vw + 1.1rem, 2.9rem);
  --fs-h3: 1.25rem;

  --container: 1160px;
  --container-narrow: 760px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 9vw, 7rem);
  --radius: 14px;
  --radius-sm: 8px;
  --header-h: 68px;
  --sticky-h: 60px;
  --shadow: 0 14px 40px rgba(0, 0, 0, .35);
  --ease: cubic-bezier(.2, .7, .2, 1);
}
@media (min-width: 900px) {
  :root { --fs-body: 1.0625rem; --header-h: 80px; --sticky-h: 0px; }
}

/* ---------- Base (specificity 0) ---------- */
:where(*, *::before, *::after) { box-sizing: border-box; }
:where(html) { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  :where(html) { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
:where(body) {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}
:where(h1, h2, h3, h4) { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; margin: 0 0 .5em; letter-spacing: .005em; }
:where(h1) { font-size: var(--fs-h1); }
:where(h2) { font-size: var(--fs-h2); }
:where(h3) { font-size: var(--fs-h3); font-family: var(--font-sans); font-weight: 600; }
:where(p, ul, ol, figure, table) { margin: 0 0 1.1em; }
:where(a) { color: var(--c-gold); text-decoration-thickness: 1px; text-underline-offset: .18em; transition: color .2s var(--ease); }
:where(a:hover) { color: var(--c-gold-hover); }
:where(img, svg, video) { max-width: 100%; height: auto; display: block; }
:where(button, input, select, textarea) { font: inherit; color: inherit; }
:where(button) { cursor: pointer; }
:where(abbr[title]) { text-decoration: none; }
:where(table) { border-collapse: collapse; }

:focus-visible { outline: 3px solid var(--c-gold); outline-offset: 3px; border-radius: 3px; }
.section--paper :focus-visible, .page-header :focus-visible { outline-color: var(--c-ink-dark); }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
a.skip-link.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 1000; padding: .6rem 1rem; background: var(--c-gold); color: var(--c-ink-dark); border-radius: var(--radius-sm); font-weight: 600; }
.skip-link:focus { top: 1rem; }

.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.site-main { display: block; }
.section { padding-block: var(--section-y); }
.section--flush-top { padding-top: 0; }
.section--dark { background: var(--c-bg); color: var(--c-ink); }
.section--surface { background: var(--c-surface); color: var(--c-ink); }
.section--paper { background: var(--c-paper); color: var(--c-ink-dark); }
.section--paper a:not(.btn):not(.elementor-button) { color: var(--c-gold-dark); text-decoration: underline; }
.section--paper a:not(.btn):not(.elementor-button):hover { color: var(--c-ink-dark); }
.section__heading { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); }
.section__title { margin-bottom: .35em; }
.section__text { color: var(--c-muted); margin: 0; font-size: 1.05em; }
.section--paper .section__text { color: var(--c-muted-dark); }
.section__actions { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; margin: clamp(1.75rem, 4vw, 2.75rem) 0 0; }
.section__actions--left { justify-content: flex-start; }
.eyebrow {
  display: block; font-family: var(--font-sans); font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: .14em; color: var(--c-gold); margin: 0 0 .9rem; /* κεφαλαία μέσω salon_caps() — χωρίς τόνους */
}
.section--paper .eyebrow { color: var(--c-gold-dark); }

/* ---------- Buttons ---------- */
.btn.btn { /* .btn.btn (0,2,0): νικά το .elementor-kit-N button (0,1,1) του kit σε σελίδες Elementor */
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-sans); font-weight: 600; font-size: .95rem; letter-spacing: .01em; line-height: 1.2;
  text-decoration: none; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  min-height: 48px;
}
.btn:hover { transform: translateY(-1px); }
.btn.btn--lg { font-size: 1.02rem; padding: 1em 1.8em; }
.btn.btn--sm { min-height: 40px; padding: .6em 1.1em; font-size: .9rem; }
.btn.btn--primary { background: var(--c-gold); color: var(--c-ink-dark); }
.btn.btn--primary:hover { background: var(--c-gold-hover); color: var(--c-ink-dark); }
.btn.btn--ghost { background: transparent; color: var(--c-ink); border-color: rgba(244, 239, 230, .45); }
.btn.btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold-hover); }
.btn.btn--dark { background: var(--c-ink-dark); color: var(--c-ink); }
.btn.btn--dark:hover { background: #2f2a25; color: var(--c-ink); }
.btn.btn--ghost-dark { background: transparent; color: var(--c-ink-dark); border-color: rgba(30, 27, 24, .35); }
.btn.btn--ghost-dark:hover { border-color: var(--c-ink-dark); color: var(--c-ink-dark); }
.btn .icon { width: 1.1em; height: 1.1em; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--c-line); background: transparent; color: var(--c-ink);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.icon-btn:hover { border-color: var(--c-gold); color: var(--c-gold-hover); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(20, 18, 16, .88); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.site-header .brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--c-ink); }
.brand__logo { max-height: calc(var(--header-h) - 24px); width: auto; }
.brand__text { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; letter-spacing: .01em; line-height: 1; white-space: nowrap; }
.site-header__actions { display: flex; align-items: center; gap: .5rem; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

.site-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 89; padding: 1.5rem var(--gutter) calc(var(--sticky-h) + 2rem);
  background: var(--c-bg); overflow-y: auto; display: none; flex-direction: column; gap: 1.5rem;
}
.admin-bar .site-nav { top: calc(var(--header-h) + 32px); }
@media (max-width: 782px) { .admin-bar .site-nav { top: calc(var(--header-h) + 46px); } }
.nav-open .site-nav { display: flex; }
.nav-open { overflow: hidden; }
.site-nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.site-nav__list li { border-bottom: 1px solid var(--c-line); }
.site-nav .site-nav__list a { display: block; padding: 1rem 0; font-family: var(--font-serif); font-size: 1.6rem; color: var(--c-ink); text-decoration: none; }
.site-nav .site-nav__list a:hover, .site-nav .site-nav__list .current-menu-item > a, .site-nav .site-nav__list .current_page_item > a { color: var(--c-gold); }
.site-nav__cta .btn { width: 100%; }

@media (min-width: 900px) {
  .site-header__phone, .nav-toggle { display: none; }
  .site-nav { position: static; inset: auto; padding: 0; background: transparent; display: flex; flex-direction: row; align-items: center; gap: 2rem; overflow: visible; }
  .site-nav__list { flex-direction: row; gap: 1.75rem; }
  .site-nav__list li { border: 0; }
  .site-nav .site-nav__list a { padding: .5rem 0; font-family: var(--font-sans); font-size: .95rem; font-weight: 600; letter-spacing: .02em; position: relative; }
  .site-nav__list a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--c-gold); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
  .site-nav__list a:hover::after, .site-nav__list .current-menu-item > a::after, .site-nav__list .current_page_item > a::after { transform: scaleX(1); }
  .site-nav__cta .btn { width: auto; min-height: 44px; padding: .7em 1.3em; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; display: flex; align-items: flex-end; min-height: min(82svh, 760px); padding: clamp(4rem, 12vw, 7rem) 0 clamp(3rem, 8vw, 5rem); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 16, .55) 0%, rgba(20, 18, 16, .35) 40%, rgba(20, 18, 16, .92) 100%);
}
.hero:not(.hero--image) { background: radial-gradient(120% 80% at 80% 0%, #2a2520 0%, var(--c-bg) 60%); }
.hero__inner { text-align: center; }
.hero__eyebrow { margin-bottom: 1rem; }
.hero__title { margin: 0 0 1rem; text-wrap: balance; }
.hero__text { font-size: clamp(1.05rem, 1.2vw + .8rem, 1.25rem); color: var(--c-muted); max-width: 40ch; margin: 0 auto 1.75rem; }
.cta-buttons { display: flex; flex-direction: column; gap: .75rem; align-items: stretch; }
.cta-buttons--center { align-items: center; }
.cta-buttons__phone { margin: 1.25rem 0 0; color: var(--c-muted); font-size: var(--fs-small); }
.section--paper .cta-buttons__phone { color: var(--c-muted-dark); }
p.cta-buttons__phone a { color: var(--c-ink); font-weight: 600; text-decoration: underline; }
.section--paper p.cta-buttons__phone a { color: var(--c-ink-dark); }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; flex-wrap: wrap; justify-content: center; } .cta-buttons--left { justify-content: flex-start; } }
@media (min-width: 900px) {
  .hero__inner { text-align: left; }
  .hero__text { margin-left: 0; }
  .hero .cta-buttons { justify-content: flex-start; }
  .hero__title { max-width: 14ch; }
}

/* ---------- Service cards (αρχική) ---------- */
.service-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 900px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  display: flex; flex-direction: column; gap: .6rem; padding: 1.5rem; background: #fff; border: 1px solid var(--c-line-dark); border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(30, 27, 24, .08); }
.service-card__icon { display: inline-flex; width: 48px; height: 48px; border-radius: 50%; background: var(--c-paper-2); color: var(--c-gold-dark); align-items: center; justify-content: center; }
.service-card__icon .icon { width: 24px; height: 24px; }
.service-card__title { margin: .25rem 0 0; font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500; }
.service-card__text { margin: 0; color: var(--c-muted-dark); font-size: var(--fs-small); flex: 1; }
.service-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: .5rem 0 0; padding-top: .8rem; border-top: 1px dashed var(--c-line-dark); }
.service-card__price { font-weight: 700; font-size: 1.05rem; }
.service-card__duration { display: inline-flex; align-items: center; gap: .3em; color: var(--c-muted-dark); font-size: var(--fs-small); }
.is-placeholder { color: var(--c-error-dark); font-family: monospace; font-size: .9em; }
.section--dark .is-placeholder, .section--surface .is-placeholder, .site-footer .is-placeholder, .hero .is-placeholder { color: var(--c-error); }

/* ---------- Why ---------- */
.why-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 2rem; grid-template-columns: 1fr; text-align: center; }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.why-item__icon { display: inline-flex; width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--c-gold); color: var(--c-gold); align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-item__icon .icon { width: 28px; height: 28px; }
.why-item__title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; margin-bottom: .4rem; }
.why-item__text { color: var(--c-muted); margin: 0; max-width: 34ch; margin-inline: auto; }

/* ---------- Reviews ---------- */
.reviews { max-width: 1000px; margin-inline: auto; }
.reviews__placeholder { text-align: center; padding: 2.5rem 1.5rem; border: 1px dashed var(--c-line); border-radius: var(--radius); color: var(--c-muted); }
.reviews__placeholder p { margin-bottom: 1.25rem; }

/* ---------- Gallery ---------- */
.gallery { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: .9rem; } }
.gallery__item { margin: 0; }
.gallery__link { display: block; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius-sm); background: var(--c-surface-2); }
.gallery__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .3s var(--ease); }
.gallery__link:hover .gallery__img { transform: scale(1.04); }
.gallery__empty { text-align: center; color: var(--c-muted); }

/* ---------- Hours + map ---------- */
.hours-map { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .hours-map { grid-template-columns: 1fr 1.25fr; gap: 3.5rem; } }
.hours__status { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1rem; padding: .45rem .9rem .45rem .7rem; border-radius: 999px; background: var(--c-paper-2); font-weight: 600; font-size: var(--fs-small); }
.hours__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c-muted-dark); flex: 0 0 auto; }
.hours__status[data-state="open"] .hours__dot { background: var(--c-ok-dark); box-shadow: 0 0 0 4px rgba(46, 125, 50, .18); }
.hours__status[data-state="closed"] .hours__dot { background: var(--c-error-dark); box-shadow: 0 0 0 4px rgba(179, 38, 30, .15); }
.hours__table { width: 100%; margin: 0; }
.hours__table th, .hours__table td { padding: .55rem .25rem; border-bottom: 1px solid var(--c-line-dark); text-align: left; font-weight: 400; vertical-align: top; }
.hours__table td { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.hours__table tr.is-today th, .hours__table tr.is-today td { font-weight: 700; }
.hours__table tr.is-today th::before { content: "▸ "; color: var(--c-gold-dark); }
.hours__note { margin: 1rem 0 0; font-size: var(--fs-small); color: var(--c-muted-dark); }
.hours--compact .hours__table th, .hours--compact .hours__table td { padding: .3rem 0; border-color: var(--c-line); font-size: var(--fs-small); }
.hours--compact tr.is-today th::before { color: var(--c-gold); }
.contact-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .6rem; }
.contact-list--flush { margin-top: 0; } /* μέσα σε widget Elementor: το κενό το δίνει ο container */
.contact-list li { display: flex; align-items: flex-start; gap: .6rem; }
.contact-list .icon { color: var(--c-gold-dark); margin-top: .15em; }
.contact-list li a { color: inherit; font-weight: 600; text-decoration: underline; }
.contact-list--big { font-size: 1.05rem; }
.contact-list--dark, .contact-list--dark li a { color: var(--c-ink); }
.contact-list--dark .icon { color: var(--c-gold); }

.map { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--c-paper-2); border: 1px solid var(--c-line-dark); min-height: 340px; }
.map__placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1.5rem; gap: .35rem;
  background: repeating-linear-gradient(45deg, transparent 0 14px, rgba(30, 27, 24, .035) 14px 15px); }
.map__icon { width: 36px; height: 36px; color: var(--c-gold-dark); }
.map__address { font-weight: 700; margin: 0; }
.map__consent-text { margin: 0 0 .75rem; color: var(--c-muted-dark); font-size: var(--fs-small); max-width: 42ch; }
.map__actions { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.map__frame { position: absolute; inset: 0; }
.map__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map.is-loaded .map__placeholder { display: none; }
.map.is-loaded .map__frame { display: block; }

/* ---------- CTA band ---------- */
.section--cta { background: var(--c-surface); position: relative; overflow: hidden; }
.section--cta::before { content: ""; position: absolute; inset: -40% -20% auto; height: 120%; background: radial-gradient(50% 50% at 50% 50%, rgba(200, 164, 93, .18) 0%, transparent 70%); pointer-events: none; }
.cta-band { position: relative; text-align: center; max-width: 720px; }
.cta-band__title { margin-bottom: .5rem; }
.cta-band__text { color: var(--c-muted); font-size: 1.1rem; margin-bottom: 1.75rem; }
.cta-band .cta-buttons__phone { margin-top: .9rem; font-size: 1.05rem; }

/* ---------- Page header / entry content ---------- */
.page-header { padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2rem, 5vw, 3.5rem); background: radial-gradient(120% 80% at 80% 0%, #26221e 0%, var(--c-bg) 60%); }
.page-header__title { margin: 0; }
.page-header__intro { margin-top: 1rem; color: var(--c-muted); max-width: 60ch; }
.entry-content > * { max-width: 100%; }
.entry-content h2 { font-size: 1.6rem; margin-top: 2rem; }
.entry-content h3 { font-size: 1.2rem; margin-top: 1.5rem; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content li + li { margin-top: .35em; }
.entry-content table { width: 100%; font-size: var(--fs-small); }
.entry-content th, .entry-content td { padding: .5rem .6rem; border: 1px solid var(--c-line-dark); text-align: left; vertical-align: top; }
.entry-content th { background: var(--c-paper-2); }
.entry-content .has-text-align-center { text-align: center; }
.entry-content .wp-block-image img, .entry-content figure img { border-radius: var(--radius-sm); }
.entry-content blockquote { margin: 1.5em 0; padding-left: 1.2em; border-left: 3px solid var(--c-gold-dark); font-family: var(--font-serif); font-size: 1.15em; }
.page-article--full .entry-content { padding: 0; }

/* ---------- Price list (Υπηρεσίες & Τιμές) ---------- */
.price-group + .price-group { margin-top: clamp(2rem, 5vw, 3.5rem); }
.price-group__title { font-size: clamp(1.6rem, 2vw + 1rem, 2.1rem); padding-bottom: .5rem; border-bottom: 2px solid var(--c-gold-dark); margin-bottom: .25rem; }
.price-group__text { color: var(--c-muted-dark); margin: .5rem 0 .75rem; font-size: var(--fs-small); }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-item { display: flex; gap: 1rem; align-items: baseline; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--c-line-dark); }
.price-item__main { flex: 1 1 auto; min-width: 0; }
.price-item__title { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 600; margin: 0; }
.price-item__text { margin: .2rem 0 0; color: var(--c-muted-dark); font-size: var(--fs-small); max-width: 52ch; }
.price-item__side { display: flex; flex-direction: column; align-items: flex-end; gap: .15rem; flex: 0 0 auto; text-align: right; }
.price-item__price { font-weight: 700; font-size: 1.1rem; white-space: nowrap; }
.price-item__duration { display: inline-flex; align-items: center; gap: .3em; color: var(--c-muted-dark); font-size: var(--fs-small); white-space: nowrap; }
.price-note { margin: 2rem 0 0; padding: 1rem 1.25rem; background: var(--c-paper-2); border-radius: var(--radius-sm); color: var(--c-muted-dark); font-size: var(--fs-small); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; } }
.contact-grid__title { font-size: 1.6rem; margin-bottom: .75rem; }
.contact-grid__info .contact-grid__title + .contact-grid__title, .contact-grid__info .hours { margin-top: 0; }
.contact-grid__info .contact-list { margin-top: 0; }
.contact-grid__cta { margin: 1.5rem 0 2.5rem; }
.contact-grid__hint { color: var(--c-muted-dark); font-size: var(--fs-small); margin-bottom: 1.25rem; }
.social { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; gap: .5rem; }
.social li a { display: inline-flex; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--c-line); align-items: center; justify-content: center; color: var(--c-ink); }
.social li a:hover { border-color: var(--c-gold); color: var(--c-gold-hover); }
.social--dark li a { border-color: var(--c-line-dark); color: var(--c-ink-dark); }
.social--dark li a:hover { border-color: var(--c-gold-dark); color: var(--c-gold-dark); }

/* ---------- Form ---------- */
.form { display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__field { display: grid; gap: .35rem; }
.form__label { font-weight: 600; font-size: var(--fs-small); }
.form__optional { font-weight: 400; color: var(--c-muted-dark); }
.form input[type="text"], .form input[type="tel"], .form input[type="email"], .form textarea {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid rgba(30, 27, 24, .25); border-radius: var(--radius-sm); background: #fff; color: var(--c-ink-dark);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--c-gold-dark); box-shadow: 0 0 0 3px rgba(138, 109, 47, .2); }
.form textarea { resize: vertical; min-height: 140px; }
.form__check { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-small); }
.form__check input { margin-top: .3em; width: 18px; height: 18px; accent-color: var(--c-gold-dark); flex: 0 0 auto; }
.form__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { margin: .25rem 0 0; }
.form__submit .btn { width: 100%; }
@media (min-width: 640px) { .form__submit .btn { width: auto; } }
.form__status { padding: .8rem 1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: var(--fs-small); }
.form__status[data-state="ok"] { background: rgba(46, 125, 50, .12); color: var(--c-ok-dark); }
.form__status[data-state="error"] { background: rgba(179, 38, 30, .1); color: var(--c-error-dark); }
.form.is-sending .btn { opacity: .6; pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-bg); border-top: 1px solid var(--c-line); padding: clamp(3rem, 7vw, 5rem) 0 calc(1.5rem + var(--sticky-h)); color: var(--c-muted); font-size: var(--fs-small); }
.site-footer__grid { display: grid; gap: 2.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .site-footer__grid { grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr; gap: 3rem; } }
.brand__text--footer { color: var(--c-ink); font-size: 1.6rem; margin: 0 0 .35rem; }
.site-footer__tagline { margin: 0 0 .75rem; }
.site-footer__title { font-family: var(--font-sans); font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: .14em; color: var(--c-ink); margin: 0 0 .9rem; }
.site-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.site-footer .site-footer__list a { color: var(--c-ink); text-decoration: none; }
.site-footer .site-footer__list a:hover { color: var(--c-gold); }
.site-footer__contact li { display: flex; gap: .55rem; align-items: flex-start; }
.site-footer__contact .icon { color: var(--c-gold); margin-top: .15em; }
.site-footer__legal { margin-top: clamp(2rem, 5vw, 3.5rem); padding-top: 1.25rem; border-top: 1px solid var(--c-line); display: flex; flex-direction: column; gap: .75rem; }
.site-footer__legal p { margin: 0; }
.site-footer__legal-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.site-footer .site-footer__legal-list a { color: var(--c-muted); }
.site-footer .site-footer__legal-list a:hover { color: var(--c-gold); }
@media (min-width: 900px) { .site-footer__legal { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ---------- Sticky μπάρα κινητού ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: grid; grid-template-columns: 1fr 1fr;
  background: rgba(20, 18, 16, .96); border-top: 1px solid var(--c-line); padding-bottom: env(safe-area-inset-bottom);
  transition: transform .3s var(--ease);
}
.sticky-bar.is-hidden { transform: translateY(110%); }
.sticky-bar .sticky-bar__btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; min-height: var(--sticky-h); font-weight: 700; font-size: .95rem; color: var(--c-ink); text-decoration: none; }
.sticky-bar .sticky-bar__btn--primary { background: var(--c-gold); color: var(--c-ink-dark); }
.sticky-bar .sticky-bar__btn:hover { color: var(--c-gold-hover); }
.sticky-bar .sticky-bar__btn--primary:hover { color: var(--c-ink-dark); background: var(--c-gold-hover); }
@media (min-width: 900px) { .sticky-bar { display: none; } }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 50%; bottom: calc(var(--sticky-h) + 12px); transform: translateX(-50%); z-index: 95; width: min(560px, calc(100% - 2 * var(--gutter)));
  background: var(--c-surface); color: var(--c-ink); border: 1px solid rgba(200, 164, 93, .5); border-radius: var(--radius); box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner { padding: 1.1rem 1.25rem; display: grid; gap: .6rem; }
.cookie-banner__title { margin: 0; font-family: var(--font-serif); font-size: 1.3rem; }
.cookie-banner .cookie-banner__text a { color: var(--c-gold); }
.cookie-banner__text { margin: 0; color: var(--c-muted); font-size: var(--fs-small); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }

/* ---------- Lightbox ---------- */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; color: var(--c-ink); }
.lightbox::backdrop { background: rgba(10, 9, 8, .92); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox__figure { margin: 0; display: grid; gap: .6rem; justify-items: center; max-width: 92vw; }
.lightbox__img { max-width: 92vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox__caption { font-size: var(--fs-small); color: var(--c-muted); text-align: center; min-height: 1.2em; }
.lightbox__close { position: fixed; top: 1rem; right: 1rem; background: rgba(20, 18, 16, .7); }
.lightbox__nav { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(20, 18, 16, .7); }
.lightbox__nav--prev { left: .75rem; }
.lightbox__nav--prev .icon { transform: scaleX(-1); }
.lightbox__nav--next { right: .75rem; }

/* ---------- 404 ---------- */
.error-404 .section__title { margin-top: .25rem; }
.error-404__links { list-style: none; margin: 1.5rem 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.error-404__links a { font-weight: 600; }

/* ---------- Elementor: το θέμα δεν αγγίζει το εσωτερικό των widgets. Αντίστροφα, το kit CSS (.elementor-kit-N a {color})
   έχει specificity (0,1,1) — γι αυτό οι σύνδεσμοι/κουμπιά των components του theme παραπάνω έχουν ≥ (0,2,0). ---------- */
.elementor-page .site-main > .page-article--full { padding: 0; }
/* Βοηθητικές κλάσεις για widgets (Advanced → CSS Classes): ισορροπημένες γραμμές τίτλου όπως το .hero__title */
.u-balance { text-wrap: balance; }
/* Το τελευταίο <p> ενός widget κειμένου χωρίς κάτω margin (από το :where(p) του theme): τα κενά τα ορίζουν τα gaps των containers */
.elementor-widget-text-editor p:last-child { margin-bottom: 0; }
