/* Ελαιοχρωματισμοί Ανακαινίσεις — lean SEO frontend */
:root {
  --brand: #0fafa7;
  --brand-light: #44d3d1;
  --brand-dark: #0a8a84;
  --ink: #1a2332;
  --muted: #5b6575;
  --surface: #f4fbfb;
  --white: #ffffff;
  --line: rgba(15, 175, 167, 0.16);
  --shadow: 0 18px 40px rgba(15, 80, 78, 0.12);
  --radius: 1.25rem;
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Sora", "Manrope", sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(68, 211, 209, 0.22), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(15, 175, 167, 0.14), transparent 50%),
    linear-gradient(180deg, #f7fcfc 0%, #ffffff 40%, #f3faf9 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-decoration: none; transition: color .3s ease, opacity .3s ease; }
a:hover { color: var(--brand); }
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 .75rem;
}
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0 0 1rem; padding-left: 1.2rem; color: var(--muted); }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.section { padding: 4.5rem 0; }
.section--tight { padding: 3rem 0; }
.muted { color: var(--muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.5rem;
}
.brand {
  display: flex; align-items: center; gap: .75rem;
  color: var(--ink); font-weight: 700; font-family: var(--display);
}
.brand img {
  width: auto; height: 48px; max-width: 180px; object-fit: contain;
}
.nav { display: flex; align-items: center; gap: 1.1rem; }
.nav > a,
.nav-item > a {
  color: var(--ink); font-size: .95rem; font-weight: 600;
  transition: color .3s ease;
}
.nav > a:hover, .nav > a.is-active,
.nav-item > a:hover, .nav-item > a.is-active,
.nav-item.is-active > a { color: var(--brand); }
.nav-cta { display: none; }
.nav-item {
  position: relative;
}
.nav-caret {
  display: inline-block;
  width: 0; height: 0; margin-left: .3rem; vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .7;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + .55rem);
  left: 0;
  min-width: 280px;
  padding: .55rem 0;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: .85rem;
  box-shadow: 0 16px 36px rgba(15, 60, 55, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .25s ease-in-out;
  z-index: 40;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: .7rem 1rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  white-space: normal;
  line-height: 1.35;
  transition: all .25s ease-in-out;
}
.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  color: var(--brand-dark);
  background: rgba(15,175,167,.08);
}
.menu-toggle {
  display: none; border: 0; background: transparent; padding: .5rem; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.4rem; border-radius: 999px; border: 0;
  font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: all .3s ease-in-out; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff; box-shadow: 0 10px 24px rgba(15, 175, 167, .28);
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; filter: brightness(1.03); }
.btn-ghost {
  background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.28); color: #fff; }
.btn-outline {
  background: #fff; color: var(--brand-dark);
  border: 1px solid rgba(15,175,167,.35);
}
.btn-outline:hover { background: var(--surface); color: var(--brand-dark); }

/* Hero */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    linear-gradient(120deg, rgba(10, 90, 88, .92), rgba(15, 175, 167, .78)),
    url("/wp-content/uploads/optimized/home_hero.webp") center/cover no-repeat;
  min-height: min(88vh, 720px);
  display: flex; align-items: center;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 120px;
  background: linear-gradient(transparent, #f7fcfc);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 5.5rem 0 4rem; max-width: 720px; }
.hero .eyebrow {
  display: inline-block; margin-bottom: 1rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; font-size: .8rem; color: rgba(255,255,255,.85);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem); color: #fff; margin-bottom: 1rem;
  text-shadow: 0 8px 30px rgba(0,0,0,.18);
  animation: rise .7s ease both;
}
.hero p {
  color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 38rem;
  animation: rise .8s .08s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.75rem;
  animation: rise .85s .14s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Sections */
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .75rem; border-radius: 999px;
  background: rgba(15,175,167,.1); color: var(--brand-dark);
  font-size: .8rem; font-weight: 700; margin-bottom: .85rem;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.feature {
  padding: 1.5rem; border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f3fbfb);
  border: 1px solid var(--line);
  transition: all .3s ease-in-out;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature h3 { font-size: 1.15rem; }
.feature .icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: .9rem;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff; font-weight: 800;
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: -2.5rem; position: relative; z-index: 2;
}
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1rem; text-align: center; box-shadow: var(--shadow);
}
.stat strong {
  display: block; font-family: var(--display); font-size: 1.35rem;
  color: var(--brand-dark); margin-bottom: .25rem;
}
.stat span { color: var(--muted); font-size: .9rem; }

