/* DVS Company — shared stylesheet */

:root {
  /* Palette */
  --navy: #0E2A4A;
  --navy-deep: #081A30;
  --navy-soft: #1B3A60;
  --gold: #C9A85C;
  --gold-deep: #A88842;
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --gray-soft: #F2F2F0;
  --gray-line: #E4E4DF;
  --gray-mute: #8A8A85;
  --ink: #1A1A1A;
  --ink-soft: #3A3A37;

  /* Type */
  --font-heading: "Inter Tight", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter Tight", "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --max: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(14, 42, 74, 0.04), 0 2px 8px rgba(14, 42, 74, 0.04);
  --shadow-md: 0 6px 24px rgba(14, 42, 74, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(34px, 4.6vw, 56px); letter-spacing: -0.02em; font-weight: 500; }
h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 500; }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }

p { margin: 0 0 1em; max-width: 68ch; text-wrap: pretty; }

::selection { background: var(--gold); color: var(--navy); }

/* Focus */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-sm { padding: clamp(40px, 6vw, 72px) 0; }
.section-tight { padding: clamp(28px, 4vw, 48px) 0; }

.eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 64ch;
}

.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 0 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--gray-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: var(--font-heading);
}
.brand-mark {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--navy);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--gold);
}
.brand-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
.brand-name span { color: var(--gold-deep); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
}
.nav a.active { color: var(--navy); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
}
.nav a:hover { color: var(--navy); }

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--gray-line);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  padding: 6px 12px;
  color: var(--gray-mute);
  cursor: not-allowed;
  font: inherit;
  letter-spacing: inherit;
}
.lang-toggle button.on {
  background: var(--navy);
  color: var(--bg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: var(--bg);
}
.btn-navy:hover { background: var(--navy-deep); color: var(--bg); }
.btn-ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--bg); }
.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--bg);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: var(--bg); }

.btn .arrow {
  display: inline-block;
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
  transition: transform .2s ease;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { transform: translateX(3px); }

/* Burger (mobile) */
.burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--gray-line);
  background: transparent;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 9px; right: 9px;
  height: 1.5px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 25px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 600px at 110% -10%, rgba(201, 168, 92, 0.10), transparent 60%),
    radial-gradient(800px 600px at -10% 110%, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  padding: clamp(72px, 11vw, 140px) 0 clamp(72px, 10vw, 120px);
}
.hero-grid > div { max-width: 880px; }
.hero h1 { color: var(--bg); }
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 400; }
.hero .lede { color: rgba(250,250,247,0.78); }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 540px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-meta .num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.hero-meta .lbl {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.6);
  margin-top: 4px;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,92,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.hero-card .pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-card .pillar:last-child { border-bottom: 0; }
.hero-card .pillar:first-child { padding-top: 0; }
.hero-card .pidx {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  width: 28px;
  flex-shrink: 0;
  padding-top: 4px;
}
.hero-card .ptxt h4 {
  color: var(--bg);
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}
.hero-card .ptxt p {
  color: rgba(250,250,247,0.65);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.55;
}

/* ---------- Pillar cards ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.pillar-card .pnum {
  font-family: var(--font-heading);
  color: var(--gold-deep);
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.pillar-card h3 { margin: 0; color: var(--navy); }
.pillar-card .desc { color: var(--ink-soft); font-size: 15px; margin: 0; }
.pillar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.pillar-card ul li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.pillar-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 1px;
  background: var(--gold);
}
.pillar-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.pillar-card:hover .more { color: var(--gold-deep); }

/* ---------- Why DVS ---------- */
.why {
  background: var(--surface);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.why-point h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}
.why-point p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.why-point .ico {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--gold-deep);
}

/* ---------- Service grid (category & sub) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-line);
  border-left: 1px solid var(--gray-line);
}
.service-cell {
  padding: 36px;
  border-right: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: background .2s ease;
  position: relative;
}
.service-cell:hover { background: #FFFDF8; }
.service-cell .num {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  font-weight: 600;
}
.service-cell h3 {
  margin: 0;
  font-size: 22px;
  color: var(--navy);
}
.service-cell p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.service-cell .more {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}
.service-cell:hover .more { color: var(--gold-deep); }

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--gray-soft);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.testimonial blockquote {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 400;
}
.testimonial .who {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-line);
}
.testimonial .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-soft);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
}
.testimonial .who-name { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.testimonial .who-sub { font-size: 12px; color: var(--gray-mute); }

/* ---------- Contact band ---------- */
.contact-band {
  background: var(--navy);
  color: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact-band .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 96px);
  align-items: center;
}
.contact-band h2 { color: var(--bg); }
.contact-band h2 .accent { color: var(--gold); font-style: italic; font-weight: 400; }
.contact-band .lede { color: rgba(250,250,247,0.75); }
.contact-info {
  display: grid;
  gap: 18px;
  font-family: var(--font-heading);
}
.contact-info .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
}
.contact-info .row:last-child { border: 0; }
.contact-info .lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding-top: 4px;
}
.contact-info .val { color: var(--bg); }

