:root {
  --navy: #08233f;
  --navy-2: #0d3558;
  --ink: #102033;
  --muted: #607088;
  --line: #d9e2ea;
  --paper: #f7f8f4;
  --white: #ffffff;
  --gold: #c99538;
  --gold-2: #f0d48a;
  --teal: #1d8a9b;
  --coral: #d76855;
  --shadow: 0 24px 70px rgba(8, 35, 63, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

main > section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

main > section[hidden] {
  display: none !important;
}

.hero,
.leader-band {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

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

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  font-size: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.site-header.is-scrolled {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(8, 35, 63, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand span {
  min-width: 0;
}

.brand img {
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.site-header nav a.is-active::after {
  transform: scaleX(1);
}

.site-header nav a.is-active {
  color: var(--gold-2);
}

.site-header.is-scrolled nav a.is-active {
  color: #8e641d;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .language-switcher {
  border-color: rgba(8, 35, 63, 0.16);
  background: rgba(8, 35, 63, 0.04);
}

.language-switcher button {
  min-width: 36px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  touch-action: manipulation;
}

.language-switcher button.is-active {
  color: #1f1809;
  background: linear-gradient(135deg, #f4d990, var(--gold));
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  z-index: -2;
  background: url("assets/greece-hero.png") center/cover no-repeat;
  transform: scale(1.02);
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 21, 40, 0.88) 0%, rgba(4, 21, 40, 0.66) 43%, rgba(4, 21, 40, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 35, 63, 0.78), rgba(8, 35, 63, 0.04) 46%);
}

.hero__content {
  display: flex;
  min-height: 92vh;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 56px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  touch-action: manipulation;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--gold {
  color: #1f1809;
  background: linear-gradient(135deg, #f4d990, var(--gold));
  box-shadow: 0 14px 34px rgba(201, 149, 56, 0.28);
}

.btn--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn--navy {
  color: var(--white);
  background: var(--navy);
}

.hero__stats {
  display: grid;
  max-width: 820px;
  margin: 54px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hero__stats div {
  padding: 18px 22px 18px 0;
}

.hero__stats dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
}

.hero__stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.leader-band {
  display: grid;
  align-items: stretch;
  gap: 0;
  grid-template-columns: minmax(320px, 0.85fr) minmax(300px, 0.55fr);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #123f61 52%, #245f70);
}

.leader-band__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(38px, 5vw, 70px) clamp(18px, 4vw, 56px);
}

.leader-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.leader-band__copy > p:not(.section-kicker) {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
}

.leader-band__portrait {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #061a32;
}

.leader-band__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 18%;
}

.leader-band__portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(6, 26, 50, 0.78));
  pointer-events: none;
}

.leader-band__portrait figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.office-proof {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  border-bottom: 1px solid var(--line);
  background: #f6f8f8;
}

.office-proof__image {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.office-proof__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
}

.office-proof__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(8, 35, 63, 0.78));
  pointer-events: none;
}

.office-proof__image figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.office-proof__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(34px, 5vw, 66px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(238, 245, 246, 0.94)),
    url("assets/greece-hero.png") center/cover no-repeat;
}

.office-proof__copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.02;
}

.office-proof__copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.office-proof__lead {
  display: grid;
  max-width: 520px;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(201, 149, 56, 0.34);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(8, 35, 63, 0.08);
}

.office-proof__lead span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.office-proof__lead strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}

.office-proof__lead a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.office-proof__lead a[href^="tel"] {
  color: var(--navy);
  border: 1px solid rgba(8, 35, 63, 0.16);
  background: #ffffff;
}

.office-proof__lead a[href^="https://wa.me"] {
  color: #1f1809;
  background: linear-gradient(135deg, #f4d990, var(--gold));
}

.office-proof__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.office-proof__checks span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(8, 35, 63, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.office-proof--legal {
  border-top: 1px solid var(--line);
}

.office-proof--legal .office-proof__copy {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 249, 0.95)),
    url("assets/greece-hero.png") center/cover no-repeat;
}

.office-proof--legal .office-proof__image {
  background: #061a32;
}

.office-proof--legal .office-proof__image img {
  object-position: center center;
}

.trust-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.trust-strip strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}

.trust-strip span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.confidence-band {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--white);
  background: rgba(8, 35, 63, 0.22);
}