.panel {
  border-radius: calc(var(--radius) + .25rem);
  background: linear-gradient(135deg, rgba(15,175,167,.12), rgba(68,211,209,.08));
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.panel h2, .panel h3 { color: var(--ink); }

.list-check { list-style: none; padding: 0; }
.list-check li {
  position: relative; padding-left: 1.6rem; margin-bottom: .7rem;
}
.list-check li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--brand); font-weight: 800;
}

.quote-form {
  display: grid; gap: .85rem;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  padding: 1.25rem; box-shadow: var(--shadow);
}
.quote-form label { display: grid; gap: .35rem; font-weight: 600; font-size: .9rem; color: var(--ink); }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; border: 1px solid #d7e7e6; border-radius: .85rem;
  padding: .85rem 1rem; font: inherit; background: #fbfdfe;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15,175,167,.15);
}
.form-note { font-size: .85rem; color: var(--muted); margin: 0; }
.form-status { min-height: 1.25rem; font-size: .9rem; font-weight: 600; }
.form-status.is-ok { color: var(--brand-dark); }
.form-status.is-err { color: #b42318; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; transition: all .3s ease-in-out;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stars { color: #f5b301; letter-spacing: .08em; margin-bottom: .5rem; }
.review strong { color: var(--ink); }

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.post-card {
  display: flex; flex-direction: column; gap: .6rem;
  padding: 1.3rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  transition: all .3s ease-in-out; color: inherit;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.post-card h3 { font-size: 1.05rem; color: var(--ink); }
.post-card p { font-size: .92rem; margin: 0; }

.post-card--media {
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.post-card-media {
  display: block;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(15,175,167,.12), rgba(68,211,209,.06));
  overflow: hidden;
}
.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform .4s ease-in-out;
}
.post-card--media:hover .post-card-media img { transform: scale(1.04); }
.post-card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, var(--brand), var(--brand-light));
  opacity: .35;
}
.post-card-body {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 1.15rem 1.2rem 1.35rem;
}
.post-card-body h2,
.post-card-body h3 {
  font-size: 1.08rem;
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
}
.post-card-body p { color: var(--muted); margin: 0; }
.post-card-body time { font-size: .85rem; }
.post-card-more {
  margin-top: .35rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.posts--grid { grid-template-columns: repeat(3, 1fr); }
.posts--list { grid-template-columns: repeat(2, 1fr); }
.posts--list h2 { font-size: 1.15rem; margin: 0; }

.blog-section { padding-top: 1.5rem; }
.blog-post-hero { padding-bottom: 1.5rem; }
.blog-post-layout { max-width: 820px; }
.blog-post-cover {
  margin: 0 0 1.75rem;
  border-radius: calc(var(--radius) + .15rem);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.blog-post-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin: 0;
}
.blog-post-prose { max-width: none; }
.blog-post-prose img {
  border-radius: 1rem;
  margin: 1.25rem 0;
}
.blog-post-cta { margin-top: 2.5rem; }

@media (max-width: 960px) {
  .posts,
  .posts--grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .posts,
  .posts--grid,
  .posts--list { grid-template-columns: 1fr; }
}

/* Content pages */
.page-hero {
  padding: 3.5rem 0 2rem;
  background: linear-gradient(180deg, rgba(15,175,167,.12), transparent);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .9rem; margin-bottom: 1rem; }
.breadcrumbs a { color: var(--brand-dark); }
.breadcrumbs span { color: var(--muted); }
.prose { max-width: 760px; color: var(--ink); }
.prose h2 { margin-top: 2rem; font-size: 1.55rem; color: var(--ink); }
.prose h3 { margin-top: 1.5rem; font-size: 1.2rem; color: var(--ink); }
.prose h4 { margin-top: 1.25rem; font-size: 1.05rem; color: var(--ink); }
.prose p, .prose li { color: var(--muted); }
.prose img { border-radius: 1rem; margin: 1.25rem 0; width: 100%; height: auto; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.prose li { margin-bottom: .45rem; }
.prose-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .75rem;
  margin: 1.5rem 0;
}
.prose-figure { margin: 0; }
.prose-figure img { margin: 0; border-radius: .85rem; aspect-ratio: 4/3; object-fit: cover; }
.prose-menu-box {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f3fbfb);
  border: 1px solid var(--line);
}
.prose-menu { list-style: none; padding: 0; margin: 0; }
.prose-menu li { margin-bottom: .55rem; }
.prose-menu a { font-weight: 700; text-decoration: none; color: var(--brand-dark); }
.prose-menu a:hover { color: var(--brand); }