.map-placeholder {
  background: linear-gradient(135deg, #14365a, #0a1f3d);
  border: 1px solid rgba(201,168,92,0.25);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  color: rgba(250,250,247,0.45);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,92,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,92,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-placeholder .pin {
  position: relative;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(201,168,92,0.15), 0 0 0 14px rgba(201,168,92,0.08);
}
.map-placeholder .pin::after {
  content: "Πελασγών 10";
  position: absolute;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  color: var(--bg);
  letter-spacing: 0.1em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250,250,247,0.75);
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 56px;
}
.footer-top h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 600;
}
.footer-top ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-top a { color: rgba(250,250,247,0.75); }
.footer-top a:hover { color: var(--gold); }
.footer-brand .brand-mark {
  border-color: rgba(250,250,247,0.4);
  color: var(--bg);
}
.footer-brand .brand-name { color: var(--bg); }
.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(250,250,247,0.65);
  max-width: 34ch;
}
.footer-nap {
  font-style: normal;
  font-size: 14px;
  color: rgba(250,250,247,0.75);
  line-height: 1.7;
}
.footer-nap strong { color: var(--bg); font-weight: 600; display: block; margin-bottom: 6px; font-family: var(--font-heading); letter-spacing: 0.02em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(250,250,247,0.5);
  font-family: var(--font-heading);
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(250,250,247,0.6); }

.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(250,250,247,0.6);
  transition: border-color .2s ease, color .2s ease;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Page intro (interior) ---------- */
.page-intro {
  background: var(--navy);
  color: var(--bg);
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 90% -20%, rgba(201,168,92,0.12), transparent 60%);
}
.page-intro .wrap { position: relative; }
.page-intro h1 { color: var(--bg); max-width: 16ch; }
.page-intro h1 .accent { color: var(--gold); font-style: italic; font-weight: 400; }
.page-intro .eyebrow { color: var(--gold); }
.page-intro .eyebrow::before { background: var(--gold); }
.page-intro .lede { color: rgba(250,250,247,0.78); max-width: 60ch; margin-top: 24px; }

.breadcrumbs {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.55);
  margin-bottom: 28px;
}
.breadcrumbs a { color: rgba(250,250,247,0.7); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 10px; color: rgba(250,250,247,0.3); }

/* ---------- Two-col content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.two-col .side {
  position: sticky;
  top: 96px;
  font-family: var(--font-heading);
}
.two-col .side h5 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 16px;
  font-weight: 600;
}
.two-col .side ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.two-col .side ul a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--gray-line);
}
.two-col .side ul a:hover { color: var(--navy); }
.two-col .side ul a.active { color: var(--navy); font-weight: 600; }

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--gray-line);
}
.process-step {
  padding: 32px 28px;
  border-right: 1px solid var(--gray-line);
  position: relative;
  counter-increment: step;
}
.process-step:last-child { border-right: 0; }
.process-step::before {
  content: "0" counter(step);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 18px;
}
.process-step h4 { margin: 0 0 8px; font-size: 16px; color: var(--navy); }
.process-step p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--gray-line);
}
.faq-item {
  border-bottom: 1px solid var(--gray-line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  transition: background .2s ease;
}
.faq-item .toggle::before,
.faq-item .toggle::after {
  content: "";
  position: absolute;
  background: var(--gold-deep);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item .toggle::before { width: 12px; height: 1.5px; }
.faq-item .toggle::after { width: 1.5px; height: 12px; transition: transform .2s ease; }
.faq-item[open] .toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item[open] .toggle { background: var(--gold); }
.faq-item[open] .toggle::before { background: var(--navy); }
.faq-item .answer {
  padding: 0 60px 24px 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}
.faq-item .answer p { margin: 0; }

/* ---------- Placeholder image ---------- */
.ph {
  background: var(--gray-soft);
  border: 1px dashed var(--gray-line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--gray-mute);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gray-line);
  pointer-events: none;
}
.ph .label {
  position: relative;
  z-index: 1;
  max-width: 22ch;
  text-wrap: balance;
  color: var(--gray-mute);
  line-height: 1.6;
}
.ph.dark {
  background: var(--navy-soft);
  border-color: rgba(255,255,255,0.18);
  color: rgba(250,250,247,0.5);
}
.ph.dark::before { border-color: rgba(255,255,255,0.12); }
.ph.dark .label { color: rgba(250,250,247,0.55); }
.ph.tall { aspect-ratio: 3/4; }
.ph.wide { aspect-ratio: 16/9; }
.ph.square { aspect-ratio: 1/1; }

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  font: inherit;
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1px solid var(--gray-line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 15px;
  transition: border-color .2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--navy);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- Featured strip ---------- */
.strip {
  background: var(--surface);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  padding: 22px 0;
}
.strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.strip .label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mute);
}
.strip .items {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}
.strip .items span { display: inline-flex; align-items: center; gap: 10px; }
.strip .items span::before {
  content: ""; width: 4px; height: 4px; background: var(--gold);
  border-radius: 50%;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-points { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-band .wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col .side { position: static; }
  .process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step { border-bottom: 1px solid var(--gray-line); }
}

/* Collapse nav early enough that the gold CTA is never clipped */
@media (max-width: 1080px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px var(--pad-x);
    border-bottom: 1px solid var(--gray-line);
    align-items: flex-start;
    gap: 18px;
    box-shadow: var(--shadow-md);
  }
  .burger { display: block; }
}

@media (max-width: 820px) {
  .lang-toggle { display: none; }
}

@media (max-width: 720px) {
  .service-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-points { grid-template-columns: 1fr; }
  .strip-inner { justify-content: flex-start; }
}

@media (max-width: 480px) {
  /* Hide the "Επικοινωνία" CTA label on phones; keep arrow as a glyph button */
  .header-right .btn-gold {
    padding: 10px 14px;
    font-size: 13px;
  }
}