.confidence-band div {
  min-height: 190px;
  padding: 28px clamp(18px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(8, 35, 63, 0.96), rgba(13, 53, 88, 0.9)),
    url("assets/greece-hero.png") center/cover no-repeat;
}

.confidence-band span {
  display: block;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.confidence-band strong {
  display: block;
  margin-top: 13px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.confidence-band p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.split-section {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-section--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split-section .section-kicker,
.profile-section .section-kicker {
  color: var(--teal);
}

.split-section h2,
.profile-section h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.split-section p,
.profile-section__copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.desk-proof {
  display: grid;
  gap: 14px;
}

.desk-proof article,
.checklist-panel,
.guidance-list div,
.profile-section__points div,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 35, 63, 0.06);
}

.desk-proof article {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 22px;
  grid-template-columns: 46px 1fr;
}

.desk-proof span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.desk-proof h3,
.checklist-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.desk-proof p {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.checklist-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.checklist-panel {
  min-height: 310px;
  padding: 28px;
}

.checklist-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.checklist-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.52;
}

.checklist-panel li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: ">";
  font-weight: 900;
}

.guidance-list {
  display: grid;
  gap: 14px;
}

.guidance-list div {
  padding: 22px;
}

.guidance-list strong,
.profile-section__points strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.guidance-list span,
.profile-section__points span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.58;
}

.property-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 35, 63, 0.08);
}

.property-card__image {
  position: relative;
  min-height: 150px;
  background:
    linear-gradient(135deg, rgba(8, 35, 63, 0.18), rgba(8, 35, 63, 0.02)),
    url("assets/greece-hero.png") center/cover no-repeat;
}

.property-card__image--athens {
  background-position: 42% 48%;
}

.property-card__image--crete {
  background-position: 62% 45%;
}

.property-card__image--thessaloniki {
  background-position: 28% 58%;
}

.property-card__image--peloponnese {
  background-position: 52% 68%;
}

.property-card__image--mykonos {
  background-position: 76% 38%;
}