.content-section { padding-top: 1rem; }
.content-layout { display: block; }
.content-layout--aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
  max-width: var(--max);
}
.content-layout--aside .prose { max-width: none; }
.content-aside .panel { padding: 1.35rem; }
.sticky-aside { position: sticky; top: 5.5rem; }
.pagination-wrap {
  display: flex; justify-content: center; gap: .75rem; margin-top: 2rem; flex-wrap: wrap;
}
.pagination-wrap a, .pagination-wrap span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.5rem; padding: .55rem .9rem; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 700;
  transition: all .3s ease-in-out;
}
.pagination-wrap a:hover { background: var(--surface); color: var(--brand-dark); }
.pagination-wrap .is-active {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff; border-color: transparent;
}

@media (max-width: 960px) {
  .content-layout--aside { grid-template-columns: 1fr; }
  .sticky-aside { position: static; }
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  background: linear-gradient(180deg, #0d3f3d, #0a2c2b);
  color: rgba(255,255,255,.86);
  padding: 3.5rem 0 1.5rem;
}
.site-footer a { color: #c8f4f2; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem;
}
.site-footer h3 { color: #fff; font-size: 1.05rem; }
.site-footer p, .site-footer li { color: rgba(255,255,255,.75); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: .45rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .88rem;
}

.call-fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.15rem; border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff;
  font-weight: 700; box-shadow: 0 12px 28px rgba(22,163,74,.35);
  transition: all .3s ease-in-out;
}
.call-fab:hover { transform: translateY(-2px); color: #fff; }

@media (max-width: 960px) {
  .grid-3, .grid-4, .stats, .reviews, .posts, .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem; gap: .85rem;
    max-height: min(80vh, 640px);
    overflow: auto;
  }
  .nav-item { width: 100%; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-top: 0;
    border-radius: 0;
    min-width: 0;
    padding: .25rem 0 .25rem .75rem;
    background: transparent;
  }
  .nav-dropdown a { padding: .45rem 0; }
  .menu-toggle { display: inline-block; }
  .nav-cta { display: inline-flex; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .stats, .reviews, .posts, .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 4rem; }
  .header-inner .brand span { display: none; }
  .brand img { height: 40px; max-width: 150px; }
}

/* ========== Profile page ========== */
.profile-hero {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand) 55%, var(--brand-light));
  color: #fff;
  padding: 3.25rem 0 2.5rem;
}
.profile-hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  max-width: 18ch;
  margin-bottom: 1.25rem;
}
.breadcrumbs--light a { color: rgba(255,255,255,.92); }
.breadcrumbs--light span { color: rgba(255,255,255,.7); }
.profile-hero-links {
  display: flex; flex-wrap: wrap; gap: .65rem;
  list-style: none; padding: 0; margin: 0;
}
.profile-hero-links a {
  display: inline-flex; padding: .55rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.14); color: #fff; font-weight: 700; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.28);
  transition: all .3s ease-in-out;
}
.profile-hero-links a:hover { background: rgba(255,255,255,.28); color: #fff; }

.profile-about-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center;
}
.profile-callout {
  display: inline-flex; flex-direction: column; gap: .15rem;
  margin: 0 0 1.1rem; padding: .85rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15,175,167,.14), rgba(68,211,209,.08));
  border: 1px solid var(--line);
}
.profile-callout strong { color: var(--brand-dark); font-family: var(--display); }
.profile-callout span { color: var(--muted); font-size: .9rem; }
.profile-about-media {
  display: grid; place-items: center;
}
.profile-about-media img {
  width: min(100%, 420px); aspect-ratio: 1; object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 24px 48px rgba(15, 80, 78, .18);
  border: 8px solid #fff;
}

.profile-cta {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff; padding: 3rem 0;
}
.profile-cta-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.profile-cta h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); max-width: 18ch; }
.profile-cta h2 span {
  display: inline-block; padding: .1rem .45rem; border-radius: .4rem;
  background: #111; color: #fff;
}
.profile-cta p { color: rgba(255,255,255,.9); max-width: 36rem; margin: .75rem 0 0; }
.profile-cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.profile-split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.profile-line {
  display: block; width: 48px; height: 3px; border-radius: 99px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  margin-bottom: 1rem;
}
.profile-split-media img {
  width: 100%; border-radius: 1.25rem; object-fit: cover; aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.profile-attica {
  background: linear-gradient(180deg, rgba(15,175,167,.08), transparent);
}
.profile-attica p { font-size: 1.05rem; }

.profile-reviews {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  padding: 4rem 0;
}

.profile-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.profile-timeline-item {
  padding: 1.35rem 1.15rem; border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f3fbfb);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  transition: all .3s ease-in-out;
}
.profile-timeline-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.profile-timeline-item strong {
  display: block; font-family: var(--display); font-size: 1.8rem;
  color: var(--brand-dark); margin-bottom: .35rem;
}
.profile-timeline-item h3 { font-size: 1rem; margin-bottom: .5rem; }
.profile-timeline-item p { margin: 0; font-size: .92rem; }

.profile-team-inner { max-width: 920px; }
.profile-team .section-head { margin-bottom: 1.75rem; }
.profile-team-points {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.profile-team-points article {
  padding: 1.2rem 1.15rem; border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f3fbfb);
  border: 1px solid var(--line);
  transition: all .3s ease-in-out;
}
.profile-team-points article:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.profile-team-points strong {
  display: block; margin-bottom: .4rem; color: var(--brand-dark); font-family: var(--display);
}
.profile-team-points p { margin: 0; font-size: .92rem; }

.profile-rating-badge {
  display: inline-flex; align-items: center; gap: .65rem; flex-wrap: wrap;
  margin-top: .75rem; padding: .55rem .9rem; border-radius: 999px;
  background: rgba(15,175,167,.1); border: 1px solid var(--line);
  color: var(--muted); font-size: .92rem;
}
.profile-review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.profile-review-card {
  padding: 1.25rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  transition: all .3s ease-in-out;
}
.profile-review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.profile-review-card.is-hidden,
.profile-review-card[hidden] { display: none; }
.profile-review-top {
  display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem;
}
.profile-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff; font-weight: 800;
}
.profile-review-card p { margin: 0; font-size: .95rem; line-height: 1.55; }
.profile-review-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem;
}