.property-card__status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #1f1809;
  background: linear-gradient(135deg, #f4d990, var(--gold));
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-card--reserved .property-card__status {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #0d6578);
}

.property-card--sold-out .property-card__status {
  color: var(--white);
  background: linear-gradient(135deg, #6d7888, #1e2d3c);
}

.property-card--sold-out .property-card__image {
  filter: grayscale(0.32);
}

.property-card__body {
  display: grid;
  min-height: 360px;
  padding: 20px;
}

.property-card__tag {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(201, 149, 56, 0.16);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-card h3 {
  margin: 16px 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.18;
}

.property-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.property-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.property-card dl div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.property-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-card dd {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.property-card button {
  align-self: end;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: #1f1809;
  background: linear-gradient(135deg, #f4d990, var(--gold));
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.property-card button:disabled {
  color: rgba(255, 255, 255, 0.86);
  background: #5e6b79;
  cursor: not-allowed;
}

.property-empty,
.property-source-note {
  width: min(1180px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-weight: 800;
}

.property-source-note {
  margin-top: 18px;
  font-size: 13px;
  text-align: center;
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 56px);
  background: var(--white);
}

.section--light {
  background: var(--paper);
}

.section--deep {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(29, 138, 155, 0.25), transparent 28%),
    linear-gradient(135deg, #061a32 0%, var(--navy) 62%, #173d52 100%);
}

.section__intro {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.section__intro .section-kicker {
  color: var(--teal);
}

.section--deep .section__intro .section-kicker {
  color: var(--gold-2);
}

.section__intro h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section--deep .section__intro h2 {
  color: var(--white);
}

.section__intro p,
.contact-section__copy p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section--deep .section__intro p {
  color: rgba(255, 255, 255, 0.76);
}

.route-grid,
.service-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-card,
.service-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 35, 63, 0.07);
}

.route-card {
  display: flex;
  flex-direction: column;
}

.route-card__icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.route-card h3,
.service-grid h3,
.timeline h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.route-card p,
.service-grid p,
.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.route-card__select {
  align-self: flex-start;
  min-height: 42px;
  margin-top: auto;
  padding: 0 15px;
  border: 1px solid rgba(8, 35, 63, 0.18);
  border-radius: 999px;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.route-card__select:hover,
.route-card__select:focus-visible {
  border-color: var(--gold);
  color: #7d5412;
}

.timeline {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.timeline__item {
  position: relative;
  min-height: 240px;
  padding: 28px 22px 0 0;
  border-right: 1px solid var(--line);
}

.timeline__item:last-child {
  border-right: 0;
}

.timeline__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.checker,
.lead-form {
  display: grid;
  width: min(940px, 100%);
  margin: 0 auto;
  gap: 16px;
}

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

.checker__checkbox,
.checker button,
.checker__result {
  grid-column: span 3;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.section--deep label {
  color: var(--white);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(8, 35, 63, 0.17);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  outline: 0;
}

textarea {
  min-height: 118px;
  padding-top: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(29, 138, 155, 0.14);
}

.checker__checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.checker__checkbox input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--gold);
}

.checker__result {
  display: grid;
  min-height: 112px;
  padding: 20px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  font-size: 16px;
  line-height: 1.55;
}

.result-card__eyebrow {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.checker__result strong {
  color: var(--white);
  font-size: 21px;
  line-height: 1.25;
}

.checker__result small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.checker__result dl {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checker__result div {
  min-height: 76px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.checker__result dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checker__result dd {
  margin: 6px 0 0;
  color: var(--white);
  font-weight: 900;
}

.checker__copy {
  grid-column: span 3;
  justify-self: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.checker__copy:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  min-height: 230px;
}

.profile-section {
  display: grid;
  gap: 42px;
  padding: clamp(72px, 9vw, 116px) clamp(18px, 4vw, 56px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 35, 63, 0.92), rgba(8, 35, 63, 0.74)),
    url("assets/greece-hero.png") center/cover no-repeat;
}

.profile-section h2 {
  color: var(--white);
}

.profile-section .section-kicker {
  color: var(--gold-2);
}

.profile-section__copy {
  max-width: 740px;
}

.profile-section__copy p {
  color: rgba(255, 255, 255, 0.78);
}

.profile-section__media {
  display: grid;
  gap: 16px;
}

.profile-photo-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.profile-photo-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.profile-photo-card--casual {
  min-height: 340px;
  align-self: end;
}

.profile-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.profile-photo-card--casual img {
  object-position: center 28%;
}

.profile-photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 46%, rgba(6, 26, 50, 0.78));
  pointer-events: none;
}

.profile-photo-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 5px;
}

.profile-photo-card figcaption strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.profile-photo-card figcaption span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-section__points {
  display: grid;
  gap: 14px;
}

.profile-section__points div {
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.faq-grid {
  display: grid;
  width: min(1060px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  min-height: 86px;
  padding: 0 20px;
}

.faq-grid summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
}

.faq-grid p {
  margin: -8px 0 22px;
  color: var(--muted);
  line-height: 1.62;
}

.location-grid {
  display: grid;
  width: min(980px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(8, 35, 63, 0.08);
}

.location-card__portrait {
  position: relative;
  height: 300px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.location-card__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card__portrait--athens img {
  object-position: center 20%;
}

.location-card__portrait--abu-dhabi img {
  object-position: center 16%;
}

.location-card__portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(8, 35, 63, 0.76));
  pointer-events: none;
}

.location-card__portrait figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-card__content {
  padding: 28px;
}

.location-card__country {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(201, 149, 56, 0.16);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.location-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.location-card p strong {
  color: var(--navy);
}

.location-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.location-card__actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.location-card__actions a:first-child {
  color: #1f1809;
  background: linear-gradient(135deg, #f4d990, var(--gold));
}

.location-card__actions a:last-child {
  color: var(--navy);
  border: 1px solid rgba(8, 35, 63, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  gap: 48px;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 56px);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  background: linear-gradient(180deg, #ffffff 0%, #eef5f6 100%);
}

.contact-section__copy {
  max-width: 680px;
}

.contact-section__copy .section-kicker {
  color: var(--teal);
}

.contact-section__copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-section__copy li {
  position: relative;
  padding-left: 30px;
  color: var(--navy);
  font-weight: 800;
}

.contact-section__copy li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: ">";
}

.contact-direct {
  display: inline-grid;
  gap: 6px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 35, 63, 0.06);
}

.contact-direct span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .brand,
[dir="rtl"] .site-footer__brand,
[dir="rtl"] .location-card__actions,
[dir="rtl"] .hero__actions,
[dir="rtl"] .site-footer__actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .site-footer__seal {
  justify-items: start;
}

[dir="rtl"] .contact-section__copy li,
[dir="rtl"] .checklist-panel li {
  padding-right: 30px;
  padding-left: 0;
}

[dir="rtl"] .checklist-panel li {
  padding-right: 24px;
}

[dir="rtl"] .contact-section__copy li::before,
[dir="rtl"] .checklist-panel li::before {
  right: 0;
  left: auto;
}

[dir="rtl"] .desk-proof article {
  grid-template-columns: 1fr 46px;
}

[dir="rtl"] .desk-proof span {
  grid-column: 2;
}

[dir="rtl"] .desk-proof h3,
[dir="rtl"] .desk-proof p {
  grid-column: 1;
}

.lead-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 48px clamp(18px, 4vw, 56px) 28px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 80% 12%, rgba(240, 212, 138, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(6, 26, 50, 0.98), rgba(8, 35, 63, 0.92)),
    url("assets/greece-hero.png") center/cover no-repeat;
}

.site-footer__signature {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: minmax(260px, 1fr) auto;
}

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

.site-footer__brand p,
.site-footer__bottom p {
  margin: 0;
  line-height: 1.6;
}

.site-footer__brand span {
  display: block;
  max-width: 460px;
  margin-top: 8px;
}

.site-footer__brand strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
}

.site-footer__seal {
  display: grid;
  gap: 6px;
  justify-items: end;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__seal span,
.site-footer__column h2 {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__seal strong {
  color: var(--white);
  font-size: 15px;
}

.site-footer__cta {
  display: grid;
  gap: 22px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.site-footer__cta .section-kicker {
  color: var(--gold-2);
}

.site-footer__cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}

.site-footer__cta p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer__actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.site-footer__actions a:first-child {
  color: #1f1809;
  background: linear-gradient(135deg, #f4d990, var(--gold));
}

.site-footer__actions a:last-child {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(160px, 0.8fr) minmax(220px, 1fr) minmax(260px, 1.1fr);
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.site-footer__column h2 {
  margin: 0 0 8px;
}

.site-footer__column a,
.site-footer__column span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: var(--white);
}

.site-footer__column--offices a {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__column--offices a:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.site-footer__column--offices strong {
  color: var(--white);
  font-size: 15px;
}

.site-footer__column--offices small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__bottom p {
  max-width: 720px;
  font-size: 13px;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(8, 35, 63, 0.06), rgba(247, 248, 244, 0.96)),
    var(--paper);
}

.admin-sidebar {
  position: fixed;
  z-index: 20;
  inset: 0 auto 0 0;
  display: grid;
  width: 286px;
  padding: 22px;
  align-content: start;
  gap: 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(6, 26, 50, 0.98), rgba(8, 35, 63, 0.94)),
    url("assets/greece-hero.png") center/cover no-repeat;
  box-shadow: 22px 0 54px rgba(8, 35, 63, 0.18);
}

.admin-sidebar .brand {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.admin-sidebar .brand strong {
  color: var(--white);
}

.admin-sidebar .brand small {
  color: var(--gold-2);
}

.admin-sidebar__nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar__nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 900;
}

.admin-sidebar__nav a:hover,
.admin-sidebar__nav a:focus-visible {
  color: #1f1809;
  background: linear-gradient(135deg, #f4d990, var(--gold));
  outline: 0;
}

.admin-sidebar__card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(240, 212, 138, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar__card span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-sidebar__card strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.55;
}

.admin-sidebar__foot {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
}

.admin-header {
  display: flex;
  position: sticky;
  z-index: 10;
  top: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.admin-header__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.admin-logout {
  min-height: 42px;
  border: 1px solid rgba(8, 35, 63, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.admin-shell {
  width: auto;
  min-width: 0;
  margin-left: 286px;
  padding: 22px clamp(16px, 3vw, 34px) 72px;
}

.admin-page.admin-locked {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(6, 26, 50, 0.98), rgba(8, 35, 63, 0.9) 46%, rgba(244, 217, 144, 0.2)),
    url("assets/greece-hero.png") center/cover fixed no-repeat;
}

.admin-page.admin-locked .admin-sidebar,
.admin-page.admin-locked .admin-topbar,
.admin-page.admin-locked .admin-hero {
  display: none;
}

.admin-page.admin-locked .admin-shell {
  display: grid;
  min-height: 100vh;
  margin-left: 0;
  padding: clamp(14px, 3vw, 42px);
  align-items: center;
}

.admin-page.admin-locked .admin-login {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.admin-topbar {
  position: sticky;
  z-index: 12;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -22px calc(clamp(16px, 3vw, 34px) * -1) 28px;
  padding: 14px clamp(16px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 244, 0.9);
  backdrop-filter: blur(18px);
}

.admin-topbar strong {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.admin-hero {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 24px;
}

.admin-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
}

.admin-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.admin-login,
.admin-workspace {
  display: grid;
  gap: 22px;
}

.admin-login-gateway {
  display: grid;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(8, 35, 63, 0.14);
  border-radius: 8px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  background:
    linear-gradient(135deg, rgba(3, 16, 32, 0.98), rgba(8, 35, 63, 0.92) 54%, rgba(29, 138, 155, 0.72)),
    url("assets/greece-hero.png") center/cover no-repeat;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.admin-login-gateway::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(240, 212, 138, 0.18), transparent 24%, transparent 74%, rgba(255, 255, 255, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
  content: "";
}

.admin-login-gateway::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--teal));
  content: "";
}

.admin-login-gateway__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(34px, 5vw, 66px);
}

.admin-login-gateway__copy .section-kicker {
  color: var(--gold-2);
}

.admin-login-gateway__copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 0.98;
}

.admin-login-gateway__copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.admin-login-gateway__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.admin-login-gateway__features span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(240, 212, 138, 0.26);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.admin-login-gateway__metrics {
  display: grid;
  max-width: 620px;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-login-gateway__metrics div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(240, 212, 138, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.admin-login-gateway__metrics strong,
.admin-login-gateway__metrics span {
  display: block;
}

.admin-login-gateway__metrics strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.admin-login-gateway__metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.admin-login-card {
  position: relative;
  align-content: center;
  align-self: center;
  margin: 24px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.admin-login-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--teal));
  content: "";
}

.admin-login-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.admin-login-card__head img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(8, 35, 63, 0.12);
}

.admin-login-card__head span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-login-card__head h2 {
  margin-top: 3px;
}

.admin-login-card__notice {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(29, 138, 155, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(29, 138, 155, 0.1), rgba(240, 212, 138, 0.16));
}

.admin-login-card__notice strong,
.admin-login-card__notice span {
  display: block;
}

.admin-login-card__notice strong {
  color: var(--navy);
  font-size: 14px;
}

.admin-login-card__notice span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.admin-password-block {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.admin-password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.admin-password-field input {
  padding-right: 82px;
}

.admin-password-toggle {
  position: absolute;
  right: 6px;
  min-height: 32px !important;
  width: auto !important;
  padding: 0 12px !important;
  border: 1px solid rgba(8, 35, 63, 0.12) !important;
  border-radius: 999px !important;
  color: var(--navy) !important;
  background: var(--white) !important;
  box-shadow: none !important;
  font-size: 12px !important;
}

.admin-login-card input:focus {
  border-color: rgba(29, 138, 155, 0.66);
  box-shadow: 0 0 0 4px rgba(29, 138, 155, 0.12);
  outline: 0;
}

.admin-login-card button[type="submit"] {
  min-height: 48px;
  width: 100%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #123f61);
  box-shadow: 0 14px 28px rgba(8, 35, 63, 0.24);
}

.admin-login-card__meta {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.admin-login-card__meta span {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 11px;
  border: 1px solid rgba(8, 35, 63, 0.1);
  border-radius: 8px;
  color: var(--muted);
  background: #f8fbfc;
  font-size: 12px;
  font-weight: 900;
}

.admin-login-card__meta strong {
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-stats article {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(8, 35, 63, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 35, 63, 0.96), rgba(13, 53, 88, 0.9)),
    url("assets/greece-hero.png") center/cover no-repeat;
  box-shadow: 0 18px 44px rgba(8, 35, 63, 0.08);
}

.admin-stats span,
.admin-stats small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  margin: 12px 0 10px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
}

.admin-stats small {
  letter-spacing: 0;
  text-transform: none;
}

.admin-toolbar,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(8, 35, 63, 0.08);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.admin-toolbar h2,
.admin-panel h2,
.admin-panel h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
}

.admin-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.admin-filters {
  display: grid;
  min-width: min(100%, 460px);
  gap: 10px;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.72fr);
}

.admin-filters label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.admin-filters input,
.admin-filters select {
  min-height: 42px;
  border: 1px solid #cfd9e3;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 15px;
}

.admin-grid {
  display: grid;
  gap: 18px;
  align-items: start;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.admin-editor-stack {
  display: grid;
  gap: 18px;
}

.admin-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.admin-panel label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.admin-panel input,
.admin-panel select,
.admin-panel textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd9e3;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 16px;
}

.admin-panel textarea {
  resize: vertical;
}

.admin-form__row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-checkbox {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
}

.admin-checkbox input {
  width: 18px;
  min-height: 18px;
}

.admin-form__actions,
.admin-property__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-panel button,
.admin-toolbar button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #1f1809;
  background: linear-gradient(135deg, #f4d990, var(--gold));
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.admin-form__actions button:last-child,
.admin-toolbar button:first-of-type,
.admin-property__actions button {
  color: var(--navy);
  border: 1px solid rgba(8, 35, 63, 0.16);
  background: var(--white);
}

.admin-status,
.admin-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-mode {
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-mode--api {
  color: var(--white);
  background: var(--teal);
}

.admin-mode--demo {
  color: #1f1809;
  background: var(--gold-2);
}

.admin-list {
  display: grid;
  gap: 0;
}

.admin-property {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfc;
}

.admin-property h4 {
  margin: 10px 0 5px;
  color: var(--navy);
  font-size: 18px;
}

.admin-property p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-property__status {
  display: inline-flex;
  margin-right: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #1f1809;
  background: var(--gold-2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-property__status--reserved {
  color: var(--white);
  background: var(--teal);
}

.admin-property__status--sold-out,
.admin-property__status--hidden {
  color: var(--white);
  background: #5e6b79;
}

.admin-preview-panel {
  position: sticky;
  top: 98px;
}

.admin-preview-card .property-card {
  box-shadow: none;
}

.admin-preview-card .property-card__body {
  min-height: 300px;
}

.admin-inventory {
  gap: 18px;
}

.admin-inventory__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.admin-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-table__head,
.admin-property-row {
  display: grid;
  gap: 12px;
  min-width: 780px;
  grid-template-columns: minmax(240px, 1.3fr) minmax(110px, 0.5fr) minmax(120px, 0.5fr) minmax(132px, 0.55fr);
  align-items: center;
}

.admin-table__head {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-property-row {
  padding: 14px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.admin-property-row:first-child {
  border-top: 0;
}

.admin-property-row:nth-child(even) {
  background: #f8fbfc;
}

.admin-property-row h4 {
  margin: 8px 0 5px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.admin-property-row p,
.admin-property-row small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.admin-property-row__price strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.admin-property-row__status select {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(8, 35, 63, 0.16);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--navy);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.admin-property__actions {
  justify-content: flex-end;
}

.admin-property__actions button {
  min-height: 38px;
  padding: 0 12px;
}

@media (max-width: 1320px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-preview-panel {
    position: static;
  }
}

@media (max-width: 980px) {
  .site-header nav {
    position: fixed;
    top: 74px;
    right: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(8, 35, 63, 0.92);
    box-shadow: 0 16px 44px rgba(8, 35, 63, 0.22);
    scrollbar-width: none;
    backdrop-filter: blur(18px);
  }

  .site-header nav::-webkit-scrollbar {
    display: none;
  }

  .site-header nav a {
    flex: 0 0 auto;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
  }

  .site-header nav a::after {
    display: none;
  }

  .site-header nav a.is-active {
    color: #1f1809;
    background: linear-gradient(135deg, #f4d990, var(--gold));
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero__content {
    padding-top: 156px;
  }

  .leader-band,
  .office-proof,
  .contact-section,
  .split-section,
  .split-section--reverse,
  .profile-section {
    grid-template-columns: 1fr;
  }

  .office-proof__image {
    min-height: 360px;
  }

  .leader-band__portrait {
    min-height: 420px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .confidence-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-grid,
  .property-grid,
  .checklist-grid,
  .service-grid,
  .timeline,
  .faq-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-photo-grid {
    grid-template-columns: 1fr;
  }

  .profile-photo-card,
  .profile-photo-card--casual {
    min-height: 420px;
  }

  .timeline {
    border-top: 0;
    gap: 16px;
  }

  .timeline__item {
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

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

  .checker__checkbox,
  .checker button,
  .checker__result {
    grid-column: 1;
  }

  .checker__copy {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    max-width: 150px;
    font-size: 9px;
  }

  .header-cta {
    display: none;
  }

  .language-switcher button {
    min-width: 32px;
    min-height: 30px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero__content {
    min-height: 94vh;
    width: min(100% - 28px, 1180px);
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(36px, 11.6vw, 50px);
    line-height: 1;
  }

  .hero__stats,
  .confidence-band,
  .route-grid,
  .property-grid,
  .checklist-grid,
  .service-grid,
  .timeline,
  .faq-grid,
  .location-grid,
  .checker__result dl {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    gap: 0;
  }

  .hero__stats div {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero__stats div:last-child {
    border-bottom: 0;
  }

  .office-proof__image {
    min-height: 268px;
  }

  .leader-band__copy {
    padding: 34px 18px;
  }

  .leader-band__portrait {
    min-height: 340px;
  }

  .office-proof__copy {
    padding: 30px 18px;
  }

  .office-proof__lead a {
    width: 100%;
  }

  .office-proof__checks span {
    width: 100%;
    justify-content: center;
  }

  .lead-form {
    padding: 18px;
  }

  .desk-proof article {
    grid-template-columns: 1fr;
  }

  .desk-proof p {
    grid-column: 1;
    margin-top: 0;
  }

  [dir="rtl"] .desk-proof span,
  [dir="rtl"] .desk-proof h3,
  [dir="rtl"] .desk-proof p {
    grid-column: 1;
  }

  .checklist-panel,
  .profile-section__points div,
  .faq-grid details,
  .location-card {
    min-height: auto;
  }

  .location-card__portrait {
    height: 264px;
  }

  .faq-grid summary {
    min-height: 72px;
    font-size: 16px;
  }

  .site-footer {
    gap: 24px;
  }

  .profile-photo-card,
  .profile-photo-card--casual {
    min-height: 360px;
  }

  .site-footer__top,
  .site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer__signature,
  .site-footer__cta,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .admin-header,
  .admin-topbar,
  .admin-toolbar,
  .admin-grid,
  .admin-form__row,
  .admin-filters,
  .admin-table__head,
  .admin-property-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 0;
    padding: 14px;
  }

  .admin-sidebar .brand {
    padding-bottom: 12px;
  }

  .admin-sidebar__nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .admin-sidebar__nav::-webkit-scrollbar {
    display: none;
  }

  .admin-sidebar__nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 12px;
  }

  .admin-sidebar__card,
  .admin-sidebar__foot {
    display: none;
  }

  .admin-shell {
    margin-left: 0;
    padding-top: 18px;
  }

  .admin-page.admin-locked .admin-shell {
    padding: 12px;
  }

  .admin-topbar {
    position: static;
    margin: 0 0 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .admin-login-gateway {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .admin-login-gateway__copy {
    padding: 30px 18px;
  }

  .admin-login-gateway__metrics {
    grid-template-columns: 1fr;
  }

  .admin-login-card {
    margin: 0 14px 14px;
  }

  .admin-table__head {
    display: none;
  }

  .admin-property-row {
    gap: 12px;
    min-width: 0;
    border-top: 1px solid var(--line);
  }

  .admin-preview-panel {
    position: static;
  }

  .admin-toolbar__actions {
    justify-content: flex-start;
  }

  .site-footer__seal {
    justify-items: start;
  }

  .site-footer__actions {
    justify-content: flex-start;
  }

}

@media (max-width: 380px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .hero__content {
    width: min(100% - 24px, 1180px);
    padding-top: 102px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-login-gateway__features span,
  .admin-login-gateway__metrics div,
  .admin-login-card__meta span {
    width: 100%;
  }

  .admin-login-card {
    padding: 18px;
  }
}