/* ========== Offers page (SEO) ========== */
.offers-hero {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand) 55%, var(--brand-light));
  color: #fff;
  padding: 3.25rem 0 3rem;
}
.offers-hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: start;
}
.offers-hero h1 {
  color: #fff; font-size: clamp(1.9rem, 4vw, 2.85rem);
  max-width: 16ch; margin-bottom: 1rem;
}
.offers-lead { color: rgba(255,255,255,.92); font-size: 1.08rem; max-width: 38rem; }
.offers-lead strong { color: #fff; }
.offers-hero-meta {
  display: flex; flex-wrap: wrap; gap: .65rem 1.1rem;
  list-style: none; padding: 0; margin: 1.25rem 0 0;
  color: rgba(255,255,255,.88); font-size: .92rem; font-weight: 600;
}
.offers-hero-card {
  background: #fff; color: var(--ink);
  border-radius: calc(var(--radius) + .15rem);
  padding: 1.35rem; box-shadow: var(--shadow);
}
.offers-hero-card h2 { font-size: 1.25rem; margin-bottom: .35rem; }
.offers-hero-card > p { margin-bottom: 1rem; }
.offers-stats { margin-top: -1.75rem; }

.offers-package {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.5rem; align-items: start;
}
.offers-price {
  display: flex; align-items: baseline; gap: .45rem; flex-wrap: wrap;
  margin: 0 0 1rem; color: var(--ink);
}
.offers-price strong {
  font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--brand-dark); letter-spacing: -.03em;
}
.offers-brand-logos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin-top: 1rem;
}
.offers-brand-logos img {
  width: 100%; height: 72px; object-fit: contain;
  background: #fff; border-radius: .75rem; border: 1px solid var(--line); padding: .35rem;
}

.offers-prices { background: linear-gradient(180deg, rgba(15,175,167,.07), transparent); }
.offers-table-wrap {
  overflow-x: auto; border-radius: var(--radius);
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow);
}
.offers-table {
  width: 100%; border-collapse: collapse; min-width: 520px;
}
.offers-table th, .offers-table td {
  padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line);
}
.offers-table th {
  background: linear-gradient(135deg, rgba(15,175,167,.12), rgba(68,211,209,.08));
  font-family: var(--display); color: var(--ink);
}
.offers-table tr:last-child td { border-bottom: 0; }
.offers-table td:last-child {
  font-weight: 700; color: var(--brand-dark); white-space: nowrap;
}

.offers-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.offers-steps li {
  padding: 1.25rem; border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f3fbfb);
  border: 1px solid var(--line);
  transition: all .3s ease-in-out;
}
.offers-steps li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.offers-steps strong {
  display: block; margin-bottom: .45rem; color: var(--brand-dark); font-family: var(--display);
}
.offers-steps p { margin: 0; font-size: .92rem; }

.offers-services { background: linear-gradient(180deg, transparent, rgba(15,175,167,.06)); }
.offers-service-list {
  columns: 2; column-gap: 2rem; margin-top: 1.5rem;
}
.offers-service-list li { break-inside: avoid; }

.offers-faq { max-width: 820px; }
.faq-list { display: grid; gap: .75rem; }
.faq-group { margin-bottom: 2.25rem; }
.faq-group > h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-bottom: .55rem;
  border-bottom: 2px solid rgba(15,175,167,.25);
}
.faq-page { max-width: 860px; }
.faq-item {
  border-radius: var(--radius); border: 1px solid var(--line);
  background: #fff; overflow: hidden;
  transition: all .3s ease-in-out;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.05rem 1.2rem;
  font-weight: 700; color: var(--ink); font-family: var(--display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; float: right; color: var(--brand); font-weight: 800;
}
.faq-item[open] summary::after { content: "–"; }
.faq-body { padding: 0 1.2rem 1.1rem; }
.faq-body p { margin: 0; }

.offers-hero--full { padding-bottom: 2.5rem; }
.offers-subhead {
  margin: 0 0 1rem; font-size: 1.25rem; font-weight: 700;
  color: rgba(255,255,255,.95);
}
.offers-hero-phones {
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; margin: 1rem 0 1.25rem;
}
.offers-hero-phones a {
  color: #fff; font-weight: 800; font-size: 1.15rem; text-decoration: none;
}
.offers-hero-phones a:hover { opacity: .9; color: #fff; }
.offers-hero-visual { position: relative; }
.offers-hero-visual > img {
  width: 100%; border-radius: 1.25rem; object-fit: cover; aspect-ratio: 16/10;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.offers-hero-visual .offers-hero-card {
  margin-top: 1rem;
}

.offers-icons {
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 1.25rem 0; position: relative; z-index: 2;
}
.offers-icons-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.offers-icon-item {
  display: flex; align-items: center; gap: .75rem;
  justify-content: center; padding: .5rem;
}
.offers-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
}
.offers-icon-item strong { color: var(--ink); font-size: .95rem; }

.offers-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start;
}
.offers-compare-card {
  padding: 1.5rem; border-radius: calc(var(--radius) + .1rem);
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.offers-compare-card h3 {
  margin-bottom: 1rem; padding-bottom: .65rem;
  border-bottom: 2px solid var(--line);
}
.offers-compare-card--yes h3 { color: var(--brand-dark); border-color: rgba(15,175,167,.35); }
.offers-compare-card--no h3 { color: #9a3412; border-color: rgba(154,52,18,.2); }
.offers-exclude-list {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
}
.offers-exclude-list li {
  position: relative; padding-left: 1.6rem; margin-bottom: .7rem; color: var(--muted);
}
.offers-exclude-list li::before {
  content: "×"; position: absolute; left: 0; top: 0;
  color: #c2410c; font-weight: 800;
}
.offers-mini-cta {
  margin-top: 1rem; padding: 1.15rem;
  border-radius: 1rem;
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff;
}
.offers-mini-cta strong { display: block; color: #fff; margin-bottom: .35rem; }
.offers-mini-cta p { color: rgba(255,255,255,.9); margin-bottom: .85rem; }

.offers-mid-cta {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff; padding: 2.75rem 0;
}
.offers-mid-cta-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
}
.offers-mid-cta h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin: 0 0 .4rem; }
.offers-mid-cta h2 span {
  display: inline-block; padding: .05rem .4rem; border-radius: .35rem; background: #111;
}
.offers-mid-cta p { color: rgba(255,255,255,.9); margin: 0; }
.offers-mid-cta-phones {
  display: flex; flex-direction: column; gap: .35rem; align-items: flex-end;
}
.offers-mid-cta-phones a {
  color: #fff; font-weight: 800; font-size: 1.25rem; text-decoration: none;
}

.offers-portfolio-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.5rem;
}
.offers-portfolio-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem;
}
.offers-portfolio-card {
  display: block; border-radius: 1.15rem; overflow: hidden;
  border: 1px solid var(--line); background: #fff;
  transition: all .3s ease-in-out; color: inherit;
}
.offers-portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.offers-portfolio-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; margin: 0;
}
.offers-portfolio-card strong {
  display: block; padding: 1rem 1.15rem; color: var(--ink); font-family: var(--display);
}

@media (max-width: 960px) {
  .offers-hero-grid,
  .offers-package,
  .offers-steps,
  .offers-compare,
  .offers-portfolio-grid,
  .offers-icons-grid { grid-template-columns: 1fr 1fr; }
  .offers-service-list { columns: 1; }
  .offers-hero h1 { max-width: none; }
  .offers-brand-logos { grid-template-columns: 1fr; }
  .offers-mid-cta-phones { align-items: flex-start; }
}

@media (max-width: 640px) {
  .offers-icons-grid,
  .offers-compare,
  .offers-portfolio-grid { grid-template-columns: 1fr; }
}

/* Services hub page */
.services-hero {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 3.25rem 0 2.75rem;
}
.services-hero h1 {
  color: #fff;
  max-width: 18ch;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  margin-bottom: .85rem;
}
.services-hero-lead {
  color: rgba(255,255,255,.92);
  max-width: 42rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.services-hero .breadcrumbs a,
.services-hero .breadcrumbs span { color: rgba(255,255,255,.85); }
.services-hero .breadcrumbs a:hover { color: #fff; }

.services-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: start;
}
.services-callout {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15,175,167,.1), rgba(68,211,209,.08));
  border: 1px solid rgba(15,175,167,.2);
  color: var(--ink);
}
.services-reviews-badge {
  display: inline-block;
  margin-top: 1.25rem;
  transition: all .3s ease-in-out;
}
.services-reviews-badge:hover { transform: translateY(-2px); opacity: .92; }
.services-reviews-badge img { display: block; border-radius: .65rem; max-width: 300px; height: auto; }

.services-brands-panel {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + .1rem);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.services-brands-panel h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.services-delivery {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1.05rem;
  color: var(--brand-dark);
}

.services-grid-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.services-card {
  text-align: center;
  padding: 1.35rem 1.1rem 1.5rem;
  border-radius: calc(var(--radius) + .05rem);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: all .3s ease-in-out;
}
.services-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 60, 55, .1);
}
.services-card-media {
  display: block;
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(15,175,167,.25);
  transition: all .3s ease-in-out;
}
.services-card:hover .services-card-media {
  border-color: var(--brand);
}
.services-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.services-card h3 {
  font-size: 1.05rem;
  margin-bottom: .45rem;
}
.services-card h3 a { color: var(--ink); }
.services-card h3 a:hover { color: var(--brand-dark); }
.services-card p {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: .85rem;
}
.services-card-link {
  font-weight: 700;
  font-size: .9rem;
  color: var(--brand-dark);
  text-decoration: none;
  transition: all .3s ease-in-out;
}
.services-card-link:hover { color: var(--brand); letter-spacing: .02em; }

@media (max-width: 1100px) {
  .services-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .services-intro-grid { grid-template-columns: 1fr; }
  .services-hero h1 { max-width: none; }
}
@media (max-width: 640px) {
  .services-cards { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .profile-about-grid,
  .profile-split-grid,
  .profile-timeline,
  .profile-team-points,
  .profile-review-grid { grid-template-columns: 1fr; }
  .profile-split--reverse .profile-split-media { order: -1; }
  .profile-hero h1 { max-width: none; }
}

/* Service detail (interior / exterior) */
.svc-detail-section { padding-top: 2.5rem; }
.svc-detail-main h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
  color: var(--ink);
}
.svc-detail-main h2:first-of-type { margin-top: 1.25rem; }
.svc-detail-main > p { color: var(--muted); }
.svc-detail-hero-img {
  margin: 0 0 1.5rem;
  border-radius: calc(var(--radius) + .15rem);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.svc-detail-hero-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin: 0;
}
.svc-brands-label {
  margin-top: 1.5rem;
  margin-bottom: .65rem;
  font-weight: 700;
  color: var(--ink);
}
.svc-two-col-list {
  columns: 2;
  column-gap: 1.5rem;
}
.svc-aside-nav h3 { font-size: 1.05rem; margin-bottom: .75rem; }
.svc-aside-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-aside-links li { margin-bottom: .45rem; }
.svc-aside-links a {
  color: var(--muted);
  font-weight: 600;
  transition: all .3s ease-in-out;
}
.svc-aside-links a:hover,
.svc-aside-links a[aria-current="page"] {
  color: var(--brand-dark);
}

.svc-promo {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 3rem 0;
}
.svc-promo-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.svc-promo h2 { color: #fff; margin: .65rem 0 .75rem; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.svc-promo p { color: rgba(255,255,255,.92); margin-bottom: 1.25rem; }
.svc-promo-media {
  width: min(320px, 100%);
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,.35);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.svc-promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.svc-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.svc-gallery-item {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: all .3s ease-in-out;
}
.svc-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.svc-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin: 0;
}

@media (max-width: 1100px) {
  .svc-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .svc-promo-inner { grid-template-columns: 1fr; }
  .svc-promo-media { order: -1; width: min(260px, 70%); }
  .svc-two-col-list { columns: 1; }
}
.svc-gallery--exterior {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .svc-gallery--exterior { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .svc-gallery--exterior { grid-template-columns: repeat(2, 1fr); }
}
